You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Animation to use when the loading indicator is presented.
1392
1393
*/
1393
1394
"enterAnimation"?: AnimationBuilder;
1395
+
"hasController": boolean;
1394
1396
/**
1395
1397
* Additional attributes to pass to the loader.
1396
1398
*/
1397
1399
"htmlAttributes"?: LoadingAttributes;
1400
+
/**
1401
+
* If `true`, the loading indicator will open. If `false`, the loading indicator will close. Use this if you need finer grained control over presentation, otherwise just use the loadingController or the `trigger` property. Note: `isOpen` will not automatically be set back to `false` when the loading indicator dismisses. You will need to do that in your code.
1402
+
*/
1403
+
"isOpen": boolean;
1398
1404
/**
1399
1405
* If `true`, the keyboard will be automatically dismissed when the overlay is presented.
* Animation to use when the loading indicator is presented.
5172
5179
*/
5173
5180
"enterAnimation"?: AnimationBuilder;
5181
+
"hasController"?: boolean;
5174
5182
/**
5175
5183
* Additional attributes to pass to the loader.
5176
5184
*/
5177
5185
"htmlAttributes"?: LoadingAttributes;
5186
+
/**
5187
+
* If `true`, the loading indicator will open. If `false`, the loading indicator will close. Use this if you need finer grained control over presentation, otherwise just use the loadingController or the `trigger` property. Note: `isOpen` will not automatically be set back to `false` when the loading indicator dismisses. You will need to do that in your code.
5188
+
*/
5189
+
"isOpen"?: boolean;
5178
5190
/**
5179
5191
* If `true`, the keyboard will be automatically dismissed when the overlay is presented.
0 commit comments