@@ -105,3 +105,79 @@ export const darkThemeRTL_TestOnly = (): string => html`
105
105
` ;
106
106
107
107
darkThemeRTL_TestOnly . parameters = { themes : modesDarkDefault } ;
108
+
109
+ export const interactivityStates = ( ) : string => html `
110
+ < div >
111
+ < h2 > appearance="solid" & kind="neutral"</ h2 >
112
+ < calcite-chip-group selection-mode ="single ">
113
+ < calcite-chip appearance ="solid " kind ="neutral " value ="forest "> Forest</ calcite-chip >
114
+ < calcite-chip appearance ="solid " kind ="neutral " value ="tundra "> Tundra</ calcite-chip >
115
+ < calcite-chip appearance ="solid " kind ="neutral " value ="shore "> Seashore</ calcite-chip >
116
+ < calcite-chip appearance ="solid " kind ="neutral " value ="estuary "> Estuary</ calcite-chip >
117
+ </ calcite-chip-group >
118
+
119
+ < h2 > appearance="solid" & kind="inverse"</ h2 >
120
+ < calcite-chip-group selection-mode ="single ">
121
+ < calcite-chip appearance ="solid " kind ="inverse " value ="forest "> Forest</ calcite-chip >
122
+ < calcite-chip appearance ="solid " kind ="inverse " value ="tundra "> Tundra</ calcite-chip >
123
+ < calcite-chip appearance ="solid " kind ="inverse " value ="shore "> Seashore</ calcite-chip >
124
+ < calcite-chip appearance ="solid " kind ="inverse " value ="estuary "> Estuary</ calcite-chip >
125
+ </ calcite-chip-group >
126
+
127
+ < h2 > appearance="solid" & kind="brand"</ h2 >
128
+ < calcite-chip-group selection-mode ="single ">
129
+ < calcite-chip appearance ="solid " kind ="brand " value ="forest "> Forest</ calcite-chip >
130
+ < calcite-chip appearance ="solid " kind ="brand " value ="tundra "> Tundra</ calcite-chip >
131
+ < calcite-chip appearance ="solid " kind ="brand " value ="shore "> Seashore</ calcite-chip >
132
+ < calcite-chip appearance ="solid " kind ="brand " value ="estuary "> Estuary</ calcite-chip >
133
+ </ calcite-chip-group >
134
+
135
+ < h2 > appearance="outline-fill" & kind="neutral"</ h2 >
136
+ < calcite-chip-group selection-mode ="single ">
137
+ < calcite-chip appearance ="outline-fill " kind ="neutral " value ="forest "> Forest</ calcite-chip >
138
+ < calcite-chip appearance ="outline-fill " kind ="neutral " value ="tundra "> Tundra</ calcite-chip >
139
+ < calcite-chip appearance ="outline-fill " kind ="neutral " value ="shore "> Seashore</ calcite-chip >
140
+ < calcite-chip appearance ="outline-fill " kind ="neutral " value ="estuary "> Estuary</ calcite-chip >
141
+ </ calcite-chip-group >
142
+
143
+ < h2 > appearance="outline-fill" & kind="inverse"</ h2 >
144
+ < calcite-chip-group selection-mode ="single ">
145
+ < calcite-chip appearance ="outline-fill " kind ="inverse " value ="forest "> Forest</ calcite-chip >
146
+ < calcite-chip appearance ="outline-fill " kind ="inverse " value ="tundra "> Tundra</ calcite-chip >
147
+ < calcite-chip appearance ="outline-fill " kind ="inverse " value ="shore "> Seashore</ calcite-chip >
148
+ < calcite-chip appearance ="outline-fill " kind ="inverse " value ="estuary "> Estuary</ calcite-chip >
149
+ </ calcite-chip-group >
150
+
151
+ < h2 > appearance="outline-fill" & kind="brand"</ h2 >
152
+ < calcite-chip-group selection-mode ="single ">
153
+ < calcite-chip appearance ="outline-fill " kind ="brand " value ="forest "> Forest</ calcite-chip >
154
+ < calcite-chip appearance ="outline-fill " kind ="brand " value ="tundra "> Tundra</ calcite-chip >
155
+ < calcite-chip appearance ="outline-fill " kind ="brand " value ="shore "> Seashore</ calcite-chip >
156
+ < calcite-chip appearance ="outline-fill " kind ="brand " value ="estuary "> Estuary</ calcite-chip >
157
+ </ calcite-chip-group >
158
+
159
+ < h2 > appearance="outline" & kind="neutral"</ h2 >
160
+ < calcite-chip-group selection-mode ="single ">
161
+ < calcite-chip appearance ="outline " kind ="neutral " value ="forest "> Forest</ calcite-chip >
162
+ < calcite-chip appearance ="outline " kind ="neutral " value ="tundra "> Tundra</ calcite-chip >
163
+ < calcite-chip appearance ="outline " kind ="neutral " value ="shore "> Seashore</ calcite-chip >
164
+ < calcite-chip appearance ="outline " kind ="neutral " value ="estuary "> Estuary</ calcite-chip >
165
+ </ calcite-chip-group >
166
+
167
+ < h2 > appearance="outline" & kind="inverse"</ h2 >
168
+ < calcite-chip-group selection-mode ="single ">
169
+ < calcite-chip appearance ="outline " kind ="inverse " value ="forest "> Forest</ calcite-chip >
170
+ < calcite-chip appearance ="outline " kind ="inverse " value ="tundra "> Tundra</ calcite-chip >
171
+ < calcite-chip appearance ="outline " kind ="inverse " value ="shore "> Seashore</ calcite-chip >
172
+ < calcite-chip appearance ="outline " kind ="inverse " value ="estuary "> Estuary</ calcite-chip >
173
+ </ calcite-chip-group >
174
+
175
+ < h2 > appearance="outline" & kind="brand"</ h2 >
176
+ < calcite-chip-group selection-mode ="single ">
177
+ < calcite-chip appearance ="outline " kind ="brand " value ="forest "> Forest</ calcite-chip >
178
+ < calcite-chip appearance ="outline " kind ="brand " value ="tundra "> Tundra</ calcite-chip >
179
+ < calcite-chip appearance ="outline " kind ="brand " value ="shore "> Seashore</ calcite-chip >
180
+ < calcite-chip appearance ="outline " kind ="brand " value ="estuary "> Estuary</ calcite-chip >
181
+ </ calcite-chip-group >
182
+ </ div >
183
+ ` ;
0 commit comments