You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The deprecated color step CSS variables, `--ion-color-step-[number]`, have been removed and should be replaced with either `--ion-background-color-step-[number]` or `--ion-text-color-step-[number]` depending on the specific use case, as outlined in the [migration guide](https://ionicframework.com/docs/updating/8-0#step-color-tokens).
* The fill for the chip. Set to `"outline"` for a chip with a border and background. Set to `"solid"` for a chip with a background. Defaults to `"solid"` if both the fill property and theme config are unset.
878
880
*/
879
-
"fill"?: 'outline' | 'solid';
881
+
"fill"?: IonChipFill;
880
882
/**
881
883
* Set to `"bold"` for a chip with vibrant, bold colors or to `"subtle"` for a chip with muted, subtle colors. Defaults to `"subtle"` if both the hue property and theme config are unset.
882
884
*/
883
-
"hue"?: 'bold' | 'subtle';
885
+
"hue"?: IonChipHue;
884
886
/**
885
887
* The mode determines the platform behaviors of the component.
* Set to `"soft"` for a chip with slightly rounded corners, `"round"` for a chip with fully rounded corners, or `"rectangular"` for a chip without rounded corners. Defaults to `"round"` if both the shape property and theme config are unset.
896
898
*/
897
-
"shape"?: 'soft' | 'round' | 'rectangular';
899
+
"shape"?: IonChipShape;
898
900
/**
899
901
* Set to `"small"` for a chip with less height and padding. Defaults to `"large"` if both the size property and theme config are unset.
* The fill for the chip. Set to `"outline"` for a chip with a border and background. Set to `"solid"` for a chip with a background. Defaults to `"solid"` if both the fill property and theme config are unset.
6844
6846
*/
6845
-
"fill"?: 'outline' | 'solid';
6847
+
"fill"?: IonChipFill;
6846
6848
/**
6847
6849
* Set to `"bold"` for a chip with vibrant, bold colors or to `"subtle"` for a chip with muted, subtle colors. Defaults to `"subtle"` if both the hue property and theme config are unset.
6848
6850
*/
6849
-
"hue"?: 'bold' | 'subtle';
6851
+
"hue"?: IonChipHue;
6850
6852
/**
6851
6853
* The mode determines the platform behaviors of the component.
* Set to `"soft"` for a chip with slightly rounded corners, `"round"` for a chip with fully rounded corners, or `"rectangular"` for a chip without rounded corners. Defaults to `"round"` if both the shape property and theme config are unset.
6862
6864
*/
6863
-
"shape"?: 'soft' | 'round' | 'rectangular';
6865
+
"shape"?: IonChipShape;
6864
6866
/**
6865
6867
* Set to `"small"` for a chip with less height and padding. Defaults to `"large"` if both the size property and theme config are unset.
0 commit comments