@carefirst/library 7.1.1 → 7.1.2
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
|
@@ -93,6 +93,7 @@ declare class ButtonComponent implements OnChanges {
|
|
|
93
93
|
emojiEnd?: EmojisT | undefined;
|
|
94
94
|
loading?: boolean | string | undefined;
|
|
95
95
|
loadingText?: string;
|
|
96
|
+
primaryColorSpinner?: boolean | string | undefined;
|
|
96
97
|
customColor?: string | undefined;
|
|
97
98
|
get parentEvents(): string;
|
|
98
99
|
inputType: typeof this.type;
|
|
@@ -108,6 +109,7 @@ declare class ButtonComponent implements OnChanges {
|
|
|
108
109
|
inputEmojiStart: typeof this.emojiStart | undefined;
|
|
109
110
|
inputEmojiEnd: typeof this.emojiEnd | undefined;
|
|
110
111
|
inputLoading: boolean;
|
|
112
|
+
inputPrimaryColorSpinner: boolean;
|
|
111
113
|
inputCustomColor: string;
|
|
112
114
|
/**----------------------------------------------------------------
|
|
113
115
|
* @name ngOnChanges
|
|
@@ -123,7 +125,7 @@ declare class ButtonComponent implements OnChanges {
|
|
|
123
125
|
*/
|
|
124
126
|
checkCustomColor(color: string): string;
|
|
125
127
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
126
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "cf-btn", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "alert": { "alias": "alert"; "required": false; }; "action": { "alias": "action"; "required": false; }; "white": { "alias": "white"; "required": false; }; "snug": { "alias": "snug"; "required": false; }; "accent": { "alias": "accent"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "iconStart": { "alias": "iconStart"; "required": false; }; "iconEnd": { "alias": "iconEnd"; "required": false; }; "emojiStart": { "alias": "emojiStart"; "required": false; }; "emojiEnd": { "alias": "emojiEnd"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
128
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "cf-btn", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "alert": { "alias": "alert"; "required": false; }; "action": { "alias": "action"; "required": false; }; "white": { "alias": "white"; "required": false; }; "snug": { "alias": "snug"; "required": false; }; "accent": { "alias": "accent"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "iconStart": { "alias": "iconStart"; "required": false; }; "iconEnd": { "alias": "iconEnd"; "required": false; }; "emojiStart": { "alias": "emojiStart"; "required": false; }; "emojiEnd": { "alias": "emojiEnd"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "primaryColorSpinner": { "alias": "primaryColorSpinner"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
127
129
|
}
|
|
128
130
|
|
|
129
131
|
/**==============================================
|