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.
1400
1401
*/
1401
1402
"enterAnimation"?: AnimationBuilder;
1403
+
"hasController": boolean;
1402
1404
/**
1403
1405
* Additional attributes to pass to the loader.
1404
1406
*/
1405
1407
"htmlAttributes"?: LoadingAttributes;
1408
+
/**
1409
+
* 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.
1410
+
*/
1411
+
"isOpen": boolean;
1406
1412
/**
1407
1413
* If `true`, the keyboard will be automatically dismissed when the overlay is presented.
* If `true`, the loading indicator will be translucent. Only applies when the mode is `"ios"` and the device supports [`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).
1445
1451
*/
1446
1452
"translucent": boolean;
1453
+
/**
1454
+
* An ID corresponding to the trigger element that causes the loading indicator to open when clicked.
* Animation to use when the loading indicator is presented.
5192
5203
*/
5193
5204
"enterAnimation"?: AnimationBuilder;
5205
+
"hasController"?: boolean;
5194
5206
/**
5195
5207
* Additional attributes to pass to the loader.
5196
5208
*/
5197
5209
"htmlAttributes"?: LoadingAttributes;
5210
+
/**
5211
+
* 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.
5212
+
*/
5213
+
"isOpen"?: boolean;
5198
5214
/**
5199
5215
* If `true`, the keyboard will be automatically dismissed when the overlay is presented.
* If `true`, the loading indicator will be translucent. Only applies when the mode is `"ios"` and the device supports [`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).
5241
5273
*/
5242
5274
"translucent"?: boolean;
5275
+
/**
5276
+
* An ID corresponding to the trigger element that causes the loading indicator to open when clicked.
0 commit comments