@carefirst/library 6.3.5 → 6.4.1

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
@@ -808,6 +808,7 @@ declare class BadgeComponent implements OnChanges {
808
808
  type: BadgeTypeT;
809
809
  icon?: IconsT | undefined;
810
810
  emoji?: EmojisT | undefined;
811
+ 'extra-small'?: boolean | string | undefined;
811
812
  small?: boolean | string | undefined;
812
813
  large?: boolean | string | undefined;
813
814
  stretch?: boolean | string | undefined;
@@ -815,6 +816,7 @@ declare class BadgeComponent implements OnChanges {
815
816
  inputIcon: typeof this.icon | undefined;
816
817
  inputEmoji: typeof this.emoji | undefined;
817
818
  fontsize: number;
819
+ inputExtraSmall: boolean;
818
820
  inputSmall: boolean;
819
821
  inputLarge: boolean;
820
822
  inputStretch: boolean;
@@ -825,7 +827,7 @@ declare class BadgeComponent implements OnChanges {
825
827
  */
826
828
  ngOnChanges(changes: SimpleChanges): void;
827
829
  static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, 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>;
830
+ static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "cf-badge", never, { "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "emoji": { "alias": "emoji"; "required": false; }; "extra-small": { "alias": "extra-small"; "required": false; }; "small": { "alias": "small"; "required": false; }; "large": { "alias": "large"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; }, {}, never, ["*"], false, never>;
829
831
  }
830
832
 
831
833
  declare class SpinnerComponent implements OnChanges {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "6.3.5",
3
+ "version": "6.4.1",
4
4
  "author": "FCS Dev Team",
5
5
  "private": false,
6
6
  "peerDependencies": {
@@ -290,6 +290,12 @@ ion-button[class^='cf-button-'],
290
290
  font-size: 1.2rem;
291
291
  }
292
292
 
293
+ ion-button[class^='cf-button-'].text-extra-small,
294
+ .cf-button-text-extra-small {
295
+ @include button-text-base;
296
+ font-size: 0.8rem;
297
+ }
298
+
293
299
  ion-button[class^='cf-button-'].text-small,
294
300
  .cf-button-text-small {
295
301
  @include button-text-base;