@softheon/armature 21.2.6 → 21.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -6151,9 +6151,10 @@ declare class SofCalloutComponent {
|
|
|
6151
6151
|
type: 'info' | 'warning' | 'error' | 'success' | 'neutral' | 'help';
|
|
6152
6152
|
/**
|
|
6153
6153
|
* The callout text
|
|
6154
|
+
* @optional
|
|
6154
6155
|
* @note Can be a translation key
|
|
6155
6156
|
*/
|
|
6156
|
-
text
|
|
6157
|
+
text?: string;
|
|
6157
6158
|
/**
|
|
6158
6159
|
* The callout text translation params object
|
|
6159
6160
|
* @optional
|
|
@@ -6215,7 +6216,7 @@ declare class SofCalloutComponent {
|
|
|
6215
6216
|
/** Emit event when action button is clicked */
|
|
6216
6217
|
actionButtonClick(): void;
|
|
6217
6218
|
static ɵfac: i0.ɵɵFactoryDeclaration<SofCalloutComponent, never>;
|
|
6218
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SofCalloutComponent, "sof-callout", never, { "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": true; }; "text": { "alias": "text"; "required":
|
|
6219
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofCalloutComponent, "sof-callout", never, { "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": true; }; "text": { "alias": "text"; "required": false; }; "textParams": { "alias": "textParams"; "required": false; }; "extendedText": { "alias": "extendedText"; "required": false; }; "extendedTextParams": { "alias": "extendedTextParams"; "required": false; }; "textSize": { "alias": "textSize"; "required": false; }; "iconOverrideClass": { "alias": "iconOverrideClass"; "required": false; }; "canDismiss": { "alias": "canDismiss"; "required": false; }; "actionButtonConfig": { "alias": "actionButtonConfig"; "required": false; }; }, { "actionButtonClicked": "actionButtonClicked"; "dismissEvent": "dismissEvent"; }, never, ["[callout-custom-content]"], true, never>;
|
|
6219
6220
|
}
|
|
6220
6221
|
interface CalloutActionButtonConfig {
|
|
6221
6222
|
id?: string;
|