@rescui/checkbox 0.2.2 → 0.4.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/lib/checkbox.js +1 -0
- package/lib/index.css +182 -174
- package/lib/parts/checkbox.module.pcss.js +19 -19
- package/package.json +4 -4
package/lib/checkbox.js
CHANGED
|
@@ -42,6 +42,7 @@ var Checkbox = /*#__PURE__*/React.forwardRef(function Checkbox(_ref, ref) {
|
|
|
42
42
|
onMouseEnter: onMouseEnter,
|
|
43
43
|
onMouseLeave: onMouseLeave,
|
|
44
44
|
onClick: onClick,
|
|
45
|
+
tabIndex: null,
|
|
45
46
|
icon: /*#__PURE__*/React.createElement(CheckboxControl, _objectSpread({
|
|
46
47
|
ref: ref,
|
|
47
48
|
disabled: disabled,
|
package/lib/index.css
CHANGED
|
@@ -1,30 +1,33 @@
|
|
|
1
|
-
.
|
|
1
|
+
._checkbox_1dll53b_10{
|
|
2
|
+
position:relative;
|
|
3
|
+
|
|
2
4
|
display:inline-block;
|
|
3
|
-
|
|
4
|
-
text-align:left;
|
|
5
|
+
|
|
5
6
|
-webkit-box-sizing:border-box;
|
|
7
|
+
|
|
6
8
|
box-sizing:border-box;
|
|
7
|
-
|
|
9
|
+
|
|
10
|
+
outline:none;
|
|
11
|
+
|
|
12
|
+
text-align:left;
|
|
8
13
|
}
|
|
9
|
-
.
|
|
10
|
-
padding:3px;
|
|
14
|
+
._sizeS_1dll53b_22{
|
|
11
15
|
width:20px;
|
|
12
16
|
height:20px;
|
|
13
|
-
}
|
|
14
|
-
._sizeM_3ft6im_24{
|
|
15
17
|
padding:3px;
|
|
18
|
+
}
|
|
19
|
+
._sizeM_1dll53b_28{
|
|
16
20
|
width:24px;
|
|
17
21
|
height:24px;
|
|
22
|
+
padding:3px;
|
|
18
23
|
}
|
|
19
|
-
.
|
|
20
|
-
padding:4px;
|
|
24
|
+
._sizeL_1dll53b_34{
|
|
21
25
|
width:28px;
|
|
22
26
|
height:28px;
|
|
27
|
+
padding:4px;
|
|
23
28
|
}
|
|
24
|
-
.
|
|
29
|
+
._errorMessage_1dll53b_40{
|
|
25
30
|
letter-spacing:0.0045em;
|
|
26
|
-
color:rgba(25,25,28,0.7);
|
|
27
|
-
color:var(--rs-typography-color-average, rgba(25,25,28,0.7));
|
|
28
31
|
font-family:'JetBrains Sans', Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Droid Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
29
32
|
font-family:var(--rs-font-family-ui, var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Droid Sans', 'Helvetica Neue', Arial, sans-serif));
|
|
30
33
|
font-size:13px;
|
|
@@ -32,19 +35,19 @@
|
|
|
32
35
|
line-height:20px;
|
|
33
36
|
line-height:var(--rs-text-3-line-height, 20px);
|
|
34
37
|
}
|
|
35
|
-
._rs-reset-letter-
|
|
38
|
+
._rs-reset-letter-spacing_1dll53b_1 ._errorMessage_1dll53b_40{
|
|
36
39
|
letter-spacing:normal;
|
|
37
40
|
}
|
|
38
|
-
.
|
|
41
|
+
._errorMessage_1dll53b_40 {
|
|
39
42
|
color:#F45C4A;
|
|
40
43
|
}
|
|
41
|
-
.
|
|
44
|
+
._errorMessage_1dll53b_40._list_1dll53b_44{
|
|
42
45
|
margin-bottom:12px;
|
|
43
46
|
}
|
|
44
|
-
.
|
|
47
|
+
._errorMessage_1dll53b_40._single_1dll53b_48{
|
|
45
48
|
margin-top:8px;
|
|
46
49
|
}
|
|
47
|
-
.
|
|
50
|
+
._input_1dll53b_53{
|
|
48
51
|
position:absolute;
|
|
49
52
|
z-index:-1;
|
|
50
53
|
|
|
@@ -54,13 +57,14 @@
|
|
|
54
57
|
|
|
55
58
|
border:0;
|
|
56
59
|
}
|
|
57
|
-
.
|
|
60
|
+
._icon_1dll53b_64{
|
|
58
61
|
display:inline-block;
|
|
59
62
|
float:left;
|
|
60
63
|
|
|
61
64
|
-webkit-box-sizing:border-box;
|
|
62
65
|
|
|
63
66
|
box-sizing:border-box;
|
|
67
|
+
|
|
64
68
|
border-width:1px;
|
|
65
69
|
border-style:solid;
|
|
66
70
|
|
|
@@ -68,306 +72,310 @@
|
|
|
68
72
|
|
|
69
73
|
transition:border-width ease-out 100ms, border-color ease-out 100ms;
|
|
70
74
|
}
|
|
71
|
-
.
|
|
75
|
+
._enabled_1dll53b_75 ._icon_1dll53b_64{
|
|
72
76
|
cursor:pointer;
|
|
73
77
|
}
|
|
74
|
-
.
|
|
78
|
+
._sizeS_1dll53b_22 ._icon_1dll53b_64{
|
|
75
79
|
width:14px;
|
|
76
80
|
height:14px;
|
|
77
81
|
}
|
|
78
|
-
.
|
|
82
|
+
._sizeM_1dll53b_28 ._icon_1dll53b_64{
|
|
79
83
|
width:18px;
|
|
80
84
|
height:18px;
|
|
81
85
|
}
|
|
82
|
-
.
|
|
86
|
+
._sizeL_1dll53b_34 ._icon_1dll53b_64{
|
|
83
87
|
width:20px;
|
|
84
88
|
height:20px;
|
|
85
89
|
}
|
|
86
|
-
.
|
|
90
|
+
._sizeS_1dll53b_22._indeterminate_1dll53b_95 ._icon_1dll53b_64{
|
|
87
91
|
border-width:6px 3px;
|
|
88
92
|
}
|
|
89
|
-
.
|
|
93
|
+
._sizeM_1dll53b_28._indeterminate_1dll53b_95 ._icon_1dll53b_64{
|
|
90
94
|
border-width:8px 3px;
|
|
91
95
|
}
|
|
92
|
-
.
|
|
96
|
+
._sizeL_1dll53b_34._indeterminate_1dll53b_95 ._icon_1dll53b_64{
|
|
93
97
|
border-width:9px 3px;
|
|
94
98
|
}
|
|
95
|
-
.
|
|
99
|
+
._sizeS_1dll53b_22 ._input_1dll53b_53:checked + ._icon_1dll53b_64{
|
|
96
100
|
border-width:7px;
|
|
97
101
|
}
|
|
98
|
-
.
|
|
102
|
+
._sizeM_1dll53b_28 ._input_1dll53b_53:checked + ._icon_1dll53b_64{
|
|
99
103
|
border-width:9px;
|
|
100
104
|
}
|
|
101
|
-
.
|
|
105
|
+
._sizeL_1dll53b_34 ._input_1dll53b_53:checked + ._icon_1dll53b_64{
|
|
102
106
|
border-width:10px;
|
|
103
107
|
}
|
|
104
|
-
.
|
|
105
|
-
.
|
|
108
|
+
._disabled_1dll53b_120 ._icon_1dll53b_64,
|
|
109
|
+
._input_1dll53b_53:disabled + ._icon_1dll53b_64{
|
|
106
110
|
cursor:not-allowed;
|
|
107
111
|
pointer-events:none;
|
|
108
112
|
}
|
|
109
|
-
.
|
|
110
|
-
content:'';
|
|
113
|
+
._icon_1dll53b_64::after{
|
|
111
114
|
position:absolute;
|
|
115
|
+
|
|
112
116
|
border-radius:0.1px;
|
|
117
|
+
|
|
118
|
+
content:'';
|
|
113
119
|
}
|
|
114
|
-
.
|
|
120
|
+
._sizeS_1dll53b_22 ._icon_1dll53b_64::after{
|
|
115
121
|
top:3px;
|
|
116
122
|
right:3px;
|
|
117
123
|
bottom:3px;
|
|
118
124
|
left:3px;
|
|
119
125
|
}
|
|
120
|
-
.
|
|
126
|
+
._sizeM_1dll53b_28 ._icon_1dll53b_64::after{
|
|
121
127
|
top:3px;
|
|
122
128
|
right:3px;
|
|
123
129
|
bottom:3px;
|
|
124
130
|
left:3px;
|
|
125
131
|
}
|
|
126
|
-
.
|
|
132
|
+
._sizeL_1dll53b_34 ._icon_1dll53b_64::after{
|
|
127
133
|
top:4px;
|
|
128
134
|
right:4px;
|
|
129
135
|
bottom:4px;
|
|
130
136
|
left:4px;
|
|
131
137
|
}
|
|
132
|
-
.
|
|
138
|
+
._checkmark_1dll53b_156{
|
|
133
139
|
position:absolute;
|
|
140
|
+
|
|
134
141
|
display:none;
|
|
135
142
|
|
|
136
|
-
fill
|
|
143
|
+
fill:currentColor;
|
|
137
144
|
}
|
|
138
|
-
.
|
|
145
|
+
._sizeS_1dll53b_22 ._checkmark_1dll53b_156{
|
|
139
146
|
top:3px;
|
|
140
147
|
left:3px;
|
|
141
148
|
|
|
142
149
|
width:14px;
|
|
143
150
|
height:14px;
|
|
144
151
|
}
|
|
145
|
-
.
|
|
152
|
+
._sizeM_1dll53b_28 ._checkmark_1dll53b_156{
|
|
146
153
|
top:3px;
|
|
147
154
|
left:3px;
|
|
148
155
|
|
|
149
156
|
width:18px;
|
|
150
157
|
height:18px;
|
|
151
158
|
}
|
|
152
|
-
.
|
|
159
|
+
._sizeL_1dll53b_34 ._checkmark_1dll53b_156{
|
|
153
160
|
top:4px;
|
|
154
161
|
left:4px;
|
|
155
162
|
|
|
156
163
|
width:20px;
|
|
157
164
|
height:20px;
|
|
158
165
|
}
|
|
159
|
-
.
|
|
166
|
+
._input_1dll53b_53:checked + ._icon_1dll53b_64 > ._checkmark_1dll53b_156{
|
|
160
167
|
display:block;
|
|
161
168
|
}
|
|
162
|
-
.
|
|
163
|
-
border-color
|
|
169
|
+
._themeLight_1dll53b_193 ._icon_1dll53b_64{
|
|
170
|
+
border-color:#A3A3A4;
|
|
164
171
|
|
|
165
172
|
background:#FFFFFF;
|
|
166
173
|
}
|
|
167
|
-
.
|
|
168
|
-
.
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
174
|
+
._themeLight_1dll53b_193._disabled_1dll53b_120 ._icon_1dll53b_64,
|
|
175
|
+
._themeLight_1dll53b_193 ._input_1dll53b_53:disabled + ._icon_1dll53b_64{
|
|
176
|
+
border-color:#BABABB;
|
|
177
|
+
|
|
178
|
+
background:#F4F4F4;
|
|
179
|
+
}
|
|
180
|
+
._themeLight_1dll53b_193._disabled_1dll53b_120 ._icon_1dll53b_64 ._checkmark_1dll53b_156, ._themeLight_1dll53b_193 ._input_1dll53b_53:disabled + ._icon_1dll53b_64 ._checkmark_1dll53b_156{
|
|
181
|
+
color:#F4F4F4;
|
|
182
|
+
}
|
|
183
|
+
._themeLight_1dll53b_193._error_1dll53b_40 ._icon_1dll53b_64,
|
|
184
|
+
._themeLight_1dll53b_193 ._input_1dll53b_53:invalid + ._icon_1dll53b_64{
|
|
185
|
+
border-color:#F45C4A !important;
|
|
186
|
+
}
|
|
187
|
+
._themeDark_1dll53b_218 ._icon_1dll53b_64{
|
|
188
|
+
border-color:#A3A3A4;
|
|
189
|
+
|
|
190
|
+
background:#303033;
|
|
172
191
|
}
|
|
173
|
-
.
|
|
192
|
+
._themeDark_1dll53b_218 ._input_1dll53b_53:hover + ._icon_1dll53b_64,
|
|
193
|
+
._themeDark_1dll53b_218:hover ._icon_1dll53b_64{
|
|
194
|
+
background:#474749;
|
|
195
|
+
}
|
|
196
|
+
._themeDark_1dll53b_218._disabled_1dll53b_120 ._icon_1dll53b_64,
|
|
197
|
+
._themeDark_1dll53b_218 ._input_1dll53b_53:disabled + ._icon_1dll53b_64{
|
|
198
|
+
border-color:#5E5E60;
|
|
199
|
+
|
|
200
|
+
background:#303033;
|
|
201
|
+
}
|
|
202
|
+
._themeDark_1dll53b_218._disabled_1dll53b_120 ._icon_1dll53b_64 ._checkmark_1dll53b_156, ._themeDark_1dll53b_218 ._input_1dll53b_53:disabled + ._icon_1dll53b_64 ._checkmark_1dll53b_156{
|
|
203
|
+
color:#303033;
|
|
204
|
+
}
|
|
205
|
+
._themeDark_1dll53b_218._error_1dll53b_40 ._icon_1dll53b_64,
|
|
206
|
+
._themeDark_1dll53b_218 ._input_1dll53b_53:invalid + ._icon_1dll53b_64{
|
|
207
|
+
border-color:#F45C4A !important;
|
|
208
|
+
}
|
|
209
|
+
._themeLight_1dll53b_193._enabled_1dll53b_75._classic_1dll53b_249 ._checkmark_1dll53b_156{
|
|
210
|
+
color:#FFFFFF;
|
|
211
|
+
}
|
|
212
|
+
._themeLight_1dll53b_193._enabled_1dll53b_75._classic_1dll53b_249._indeterminate_1dll53b_95 ._icon_1dll53b_64,
|
|
213
|
+
._themeLight_1dll53b_193._enabled_1dll53b_75._classic_1dll53b_249._indeterminate_1dll53b_95 ._input_1dll53b_53:hover + ._icon_1dll53b_64,
|
|
214
|
+
._themeLight_1dll53b_193._enabled_1dll53b_75._classic_1dll53b_249._indeterminate_1dll53b_95:hover ._icon_1dll53b_64{
|
|
174
215
|
border-color:#6B57FF;
|
|
175
216
|
border-color:var(--rs-color-primary-light-theme, #6B57FF);
|
|
176
217
|
}
|
|
177
|
-
.
|
|
218
|
+
._themeLight_1dll53b_193._enabled_1dll53b_75._classic_1dll53b_249 ._input_1dll53b_53:checked + ._icon_1dll53b_64{
|
|
178
219
|
border-color:#6B57FF;
|
|
179
220
|
border-color:var(--rs-color-primary-light-theme, #6B57FF);
|
|
180
221
|
}
|
|
181
|
-
.
|
|
182
|
-
|
|
183
|
-
border-color:rgba(25,25,28,0.2);
|
|
222
|
+
._themeDark_1dll53b_218._enabled_1dll53b_75._classic_1dll53b_249 ._checkmark_1dll53b_156{
|
|
223
|
+
color:#FFFFFF;
|
|
184
224
|
}
|
|
185
|
-
.
|
|
186
|
-
.
|
|
187
|
-
|
|
188
|
-
}
|
|
189
|
-
._themeDark_3ft6im_220._classic_3ft6im_187 ._icon_3ft6im_60{
|
|
190
|
-
border-color:rgba(255,255,255,0.4);
|
|
191
|
-
background:#303033;
|
|
192
|
-
}
|
|
193
|
-
._themeDark_3ft6im_220._classic_3ft6im_187._indeterminate_3ft6im_90 ._icon_3ft6im_60,
|
|
194
|
-
._themeDark_3ft6im_220._classic_3ft6im_187._indeterminate_3ft6im_90 ._input_3ft6im_49:hover + ._icon_3ft6im_60,
|
|
195
|
-
._themeDark_3ft6im_220._classic_3ft6im_187._indeterminate_3ft6im_90:hover ._icon_3ft6im_60{
|
|
225
|
+
._themeDark_1dll53b_218._enabled_1dll53b_75._classic_1dll53b_249._indeterminate_1dll53b_95 ._icon_1dll53b_64,
|
|
226
|
+
._themeDark_1dll53b_218._enabled_1dll53b_75._classic_1dll53b_249._indeterminate_1dll53b_95 ._input_1dll53b_53:hover + ._icon_1dll53b_64,
|
|
227
|
+
._themeDark_1dll53b_218._enabled_1dll53b_75._classic_1dll53b_249._indeterminate_1dll53b_95:hover ._icon_1dll53b_64{
|
|
196
228
|
border-color:#8473FF;
|
|
197
229
|
border-color:var(--rs-color-primary-dark-theme, #8473FF);
|
|
198
230
|
|
|
199
231
|
background-color:#FFFFFF;
|
|
200
232
|
}
|
|
201
|
-
.
|
|
233
|
+
._themeDark_1dll53b_218._enabled_1dll53b_75._classic_1dll53b_249 ._input_1dll53b_53:checked + ._icon_1dll53b_64{
|
|
202
234
|
border-color:#8473FF;
|
|
203
235
|
border-color:var(--rs-color-primary-dark-theme, #8473FF);
|
|
204
236
|
}
|
|
205
|
-
.
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
}
|
|
209
|
-
._themeDark_3ft6im_220._classic_3ft6im_187._disabled_3ft6im_115 ._icon_3ft6im_60,
|
|
210
|
-
._themeDark_3ft6im_220._classic_3ft6im_187 ._input_3ft6im_49:disabled + ._icon_3ft6im_60{
|
|
211
|
-
border-color:rgba(255,255,255,0.2);
|
|
212
|
-
background:#19191C;
|
|
213
|
-
}
|
|
214
|
-
._themeDark_3ft6im_220._classic_3ft6im_187._disabled_3ft6im_115 ._icon_3ft6im_60 ._checkmark_3ft6im_149, ._themeDark_3ft6im_220._classic_3ft6im_187 ._input_3ft6im_49:disabled + ._icon_3ft6im_60 ._checkmark_3ft6im_149{
|
|
215
|
-
fill:rgba(255,255,255,0.5)
|
|
216
|
-
}
|
|
217
|
-
._themeDark_3ft6im_220._classic_3ft6im_187._error_3ft6im_36 ._icon_3ft6im_60,
|
|
218
|
-
._themeDark_3ft6im_220._classic_3ft6im_187 ._input_3ft6im_49:invalid + ._icon_3ft6im_60{
|
|
219
|
-
border-color:#F45C4A !important;
|
|
220
|
-
}
|
|
221
|
-
label:hover ._sizeS_3ft6im_18._themeLight_3ft6im_187._classic_3ft6im_187._enabled_3ft6im_70 > ._icon_3ft6im_60::after,
|
|
222
|
-
._sizeS_3ft6im_18._themeLight_3ft6im_187._classic_3ft6im_187._enabled_3ft6im_70:hover > ._icon_3ft6im_60::after,
|
|
223
|
-
._sizeS_3ft6im_18._themeLight_3ft6im_187._classic_3ft6im_187._enabled_3ft6im_70 ._input_3ft6im_49:focus[data-focus-method='key'] + ._icon_3ft6im_60::after,
|
|
224
|
-
._sizeS_3ft6im_18._themeLight_3ft6im_187._classic_3ft6im_187._enabled_3ft6im_70 ._input_3ft6im_49:active + ._icon_3ft6im_60::after{
|
|
237
|
+
label:hover ._sizeS_1dll53b_22._themeLight_1dll53b_193._classic_1dll53b_249._enabled_1dll53b_75 > ._icon_1dll53b_64::after,
|
|
238
|
+
._sizeS_1dll53b_22._themeLight_1dll53b_193._classic_1dll53b_249._enabled_1dll53b_75:hover > ._icon_1dll53b_64::after,
|
|
239
|
+
._sizeS_1dll53b_22._themeLight_1dll53b_193._classic_1dll53b_249._enabled_1dll53b_75 ._input_1dll53b_53:active + ._icon_1dll53b_64::after{
|
|
225
240
|
-webkit-box-shadow:0 0 0 3px rgba(107, 87, 255,0.2);
|
|
226
241
|
-webkit-box-shadow:0 0 0 3px var(--rs-color-primary-t-fog-light-theme, rgba(107, 87, 255,0.2));
|
|
227
242
|
box-shadow:0 0 0 3px rgba(107, 87, 255,0.2);
|
|
228
243
|
box-shadow:0 0 0 3px var(--rs-color-primary-t-fog-light-theme, rgba(107, 87, 255,0.2));
|
|
229
244
|
}
|
|
230
|
-
label:hover .
|
|
231
|
-
.
|
|
232
|
-
.
|
|
233
|
-
._sizeS_3ft6im_18._themeDark_3ft6im_220._classic_3ft6im_187._enabled_3ft6im_70 ._input_3ft6im_49:active + ._icon_3ft6im_60::after{
|
|
245
|
+
label:hover ._sizeS_1dll53b_22._themeDark_1dll53b_218._classic_1dll53b_249._enabled_1dll53b_75 > ._icon_1dll53b_64::after,
|
|
246
|
+
._sizeS_1dll53b_22._themeDark_1dll53b_218._classic_1dll53b_249._enabled_1dll53b_75:hover > ._icon_1dll53b_64::after,
|
|
247
|
+
._sizeS_1dll53b_22._themeDark_1dll53b_218._classic_1dll53b_249._enabled_1dll53b_75 ._input_1dll53b_53:active + ._icon_1dll53b_64::after{
|
|
234
248
|
-webkit-box-shadow:0 0 0 3px rgba(132, 115, 255,0.3);
|
|
235
249
|
-webkit-box-shadow:0 0 0 3px var(--rs-color-primary-t-fog-dark-theme, rgba(132, 115, 255,0.3));
|
|
236
250
|
box-shadow:0 0 0 3px rgba(132, 115, 255,0.3);
|
|
237
251
|
box-shadow:0 0 0 3px var(--rs-color-primary-t-fog-dark-theme, rgba(132, 115, 255,0.3))
|
|
238
252
|
}
|
|
239
|
-
label:hover .
|
|
240
|
-
.
|
|
241
|
-
.
|
|
242
|
-
._sizeM_3ft6im_24._themeLight_3ft6im_187._classic_3ft6im_187._enabled_3ft6im_70 ._input_3ft6im_49:active + ._icon_3ft6im_60::after{
|
|
253
|
+
label:hover ._sizeM_1dll53b_28._themeLight_1dll53b_193._classic_1dll53b_249._enabled_1dll53b_75 > ._icon_1dll53b_64::after,
|
|
254
|
+
._sizeM_1dll53b_28._themeLight_1dll53b_193._classic_1dll53b_249._enabled_1dll53b_75:hover > ._icon_1dll53b_64::after,
|
|
255
|
+
._sizeM_1dll53b_28._themeLight_1dll53b_193._classic_1dll53b_249._enabled_1dll53b_75 ._input_1dll53b_53:active + ._icon_1dll53b_64::after{
|
|
243
256
|
-webkit-box-shadow:0 0 0 3px rgba(107, 87, 255,0.2);
|
|
244
257
|
-webkit-box-shadow:0 0 0 3px var(--rs-color-primary-t-fog-light-theme, rgba(107, 87, 255,0.2));
|
|
245
258
|
box-shadow:0 0 0 3px rgba(107, 87, 255,0.2);
|
|
246
259
|
box-shadow:0 0 0 3px var(--rs-color-primary-t-fog-light-theme, rgba(107, 87, 255,0.2));
|
|
247
260
|
}
|
|
248
|
-
label:hover .
|
|
249
|
-
.
|
|
250
|
-
.
|
|
251
|
-
._sizeM_3ft6im_24._themeDark_3ft6im_220._classic_3ft6im_187._enabled_3ft6im_70 ._input_3ft6im_49:active + ._icon_3ft6im_60::after{
|
|
261
|
+
label:hover ._sizeM_1dll53b_28._themeDark_1dll53b_218._classic_1dll53b_249._enabled_1dll53b_75 > ._icon_1dll53b_64::after,
|
|
262
|
+
._sizeM_1dll53b_28._themeDark_1dll53b_218._classic_1dll53b_249._enabled_1dll53b_75:hover > ._icon_1dll53b_64::after,
|
|
263
|
+
._sizeM_1dll53b_28._themeDark_1dll53b_218._classic_1dll53b_249._enabled_1dll53b_75 ._input_1dll53b_53:active + ._icon_1dll53b_64::after{
|
|
252
264
|
-webkit-box-shadow:0 0 0 3px rgba(132, 115, 255,0.3);
|
|
253
265
|
-webkit-box-shadow:0 0 0 3px var(--rs-color-primary-t-fog-dark-theme, rgba(132, 115, 255,0.3));
|
|
254
266
|
box-shadow:0 0 0 3px rgba(132, 115, 255,0.3);
|
|
255
267
|
box-shadow:0 0 0 3px var(--rs-color-primary-t-fog-dark-theme, rgba(132, 115, 255,0.3))
|
|
256
268
|
}
|
|
257
|
-
label:hover .
|
|
258
|
-
.
|
|
259
|
-
.
|
|
260
|
-
._sizeL_3ft6im_30._themeLight_3ft6im_187._classic_3ft6im_187._enabled_3ft6im_70 ._input_3ft6im_49:active + ._icon_3ft6im_60::after{
|
|
269
|
+
label:hover ._sizeL_1dll53b_34._themeLight_1dll53b_193._classic_1dll53b_249._enabled_1dll53b_75 > ._icon_1dll53b_64::after,
|
|
270
|
+
._sizeL_1dll53b_34._themeLight_1dll53b_193._classic_1dll53b_249._enabled_1dll53b_75:hover > ._icon_1dll53b_64::after,
|
|
271
|
+
._sizeL_1dll53b_34._themeLight_1dll53b_193._classic_1dll53b_249._enabled_1dll53b_75 ._input_1dll53b_53:active + ._icon_1dll53b_64::after{
|
|
261
272
|
-webkit-box-shadow:0 0 0 4px rgba(107, 87, 255,0.2);
|
|
262
273
|
-webkit-box-shadow:0 0 0 4px var(--rs-color-primary-t-fog-light-theme, rgba(107, 87, 255,0.2));
|
|
263
274
|
box-shadow:0 0 0 4px rgba(107, 87, 255,0.2);
|
|
264
275
|
box-shadow:0 0 0 4px var(--rs-color-primary-t-fog-light-theme, rgba(107, 87, 255,0.2));
|
|
265
276
|
}
|
|
266
|
-
label:hover .
|
|
267
|
-
.
|
|
268
|
-
.
|
|
269
|
-
._sizeL_3ft6im_30._themeDark_3ft6im_220._classic_3ft6im_187._enabled_3ft6im_70 ._input_3ft6im_49:active + ._icon_3ft6im_60::after{
|
|
277
|
+
label:hover ._sizeL_1dll53b_34._themeDark_1dll53b_218._classic_1dll53b_249._enabled_1dll53b_75 > ._icon_1dll53b_64::after,
|
|
278
|
+
._sizeL_1dll53b_34._themeDark_1dll53b_218._classic_1dll53b_249._enabled_1dll53b_75:hover > ._icon_1dll53b_64::after,
|
|
279
|
+
._sizeL_1dll53b_34._themeDark_1dll53b_218._classic_1dll53b_249._enabled_1dll53b_75 ._input_1dll53b_53:active + ._icon_1dll53b_64::after{
|
|
270
280
|
-webkit-box-shadow:0 0 0 4px rgba(132, 115, 255,0.3);
|
|
271
281
|
-webkit-box-shadow:0 0 0 4px var(--rs-color-primary-t-fog-dark-theme, rgba(132, 115, 255,0.3));
|
|
272
282
|
box-shadow:0 0 0 4px rgba(132, 115, 255,0.3);
|
|
273
283
|
box-shadow:0 0 0 4px var(--rs-color-primary-t-fog-dark-theme, rgba(132, 115, 255,0.3))
|
|
274
284
|
}
|
|
275
|
-
.
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
background:#FFFFFF;
|
|
279
|
-
}
|
|
280
|
-
._themeLight_3ft6im_187._rock_3ft6im_316._indeterminate_3ft6im_90 ._icon_3ft6im_60,
|
|
281
|
-
._themeLight_3ft6im_187._rock_3ft6im_316._indeterminate_3ft6im_90 ._input_3ft6im_49:hover + ._icon_3ft6im_60,
|
|
282
|
-
._themeLight_3ft6im_187._rock_3ft6im_316._indeterminate_3ft6im_90:hover ._icon_3ft6im_60{
|
|
283
|
-
border-color:#19191C;
|
|
285
|
+
._themeLight_1dll53b_193._enabled_1dll53b_75._rock_1dll53b_336 ._checkmark_1dll53b_156{
|
|
286
|
+
color:#FFFFFF;
|
|
284
287
|
}
|
|
285
|
-
.
|
|
288
|
+
._themeLight_1dll53b_193._enabled_1dll53b_75._rock_1dll53b_336._indeterminate_1dll53b_95 ._icon_1dll53b_64,
|
|
289
|
+
._themeLight_1dll53b_193._enabled_1dll53b_75._rock_1dll53b_336._indeterminate_1dll53b_95 ._input_1dll53b_53:hover + ._icon_1dll53b_64,
|
|
290
|
+
._themeLight_1dll53b_193._enabled_1dll53b_75._rock_1dll53b_336._indeterminate_1dll53b_95:hover ._icon_1dll53b_64{
|
|
286
291
|
border-color:#19191C;
|
|
287
292
|
}
|
|
288
|
-
.
|
|
293
|
+
._themeLight_1dll53b_193._enabled_1dll53b_75._rock_1dll53b_336 ._input_1dll53b_53:checked + ._icon_1dll53b_64{
|
|
289
294
|
border-color:#19191C;
|
|
290
295
|
}
|
|
291
|
-
.
|
|
292
|
-
|
|
293
|
-
border-color:rgba(25,25,28,0.2);
|
|
294
|
-
}
|
|
295
|
-
._themeLight_3ft6im_187._rock_3ft6im_316._error_3ft6im_36 ._icon_3ft6im_60,
|
|
296
|
-
._themeLight_3ft6im_187._rock_3ft6im_316 ._input_3ft6im_49:invalid + ._icon_3ft6im_60{
|
|
297
|
-
border-color:#F45C4A;
|
|
296
|
+
._themeDark_1dll53b_218._enabled_1dll53b_75._rock_1dll53b_336 ._checkmark_1dll53b_156{
|
|
297
|
+
color:#19191C;
|
|
298
298
|
}
|
|
299
|
-
.
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
._themeDark_3ft6im_220._rock_3ft6im_316 ._icon_3ft6im_60{
|
|
303
|
-
border-color:rgba(255,255,255,0.4);
|
|
304
|
-
background:#303033;
|
|
305
|
-
}
|
|
306
|
-
._themeDark_3ft6im_220._rock_3ft6im_316._indeterminate_3ft6im_90 ._icon_3ft6im_60,
|
|
307
|
-
._themeDark_3ft6im_220._rock_3ft6im_316._indeterminate_3ft6im_90 ._input_3ft6im_49:hover + ._icon_3ft6im_60,
|
|
308
|
-
._themeDark_3ft6im_220._rock_3ft6im_316._indeterminate_3ft6im_90:hover ._icon_3ft6im_60{
|
|
299
|
+
._themeDark_1dll53b_218._enabled_1dll53b_75._rock_1dll53b_336._indeterminate_1dll53b_95 ._icon_1dll53b_64,
|
|
300
|
+
._themeDark_1dll53b_218._enabled_1dll53b_75._rock_1dll53b_336._indeterminate_1dll53b_95 ._input_1dll53b_53:hover + ._icon_1dll53b_64,
|
|
301
|
+
._themeDark_1dll53b_218._enabled_1dll53b_75._rock_1dll53b_336._indeterminate_1dll53b_95:hover ._icon_1dll53b_64{
|
|
309
302
|
border-color:#FFFFFF;
|
|
310
303
|
|
|
311
304
|
background-color:#19191C;
|
|
312
305
|
}
|
|
313
|
-
.
|
|
314
|
-
border-color:#FFFFFF;
|
|
315
|
-
}
|
|
316
|
-
._themeDark_3ft6im_220._rock_3ft6im_316 ._input_3ft6im_49:checked + ._icon_3ft6im_60{
|
|
306
|
+
._themeDark_1dll53b_218._enabled_1dll53b_75._rock_1dll53b_336 ._input_1dll53b_53:checked + ._icon_1dll53b_64{
|
|
317
307
|
border-color:#FFFFFF;
|
|
318
308
|
}
|
|
319
|
-
.
|
|
320
|
-
.
|
|
321
|
-
|
|
322
|
-
background:#19191C;
|
|
323
|
-
}
|
|
324
|
-
._themeDark_3ft6im_220._rock_3ft6im_316._disabled_3ft6im_115 ._icon_3ft6im_60 ._checkmark_3ft6im_149, ._themeDark_3ft6im_220._rock_3ft6im_316 ._input_3ft6im_49:disabled + ._icon_3ft6im_60 ._checkmark_3ft6im_149{
|
|
325
|
-
fill:rgba(255,255,255,0.5)
|
|
326
|
-
}
|
|
327
|
-
._themeDark_3ft6im_220._rock_3ft6im_316._error_3ft6im_36 ._icon_3ft6im_60,
|
|
328
|
-
._themeDark_3ft6im_220._rock_3ft6im_316 ._input_3ft6im_49:invalid + ._icon_3ft6im_60{
|
|
329
|
-
border-color:#F45C4A;
|
|
330
|
-
}
|
|
331
|
-
label:hover ._sizeS_3ft6im_18._themeLight_3ft6im_187._rock_3ft6im_316._enabled_3ft6im_70 > ._icon_3ft6im_60::after,
|
|
332
|
-
._sizeS_3ft6im_18._themeLight_3ft6im_187._rock_3ft6im_316._enabled_3ft6im_70:hover > ._icon_3ft6im_60::after,
|
|
333
|
-
._sizeS_3ft6im_18._themeLight_3ft6im_187._rock_3ft6im_316._enabled_3ft6im_70 ._input_3ft6im_49:focus[data-focus-method='key'] + ._icon_3ft6im_60::after,
|
|
334
|
-
._sizeS_3ft6im_18._themeLight_3ft6im_187._rock_3ft6im_316._enabled_3ft6im_70 ._input_3ft6im_49:active + ._icon_3ft6im_60::after{
|
|
309
|
+
label:hover ._sizeS_1dll53b_22._themeLight_1dll53b_193._rock_1dll53b_336._enabled_1dll53b_75 > ._icon_1dll53b_64::after,
|
|
310
|
+
._sizeS_1dll53b_22._themeLight_1dll53b_193._rock_1dll53b_336._enabled_1dll53b_75:hover > ._icon_1dll53b_64::after,
|
|
311
|
+
._sizeS_1dll53b_22._themeLight_1dll53b_193._rock_1dll53b_336._enabled_1dll53b_75 ._input_1dll53b_53:active + ._icon_1dll53b_64::after{
|
|
335
312
|
-webkit-box-shadow:0 0 0 3px rgba(25,25,28,0.1);
|
|
336
313
|
box-shadow:0 0 0 3px rgba(25,25,28,0.1);
|
|
337
314
|
}
|
|
338
|
-
label:hover .
|
|
339
|
-
.
|
|
340
|
-
.
|
|
341
|
-
._sizeS_3ft6im_18._themeDark_3ft6im_220._rock_3ft6im_316._enabled_3ft6im_70 ._input_3ft6im_49:active + ._icon_3ft6im_60::after{
|
|
315
|
+
label:hover ._sizeS_1dll53b_22._themeDark_1dll53b_218._rock_1dll53b_336._enabled_1dll53b_75 > ._icon_1dll53b_64::after,
|
|
316
|
+
._sizeS_1dll53b_22._themeDark_1dll53b_218._rock_1dll53b_336._enabled_1dll53b_75:hover > ._icon_1dll53b_64::after,
|
|
317
|
+
._sizeS_1dll53b_22._themeDark_1dll53b_218._rock_1dll53b_336._enabled_1dll53b_75 ._input_1dll53b_53:active + ._icon_1dll53b_64::after{
|
|
342
318
|
-webkit-box-shadow:0 0 0 3px rgba(255,255,255,0.1);
|
|
343
319
|
box-shadow:0 0 0 3px rgba(255,255,255,0.1);
|
|
344
320
|
}
|
|
345
|
-
label:hover .
|
|
346
|
-
.
|
|
347
|
-
.
|
|
348
|
-
._sizeM_3ft6im_24._themeLight_3ft6im_187._rock_3ft6im_316._enabled_3ft6im_70 ._input_3ft6im_49:active + ._icon_3ft6im_60::after{
|
|
321
|
+
label:hover ._sizeM_1dll53b_28._themeLight_1dll53b_193._rock_1dll53b_336._enabled_1dll53b_75 > ._icon_1dll53b_64::after,
|
|
322
|
+
._sizeM_1dll53b_28._themeLight_1dll53b_193._rock_1dll53b_336._enabled_1dll53b_75:hover > ._icon_1dll53b_64::after,
|
|
323
|
+
._sizeM_1dll53b_28._themeLight_1dll53b_193._rock_1dll53b_336._enabled_1dll53b_75 ._input_1dll53b_53:active + ._icon_1dll53b_64::after{
|
|
349
324
|
-webkit-box-shadow:0 0 0 3px rgba(25,25,28,0.1);
|
|
350
325
|
box-shadow:0 0 0 3px rgba(25,25,28,0.1);
|
|
351
326
|
}
|
|
352
|
-
label:hover .
|
|
353
|
-
.
|
|
354
|
-
.
|
|
355
|
-
._sizeM_3ft6im_24._themeDark_3ft6im_220._rock_3ft6im_316._enabled_3ft6im_70 ._input_3ft6im_49:active + ._icon_3ft6im_60::after{
|
|
327
|
+
label:hover ._sizeM_1dll53b_28._themeDark_1dll53b_218._rock_1dll53b_336._enabled_1dll53b_75 > ._icon_1dll53b_64::after,
|
|
328
|
+
._sizeM_1dll53b_28._themeDark_1dll53b_218._rock_1dll53b_336._enabled_1dll53b_75:hover > ._icon_1dll53b_64::after,
|
|
329
|
+
._sizeM_1dll53b_28._themeDark_1dll53b_218._rock_1dll53b_336._enabled_1dll53b_75 ._input_1dll53b_53:active + ._icon_1dll53b_64::after{
|
|
356
330
|
-webkit-box-shadow:0 0 0 3px rgba(255,255,255,0.1);
|
|
357
331
|
box-shadow:0 0 0 3px rgba(255,255,255,0.1);
|
|
358
332
|
}
|
|
359
|
-
label:hover .
|
|
360
|
-
.
|
|
361
|
-
.
|
|
362
|
-
._sizeL_3ft6im_30._themeLight_3ft6im_187._rock_3ft6im_316._enabled_3ft6im_70 ._input_3ft6im_49:active + ._icon_3ft6im_60::after{
|
|
333
|
+
label:hover ._sizeL_1dll53b_34._themeLight_1dll53b_193._rock_1dll53b_336._enabled_1dll53b_75 > ._icon_1dll53b_64::after,
|
|
334
|
+
._sizeL_1dll53b_34._themeLight_1dll53b_193._rock_1dll53b_336._enabled_1dll53b_75:hover > ._icon_1dll53b_64::after,
|
|
335
|
+
._sizeL_1dll53b_34._themeLight_1dll53b_193._rock_1dll53b_336._enabled_1dll53b_75 ._input_1dll53b_53:active + ._icon_1dll53b_64::after{
|
|
363
336
|
-webkit-box-shadow:0 0 0 4px rgba(25,25,28,0.1);
|
|
364
337
|
box-shadow:0 0 0 4px rgba(25,25,28,0.1);
|
|
365
338
|
}
|
|
366
|
-
label:hover .
|
|
367
|
-
.
|
|
368
|
-
.
|
|
369
|
-
._sizeL_3ft6im_30._themeDark_3ft6im_220._rock_3ft6im_316._enabled_3ft6im_70 ._input_3ft6im_49:active + ._icon_3ft6im_60::after{
|
|
339
|
+
label:hover ._sizeL_1dll53b_34._themeDark_1dll53b_218._rock_1dll53b_336._enabled_1dll53b_75 > ._icon_1dll53b_64::after,
|
|
340
|
+
._sizeL_1dll53b_34._themeDark_1dll53b_218._rock_1dll53b_336._enabled_1dll53b_75:hover > ._icon_1dll53b_64::after,
|
|
341
|
+
._sizeL_1dll53b_34._themeDark_1dll53b_218._rock_1dll53b_336._enabled_1dll53b_75 ._input_1dll53b_53:active + ._icon_1dll53b_64::after{
|
|
370
342
|
-webkit-box-shadow:0 0 0 4px rgba(255,255,255,0.1);
|
|
371
343
|
box-shadow:0 0 0 4px rgba(255,255,255,0.1);
|
|
372
344
|
}
|
|
345
|
+
._sizeS_1dll53b_22._themeLight_1dll53b_193._classic_1dll53b_249._enabled_1dll53b_75 ._input_1dll53b_53:focus[data-focus-method='key'] + ._icon_1dll53b_64::after, ._sizeS_1dll53b_22._themeLight_1dll53b_193._rock_1dll53b_336._enabled_1dll53b_75 ._input_1dll53b_53:focus[data-focus-method='key'] + ._icon_1dll53b_64::after{
|
|
346
|
+
-webkit-box-shadow:0 0 0 1px #E8E8E8, 0 0 0 3px rgba(107, 87, 255, 0.8);
|
|
347
|
+
-webkit-box-shadow:0 0 0 1px #E8E8E8, 0 0 0 3px var(--rs-color-primary-t-dim-light-theme, rgba(107, 87, 255, 0.8));
|
|
348
|
+
box-shadow:0 0 0 1px #E8E8E8, 0 0 0 3px rgba(107, 87, 255, 0.8);
|
|
349
|
+
box-shadow:0 0 0 1px #E8E8E8, 0 0 0 3px var(--rs-color-primary-t-dim-light-theme, rgba(107, 87, 255, 0.8));
|
|
350
|
+
}
|
|
351
|
+
._sizeS_1dll53b_22._themeDark_1dll53b_218._classic_1dll53b_249._enabled_1dll53b_75 ._input_1dll53b_53:focus[data-focus-method='key'] + ._icon_1dll53b_64::after, ._sizeS_1dll53b_22._themeDark_1dll53b_218._rock_1dll53b_336._enabled_1dll53b_75 ._input_1dll53b_53:focus[data-focus-method='key'] + ._icon_1dll53b_64::after{
|
|
352
|
+
-webkit-box-shadow:0 0 0 1px #303033, 0 0 0 3px rgba(132, 115, 255,0.8);
|
|
353
|
+
-webkit-box-shadow:0 0 0 1px #303033, 0 0 0 3px var(--rs-color-primary-t-dim-dark-theme, rgba(132, 115, 255,0.8));
|
|
354
|
+
box-shadow:0 0 0 1px #303033, 0 0 0 3px rgba(132, 115, 255,0.8);
|
|
355
|
+
box-shadow:0 0 0 1px #303033, 0 0 0 3px var(--rs-color-primary-t-dim-dark-theme, rgba(132, 115, 255,0.8))
|
|
356
|
+
}
|
|
357
|
+
._sizeM_1dll53b_28._themeLight_1dll53b_193._classic_1dll53b_249._enabled_1dll53b_75 ._input_1dll53b_53:focus[data-focus-method='key'] + ._icon_1dll53b_64::after, ._sizeM_1dll53b_28._themeLight_1dll53b_193._rock_1dll53b_336._enabled_1dll53b_75 ._input_1dll53b_53:focus[data-focus-method='key'] + ._icon_1dll53b_64::after{
|
|
358
|
+
-webkit-box-shadow:0 0 0 1px #E8E8E8, 0 0 0 3px rgba(107, 87, 255, 0.8);
|
|
359
|
+
-webkit-box-shadow:0 0 0 1px #E8E8E8, 0 0 0 3px var(--rs-color-primary-t-dim-light-theme, rgba(107, 87, 255, 0.8));
|
|
360
|
+
box-shadow:0 0 0 1px #E8E8E8, 0 0 0 3px rgba(107, 87, 255, 0.8);
|
|
361
|
+
box-shadow:0 0 0 1px #E8E8E8, 0 0 0 3px var(--rs-color-primary-t-dim-light-theme, rgba(107, 87, 255, 0.8));
|
|
362
|
+
}
|
|
363
|
+
._sizeM_1dll53b_28._themeDark_1dll53b_218._classic_1dll53b_249._enabled_1dll53b_75 ._input_1dll53b_53:focus[data-focus-method='key'] + ._icon_1dll53b_64::after, ._sizeM_1dll53b_28._themeDark_1dll53b_218._rock_1dll53b_336._enabled_1dll53b_75 ._input_1dll53b_53:focus[data-focus-method='key'] + ._icon_1dll53b_64::after{
|
|
364
|
+
-webkit-box-shadow:0 0 0 1px #303033, 0 0 0 3px rgba(132, 115, 255,0.8);
|
|
365
|
+
-webkit-box-shadow:0 0 0 1px #303033, 0 0 0 3px var(--rs-color-primary-t-dim-dark-theme, rgba(132, 115, 255,0.8));
|
|
366
|
+
box-shadow:0 0 0 1px #303033, 0 0 0 3px rgba(132, 115, 255,0.8);
|
|
367
|
+
box-shadow:0 0 0 1px #303033, 0 0 0 3px var(--rs-color-primary-t-dim-dark-theme, rgba(132, 115, 255,0.8))
|
|
368
|
+
}
|
|
369
|
+
._sizeL_1dll53b_34._themeLight_1dll53b_193._classic_1dll53b_249._enabled_1dll53b_75 ._input_1dll53b_53:focus[data-focus-method='key'] + ._icon_1dll53b_64::after, ._sizeL_1dll53b_34._themeLight_1dll53b_193._rock_1dll53b_336._enabled_1dll53b_75 ._input_1dll53b_53:focus[data-focus-method='key'] + ._icon_1dll53b_64::after{
|
|
370
|
+
-webkit-box-shadow:0 0 0 1px #E8E8E8, 0 0 0 4px rgba(107, 87, 255, 0.8);
|
|
371
|
+
-webkit-box-shadow:0 0 0 1px #E8E8E8, 0 0 0 4px var(--rs-color-primary-t-dim-light-theme, rgba(107, 87, 255, 0.8));
|
|
372
|
+
box-shadow:0 0 0 1px #E8E8E8, 0 0 0 4px rgba(107, 87, 255, 0.8);
|
|
373
|
+
box-shadow:0 0 0 1px #E8E8E8, 0 0 0 4px var(--rs-color-primary-t-dim-light-theme, rgba(107, 87, 255, 0.8));
|
|
374
|
+
}
|
|
375
|
+
._sizeL_1dll53b_34._themeDark_1dll53b_218._classic_1dll53b_249._enabled_1dll53b_75 ._input_1dll53b_53:focus[data-focus-method='key'] + ._icon_1dll53b_64::after, ._sizeL_1dll53b_34._themeDark_1dll53b_218._rock_1dll53b_336._enabled_1dll53b_75 ._input_1dll53b_53:focus[data-focus-method='key'] + ._icon_1dll53b_64::after{
|
|
376
|
+
-webkit-box-shadow:0 0 0 1px #303033, 0 0 0 4px rgba(132, 115, 255,0.8);
|
|
377
|
+
-webkit-box-shadow:0 0 0 1px #303033, 0 0 0 4px var(--rs-color-primary-t-dim-dark-theme, rgba(132, 115, 255,0.8));
|
|
378
|
+
box-shadow:0 0 0 1px #303033, 0 0 0 4px rgba(132, 115, 255,0.8);
|
|
379
|
+
box-shadow:0 0 0 1px #303033, 0 0 0 4px var(--rs-color-primary-t-dim-dark-theme, rgba(132, 115, 255,0.8))
|
|
380
|
+
}
|
|
373
381
|
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
var styles = {
|
|
2
|
-
"checkbox": "
|
|
3
|
-
"sizeS": "
|
|
4
|
-
"sizeM": "
|
|
5
|
-
"sizeL": "
|
|
6
|
-
"errorMessage": "
|
|
7
|
-
"rs-reset-letter-spacing": "_rs-reset-letter-
|
|
8
|
-
"list": "
|
|
9
|
-
"single": "
|
|
10
|
-
"input": "
|
|
11
|
-
"icon": "
|
|
12
|
-
"enabled": "
|
|
13
|
-
"indeterminate": "
|
|
14
|
-
"disabled": "
|
|
15
|
-
"checkmark": "
|
|
16
|
-
"themeLight": "
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"rock": "
|
|
2
|
+
"checkbox": "_checkbox_1dll53b_10",
|
|
3
|
+
"sizeS": "_sizeS_1dll53b_22",
|
|
4
|
+
"sizeM": "_sizeM_1dll53b_28",
|
|
5
|
+
"sizeL": "_sizeL_1dll53b_34",
|
|
6
|
+
"errorMessage": "_errorMessage_1dll53b_40",
|
|
7
|
+
"rs-reset-letter-spacing": "_rs-reset-letter-spacing_1dll53b_1",
|
|
8
|
+
"list": "_list_1dll53b_44",
|
|
9
|
+
"single": "_single_1dll53b_48",
|
|
10
|
+
"input": "_input_1dll53b_53",
|
|
11
|
+
"icon": "_icon_1dll53b_64",
|
|
12
|
+
"enabled": "_enabled_1dll53b_75",
|
|
13
|
+
"indeterminate": "_indeterminate_1dll53b_95",
|
|
14
|
+
"disabled": "_disabled_1dll53b_120",
|
|
15
|
+
"checkmark": "_checkmark_1dll53b_156",
|
|
16
|
+
"themeLight": "_themeLight_1dll53b_193",
|
|
17
|
+
"error": "_error_1dll53b_40",
|
|
18
|
+
"themeDark": "_themeDark_1dll53b_218",
|
|
19
|
+
"classic": "_classic_1dll53b_249",
|
|
20
|
+
"rock": "_rock_1dll53b_336"
|
|
21
21
|
};
|
|
22
22
|
export default styles;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rescui/checkbox",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "JetBrains",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/runtime-corejs3": "^7.14.0",
|
|
19
|
-
"@rescui/menu": "^0.
|
|
19
|
+
"@rescui/menu": "^0.5.0",
|
|
20
20
|
"classnames": "^2.2.6",
|
|
21
21
|
"core-js": "^3.9.1"
|
|
22
22
|
},
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"@rescui/colors": "^0.1.0",
|
|
30
30
|
"@rescui/postcss-preset-library": "^0.0.4",
|
|
31
31
|
"@rescui/scripts": "^0.1.4",
|
|
32
|
-
"@rescui/typography": "^0.
|
|
32
|
+
"@rescui/typography": "^0.7.0",
|
|
33
33
|
"@rescui/visual-regression": "^0.0.1"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "rescui-scripts build"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "b9d865165f162732befa0868ea1325d064313d9e"
|
|
39
39
|
}
|