@@ -120,6 +120,44 @@ export const disabled_TestOnly = (): string => html`<calcite-split-button disabl
120
120
</ calcite-dropdown-group >
121
121
</ calcite-split-button > `;
122
122
123
- export const transparentWithInverseKind_TestOnly = ( ) : string =>
124
- html `< calcite-split-button scale ="s " primary-text ="Button " appearance ="transparent " kind ="inverse ">
125
- </ calcite-split-button > ` ;
123
+ export const appearanceAndKindCombinations_TestOnly = ( ) : string => html `
124
+ < calcite-split-button primary-text ="outline+brand " appearance ="outline " kind ="brand "> </ calcite-split-button >
125
+ < calcite-split-button primary-text ="outline+danger " appearance ="outline " kind ="danger "> </ calcite-split-button >
126
+ < calcite-split-button primary-text ="outline+inverse " appearance ="outline " kind ="inverse "> </ calcite-split-button >
127
+ < calcite-split-button primary-text ="outline+neutral " appearance ="outline " kind ="neutral "> </ calcite-split-button >
128
+
129
+ < calcite-split-button primary-text ="outline-fill+brand " appearance ="outline-fill " kind ="brand "> </ calcite-split-button >
130
+ < calcite-split-button
131
+ primary-text ="outline-fill+danger "
132
+ appearance ="outline-fill "
133
+ kind ="danger "
134
+ > </ calcite-split-button >
135
+ < calcite-split-button
136
+ primary-text ="outline-fill+inverse "
137
+ appearance ="outline-fill "
138
+ kind ="inverse "
139
+ > </ calcite-split-button >
140
+ < calcite-split-button
141
+ primary-text ="outline-fill+neutral "
142
+ appearance ="outline-fill "
143
+ kind ="neutral "
144
+ > </ calcite-split-button >
145
+
146
+ < calcite-split-button primary-text ="solid+brand " appearance ="solid " kind ="brand "> </ calcite-split-button >
147
+ < calcite-split-button primary-text ="solid+danger " appearance ="solid " kind ="danger "> </ calcite-split-button >
148
+ < calcite-split-button primary-text ="solid+inverse " appearance ="solid " kind ="inverse "> </ calcite-split-button >
149
+ < calcite-split-button primary-text ="solid+neutral " appearance ="solid " kind ="neutral "> </ calcite-split-button >
150
+
151
+ < calcite-split-button primary-text ="transparent+brand " appearance ="transparent " kind ="brand "> </ calcite-split-button >
152
+ < calcite-split-button primary-text ="transparent+danger " appearance ="transparent " kind ="danger "> </ calcite-split-button >
153
+ < calcite-split-button
154
+ primary-text ="transparent+inverse "
155
+ appearance ="transparent "
156
+ kind ="inverse "
157
+ > </ calcite-split-button >
158
+ < calcite-split-button
159
+ primary-text ="transparent+neutral "
160
+ appearance ="transparent "
161
+ kind ="neutral "
162
+ > </ calcite-split-button >
163
+ ` ;
0 commit comments