@carefirst/library 7.0.0 → 7.0.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
|
@@ -40,6 +40,20 @@ declare class PageComponent implements OnChanges {
|
|
|
40
40
|
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "cf-page", never, { "centerH": { "alias": "centerH"; "required": false; }; "centerV": { "alias": "centerV"; "required": false; }; "headerInheritanceOff": { "alias": "headerInheritanceOff"; "required": false; }; "stickyHeaderOff": { "alias": "stickyHeaderOff"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; "noScroll": { "alias": "noScroll"; "required": false; }; "devMode": { "alias": "devMode"; "required": false; }; "buttonsVertical": { "alias": "buttonsVertical"; "required": false; }; "stickyButtonOn": { "alias": "stickyButtonOn"; "required": false; }; "noStickyButtonFade": { "alias": "noStickyButtonFade"; "required": false; }; }, { "scrollEvent": "scrollEvent"; }, never, ["[cf-page-header]", "*", "[cf-page-buttons]", "[cf-page-footer]", "[cf-page-sticky-buttons]"], false, never>;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
+
/**==============================================
|
|
44
|
+
* @interface EmojisT
|
|
45
|
+
* @description List of all the available emojis
|
|
46
|
+
*/
|
|
47
|
+
declare const emojisC: readonly ["google", "facebook", "m365", "microsoft-365", "trophy", "party-popper", "flame", "black-circle", "white-circle", "red-circle", "high-voltage", "red-heart", "collision", "cherry-blossom", "pill", "yellow-heart", "microscope", "drop-of-blood", "man-health-worker", "check-mark-button"];
|
|
48
|
+
type EmojisT = (typeof emojisC)[number];
|
|
49
|
+
|
|
50
|
+
type emoji_interface_d_EmojisT = EmojisT;
|
|
51
|
+
declare const emoji_interface_d_emojisC: typeof emojisC;
|
|
52
|
+
declare namespace emoji_interface_d {
|
|
53
|
+
export { emoji_interface_d_emojisC as emojisC };
|
|
54
|
+
export type { emoji_interface_d_EmojisT as EmojisT };
|
|
55
|
+
}
|
|
56
|
+
|
|
43
57
|
/**==============================================
|
|
44
58
|
* @interface IconsT
|
|
45
59
|
* @description List of all the available icons
|
|
@@ -73,6 +87,8 @@ declare class ButtonComponent implements OnChanges {
|
|
|
73
87
|
fontSize?: 'small' | 'large';
|
|
74
88
|
iconStart?: IconsT | undefined;
|
|
75
89
|
iconEnd?: IconsT | undefined;
|
|
90
|
+
emojiStart?: EmojisT | undefined;
|
|
91
|
+
emojiEnd?: EmojisT | undefined;
|
|
76
92
|
loading?: boolean | string | undefined;
|
|
77
93
|
loadingText?: string;
|
|
78
94
|
customColor?: string | undefined;
|
|
@@ -87,6 +103,8 @@ declare class ButtonComponent implements OnChanges {
|
|
|
87
103
|
inputWhite: boolean;
|
|
88
104
|
inputIconStart: typeof this.iconStart | undefined;
|
|
89
105
|
inputIconEnd: typeof this.iconEnd | undefined;
|
|
106
|
+
inputEmojiStart: typeof this.emojiStart | undefined;
|
|
107
|
+
inputEmojiEnd: typeof this.emojiEnd | undefined;
|
|
90
108
|
inputLoading: boolean;
|
|
91
109
|
inputCustomColor: string;
|
|
92
110
|
/**----------------------------------------------------------------
|
|
@@ -103,7 +121,7 @@ declare class ButtonComponent implements OnChanges {
|
|
|
103
121
|
*/
|
|
104
122
|
checkCustomColor(color: string): string;
|
|
105
123
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
106
|
-
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; }; "loading": { "alias": "loading"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
124
|
+
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>;
|
|
107
125
|
}
|
|
108
126
|
|
|
109
127
|
/**==============================================
|
|
@@ -157,20 +175,6 @@ declare class IconComponent implements OnChanges {
|
|
|
157
175
|
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "cf-icon", never, { "icon": { "alias": "icon"; "required": false; }; "height": { "alias": "height"; "required": false; }; "heightMobile": { "alias": "heightMobile"; "required": false; }; "heightDesktop": { "alias": "heightDesktop"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "iconColorCustom": { "alias": "iconColorCustom"; "required": false; }; }, {}, never, never, false, never>;
|
|
158
176
|
}
|
|
159
177
|
|
|
160
|
-
/**==============================================
|
|
161
|
-
* @interface EmojisT
|
|
162
|
-
* @description List of all the available emojis
|
|
163
|
-
*/
|
|
164
|
-
declare const emojisC: readonly ["google", "facebook", "m365", "microsoft-365", "trophy", "party-popper", "flame", "black-circle", "white-circle", "red-circle", "high-voltage", "red-heart", "collision", "cherry-blossom", "pill", "yellow-heart", "microscope", "drop-of-blood", "man-health-worker", "check-mark-button"];
|
|
165
|
-
type EmojisT = (typeof emojisC)[number];
|
|
166
|
-
|
|
167
|
-
type emoji_interface_d_EmojisT = EmojisT;
|
|
168
|
-
declare const emoji_interface_d_emojisC: typeof emojisC;
|
|
169
|
-
declare namespace emoji_interface_d {
|
|
170
|
-
export { emoji_interface_d_emojisC as emojisC };
|
|
171
|
-
export type { emoji_interface_d_EmojisT as EmojisT };
|
|
172
|
-
}
|
|
173
|
-
|
|
174
178
|
declare class EmojiComponent implements OnChanges {
|
|
175
179
|
emoji: EmojisT;
|
|
176
180
|
height?: number;
|