@mirohq/design-system-base-switch 0.1.2 → 0.1.3-themes.0
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/dist/types.d.ts +118 -107
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -99,6 +99,7 @@ declare const Thumb: React.ForwardRefExoticComponent<Omit<Omit<Omit<{}, never> &
|
|
|
99
99
|
readonly lg: "4px";
|
|
100
100
|
};
|
|
101
101
|
colors: {
|
|
102
|
+
readonly black: any;
|
|
102
103
|
readonly 'blue-100': any;
|
|
103
104
|
readonly 'blue-200': any;
|
|
104
105
|
readonly 'blue-300': any;
|
|
@@ -118,6 +119,15 @@ declare const Thumb: React.ForwardRefExoticComponent<Omit<Omit<Omit<{}, never> &
|
|
|
118
119
|
readonly 'gray-700': any;
|
|
119
120
|
readonly 'gray-800': any;
|
|
120
121
|
readonly 'gray-900': any;
|
|
122
|
+
readonly 'green-100': any;
|
|
123
|
+
readonly 'green-200': any;
|
|
124
|
+
readonly 'green-300': any;
|
|
125
|
+
readonly 'green-400': any;
|
|
126
|
+
readonly 'green-500': any;
|
|
127
|
+
readonly 'green-600': any;
|
|
128
|
+
readonly 'green-700': any;
|
|
129
|
+
readonly 'green-800': any;
|
|
130
|
+
readonly 'green-900': any;
|
|
121
131
|
readonly 'indigo-100': any;
|
|
122
132
|
readonly 'indigo-200': any;
|
|
123
133
|
readonly 'indigo-300': any;
|
|
@@ -136,6 +146,8 @@ declare const Thumb: React.ForwardRefExoticComponent<Omit<Omit<Omit<{}, never> &
|
|
|
136
146
|
readonly 'red-700': any;
|
|
137
147
|
readonly 'red-800': any;
|
|
138
148
|
readonly 'red-900': any;
|
|
149
|
+
readonly transparent: any;
|
|
150
|
+
readonly white: any;
|
|
139
151
|
readonly 'yellow-100': any;
|
|
140
152
|
readonly 'yellow-200': any;
|
|
141
153
|
readonly 'yellow-300': any;
|
|
@@ -145,113 +157,112 @@ declare const Thumb: React.ForwardRefExoticComponent<Omit<Omit<Omit<{}, never> &
|
|
|
145
157
|
readonly 'yellow-700': any;
|
|
146
158
|
readonly 'yellow-800': any;
|
|
147
159
|
readonly 'yellow-900': any;
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
readonly 'border-warning'?: any;
|
|
160
|
+
"background-alpha-active"?: any;
|
|
161
|
+
"background-alpha-hover"?: any;
|
|
162
|
+
"background-danger-prominent"?: any;
|
|
163
|
+
"background-danger-prominent-active"?: any;
|
|
164
|
+
"background-danger-prominent-hover"?: any;
|
|
165
|
+
"background-danger-subtle"?: any;
|
|
166
|
+
"background-danger-subtle-active"?: any;
|
|
167
|
+
"background-danger-subtle-hover"?: any;
|
|
168
|
+
"background-neutrals"?: any;
|
|
169
|
+
"background-neutrals-active"?: any;
|
|
170
|
+
"background-neutrals-container"?: any;
|
|
171
|
+
"background-neutrals-controls-disabled"?: any;
|
|
172
|
+
"background-neutrals-disabled"?: any;
|
|
173
|
+
"background-neutrals-hover"?: any;
|
|
174
|
+
"background-neutrals-inactive"?: any;
|
|
175
|
+
"background-neutrals-inactive-hover"?: any;
|
|
176
|
+
"background-neutrals-inverted"?: any;
|
|
177
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
178
|
+
"background-neutrals-page"?: any;
|
|
179
|
+
"background-neutrals-page-subtle"?: any;
|
|
180
|
+
"background-neutrals-scrolls"?: any;
|
|
181
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
182
|
+
"background-neutrals-subtle"?: any;
|
|
183
|
+
"background-neutrals-subtle-active"?: any;
|
|
184
|
+
"background-neutrals-subtle-hover"?: any;
|
|
185
|
+
"background-primary-prominent"?: any;
|
|
186
|
+
"background-primary-prominent-active"?: any;
|
|
187
|
+
"background-primary-prominent-hover"?: any;
|
|
188
|
+
"background-primary-prominent-selected"?: any;
|
|
189
|
+
"background-primary-subtle"?: any;
|
|
190
|
+
"background-primary-subtle-active"?: any;
|
|
191
|
+
"background-primary-subtle-hover"?: any;
|
|
192
|
+
"background-primary-subtle-selected"?: any;
|
|
193
|
+
"background-success"?: any;
|
|
194
|
+
"background-warning-prominent"?: any;
|
|
195
|
+
"background-warning-subtle"?: any;
|
|
196
|
+
"border-danger"?: any;
|
|
197
|
+
"border-danger-active"?: any;
|
|
198
|
+
"border-danger-hover"?: any;
|
|
199
|
+
"border-focus-inner"?: any;
|
|
200
|
+
"border-focus-middle"?: any;
|
|
201
|
+
"border-focus-outer"?: any;
|
|
202
|
+
"border-neutrals"?: any;
|
|
203
|
+
"border-neutrals-active"?: any;
|
|
204
|
+
"border-neutrals-controls"?: any;
|
|
205
|
+
"border-neutrals-controls-disabled"?: any;
|
|
206
|
+
"border-neutrals-disabled"?: any;
|
|
207
|
+
"border-neutrals-hover"?: any;
|
|
208
|
+
"border-neutrals-inverted"?: any;
|
|
209
|
+
"border-neutrals-subtle"?: any;
|
|
210
|
+
"border-neutrals-text"?: any;
|
|
211
|
+
"border-neutrals-text-active"?: any;
|
|
212
|
+
"border-neutrals-text-hover"?: any;
|
|
213
|
+
"border-neutrals-text-subtle"?: any;
|
|
214
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
215
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
216
|
+
"border-neutrals-transparent"?: any;
|
|
217
|
+
"border-primary"?: any;
|
|
218
|
+
"border-primary-active"?: any;
|
|
219
|
+
"border-primary-hover"?: any;
|
|
220
|
+
"border-primary-inverted"?: any;
|
|
221
|
+
"border-success"?: any;
|
|
222
|
+
"border-warning"?: any;
|
|
223
|
+
"icon-danger"?: any;
|
|
224
|
+
"icon-danger-active"?: any;
|
|
225
|
+
"icon-danger-hover"?: any;
|
|
226
|
+
"icon-danger-inverted"?: any;
|
|
227
|
+
"icon-neutrals"?: any;
|
|
228
|
+
"icon-neutrals-disabled"?: any;
|
|
229
|
+
"icon-neutrals-inactive"?: any;
|
|
230
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
231
|
+
"icon-neutrals-inverted"?: any;
|
|
232
|
+
"icon-neutrals-search"?: any;
|
|
233
|
+
"icon-neutrals-subtle"?: any;
|
|
234
|
+
"icon-neutrals-text"?: any;
|
|
235
|
+
"icon-primary"?: any;
|
|
236
|
+
"icon-primary-active"?: any;
|
|
237
|
+
"icon-primary-hover"?: any;
|
|
238
|
+
"icon-primary-inverted"?: any;
|
|
239
|
+
"icon-primary-selected"?: any;
|
|
240
|
+
"icon-success"?: any;
|
|
241
|
+
"icon-success-inverted"?: any;
|
|
242
|
+
"icon-warning"?: any;
|
|
243
|
+
"icon-warning-prominent"?: any;
|
|
244
|
+
"text-danger"?: any;
|
|
245
|
+
"text-danger-active"?: any;
|
|
246
|
+
"text-danger-hover"?: any;
|
|
247
|
+
"text-danger-inverted"?: any;
|
|
248
|
+
"text-neutrals"?: any;
|
|
249
|
+
"text-neutrals-active"?: any;
|
|
250
|
+
"text-neutrals-disabled"?: any;
|
|
251
|
+
"text-neutrals-hover"?: any;
|
|
252
|
+
"text-neutrals-inverted"?: any;
|
|
253
|
+
"text-neutrals-placeholder"?: any;
|
|
254
|
+
"text-neutrals-placeholder-only"?: any;
|
|
255
|
+
"text-neutrals-subtle"?: any;
|
|
256
|
+
"text-neutrals-subtle-active"?: any;
|
|
257
|
+
"text-neutrals-subtle-hover"?: any;
|
|
258
|
+
"text-primary"?: any;
|
|
259
|
+
"text-primary-active"?: any;
|
|
260
|
+
"text-primary-hover"?: any;
|
|
261
|
+
"text-primary-inverted"?: any;
|
|
262
|
+
"text-primary-inverted-subtle"?: any;
|
|
263
|
+
"text-primary-selected"?: any;
|
|
264
|
+
"text-success"?: any;
|
|
265
|
+
"text-warning"?: any;
|
|
255
266
|
};
|
|
256
267
|
'font-sizes': {
|
|
257
268
|
readonly 150: "0.75rem";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-base-switch",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3-themes.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@mirohq/design-system-primitive": "^1.1.0",
|
|
30
|
-
"@mirohq/design-system-stitches": "^2.3.
|
|
30
|
+
"@mirohq/design-system-stitches": "^2.3.5-themes.0"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "rollup -c ../../../../rollup.config.js",
|