|
|
@ -272,7 +272,7 @@ export namespace Components {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"leaveAnimation"?: AnimationBuilder;
|
|
|
|
"leaveAnimation"?: AnimationBuilder;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* The main message to be displayed in the alert. `message` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) This property accepts custom HTML as a string. Developers who only want to pass plain text can disable the custom HTML functionality by setting `innerHTMLTemplatesEnabled: false` in the Ionic config.
|
|
|
|
* The main message to be displayed in the alert. `message` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) This property accepts custom HTML as a string. Content is parsed as plaintext by default. `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config before custom HTML can be used.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"message"?: string | IonicSafeString;
|
|
|
|
"message"?: string | IonicSafeString;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -1135,7 +1135,7 @@ export namespace Components {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"loadingSpinner"?: SpinnerTypes | null;
|
|
|
|
"loadingSpinner"?: SpinnerTypes | null;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Optional text to display while loading. `loadingText` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) This property accepts custom HTML as a string. Developers who only want to pass plain text can disable the custom HTML functionality by setting `innerHTMLTemplatesEnabled: false` in the Ionic config.
|
|
|
|
* Optional text to display while loading. `loadingText` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) This property accepts custom HTML as a string. Content is parsed as plaintext by default. `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config before custom HTML can be used.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"loadingText"?: string | IonicSafeString;
|
|
|
|
"loadingText"?: string | IonicSafeString;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -1554,7 +1554,7 @@ export namespace Components {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"leaveAnimation"?: AnimationBuilder;
|
|
|
|
"leaveAnimation"?: AnimationBuilder;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Optional text content to display in the loading indicator. This property accepts custom HTML as a string. Developers who only want to pass plain text can disable the custom HTML functionality by setting `innerHTMLTemplatesEnabled: false` in the Ionic config.
|
|
|
|
* Optional text content to display in the loading indicator. This property accepts custom HTML as a string. Content is parsed as plaintext by default. `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config before custom HTML can be used.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"message"?: string | IonicSafeString;
|
|
|
|
"message"?: string | IonicSafeString;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -2382,7 +2382,7 @@ export namespace Components {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"pullingIcon"?: SpinnerTypes | string | null;
|
|
|
|
"pullingIcon"?: SpinnerTypes | string | null;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* The text you want to display when you begin to pull down. `pullingText` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) This property accepts custom HTML as a string. Developers who only want to pass plain text can disable the custom HTML functionality by setting `innerHTMLTemplatesEnabled: false` in the Ionic config.
|
|
|
|
* The text you want to display when you begin to pull down. `pullingText` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) Content is parsed as plaintext by default. `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config before custom HTML can be used.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"pullingText"?: string | IonicSafeString;
|
|
|
|
"pullingText"?: string | IonicSafeString;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -2390,7 +2390,7 @@ export namespace Components {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"refreshingSpinner"?: SpinnerTypes | null;
|
|
|
|
"refreshingSpinner"?: SpinnerTypes | null;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* The text you want to display when performing a refresh. `refreshingText` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) This property accepts custom HTML as a string. Developers who only want to pass plain text can disable the custom HTML functionality by setting `innerHTMLTemplatesEnabled: false` in the Ionic config.
|
|
|
|
* The text you want to display when performing a refresh. `refreshingText` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) Content is parsed as plaintext by default. `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config before custom HTML can be used.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"refreshingText"?: string | IonicSafeString;
|
|
|
|
"refreshingText"?: string | IonicSafeString;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -3118,7 +3118,7 @@ export namespace Components {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"leaveAnimation"?: AnimationBuilder;
|
|
|
|
"leaveAnimation"?: AnimationBuilder;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Message to be shown in the toast. This property accepts custom HTML as a string. Developers who only want to pass plain text can disable the custom HTML functionality by setting `innerHTMLTemplatesEnabled: false` in the Ionic config.
|
|
|
|
* Message to be shown in the toast. This property accepts custom HTML as a string. Content is parsed as plaintext by default. `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config before custom HTML can be used.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"message"?: string | IonicSafeString;
|
|
|
|
"message"?: string | IonicSafeString;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -4235,7 +4235,7 @@ declare namespace LocalJSX {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"leaveAnimation"?: AnimationBuilder;
|
|
|
|
"leaveAnimation"?: AnimationBuilder;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* The main message to be displayed in the alert. `message` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) This property accepts custom HTML as a string. Developers who only want to pass plain text can disable the custom HTML functionality by setting `innerHTMLTemplatesEnabled: false` in the Ionic config.
|
|
|
|
* The main message to be displayed in the alert. `message` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) This property accepts custom HTML as a string. Content is parsed as plaintext by default. `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config before custom HTML can be used.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"message"?: string | IonicSafeString;
|
|
|
|
"message"?: string | IonicSafeString;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -5169,7 +5169,7 @@ declare namespace LocalJSX {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"loadingSpinner"?: SpinnerTypes | null;
|
|
|
|
"loadingSpinner"?: SpinnerTypes | null;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Optional text to display while loading. `loadingText` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) This property accepts custom HTML as a string. Developers who only want to pass plain text can disable the custom HTML functionality by setting `innerHTMLTemplatesEnabled: false` in the Ionic config.
|
|
|
|
* Optional text to display while loading. `loadingText` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) This property accepts custom HTML as a string. Content is parsed as plaintext by default. `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config before custom HTML can be used.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"loadingText"?: string | IonicSafeString;
|
|
|
|
"loadingText"?: string | IonicSafeString;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -5584,7 +5584,7 @@ declare namespace LocalJSX {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"leaveAnimation"?: AnimationBuilder;
|
|
|
|
"leaveAnimation"?: AnimationBuilder;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Optional text content to display in the loading indicator. This property accepts custom HTML as a string. Developers who only want to pass plain text can disable the custom HTML functionality by setting `innerHTMLTemplatesEnabled: false` in the Ionic config.
|
|
|
|
* Optional text content to display in the loading indicator. This property accepts custom HTML as a string. Content is parsed as plaintext by default. `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config before custom HTML can be used.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"message"?: string | IonicSafeString;
|
|
|
|
"message"?: string | IonicSafeString;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -6421,7 +6421,7 @@ declare namespace LocalJSX {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"pullingIcon"?: SpinnerTypes | string | null;
|
|
|
|
"pullingIcon"?: SpinnerTypes | string | null;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* The text you want to display when you begin to pull down. `pullingText` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) This property accepts custom HTML as a string. Developers who only want to pass plain text can disable the custom HTML functionality by setting `innerHTMLTemplatesEnabled: false` in the Ionic config.
|
|
|
|
* The text you want to display when you begin to pull down. `pullingText` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) Content is parsed as plaintext by default. `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config before custom HTML can be used.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"pullingText"?: string | IonicSafeString;
|
|
|
|
"pullingText"?: string | IonicSafeString;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -6429,7 +6429,7 @@ declare namespace LocalJSX {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"refreshingSpinner"?: SpinnerTypes | null;
|
|
|
|
"refreshingSpinner"?: SpinnerTypes | null;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* The text you want to display when performing a refresh. `refreshingText` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) This property accepts custom HTML as a string. Developers who only want to pass plain text can disable the custom HTML functionality by setting `innerHTMLTemplatesEnabled: false` in the Ionic config.
|
|
|
|
* The text you want to display when performing a refresh. `refreshingText` can accept either plaintext or HTML as a string. To display characters normally reserved for HTML, they must be escaped. For example `<Ionic>` would become `<Ionic>` For more information: [Security Documentation](https://ionicframework.com/docs/faq/security) Content is parsed as plaintext by default. `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config before custom HTML can be used.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"refreshingText"?: string | IonicSafeString;
|
|
|
|
"refreshingText"?: string | IonicSafeString;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -7214,7 +7214,7 @@ declare namespace LocalJSX {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"leaveAnimation"?: AnimationBuilder;
|
|
|
|
"leaveAnimation"?: AnimationBuilder;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Message to be shown in the toast. This property accepts custom HTML as a string. Developers who only want to pass plain text can disable the custom HTML functionality by setting `innerHTMLTemplatesEnabled: false` in the Ionic config.
|
|
|
|
* Message to be shown in the toast. This property accepts custom HTML as a string. Content is parsed as plaintext by default. `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config before custom HTML can be used.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
"message"?: string | IonicSafeString;
|
|
|
|
"message"?: string | IonicSafeString;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|