@mirohq/design-system-switch 3.0.8 → 3.0.9-themes.1
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 +6 -6
package/dist/types.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ declare const StyledSwitch: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
20
20
|
readonly lg: "4px";
|
|
21
21
|
};
|
|
22
22
|
colors: {
|
|
23
|
+
readonly black: any;
|
|
23
24
|
readonly 'blue-100': any;
|
|
24
25
|
readonly 'blue-200': any;
|
|
25
26
|
readonly 'blue-300': any;
|
|
@@ -39,6 +40,15 @@ declare const StyledSwitch: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
39
40
|
readonly 'gray-700': any;
|
|
40
41
|
readonly 'gray-800': any;
|
|
41
42
|
readonly 'gray-900': any;
|
|
43
|
+
readonly 'green-100': any;
|
|
44
|
+
readonly 'green-200': any;
|
|
45
|
+
readonly 'green-300': any;
|
|
46
|
+
readonly 'green-400': any;
|
|
47
|
+
readonly 'green-500': any;
|
|
48
|
+
readonly 'green-600': any;
|
|
49
|
+
readonly 'green-700': any;
|
|
50
|
+
readonly 'green-800': any;
|
|
51
|
+
readonly 'green-900': any;
|
|
42
52
|
readonly 'indigo-100': any;
|
|
43
53
|
readonly 'indigo-200': any;
|
|
44
54
|
readonly 'indigo-300': any;
|
|
@@ -57,6 +67,8 @@ declare const StyledSwitch: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
57
67
|
readonly 'red-700': any;
|
|
58
68
|
readonly 'red-800': any;
|
|
59
69
|
readonly 'red-900': any;
|
|
70
|
+
readonly transparent: any;
|
|
71
|
+
readonly white: any;
|
|
60
72
|
readonly 'yellow-100': any;
|
|
61
73
|
readonly 'yellow-200': any;
|
|
62
74
|
readonly 'yellow-300': any;
|
|
@@ -66,113 +78,112 @@ declare const StyledSwitch: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
66
78
|
readonly 'yellow-700': any;
|
|
67
79
|
readonly 'yellow-800': any;
|
|
68
80
|
readonly 'yellow-900': any;
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
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
|
-
readonly 'border-warning'?: any;
|
|
81
|
+
"background-alpha-active"?: any;
|
|
82
|
+
"background-alpha-hover"?: any;
|
|
83
|
+
"background-danger-prominent"?: any;
|
|
84
|
+
"background-danger-prominent-active"?: any;
|
|
85
|
+
"background-danger-prominent-hover"?: any;
|
|
86
|
+
"background-danger-subtle"?: any;
|
|
87
|
+
"background-danger-subtle-active"?: any;
|
|
88
|
+
"background-danger-subtle-hover"?: any;
|
|
89
|
+
"background-neutrals"?: any;
|
|
90
|
+
"background-neutrals-active"?: any;
|
|
91
|
+
"background-neutrals-container"?: any;
|
|
92
|
+
"background-neutrals-controls-disabled"?: any;
|
|
93
|
+
"background-neutrals-disabled"?: any;
|
|
94
|
+
"background-neutrals-hover"?: any;
|
|
95
|
+
"background-neutrals-inactive"?: any;
|
|
96
|
+
"background-neutrals-inactive-hover"?: any;
|
|
97
|
+
"background-neutrals-inverted"?: any;
|
|
98
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
99
|
+
"background-neutrals-page"?: any;
|
|
100
|
+
"background-neutrals-page-subtle"?: any;
|
|
101
|
+
"background-neutrals-scrolls"?: any;
|
|
102
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
103
|
+
"background-neutrals-subtle"?: any;
|
|
104
|
+
"background-neutrals-subtle-active"?: any;
|
|
105
|
+
"background-neutrals-subtle-hover"?: any;
|
|
106
|
+
"background-primary-prominent"?: any;
|
|
107
|
+
"background-primary-prominent-active"?: any;
|
|
108
|
+
"background-primary-prominent-hover"?: any;
|
|
109
|
+
"background-primary-prominent-selected"?: any;
|
|
110
|
+
"background-primary-subtle"?: any;
|
|
111
|
+
"background-primary-subtle-active"?: any;
|
|
112
|
+
"background-primary-subtle-hover"?: any;
|
|
113
|
+
"background-primary-subtle-selected"?: any;
|
|
114
|
+
"background-success"?: any;
|
|
115
|
+
"background-warning-prominent"?: any;
|
|
116
|
+
"background-warning-subtle"?: any;
|
|
117
|
+
"border-danger"?: any;
|
|
118
|
+
"border-danger-active"?: any;
|
|
119
|
+
"border-danger-hover"?: any;
|
|
120
|
+
"border-focus-inner"?: any;
|
|
121
|
+
"border-focus-middle"?: any;
|
|
122
|
+
"border-focus-outer"?: any;
|
|
123
|
+
"border-neutrals"?: any;
|
|
124
|
+
"border-neutrals-active"?: any;
|
|
125
|
+
"border-neutrals-controls"?: any;
|
|
126
|
+
"border-neutrals-controls-disabled"?: any;
|
|
127
|
+
"border-neutrals-disabled"?: any;
|
|
128
|
+
"border-neutrals-hover"?: any;
|
|
129
|
+
"border-neutrals-inverted"?: any;
|
|
130
|
+
"border-neutrals-subtle"?: any;
|
|
131
|
+
"border-neutrals-text"?: any;
|
|
132
|
+
"border-neutrals-text-active"?: any;
|
|
133
|
+
"border-neutrals-text-hover"?: any;
|
|
134
|
+
"border-neutrals-text-subtle"?: any;
|
|
135
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
136
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
137
|
+
"border-neutrals-transparent"?: any;
|
|
138
|
+
"border-primary"?: any;
|
|
139
|
+
"border-primary-active"?: any;
|
|
140
|
+
"border-primary-hover"?: any;
|
|
141
|
+
"border-primary-inverted"?: any;
|
|
142
|
+
"border-success"?: any;
|
|
143
|
+
"border-warning"?: any;
|
|
144
|
+
"icon-danger"?: any;
|
|
145
|
+
"icon-danger-active"?: any;
|
|
146
|
+
"icon-danger-hover"?: any;
|
|
147
|
+
"icon-danger-inverted"?: any;
|
|
148
|
+
"icon-neutrals"?: any;
|
|
149
|
+
"icon-neutrals-disabled"?: any;
|
|
150
|
+
"icon-neutrals-inactive"?: any;
|
|
151
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
152
|
+
"icon-neutrals-inverted"?: any;
|
|
153
|
+
"icon-neutrals-search"?: any;
|
|
154
|
+
"icon-neutrals-subtle"?: any;
|
|
155
|
+
"icon-neutrals-text"?: any;
|
|
156
|
+
"icon-primary"?: any;
|
|
157
|
+
"icon-primary-active"?: any;
|
|
158
|
+
"icon-primary-hover"?: any;
|
|
159
|
+
"icon-primary-inverted"?: any;
|
|
160
|
+
"icon-primary-selected"?: any;
|
|
161
|
+
"icon-success"?: any;
|
|
162
|
+
"icon-success-inverted"?: any;
|
|
163
|
+
"icon-warning"?: any;
|
|
164
|
+
"icon-warning-prominent"?: any;
|
|
165
|
+
"text-danger"?: any;
|
|
166
|
+
"text-danger-active"?: any;
|
|
167
|
+
"text-danger-hover"?: any;
|
|
168
|
+
"text-danger-inverted"?: any;
|
|
169
|
+
"text-neutrals"?: any;
|
|
170
|
+
"text-neutrals-active"?: any;
|
|
171
|
+
"text-neutrals-disabled"?: any;
|
|
172
|
+
"text-neutrals-hover"?: any;
|
|
173
|
+
"text-neutrals-inverted"?: any;
|
|
174
|
+
"text-neutrals-placeholder"?: any;
|
|
175
|
+
"text-neutrals-placeholder-only"?: any;
|
|
176
|
+
"text-neutrals-subtle"?: any;
|
|
177
|
+
"text-neutrals-subtle-active"?: any;
|
|
178
|
+
"text-neutrals-subtle-hover"?: any;
|
|
179
|
+
"text-primary"?: any;
|
|
180
|
+
"text-primary-active"?: any;
|
|
181
|
+
"text-primary-hover"?: any;
|
|
182
|
+
"text-primary-inverted"?: any;
|
|
183
|
+
"text-primary-inverted-subtle"?: any;
|
|
184
|
+
"text-primary-selected"?: any;
|
|
185
|
+
"text-success"?: any;
|
|
186
|
+
"text-warning"?: any;
|
|
176
187
|
};
|
|
177
188
|
'font-sizes': {
|
|
178
189
|
readonly 150: "0.75rem";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-switch",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.9-themes.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@radix-ui/react-switch": "^1.0.0",
|
|
31
|
-
"@mirohq/design-system-base-switch": "^0.1.
|
|
32
|
-
"@mirohq/design-system-
|
|
33
|
-
"@mirohq/design-system-styles": "^1.1.
|
|
34
|
-
"@mirohq/design-system-
|
|
35
|
-
"@mirohq/design-system-
|
|
31
|
+
"@mirohq/design-system-base-switch": "^0.1.3-themes.1",
|
|
32
|
+
"@mirohq/design-system-utils": "^0.14.1",
|
|
33
|
+
"@mirohq/design-system-styles": "^1.1.1-themes.1",
|
|
34
|
+
"@mirohq/design-system-stitches": "^2.3.5-themes.1",
|
|
35
|
+
"@mirohq/design-system-types": "^0.6.0"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "rollup -c ../../../rollup.config.js",
|