Skip to content

Commit d737ccc

Browse files
committed
docs
1 parent 1cd9598 commit d737ccc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

core/src/components.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ export namespace Components {
804804
*/
805805
"disabled": boolean;
806806
/**
807-
* Set to `"bold"` for a chip with vibrant, bold colors or to `"subtle"` for a chip with muted, subtle colors.
807+
* Set to `"bold"` for a chip with vibrant, bold colors or to `"subtle"` for a chip with muted, subtle colors. Only applies to the `ionic` theme.
808808
*/
809809
"hue"?: 'bold' | 'subtle';
810810
/**
@@ -6284,7 +6284,7 @@ declare namespace LocalJSX {
62846284
*/
62856285
"disabled"?: boolean;
62866286
/**
6287-
* Set to `"bold"` for a chip with vibrant, bold colors or to `"subtle"` for a chip with muted, subtle colors.
6287+
* Set to `"bold"` for a chip with vibrant, bold colors or to `"subtle"` for a chip with muted, subtle colors. Only applies to the `ionic` theme.
62886288
*/
62896289
"hue"?: 'bold' | 'subtle';
62906290
/**

core/src/components/chip/chip.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ export class Chip implements ComponentInterface {
4040
/**
4141
* Set to `"bold"` for a chip with vibrant, bold colors or to `"subtle"` for
4242
* a chip with muted, subtle colors.
43+
*
44+
* Only applies to the `ionic` theme.
4345
*/
4446
@Prop() hue?: 'bold' | 'subtle' = 'subtle';
4547

0 commit comments

Comments
 (0)