@carefirst/library 6.3.0 → 6.3.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/index.d.ts
CHANGED
|
@@ -791,6 +791,7 @@ declare namespace badge_interface_d {
|
|
|
791
791
|
* @usage <cf-badge
|
|
792
792
|
* type="BadgeTypeT"
|
|
793
793
|
* %icon%="IconsT"
|
|
794
|
+
* %emoji%="EmojisT"
|
|
794
795
|
* %small%
|
|
795
796
|
* %large%
|
|
796
797
|
* style="
|
|
@@ -806,11 +807,13 @@ declare namespace badge_interface_d {
|
|
|
806
807
|
declare class BadgeComponent implements OnChanges {
|
|
807
808
|
type: BadgeTypeT;
|
|
808
809
|
icon?: IconsT | undefined;
|
|
810
|
+
emoji?: EmojisT | undefined;
|
|
809
811
|
small?: boolean | string | undefined;
|
|
810
812
|
large?: boolean | string | undefined;
|
|
811
813
|
stretch?: boolean | string | undefined;
|
|
812
814
|
inputType: typeof this.type;
|
|
813
815
|
inputIcon: typeof this.icon | undefined;
|
|
816
|
+
inputEmoji: typeof this.emoji | undefined;
|
|
814
817
|
fontsize: number;
|
|
815
818
|
inputSmall: boolean;
|
|
816
819
|
inputLarge: boolean;
|
|
@@ -822,7 +825,7 @@ declare class BadgeComponent implements OnChanges {
|
|
|
822
825
|
*/
|
|
823
826
|
ngOnChanges(changes: SimpleChanges): void;
|
|
824
827
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
825
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "cf-badge", never, { "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "small": { "alias": "small"; "required": false; }; "large": { "alias": "large"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
828
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "cf-badge", never, { "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "emoji": { "alias": "emoji"; "required": false; }; "small": { "alias": "small"; "required": false; }; "large": { "alias": "large"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
826
829
|
}
|
|
827
830
|
|
|
828
831
|
declare class SpinnerComponent implements OnChanges {
|