@rescui/checkbox 0.8.6 → 0.8.7-RUI-226-Update-card-cn-baacc2f1.68

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.
@@ -1,10 +1,15 @@
1
1
  var styles = {
2
- "icon": "_icon_ons1cf_4",
3
- "sizeXS": "_sizeXS_ons1cf_14",
4
- "sizeS": "_sizeS_ons1cf_18",
5
- "sizeM": "_sizeM_ons1cf_22",
6
- "sizeL": "_sizeL_ons1cf_26",
7
- "light": "_light_ons1cf_30",
8
- "dark": "_dark_ons1cf_34"
2
+ "icon": "_icon_1bfqf1a_4",
3
+ "sizeXS": "_sizeXS_1bfqf1a_14",
4
+ "sizeS": "_sizeS_1bfqf1a_18",
5
+ "sizeM": "_sizeM_1bfqf1a_22",
6
+ "sizeL": "_sizeL_1bfqf1a_26",
7
+ "light": "_light_1bfqf1a_30",
8
+ "dark": "_dark_1bfqf1a_34",
9
+ "allVariants": "_allVariants_1bfqf1a_48",
10
+ "variant16": "_variant16_1bfqf1a_53",
11
+ "variant20": "_variant20_1bfqf1a_54",
12
+ "variant24": "_variant24_1bfqf1a_55",
13
+ "variant28": "_variant28_1bfqf1a_58"
9
14
  };
10
15
  export { styles as default };
@@ -9,28 +9,98 @@ const sizeStyles = {
9
9
  "m": styles.sizeM,
10
10
  "l": styles.sizeL
11
11
  };
12
+ const Size = {
13
+ "xs": "xs",
14
+ "s": "s",
15
+ "m": "m",
16
+ "l": "l"
17
+ };
18
+ const WarningIcon16 = /*#__PURE__*/React.forwardRef((props, ref) => /*#__PURE__*/React.createElement("svg", _extends({
19
+ viewBox: "0 0 16 16"
20
+ }, props, {
21
+ ref: ref
22
+ }), /*#__PURE__*/React.createElement("path", {
23
+ d: "m6.303 1.989-5.027 8.874C.483 12.263 1.494 14 3.103 14h9.793c1.609 0 2.62-1.736 1.827-3.137L9.696 1.99C8.949.67 7.05.67 6.303 1.989M8 12a1 1 0 1 1 0-2 1 1 0 0 1 0 2m0-8a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0v-4A.5.5 0 0 1 8 4"
24
+ })));
25
+ WarningIcon16.displayName = 'WarningIcon16';
26
+ const WarningIcon20 = /*#__PURE__*/React.forwardRef((props, ref) => /*#__PURE__*/React.createElement("svg", _extends({
27
+ viewBox: "0 0 20 20"
28
+ }, props, {
29
+ ref: ref
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ d: "m8.042 3.141-5.8 10.24C1.327 14.997 2.494 17 4.35 17h11.3c1.856 0 3.023-2.003 2.108-3.62l-5.8-10.239c-.862-1.521-3.054-1.521-3.916 0M10 5.25a.75.75 0 0 1 .75.75v5a.75.75 0 0 1-1.5 0V6a.75.75 0 0 1 .75-.75m0 9.25a1 1 0 1 1 0-2 1 1 0 0 1 0 2"
32
+ })));
33
+ WarningIcon20.displayName = 'WarningIcon20';
34
+ const WarningIcon24 = /*#__PURE__*/React.forwardRef((props, ref) => /*#__PURE__*/React.createElement("svg", _extends({
35
+ viewBox: "0 0 24 24"
36
+ }, props, {
37
+ ref: ref
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ d: "m9.52 3.446-7.346 12.97C1.014 18.463 2.492 21 4.844 21h14.312c2.352 0 3.83-2.537 2.67-4.584L14.48 3.446c-1.092-1.928-3.868-1.928-4.96 0M12 7a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1m0 11a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3"
40
+ })));
41
+ WarningIcon24.displayName = 'WarningIcon24';
42
+ const WarningIcon28 = /*#__PURE__*/React.forwardRef((props, ref) => /*#__PURE__*/React.createElement("svg", _extends({
43
+ viewBox: "0 0 28 28"
44
+ }, props, {
45
+ ref: ref
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ d: "M11.26 4.598 3.14 18.933C1.858 21.195 3.492 24 6.09 24h15.82c2.599 0 4.232-2.805 2.951-5.067l-8.12-14.335c-1.207-2.13-4.275-2.13-5.481 0M14 8a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V9a1 1 0 0 1 1-1m0 12a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3"
48
+ })));
49
+ WarningIcon28.displayName = 'WarningIcon28';
12
50
  const WarningIcon = /*#__PURE__*/React.forwardRef((_ref, ref) => {
13
51
  let {
14
52
  theme,
15
- size,
53
+ size: sizeFromProps = "m",
16
54
  className,
55
+ style,
56
+ ['data-render-all-sizes']: renderAllSizes = false,
17
57
  ...props
18
58
  } = _ref;
19
- return /*#__PURE__*/React.createElement("svg", _extends({
20
- viewBox: "0 0 24 24"
21
- }, props, {
22
- className: cn(styles.icon, styles[theme], sizeStyles[size], className),
23
- ref: ref
24
- }), /*#__PURE__*/React.createElement("path", {
25
- d: "M2.769 20h18.363a.615.615 0 00.546-.891L12.504 2.8a.566.566 0 00-.989-.002C9.8 5.891 4.026 16.101 2.322 19.112A.61.61 0 002.77 20zm8.229-12h2v6h-2V8zm0 8h2v2h-2v-2z"
26
- }));
59
+ const size = sizeFromProps in Size ? sizeFromProps : "m";
60
+ const mainProps = { ...props,
61
+ className: cn(styles.icon, styles[theme], sizeStyles[size], renderAllSizes && styles.allVariants, className),
62
+ style: renderAllSizes ? {
63
+ '--rs-icon-ar-width': 28,
64
+ '--rs-icon-ar-height': 28,
65
+ ...style
66
+ } : style,
67
+ ref
68
+ };
69
+
70
+ if (renderAllSizes) {
71
+ return /*#__PURE__*/React.createElement("svg", _extends({
72
+ viewBox: "0 0 28 28"
73
+ }, mainProps), /*#__PURE__*/React.createElement(WarningIcon16, {
74
+ className: styles.variant16
75
+ }), /*#__PURE__*/React.createElement(WarningIcon20, {
76
+ className: styles.variant20
77
+ }), /*#__PURE__*/React.createElement(WarningIcon24, {
78
+ className: styles.variant24
79
+ }), /*#__PURE__*/React.createElement(WarningIcon28, {
80
+ className: styles.variant28
81
+ }));
82
+ }
83
+
84
+ if (size === Size['xs']) {
85
+ return /*#__PURE__*/React.createElement(WarningIcon16, mainProps);
86
+ }
87
+
88
+ if (size === Size['s']) {
89
+ return /*#__PURE__*/React.createElement(WarningIcon20, mainProps);
90
+ }
91
+
92
+ if (size === Size['m']) {
93
+ return /*#__PURE__*/React.createElement(WarningIcon24, mainProps);
94
+ }
95
+
96
+ return /*#__PURE__*/React.createElement(WarningIcon28, mainProps);
27
97
  });
98
+ WarningIcon.displayName = 'WarningIcon';
28
99
  WarningIcon.propTypes = {
29
100
  className: PropTypes.string,
30
101
  theme: PropTypes.oneOf(["light", "dark"]),
31
- size: PropTypes.oneOf(["xs", "s", "m", "l"])
32
- };
33
- WarningIcon.defaultProps = {
34
- size: "m"
102
+ size: PropTypes.oneOf(["xs", "s", "m", "l"]),
103
+ 'data-render-all-sizes': PropTypes.bool,
104
+ style: PropTypes.object
35
105
  };
36
- export { WarningIcon as default };
106
+ export { Size, WarningIcon as default };
package/lib/checkbox.js CHANGED
@@ -4,8 +4,8 @@ import { MenuItem } from '@rescui/menu';
4
4
  import { useThemeWithUndefined } from '@rescui/ui-contexts';
5
5
  import cn from 'classnames';
6
6
  import WarningIcon from './_virtual/warning.js';
7
- import CheckboxControl from './parts/checkbox-control.js';
8
7
  import { GroupContext } from './parts/group-context.js';
8
+ import CheckboxControl from './parts/checkbox-control.js';
9
9
  import styles from './parts/checkbox.p.module.css.js';
10
10
  const THEME_STYLES = {
11
11
  light: styles.themeLight,
@@ -68,7 +68,8 @@ const Checkbox = /*#__PURE__*/React.forwardRef(function Checkbox(_ref, ref) {
68
68
  "data-rs-internal": "checkbox__error-message"
69
69
  }, /*#__PURE__*/React.createElement(WarningIcon, {
70
70
  "data-rs-internal": "checkbox__error-icon",
71
- className: styles.errorIcon
71
+ className: styles.errorIcon,
72
+ "data-render-all-sizes": true
72
73
  }), /*#__PURE__*/React.createElement("span", null, error)));
73
74
  });
74
75
  Checkbox.propTypes = {
package/lib/index.css CHANGED
@@ -1,4 +1,4 @@
1
- ._icon_ons1cf_4{
1
+ ._icon_1bfqf1a_4{
2
2
  --_rs-theme-dark:var(
3
3
  --_rs-internal-force-theme-dark-consult-rescui-before-using,
4
4
  var(--rs-theme-dark, 0)
@@ -8,7 +8,7 @@
8
8
  --_rs-theme-light-coefficient:calc(1 - var(--_rs-theme-dark-coefficient));
9
9
  }
10
10
  @supports (color: color-mix(in srgb, #fff 50%, #000 50%)){
11
- ._icon_ons1cf_4{
11
+ ._icon_1bfqf1a_4{
12
12
  --_rs-color-primary:color-mix(in srgb, var(--rs-color-primary-light-theme, #6B57FF) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-dark-theme, #8473FF) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
13
13
  --_rs-color-primary-dim:color-mix(in srgb, var(--rs-color-primary-dim-light-theme, #8979ff) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-dim-dark-theme, #6f61d2) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
14
14
  --_rs-color-primary-fog:color-mix(in srgb, var(--rs-color-primary-fog-light-theme, #e1ddff) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-fog-dark-theme, #2e2b49) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
@@ -17,7 +17,7 @@
17
17
  }
18
18
  }
19
19
  @supports not (color: color-mix(in srgb, #fff 50%, #000 50%)){
20
- ._icon_ons1cf_4{
20
+ ._icon_1bfqf1a_4{
21
21
  --_rs-color-primary:rgb(calc(var(--_rs-theme-light-coefficient, 1)*107 + var(--_rs-theme-dark-coefficient, 0)*132), calc(var(--_rs-theme-light-coefficient, 1)*87 + var(--_rs-theme-dark-coefficient, 0)*115), 255);
22
22
  --_rs-color-primary-dim:rgb(calc(var(--_rs-theme-light-coefficient, 1)*137 + var(--_rs-theme-dark-coefficient, 0)*111), calc(var(--_rs-theme-light-coefficient, 1)*121 + var(--_rs-theme-dark-coefficient, 0)*97), calc(var(--_rs-theme-light-coefficient, 1)*255 + var(--_rs-theme-dark-coefficient, 0)*210));
23
23
  --_rs-color-primary-fog:rgb(calc(var(--_rs-theme-light-coefficient, 1)*225 + var(--_rs-theme-dark-coefficient, 0)*46), calc(var(--_rs-theme-light-coefficient, 1)*221 + var(--_rs-theme-dark-coefficient, 0)*43), calc(var(--_rs-theme-light-coefficient, 1)*255 + var(--_rs-theme-dark-coefficient, 0)*73));
@@ -25,30 +25,30 @@
25
25
  --_rs-color-primary-t-fog:rgba(calc(var(--_rs-theme-light-coefficient, 1)*107 + var(--_rs-theme-dark-coefficient, 0)*132), calc(var(--_rs-theme-light-coefficient, 1)*87 + var(--_rs-theme-dark-coefficient, 0)*115), 255, calc(var(--_rs-theme-light-coefficient, 1)*0.2 + var(--_rs-theme-dark-coefficient, 0)*0.3));
26
26
  }
27
27
  }
28
- ._icon_ons1cf_4{
28
+ ._icon_1bfqf1a_4{
29
29
 
30
30
  fill:var(--_rs-icons-themed-fill-or-initial, currentcolor);
31
31
 
32
32
  width:auto;
33
33
  height:var(--_rs-icons-height);
34
34
  }
35
- ._sizeXS_ons1cf_14{
35
+ ._sizeXS_1bfqf1a_14{
36
36
  --_rs-icons-height:16px;
37
37
  }
38
- ._sizeS_ons1cf_18{
38
+ ._sizeS_1bfqf1a_18{
39
39
  --_rs-icons-height:20px;
40
40
  }
41
- ._sizeM_ons1cf_22{
41
+ ._sizeM_1bfqf1a_22{
42
42
  --_rs-icons-height:24px;
43
43
  }
44
- ._sizeL_ons1cf_26{
44
+ ._sizeL_1bfqf1a_26{
45
45
  --_rs-icons-height:28px;
46
46
  }
47
- ._light_ons1cf_30{
47
+ ._light_1bfqf1a_30{
48
48
  --rs-theme-dark:0;
49
49
  --_rs-icons-themed-fill-or-initial:rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227));
50
50
  }
51
- ._dark_ons1cf_34{
51
+ ._dark_1bfqf1a_34{
52
52
  --rs-theme-dark:1;
53
53
  --_rs-icons-themed-fill-or-initial:rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227));
54
54
  }
@@ -60,13 +60,49 @@
60
60
  transform:rotate(360deg);
61
61
  }
62
62
  }
63
- ._themeLight_nb2jpb_8{
63
+ ._allVariants_1bfqf1a_48{
64
+ aspect-ratio:var(--rs-icon-ar-width, 1) / var(--rs-icon-ar-height, 1);
65
+ container:rs-icon / size;
66
+ }
67
+ ._variant16_1bfqf1a_53,
68
+ ._variant20_1bfqf1a_54,
69
+ ._variant24_1bfqf1a_55{
70
+ display:none;
71
+ }
72
+ ._variant28_1bfqf1a_58{
73
+ display:block;
74
+ }
75
+ @container rs-icon (max-height: 24px){
76
+ ._variant24_1bfqf1a_55{
77
+ display:block;
78
+ }
79
+ ._variant28_1bfqf1a_58{
80
+ display:none;
81
+ }
82
+ }
83
+ @container rs-icon (max-height: 20px){
84
+ ._variant20_1bfqf1a_54{
85
+ display:block;
86
+ }
87
+ ._variant24_1bfqf1a_55{
88
+ display:none;
89
+ }
90
+ }
91
+ @container rs-icon (max-height: 16px){
92
+ ._variant16_1bfqf1a_53{
93
+ display:block;
94
+ }
95
+ ._variant20_1bfqf1a_54{
96
+ display:none;
97
+ }
98
+ }
99
+ ._themeLight_13ki7g7_8{
64
100
  --rs-theme-dark:0;
65
101
  }
66
- ._themeDark_nb2jpb_11{
102
+ ._themeDark_13ki7g7_11{
67
103
  --rs-theme-dark:1;
68
104
  }
69
- ._container_nb2jpb_15{
105
+ ._container_13ki7g7_15{
70
106
  --_rs-theme-dark:var(
71
107
  --_rs-internal-force-theme-dark-consult-rescui-before-using,
72
108
  var(--rs-theme-dark, 0)
@@ -76,7 +112,7 @@
76
112
  --_rs-theme-light-coefficient:calc(1 - var(--_rs-theme-dark-coefficient));
77
113
  }
78
114
  @supports (color: color-mix(in srgb, #fff 50%, #000 50%)){
79
- ._container_nb2jpb_15{
115
+ ._container_13ki7g7_15{
80
116
  --_rs-color-primary:color-mix(in srgb, var(--rs-color-primary-light-theme, #6B57FF) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-dark-theme, #8473FF) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
81
117
  --_rs-color-primary-dim:color-mix(in srgb, var(--rs-color-primary-dim-light-theme, #8979ff) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-dim-dark-theme, #6f61d2) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
82
118
  --_rs-color-primary-fog:color-mix(in srgb, var(--rs-color-primary-fog-light-theme, #e1ddff) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-fog-dark-theme, #2e2b49) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
@@ -85,7 +121,7 @@
85
121
  }
86
122
  }
87
123
  @supports not (color: color-mix(in srgb, #fff 50%, #000 50%)){
88
- ._container_nb2jpb_15{
124
+ ._container_13ki7g7_15{
89
125
  --_rs-color-primary:rgb(calc(var(--_rs-theme-light-coefficient, 1)*107 + var(--_rs-theme-dark-coefficient, 0)*132), calc(var(--_rs-theme-light-coefficient, 1)*87 + var(--_rs-theme-dark-coefficient, 0)*115), 255);
90
126
  --_rs-color-primary-dim:rgb(calc(var(--_rs-theme-light-coefficient, 1)*137 + var(--_rs-theme-dark-coefficient, 0)*111), calc(var(--_rs-theme-light-coefficient, 1)*121 + var(--_rs-theme-dark-coefficient, 0)*97), calc(var(--_rs-theme-light-coefficient, 1)*255 + var(--_rs-theme-dark-coefficient, 0)*210));
91
127
  --_rs-color-primary-fog:rgb(calc(var(--_rs-theme-light-coefficient, 1)*225 + var(--_rs-theme-dark-coefficient, 0)*46), calc(var(--_rs-theme-light-coefficient, 1)*221 + var(--_rs-theme-dark-coefficient, 0)*43), calc(var(--_rs-theme-light-coefficient, 1)*255 + var(--_rs-theme-dark-coefficient, 0)*73));
@@ -93,8 +129,8 @@
93
129
  --_rs-color-primary-t-fog:rgba(calc(var(--_rs-theme-light-coefficient, 1)*107 + var(--_rs-theme-dark-coefficient, 0)*132), calc(var(--_rs-theme-light-coefficient, 1)*87 + var(--_rs-theme-dark-coefficient, 0)*115), 255, calc(var(--_rs-theme-light-coefficient, 1)*0.2 + var(--_rs-theme-dark-coefficient, 0)*0.3));
94
130
  }
95
131
  }
96
- ._listSizeS_nb2jpb_20 [data-rs-internal='checkbox-list__error-message']{
97
- --_rs-typography-letter-spacing:normal;
132
+ ._listSizeS_13ki7g7_20 [data-rs-internal='checkbox-list__error-message']{
133
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
98
134
  --_rs-typography-text-transform:initial;
99
135
  --_rs-typography-font-variant-numeric:initial;
100
136
  --_rs-typography-font-family:var(
@@ -124,11 +160,11 @@
124
160
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
125
161
  --_rs-typography-link-border-bottom-width-from-text:2px;
126
162
  }
127
- ._listSizeS_nb2jpb_20 [data-rs-internal='checkbox-list__error-icon']:not(html){
163
+ ._listSizeS_13ki7g7_20 [data-rs-internal='checkbox-list__error-icon']:not(html){
128
164
  --_rs-icons-height:20px;
129
165
  }
130
- ._listSizeM_nb2jpb_23 [data-rs-internal='checkbox-list__error-message']{
131
- --_rs-typography-letter-spacing:normal;
166
+ ._listSizeM_13ki7g7_23 [data-rs-internal='checkbox-list__error-message']{
167
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
132
168
  --_rs-typography-text-transform:initial;
133
169
  --_rs-typography-font-variant-numeric:initial;
134
170
  --_rs-typography-font-family:var(
@@ -158,11 +194,11 @@
158
194
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
159
195
  --_rs-typography-link-border-bottom-width-from-text:2px;
160
196
  }
161
- ._listSizeM_nb2jpb_23 [data-rs-internal='checkbox-list__error-icon']:not(html){
197
+ ._listSizeM_13ki7g7_23 [data-rs-internal='checkbox-list__error-icon']:not(html){
162
198
  --_rs-icons-height:20px;
163
199
  }
164
- ._listSizeL_nb2jpb_26 [data-rs-internal='checkbox-list__error-message']{
165
- --_rs-typography-letter-spacing:normal;
200
+ ._listSizeL_13ki7g7_26 [data-rs-internal='checkbox-list__error-message']{
201
+ --_rs-typography-letter-spacing:var(--rs-h4-letter-spacing, normal);
166
202
  --_rs-typography-text-transform:initial;
167
203
  --_rs-typography-font-variant-numeric:initial;
168
204
  --_rs-typography-font-family:var(
@@ -192,11 +228,11 @@
192
228
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
193
229
  --_rs-typography-link-border-bottom-width-from-text:2px;
194
230
  }
195
- ._listSizeL_nb2jpb_26 [data-rs-internal='checkbox-list__error-icon']:not(html){
231
+ ._listSizeL_13ki7g7_26 [data-rs-internal='checkbox-list__error-icon']:not(html){
196
232
  --_rs-icons-height:24px;
197
233
  }
198
- ._checkboxSizeS_nb2jpb_30 [data-rs-internal='checkbox__error-message']{
199
- --_rs-typography-letter-spacing:normal;
234
+ ._checkboxSizeS_13ki7g7_30 [data-rs-internal='checkbox__error-message']{
235
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
200
236
  --_rs-typography-text-transform:initial;
201
237
  --_rs-typography-font-variant-numeric:initial;
202
238
  --_rs-typography-font-family:var(
@@ -226,11 +262,11 @@
226
262
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
227
263
  --_rs-typography-link-border-bottom-width-from-text:2px;
228
264
  }
229
- ._checkboxSizeS_nb2jpb_30 [data-rs-internal='checkbox__error-icon']:not(html){
265
+ ._checkboxSizeS_13ki7g7_30 [data-rs-internal='checkbox__error-icon']:not(html){
230
266
  --_rs-icons-height:20px;
231
267
  }
232
- ._checkboxSizeM_nb2jpb_33 [data-rs-internal='checkbox__error-message']{
233
- --_rs-typography-letter-spacing:normal;
268
+ ._checkboxSizeM_13ki7g7_33 [data-rs-internal='checkbox__error-message']{
269
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
234
270
  --_rs-typography-text-transform:initial;
235
271
  --_rs-typography-font-variant-numeric:initial;
236
272
  --_rs-typography-font-family:var(
@@ -260,11 +296,11 @@
260
296
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
261
297
  --_rs-typography-link-border-bottom-width-from-text:2px;
262
298
  }
263
- ._checkboxSizeM_nb2jpb_33 [data-rs-internal='checkbox__error-icon']:not(html){
299
+ ._checkboxSizeM_13ki7g7_33 [data-rs-internal='checkbox__error-icon']:not(html){
264
300
  --_rs-icons-height:20px;
265
301
  }
266
- ._checkboxSizeL_nb2jpb_36 [data-rs-internal='checkbox__error-message']{
267
- --_rs-typography-letter-spacing:normal;
302
+ ._checkboxSizeL_13ki7g7_36 [data-rs-internal='checkbox__error-message']{
303
+ --_rs-typography-letter-spacing:var(--rs-h4-letter-spacing, normal);
268
304
  --_rs-typography-text-transform:initial;
269
305
  --_rs-typography-font-variant-numeric:initial;
270
306
  --_rs-typography-font-family:var(
@@ -294,10 +330,10 @@
294
330
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
295
331
  --_rs-typography-link-border-bottom-width-from-text:2px;
296
332
  }
297
- ._checkboxSizeL_nb2jpb_36 [data-rs-internal='checkbox__error-icon']:not(html){
333
+ ._checkboxSizeL_13ki7g7_36 [data-rs-internal='checkbox__error-icon']:not(html){
298
334
  --_rs-icons-height:24px;
299
335
  }
300
- ._sizeS_nb2jpb_40{
336
+ ._sizeS_13ki7g7_40{
301
337
  --_rs-checkbox-ci-mark-s-display:initial;
302
338
  --_rs-checkbox-ci-mark-m-display:none;
303
339
  --_rs-checkbox-ci-mark-l-display:none;
@@ -305,7 +341,7 @@
305
341
  --_rs-checkbox-ci-shadow-size:3px;
306
342
  --_rs-checkbox-ci-indeterminate-icon-border-width:6px 3px;
307
343
  }
308
- ._sizeM_nb2jpb_43{
344
+ ._sizeM_13ki7g7_43{
309
345
  --_rs-checkbox-ci-mark-s-display:none;
310
346
  --_rs-checkbox-ci-mark-m-display:initial;
311
347
  --_rs-checkbox-ci-mark-l-display:none;
@@ -313,7 +349,7 @@
313
349
  --_rs-checkbox-ci-shadow-size:3px;
314
350
  --_rs-checkbox-ci-indeterminate-icon-border-width:8px 3px;
315
351
  }
316
- ._sizeL_nb2jpb_46{
352
+ ._sizeL_13ki7g7_46{
317
353
  --_rs-checkbox-ci-mark-s-display:none;
318
354
  --_rs-checkbox-ci-mark-m-display:none;
319
355
  --_rs-checkbox-ci-mark-l-display:initial;
@@ -321,14 +357,14 @@
321
357
  --_rs-checkbox-ci-shadow-size:4px;
322
358
  --_rs-checkbox-ci-indeterminate-icon-border-width:9px 3px;
323
359
  }
324
- ._classic_nb2jpb_50{
360
+ ._classic_13ki7g7_50{
325
361
  --_rs-checkbox-ci-mark-color:#FFFFFF;
326
362
  --_rs-checkbox-ci-indeterminate-icon-border-color:var(--_rs-color-primary);
327
363
  --_rs-checkbox-ci-indeterminate-icon-background-color:#FFFFFF;
328
364
  --_rs-checkbox-ci-checked-icon-border-color:var(--_rs-color-primary);
329
365
  --_rs-checkbox-ci-hover-icon-box-shadow:var(--_rs-color-primary-t-fog);
330
366
  }
331
- ._rock_nb2jpb_53{
367
+ ._rock_13ki7g7_53{
332
368
  --_rs-checkbox-ci-mark-color:rgb(calc(255 - var(--_rs-theme-dark-coefficient, 0)*230), calc(255 - var(--_rs-theme-dark-coefficient, 0)*230), calc(255 - var(--_rs-theme-dark-coefficient, 0)*227));
333
369
  --_rs-checkbox-ci-indeterminate-icon-border-color:rgb(
334
370
  calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227)
@@ -344,7 +380,7 @@
344
380
  0.1
345
381
  );
346
382
  }
347
- ._checkbox_nb2jpb_30{
383
+ ._checkbox_13ki7g7_30{
348
384
  --_rs-theme-dark:var(
349
385
  --_rs-internal-force-theme-dark-consult-rescui-before-using,
350
386
  var(--rs-theme-dark, 0)
@@ -354,7 +390,7 @@
354
390
  --_rs-theme-light-coefficient:calc(1 - var(--_rs-theme-dark-coefficient));
355
391
  }
356
392
  @supports (color: color-mix(in srgb, #fff 50%, #000 50%)){
357
- ._checkbox_nb2jpb_30{
393
+ ._checkbox_13ki7g7_30{
358
394
  --_rs-color-primary:color-mix(in srgb, var(--rs-color-primary-light-theme, #6B57FF) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-dark-theme, #8473FF) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
359
395
  --_rs-color-primary-dim:color-mix(in srgb, var(--rs-color-primary-dim-light-theme, #8979ff) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-dim-dark-theme, #6f61d2) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
360
396
  --_rs-color-primary-fog:color-mix(in srgb, var(--rs-color-primary-fog-light-theme, #e1ddff) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-fog-dark-theme, #2e2b49) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
@@ -363,7 +399,7 @@
363
399
  }
364
400
  }
365
401
  @supports not (color: color-mix(in srgb, #fff 50%, #000 50%)){
366
- ._checkbox_nb2jpb_30{
402
+ ._checkbox_13ki7g7_30{
367
403
  --_rs-color-primary:rgb(calc(var(--_rs-theme-light-coefficient, 1)*107 + var(--_rs-theme-dark-coefficient, 0)*132), calc(var(--_rs-theme-light-coefficient, 1)*87 + var(--_rs-theme-dark-coefficient, 0)*115), 255);
368
404
  --_rs-color-primary-dim:rgb(calc(var(--_rs-theme-light-coefficient, 1)*137 + var(--_rs-theme-dark-coefficient, 0)*111), calc(var(--_rs-theme-light-coefficient, 1)*121 + var(--_rs-theme-dark-coefficient, 0)*97), calc(var(--_rs-theme-light-coefficient, 1)*255 + var(--_rs-theme-dark-coefficient, 0)*210));
369
405
  --_rs-color-primary-fog:rgb(calc(var(--_rs-theme-light-coefficient, 1)*225 + var(--_rs-theme-dark-coefficient, 0)*46), calc(var(--_rs-theme-light-coefficient, 1)*221 + var(--_rs-theme-dark-coefficient, 0)*43), calc(var(--_rs-theme-light-coefficient, 1)*255 + var(--_rs-theme-dark-coefficient, 0)*73));
@@ -371,7 +407,7 @@
371
407
  --_rs-color-primary-t-fog:rgba(calc(var(--_rs-theme-light-coefficient, 1)*107 + var(--_rs-theme-dark-coefficient, 0)*132), calc(var(--_rs-theme-light-coefficient, 1)*87 + var(--_rs-theme-dark-coefficient, 0)*115), 255, calc(var(--_rs-theme-light-coefficient, 1)*0.2 + var(--_rs-theme-dark-coefficient, 0)*0.3));
372
408
  }
373
409
  }
374
- ._checkbox_nb2jpb_30 {
410
+ ._checkbox_13ki7g7_30 {
375
411
 
376
412
  position:relative;
377
413
 
@@ -386,7 +422,7 @@
386
422
 
387
423
  text-align:left;
388
424
  }
389
- ._errorMessage_nb2jpb_79{
425
+ ._errorMessage_13ki7g7_79{
390
426
  letter-spacing:var(
391
427
  --rs-text-base-letter-spacing,
392
428
  var(--_rs-typography-letter-spacing)
@@ -406,15 +442,15 @@
406
442
  -moz-column-gap:8px;
407
443
  column-gap:8px;
408
444
  }
409
- ._errorMessage_nb2jpb_79._list_nb2jpb_20{
445
+ ._errorMessage_13ki7g7_79._list_13ki7g7_20{
410
446
  margin-bottom:8px;
411
447
  }
412
- ._errorIcon_nb2jpb_93{
448
+ ._errorIcon_13ki7g7_93{
413
449
  flex:0 0 auto;
414
450
 
415
451
  color:#F45C4A;
416
452
  }
417
- ._input_nb2jpb_99{
453
+ ._input_13ki7g7_99{
418
454
  position:absolute;
419
455
  z-index:-1;
420
456
 
@@ -424,7 +460,7 @@
424
460
 
425
461
  border:0;
426
462
  }
427
- ._icon_nb2jpb_110{
463
+ ._icon_13ki7g7_110{
428
464
  display:inline-block;
429
465
  float:left;
430
466
 
@@ -440,17 +476,17 @@
440
476
 
441
477
  transition:border-width ease-out 100ms, border-color ease-out 100ms;
442
478
  }
443
- ._enabled_nb2jpb_126 ._icon_nb2jpb_110{
479
+ ._enabled_13ki7g7_126 ._icon_13ki7g7_110{
444
480
  cursor:pointer;
445
481
  }
446
- ._indeterminate_nb2jpb_130 ._icon_nb2jpb_110{
482
+ ._indeterminate_13ki7g7_130 ._icon_13ki7g7_110{
447
483
  border-width:var(--_rs-checkbox-ci-indeterminate-icon-border-width);
448
484
  }
449
- ._input_nb2jpb_99:checked + ._icon_nb2jpb_110{
485
+ ._input_13ki7g7_99:checked + ._icon_13ki7g7_110{
450
486
  border-width:calc(var(--_rs-checkbox-ci-size)/2);
451
487
  }
452
- ._disabled_nb2jpb_138 ._icon_nb2jpb_110._icon_nb2jpb_110,
453
- ._input_nb2jpb_99:disabled + ._icon_nb2jpb_110{
488
+ ._disabled_13ki7g7_138 ._icon_13ki7g7_110._icon_13ki7g7_110,
489
+ ._input_13ki7g7_99:disabled + ._icon_13ki7g7_110{
454
490
  border-color:rgb(calc(186 - var(--_rs-theme-dark-coefficient, 0)*92), calc(186 - var(--_rs-theme-dark-coefficient, 0)*92), calc(187 - var(--_rs-theme-dark-coefficient, 0)*91));
455
491
 
456
492
  cursor:not-allowed;
@@ -458,27 +494,27 @@
458
494
 
459
495
  background:rgb(calc(244 - var(--_rs-theme-dark-coefficient, 0)*196), calc(244 - var(--_rs-theme-dark-coefficient, 0)*196), calc(244 - var(--_rs-theme-dark-coefficient, 0)*193));
460
496
  }
461
- ._input_nb2jpb_99:hover + ._icon_nb2jpb_110,
462
- ._enabled_nb2jpb_126:hover ._icon_nb2jpb_110{
497
+ ._input_13ki7g7_99:hover + ._icon_13ki7g7_110,
498
+ ._enabled_13ki7g7_126:hover ._icon_13ki7g7_110{
463
499
  background:rgb(calc(255 - var(--_rs-theme-dark-coefficient, 0)*184), calc(255 - var(--_rs-theme-dark-coefficient, 0)*184), calc(255 - var(--_rs-theme-dark-coefficient, 0)*182));
464
500
  }
465
- ._enabled_nb2jpb_126._indeterminate_nb2jpb_130 ._icon_nb2jpb_110,
466
- ._enabled_nb2jpb_126._indeterminate_nb2jpb_130:hover ._icon_nb2jpb_110,
467
- ._enabled_nb2jpb_126._indeterminate_nb2jpb_130 ._input_nb2jpb_99:hover + ._icon_nb2jpb_110{
501
+ ._enabled_13ki7g7_126._indeterminate_13ki7g7_130 ._icon_13ki7g7_110,
502
+ ._enabled_13ki7g7_126._indeterminate_13ki7g7_130:hover ._icon_13ki7g7_110,
503
+ ._enabled_13ki7g7_126._indeterminate_13ki7g7_130 ._input_13ki7g7_99:hover + ._icon_13ki7g7_110{
468
504
  border-color:var(--_rs-checkbox-ci-indeterminate-icon-border-color);
469
505
 
470
506
  background-color:var(
471
507
  --_rs-checkbox-ci-indeterminate-icon-background-color
472
508
  );
473
509
  }
474
- ._enabled_nb2jpb_126 ._input_nb2jpb_99:checked + ._icon_nb2jpb_110._icon_nb2jpb_110{
510
+ ._enabled_13ki7g7_126 ._input_13ki7g7_99:checked + ._icon_13ki7g7_110._icon_13ki7g7_110{
475
511
  border-color:var(--_rs-checkbox-ci-checked-icon-border-color);
476
512
  }
477
- ._error_nb2jpb_79 ._icon_nb2jpb_110._icon_nb2jpb_110._icon_nb2jpb_110._icon_nb2jpb_110,
478
- ._input_nb2jpb_99:invalid + ._icon_nb2jpb_110._icon_nb2jpb_110._icon_nb2jpb_110{
513
+ ._error_13ki7g7_79 ._icon_13ki7g7_110._icon_13ki7g7_110._icon_13ki7g7_110._icon_13ki7g7_110,
514
+ ._input_13ki7g7_99:invalid + ._icon_13ki7g7_110._icon_13ki7g7_110._icon_13ki7g7_110{
479
515
  border-color:#F45C4A;
480
516
  }
481
- ._icon_nb2jpb_110::after{
517
+ ._icon_13ki7g7_110::after{
482
518
  position:absolute;
483
519
  top:var(--_rs-checkbox-ci-shadow-size);
484
520
  right:var(--_rs-checkbox-ci-shadow-size);
@@ -487,15 +523,15 @@
487
523
 
488
524
  content:'';
489
525
  }
490
- ._enabled_nb2jpb_126:hover > ._icon_nb2jpb_110::after,
491
- label:hover ._enabled_nb2jpb_126 > ._icon_nb2jpb_110::after,
492
- ._enabled_nb2jpb_126 ._input_nb2jpb_99:active + ._icon_nb2jpb_110::after{
526
+ ._enabled_13ki7g7_126:hover > ._icon_13ki7g7_110::after,
527
+ label:hover ._enabled_13ki7g7_126 > ._icon_13ki7g7_110::after,
528
+ ._enabled_13ki7g7_126 ._input_13ki7g7_99:active + ._icon_13ki7g7_110::after{
493
529
  box-shadow:0 0 0 var(--_rs-checkbox-ci-shadow-size) var(--_rs-checkbox-ci-hover-icon-box-shadow);
494
530
  }
495
- ._enabled_nb2jpb_126 ._input_nb2jpb_99:focus[data-focus-method='key'] + ._icon_nb2jpb_110::after{
531
+ ._enabled_13ki7g7_126 ._input_13ki7g7_99:focus[data-focus-method='key'] + ._icon_13ki7g7_110::after{
496
532
  box-shadow:0 0 0 1px rgb(calc(232 - var(--_rs-theme-dark-coefficient, 0)*184), calc(232 - var(--_rs-theme-dark-coefficient, 0)*184), calc(232 - var(--_rs-theme-dark-coefficient, 0)*181)), 0 0 0 var(--_rs-checkbox-ci-shadow-size) var(--_rs-color-primary-t-dim);
497
533
  }
498
- ._checkmark_nb2jpb_194{
534
+ ._checkmark_13ki7g7_194{
499
535
  position:absolute;
500
536
  top:var(--_rs-checkbox-ci-shadow-size);
501
537
  left:var(--_rs-checkbox-ci-shadow-size);
@@ -506,22 +542,22 @@
506
542
  height:var(--_rs-checkbox-ci-size);
507
543
  fill:currentColor;
508
544
  }
509
- ._enabled_nb2jpb_126 ._checkmark_nb2jpb_194{
545
+ ._enabled_13ki7g7_126 ._checkmark_13ki7g7_194{
510
546
  color:var(--_rs-checkbox-ci-mark-color);
511
547
  }
512
- ._disabled_nb2jpb_138 ._checkmark_nb2jpb_194,
513
- ._input_nb2jpb_99:disabled + ._icon_nb2jpb_110 > ._checkmark_nb2jpb_194{
548
+ ._disabled_13ki7g7_138 ._checkmark_13ki7g7_194,
549
+ ._input_13ki7g7_99:disabled + ._icon_13ki7g7_110 > ._checkmark_13ki7g7_194{
514
550
  color:rgb(calc(244 - var(--_rs-theme-dark-coefficient, 0)*196), calc(244 - var(--_rs-theme-dark-coefficient, 0)*196), calc(244 - var(--_rs-theme-dark-coefficient, 0)*193));
515
551
  }
516
- ._input_nb2jpb_99:checked + ._icon_nb2jpb_110 > ._checkmark_nb2jpb_194{
552
+ ._input_13ki7g7_99:checked + ._icon_13ki7g7_110 > ._checkmark_13ki7g7_194{
517
553
  display:block;
518
554
  }
519
- ._markS_nb2jpb_219{
555
+ ._markS_13ki7g7_219{
520
556
  display:var(--_rs-checkbox-ci-mark-s-display);
521
557
  }
522
- ._markM_nb2jpb_222{
558
+ ._markM_13ki7g7_222{
523
559
  display:var(--_rs-checkbox-ci-mark-m-display);
524
560
  }
525
- ._markL_nb2jpb_225{
561
+ ._markL_13ki7g7_225{
526
562
  display:var(--_rs-checkbox-ci-mark-l-display);
527
563
  }
@@ -53,7 +53,8 @@ const CheckboxList = _ref => {
53
53
  "data-rs-internal": "checkbox-list__error-message"
54
54
  }, /*#__PURE__*/React.createElement(WarningIcon, {
55
55
  "data-rs-internal": "checkbox-list__error-icon",
56
- className: styles.errorIcon
56
+ className: styles.errorIcon,
57
+ "data-render-all-sizes": true
57
58
  }), /*#__PURE__*/React.createElement("span", null, error)), /*#__PURE__*/React.createElement(Menu, {
58
59
  tag: 'div',
59
60
  itemTag: null,
@@ -1,31 +1,31 @@
1
1
  var styles = {
2
- "themeLight": "_themeLight_nb2jpb_8",
3
- "themeDark": "_themeDark_nb2jpb_11",
4
- "container": "_container_nb2jpb_15",
5
- "listSizeS": "_listSizeS_nb2jpb_20",
6
- "listSizeM": "_listSizeM_nb2jpb_23",
7
- "listSizeL": "_listSizeL_nb2jpb_26",
8
- "checkboxSizeS": "_checkboxSizeS_nb2jpb_30",
9
- "checkboxSizeM": "_checkboxSizeM_nb2jpb_33",
10
- "checkboxSizeL": "_checkboxSizeL_nb2jpb_36",
11
- "sizeS": "_sizeS_nb2jpb_40",
12
- "sizeM": "_sizeM_nb2jpb_43",
13
- "sizeL": "_sizeL_nb2jpb_46",
14
- "classic": "_classic_nb2jpb_50",
15
- "rock": "_rock_nb2jpb_53",
16
- "checkbox": "_checkbox_nb2jpb_30",
17
- "errorMessage": "_errorMessage_nb2jpb_79",
18
- "list": "_list_nb2jpb_20",
19
- "errorIcon": "_errorIcon_nb2jpb_93",
20
- "input": "_input_nb2jpb_99",
21
- "icon": "_icon_nb2jpb_110",
22
- "enabled": "_enabled_nb2jpb_126",
23
- "indeterminate": "_indeterminate_nb2jpb_130",
24
- "disabled": "_disabled_nb2jpb_138",
25
- "error": "_error_nb2jpb_79",
26
- "checkmark": "_checkmark_nb2jpb_194",
27
- "markS": "_markS_nb2jpb_219",
28
- "markM": "_markM_nb2jpb_222",
29
- "markL": "_markL_nb2jpb_225"
2
+ "themeLight": "_themeLight_13ki7g7_8",
3
+ "themeDark": "_themeDark_13ki7g7_11",
4
+ "container": "_container_13ki7g7_15",
5
+ "listSizeS": "_listSizeS_13ki7g7_20",
6
+ "listSizeM": "_listSizeM_13ki7g7_23",
7
+ "listSizeL": "_listSizeL_13ki7g7_26",
8
+ "checkboxSizeS": "_checkboxSizeS_13ki7g7_30",
9
+ "checkboxSizeM": "_checkboxSizeM_13ki7g7_33",
10
+ "checkboxSizeL": "_checkboxSizeL_13ki7g7_36",
11
+ "sizeS": "_sizeS_13ki7g7_40",
12
+ "sizeM": "_sizeM_13ki7g7_43",
13
+ "sizeL": "_sizeL_13ki7g7_46",
14
+ "classic": "_classic_13ki7g7_50",
15
+ "rock": "_rock_13ki7g7_53",
16
+ "checkbox": "_checkbox_13ki7g7_30",
17
+ "errorMessage": "_errorMessage_13ki7g7_79",
18
+ "list": "_list_13ki7g7_20",
19
+ "errorIcon": "_errorIcon_13ki7g7_93",
20
+ "input": "_input_13ki7g7_99",
21
+ "icon": "_icon_13ki7g7_110",
22
+ "enabled": "_enabled_13ki7g7_126",
23
+ "indeterminate": "_indeterminate_13ki7g7_130",
24
+ "disabled": "_disabled_13ki7g7_138",
25
+ "error": "_error_13ki7g7_79",
26
+ "checkmark": "_checkmark_13ki7g7_194",
27
+ "markS": "_markS_13ki7g7_219",
28
+ "markM": "_markM_13ki7g7_222",
29
+ "markL": "_markL_13ki7g7_225"
30
30
  };
31
31
  export { styles as default };
@@ -1,6 +1,6 @@
1
1
  @define-mixin rs-checkbox-list-size-s{
2
2
  &[class] [data-rs-internal='checkbox-list__error-message']{
3
- --_rs-typography-letter-spacing:normal;
3
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
4
4
  --_rs-typography-text-transform:initial;
5
5
  --_rs-typography-font-variant-numeric:initial;
6
6
  --_rs-typography-font-family:var(
@@ -37,7 +37,7 @@
37
37
  --_rs-menu-mi-icon-offset:8px;
38
38
  --_rs-menu-mi-vertical-padding:6px;
39
39
  --_rs-menu-mi-horizontal-padding:8px;
40
- --_rs-typography-letter-spacing:0.0045em;
40
+ --_rs-typography-letter-spacing:var(--rs-text-3-letter-spacing, 0.0045em);
41
41
  --_rs-typography-text-transform:initial;
42
42
  --_rs-typography-font-variant-numeric:initial;
43
43
  --_rs-typography-font-family:var(
@@ -73,7 +73,7 @@
73
73
  & [data-rs-internal="checkbox__menu"] [data-rs-internal="menu__group-header"]{
74
74
  --_rs-menu-gh-vertical-padding:6px;
75
75
  --_rs-menu-gh-horizontal-padding:8px;
76
- --_rs-typography-letter-spacing:normal;
76
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
77
77
  --_rs-typography-text-transform:initial;
78
78
  --_rs-typography-font-variant-numeric:initial;
79
79
  --_rs-typography-font-family:var(
@@ -104,7 +104,7 @@
104
104
  --_rs-typography-link-border-bottom-width-from-text:2px;
105
105
  }
106
106
  & [data-rs-internal="checkbox"] [data-rs-internal='checkbox__error-message']{
107
- --_rs-typography-letter-spacing:normal;
107
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
108
108
  --_rs-typography-text-transform:initial;
109
109
  --_rs-typography-font-variant-numeric:initial;
110
110
  --_rs-typography-font-family:var(
@@ -148,7 +148,7 @@
148
148
  }
149
149
  @define-mixin rs-checkbox-list-size-m{
150
150
  &[class] [data-rs-internal='checkbox-list__error-message']{
151
- --_rs-typography-letter-spacing:normal;
151
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
152
152
  --_rs-typography-text-transform:initial;
153
153
  --_rs-typography-font-variant-numeric:initial;
154
154
  --_rs-typography-font-family:var(
@@ -185,7 +185,7 @@
185
185
  --_rs-menu-mi-icon-offset:8px;
186
186
  --_rs-menu-mi-vertical-padding:8px;
187
187
  --_rs-menu-mi-horizontal-padding:16px;
188
- --_rs-typography-letter-spacing:0.0015em;
188
+ --_rs-typography-letter-spacing:var(--rs-text-2-letter-spacing, 0.0015em);
189
189
  --_rs-typography-text-transform:initial;
190
190
  --_rs-typography-font-variant-numeric:initial;
191
191
  --_rs-typography-font-family:var(
@@ -213,20 +213,23 @@
213
213
  --_rs-typography-text-auto-offset:16px;
214
214
  --_rs-typography-ul-list-li-padding-left:22px;
215
215
  --_rs-typography-ol-list-li-padding-left:26px;
216
- --_rs-typography-list-li-margin-top-from-text:16px;
216
+ --_rs-typography-list-li-margin-top-from-text:var(
217
+ --_rs-typography-text-2-sm-list-li-margin-top-from-text,
218
+ 16px
219
+ );
217
220
  --_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
218
221
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
219
222
  --_rs-typography-link-border-bottom-width-from-text:1px;
220
223
  }
221
224
  @media screen and (max-width: 640px){
222
225
  & [data-rs-internal="checkbox__menu"] [data-rs-internal="menu__menu-item"]{
223
- --_rs-typography-list-li-margin-top-from-text:12px;
226
+ --_rs-typography-text-2-sm-list-li-margin-top-from-text:12px;
224
227
  }
225
228
  }
226
229
  & [data-rs-internal="checkbox__menu"] [data-rs-internal="menu__group-header"]{
227
230
  --_rs-menu-gh-vertical-padding:8px;
228
231
  --_rs-menu-gh-horizontal-padding:16px;
229
- --_rs-typography-letter-spacing:normal;
232
+ --_rs-typography-letter-spacing:var(--rs-h4-letter-spacing, normal);
230
233
  --_rs-typography-text-transform:initial;
231
234
  --_rs-typography-font-variant-numeric:initial;
232
235
  --_rs-typography-font-family:var(
@@ -257,7 +260,7 @@
257
260
  --_rs-typography-link-border-bottom-width-from-text:2px;
258
261
  }
259
262
  & [data-rs-internal="checkbox"] [data-rs-internal='checkbox__error-message']{
260
- --_rs-typography-letter-spacing:normal;
263
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
261
264
  --_rs-typography-text-transform:initial;
262
265
  --_rs-typography-font-variant-numeric:initial;
263
266
  --_rs-typography-font-family:var(
@@ -301,7 +304,7 @@
301
304
  }
302
305
  @define-mixin rs-checkbox-list-size-l{
303
306
  &[class] [data-rs-internal='checkbox-list__error-message']{
304
- --_rs-typography-letter-spacing:normal;
307
+ --_rs-typography-letter-spacing:var(--rs-h4-letter-spacing, normal);
305
308
  --_rs-typography-text-transform:initial;
306
309
  --_rs-typography-font-variant-numeric:initial;
307
310
  --_rs-typography-font-family:var(
@@ -338,7 +341,7 @@
338
341
  --_rs-menu-mi-icon-offset:16px;
339
342
  --_rs-menu-mi-vertical-padding:12px;
340
343
  --_rs-menu-mi-horizontal-padding:16px;
341
- --_rs-typography-letter-spacing:normal;
344
+ --_rs-typography-letter-spacing:var(--rs-text-1-letter-spacing, normal);
342
345
  --_rs-typography-text-transform:initial;
343
346
  --_rs-typography-font-variant-numeric:initial;
344
347
  --_rs-typography-font-family:var(
@@ -366,20 +369,23 @@
366
369
  --_rs-typography-text-auto-offset:32px;
367
370
  --_rs-typography-ul-list-li-padding-left:26px;
368
371
  --_rs-typography-ol-list-li-padding-left:32px;
369
- --_rs-typography-list-li-margin-top-from-text:24px;
372
+ --_rs-typography-list-li-margin-top-from-text:var(
373
+ --_rs-typography-text-1-sm-list-li-margin-top-from-text,
374
+ 24px
375
+ );
370
376
  --_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
371
377
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
372
378
  --_rs-typography-link-border-bottom-width-from-text:1px;
373
379
  }
374
380
  @media screen and (max-width: 640px){
375
381
  & [data-rs-internal="checkbox__menu"] [data-rs-internal="menu__menu-item"]{
376
- --_rs-typography-list-li-margin-top-from-text:16px;
382
+ --_rs-typography-text-1-sm-list-li-margin-top-from-text:16px;
377
383
  }
378
384
  }
379
385
  & [data-rs-internal="checkbox__menu"] [data-rs-internal="menu__group-header"]{
380
386
  --_rs-menu-gh-vertical-padding:12px;
381
387
  --_rs-menu-gh-horizontal-padding:16px;
382
- --_rs-typography-letter-spacing:normal;
388
+ --_rs-typography-letter-spacing:var(--rs-h3-letter-spacing, normal);
383
389
  --_rs-typography-text-transform:initial;
384
390
  --_rs-typography-font-variant-numeric:initial;
385
391
  --_rs-typography-font-family:var(
@@ -410,7 +416,7 @@
410
416
  --_rs-typography-link-border-bottom-width-from-text:2px;
411
417
  }
412
418
  & [data-rs-internal="checkbox"] [data-rs-internal='checkbox__error-message']{
413
- --_rs-typography-letter-spacing:normal;
419
+ --_rs-typography-letter-spacing:var(--rs-h4-letter-spacing, normal);
414
420
  --_rs-typography-text-transform:initial;
415
421
  --_rs-typography-font-variant-numeric:initial;
416
422
  --_rs-typography-font-family:var(
@@ -481,7 +487,7 @@
481
487
  }
482
488
  @define-mixin rs-checkbox-size-s{
483
489
  &[class] [data-rs-internal='checkbox__error-message']{
484
- --_rs-typography-letter-spacing:normal;
490
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
485
491
  --_rs-typography-text-transform:initial;
486
492
  --_rs-typography-font-variant-numeric:initial;
487
493
  --_rs-typography-font-family:var(
@@ -518,7 +524,7 @@
518
524
  --_rs-menu-mi-icon-offset:8px;
519
525
  --_rs-menu-mi-vertical-padding:6px;
520
526
  --_rs-menu-mi-horizontal-padding:8px;
521
- --_rs-typography-letter-spacing:0.0045em;
527
+ --_rs-typography-letter-spacing:var(--rs-text-3-letter-spacing, 0.0045em);
522
528
  --_rs-typography-text-transform:initial;
523
529
  --_rs-typography-font-variant-numeric:initial;
524
530
  --_rs-typography-font-family:var(
@@ -562,7 +568,7 @@
562
568
  }
563
569
  @define-mixin rs-checkbox-size-m{
564
570
  &[class] [data-rs-internal='checkbox__error-message']{
565
- --_rs-typography-letter-spacing:normal;
571
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
566
572
  --_rs-typography-text-transform:initial;
567
573
  --_rs-typography-font-variant-numeric:initial;
568
574
  --_rs-typography-font-family:var(
@@ -599,7 +605,7 @@
599
605
  --_rs-menu-mi-icon-offset:8px;
600
606
  --_rs-menu-mi-vertical-padding:8px;
601
607
  --_rs-menu-mi-horizontal-padding:16px;
602
- --_rs-typography-letter-spacing:0.0015em;
608
+ --_rs-typography-letter-spacing:var(--rs-text-2-letter-spacing, 0.0015em);
603
609
  --_rs-typography-text-transform:initial;
604
610
  --_rs-typography-font-variant-numeric:initial;
605
611
  --_rs-typography-font-family:var(
@@ -627,14 +633,17 @@
627
633
  --_rs-typography-text-auto-offset:16px;
628
634
  --_rs-typography-ul-list-li-padding-left:22px;
629
635
  --_rs-typography-ol-list-li-padding-left:26px;
630
- --_rs-typography-list-li-margin-top-from-text:16px;
636
+ --_rs-typography-list-li-margin-top-from-text:var(
637
+ --_rs-typography-text-2-sm-list-li-margin-top-from-text,
638
+ 16px
639
+ );
631
640
  --_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
632
641
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
633
642
  --_rs-typography-link-border-bottom-width-from-text:1px;
634
643
  }
635
644
  @media screen and (max-width: 640px){
636
645
  & [data-rs-internal="menu__menu-item"][class]{
637
- --_rs-typography-list-li-margin-top-from-text:12px;
646
+ --_rs-typography-text-2-sm-list-li-margin-top-from-text:12px;
638
647
  }
639
648
  }
640
649
  & [data-rs-internal="checkbox__control"]{
@@ -648,7 +657,7 @@
648
657
  }
649
658
  @define-mixin rs-checkbox-size-l{
650
659
  &[class] [data-rs-internal='checkbox__error-message']{
651
- --_rs-typography-letter-spacing:normal;
660
+ --_rs-typography-letter-spacing:var(--rs-h4-letter-spacing, normal);
652
661
  --_rs-typography-text-transform:initial;
653
662
  --_rs-typography-font-variant-numeric:initial;
654
663
  --_rs-typography-font-family:var(
@@ -685,7 +694,7 @@
685
694
  --_rs-menu-mi-icon-offset:16px;
686
695
  --_rs-menu-mi-vertical-padding:12px;
687
696
  --_rs-menu-mi-horizontal-padding:16px;
688
- --_rs-typography-letter-spacing:normal;
697
+ --_rs-typography-letter-spacing:var(--rs-text-1-letter-spacing, normal);
689
698
  --_rs-typography-text-transform:initial;
690
699
  --_rs-typography-font-variant-numeric:initial;
691
700
  --_rs-typography-font-family:var(
@@ -713,14 +722,17 @@
713
722
  --_rs-typography-text-auto-offset:32px;
714
723
  --_rs-typography-ul-list-li-padding-left:26px;
715
724
  --_rs-typography-ol-list-li-padding-left:32px;
716
- --_rs-typography-list-li-margin-top-from-text:24px;
725
+ --_rs-typography-list-li-margin-top-from-text:var(
726
+ --_rs-typography-text-1-sm-list-li-margin-top-from-text,
727
+ 24px
728
+ );
717
729
  --_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
718
730
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
719
731
  --_rs-typography-link-border-bottom-width-from-text:1px;
720
732
  }
721
733
  @media screen and (max-width: 640px){
722
734
  & [data-rs-internal="menu__menu-item"][class]{
723
- --_rs-typography-list-li-margin-top-from-text:16px;
735
+ --_rs-typography-text-1-sm-list-li-margin-top-from-text:16px;
724
736
  }
725
737
  }
726
738
  & [data-rs-internal="checkbox__control"]{
@@ -1,6 +1,6 @@
1
1
  @define-mixin rs-checkbox-list-size-s{
2
2
  &[class] [data-rs-internal='checkbox-list__error-message']{
3
- --_rs-typography-letter-spacing:normal;
3
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
4
4
  --_rs-typography-text-transform:initial;
5
5
  --_rs-typography-font-variant-numeric:initial;
6
6
  --_rs-typography-font-family:var(
@@ -37,7 +37,7 @@
37
37
  --_rs-menu-mi-icon-offset:8px;
38
38
  --_rs-menu-mi-vertical-padding:6px;
39
39
  --_rs-menu-mi-horizontal-padding:8px;
40
- --_rs-typography-letter-spacing:0.0045em;
40
+ --_rs-typography-letter-spacing:var(--rs-text-3-letter-spacing, 0.0045em);
41
41
  --_rs-typography-text-transform:initial;
42
42
  --_rs-typography-font-variant-numeric:initial;
43
43
  --_rs-typography-font-family:var(
@@ -73,7 +73,7 @@
73
73
  & [data-rs-internal="checkbox__menu"] [data-rs-internal="menu__group-header"]{
74
74
  --_rs-menu-gh-vertical-padding:6px;
75
75
  --_rs-menu-gh-horizontal-padding:8px;
76
- --_rs-typography-letter-spacing:normal;
76
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
77
77
  --_rs-typography-text-transform:initial;
78
78
  --_rs-typography-font-variant-numeric:initial;
79
79
  --_rs-typography-font-family:var(
@@ -104,7 +104,7 @@
104
104
  --_rs-typography-link-border-bottom-width-from-text:2px;
105
105
  }
106
106
  & [data-rs-internal="checkbox"] [data-rs-internal='checkbox__error-message']{
107
- --_rs-typography-letter-spacing:normal;
107
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
108
108
  --_rs-typography-text-transform:initial;
109
109
  --_rs-typography-font-variant-numeric:initial;
110
110
  --_rs-typography-font-family:var(
@@ -148,7 +148,7 @@
148
148
  }
149
149
  @define-mixin rs-checkbox-list-size-m{
150
150
  &[class] [data-rs-internal='checkbox-list__error-message']{
151
- --_rs-typography-letter-spacing:normal;
151
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
152
152
  --_rs-typography-text-transform:initial;
153
153
  --_rs-typography-font-variant-numeric:initial;
154
154
  --_rs-typography-font-family:var(
@@ -185,7 +185,7 @@
185
185
  --_rs-menu-mi-icon-offset:8px;
186
186
  --_rs-menu-mi-vertical-padding:8px;
187
187
  --_rs-menu-mi-horizontal-padding:16px;
188
- --_rs-typography-letter-spacing:0.0015em;
188
+ --_rs-typography-letter-spacing:var(--rs-text-2-letter-spacing, 0.0015em);
189
189
  --_rs-typography-text-transform:initial;
190
190
  --_rs-typography-font-variant-numeric:initial;
191
191
  --_rs-typography-font-family:var(
@@ -213,20 +213,23 @@
213
213
  --_rs-typography-text-auto-offset:16px;
214
214
  --_rs-typography-ul-list-li-padding-left:22px;
215
215
  --_rs-typography-ol-list-li-padding-left:26px;
216
- --_rs-typography-list-li-margin-top-from-text:16px;
216
+ --_rs-typography-list-li-margin-top-from-text:var(
217
+ --_rs-typography-text-2-sm-list-li-margin-top-from-text,
218
+ 16px
219
+ );
217
220
  --_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
218
221
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
219
222
  --_rs-typography-link-border-bottom-width-from-text:1px;
220
223
  }
221
224
  @media screen and (max-width: 640px){
222
225
  & [data-rs-internal="checkbox__menu"] [data-rs-internal="menu__menu-item"]{
223
- --_rs-typography-list-li-margin-top-from-text:12px;
226
+ --_rs-typography-text-2-sm-list-li-margin-top-from-text:12px;
224
227
  }
225
228
  }
226
229
  & [data-rs-internal="checkbox__menu"] [data-rs-internal="menu__group-header"]{
227
230
  --_rs-menu-gh-vertical-padding:8px;
228
231
  --_rs-menu-gh-horizontal-padding:16px;
229
- --_rs-typography-letter-spacing:normal;
232
+ --_rs-typography-letter-spacing:var(--rs-h4-letter-spacing, normal);
230
233
  --_rs-typography-text-transform:initial;
231
234
  --_rs-typography-font-variant-numeric:initial;
232
235
  --_rs-typography-font-family:var(
@@ -257,7 +260,7 @@
257
260
  --_rs-typography-link-border-bottom-width-from-text:2px;
258
261
  }
259
262
  & [data-rs-internal="checkbox"] [data-rs-internal='checkbox__error-message']{
260
- --_rs-typography-letter-spacing:normal;
263
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
261
264
  --_rs-typography-text-transform:initial;
262
265
  --_rs-typography-font-variant-numeric:initial;
263
266
  --_rs-typography-font-family:var(
@@ -301,7 +304,7 @@
301
304
  }
302
305
  @define-mixin rs-checkbox-list-size-l{
303
306
  &[class] [data-rs-internal='checkbox-list__error-message']{
304
- --_rs-typography-letter-spacing:normal;
307
+ --_rs-typography-letter-spacing:var(--rs-h4-letter-spacing, normal);
305
308
  --_rs-typography-text-transform:initial;
306
309
  --_rs-typography-font-variant-numeric:initial;
307
310
  --_rs-typography-font-family:var(
@@ -338,7 +341,7 @@
338
341
  --_rs-menu-mi-icon-offset:16px;
339
342
  --_rs-menu-mi-vertical-padding:12px;
340
343
  --_rs-menu-mi-horizontal-padding:16px;
341
- --_rs-typography-letter-spacing:normal;
344
+ --_rs-typography-letter-spacing:var(--rs-text-1-letter-spacing, normal);
342
345
  --_rs-typography-text-transform:initial;
343
346
  --_rs-typography-font-variant-numeric:initial;
344
347
  --_rs-typography-font-family:var(
@@ -366,20 +369,23 @@
366
369
  --_rs-typography-text-auto-offset:32px;
367
370
  --_rs-typography-ul-list-li-padding-left:26px;
368
371
  --_rs-typography-ol-list-li-padding-left:32px;
369
- --_rs-typography-list-li-margin-top-from-text:24px;
372
+ --_rs-typography-list-li-margin-top-from-text:var(
373
+ --_rs-typography-text-1-sm-list-li-margin-top-from-text,
374
+ 24px
375
+ );
370
376
  --_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
371
377
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
372
378
  --_rs-typography-link-border-bottom-width-from-text:1px;
373
379
  }
374
380
  @media screen and (max-width: 640px){
375
381
  & [data-rs-internal="checkbox__menu"] [data-rs-internal="menu__menu-item"]{
376
- --_rs-typography-list-li-margin-top-from-text:16px;
382
+ --_rs-typography-text-1-sm-list-li-margin-top-from-text:16px;
377
383
  }
378
384
  }
379
385
  & [data-rs-internal="checkbox__menu"] [data-rs-internal="menu__group-header"]{
380
386
  --_rs-menu-gh-vertical-padding:12px;
381
387
  --_rs-menu-gh-horizontal-padding:16px;
382
- --_rs-typography-letter-spacing:normal;
388
+ --_rs-typography-letter-spacing:var(--rs-h3-letter-spacing, normal);
383
389
  --_rs-typography-text-transform:initial;
384
390
  --_rs-typography-font-variant-numeric:initial;
385
391
  --_rs-typography-font-family:var(
@@ -410,7 +416,7 @@
410
416
  --_rs-typography-link-border-bottom-width-from-text:2px;
411
417
  }
412
418
  & [data-rs-internal="checkbox"] [data-rs-internal='checkbox__error-message']{
413
- --_rs-typography-letter-spacing:normal;
419
+ --_rs-typography-letter-spacing:var(--rs-h4-letter-spacing, normal);
414
420
  --_rs-typography-text-transform:initial;
415
421
  --_rs-typography-font-variant-numeric:initial;
416
422
  --_rs-typography-font-family:var(
@@ -481,7 +487,7 @@
481
487
  }
482
488
  @define-mixin rs-checkbox-size-s{
483
489
  &[class] [data-rs-internal='checkbox__error-message']{
484
- --_rs-typography-letter-spacing:normal;
490
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
485
491
  --_rs-typography-text-transform:initial;
486
492
  --_rs-typography-font-variant-numeric:initial;
487
493
  --_rs-typography-font-family:var(
@@ -518,7 +524,7 @@
518
524
  --_rs-menu-mi-icon-offset:8px;
519
525
  --_rs-menu-mi-vertical-padding:6px;
520
526
  --_rs-menu-mi-horizontal-padding:8px;
521
- --_rs-typography-letter-spacing:0.0045em;
527
+ --_rs-typography-letter-spacing:var(--rs-text-3-letter-spacing, 0.0045em);
522
528
  --_rs-typography-text-transform:initial;
523
529
  --_rs-typography-font-variant-numeric:initial;
524
530
  --_rs-typography-font-family:var(
@@ -562,7 +568,7 @@
562
568
  }
563
569
  @define-mixin rs-checkbox-size-m{
564
570
  &[class] [data-rs-internal='checkbox__error-message']{
565
- --_rs-typography-letter-spacing:normal;
571
+ --_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
566
572
  --_rs-typography-text-transform:initial;
567
573
  --_rs-typography-font-variant-numeric:initial;
568
574
  --_rs-typography-font-family:var(
@@ -599,7 +605,7 @@
599
605
  --_rs-menu-mi-icon-offset:8px;
600
606
  --_rs-menu-mi-vertical-padding:8px;
601
607
  --_rs-menu-mi-horizontal-padding:16px;
602
- --_rs-typography-letter-spacing:0.0015em;
608
+ --_rs-typography-letter-spacing:var(--rs-text-2-letter-spacing, 0.0015em);
603
609
  --_rs-typography-text-transform:initial;
604
610
  --_rs-typography-font-variant-numeric:initial;
605
611
  --_rs-typography-font-family:var(
@@ -627,14 +633,17 @@
627
633
  --_rs-typography-text-auto-offset:16px;
628
634
  --_rs-typography-ul-list-li-padding-left:22px;
629
635
  --_rs-typography-ol-list-li-padding-left:26px;
630
- --_rs-typography-list-li-margin-top-from-text:16px;
636
+ --_rs-typography-list-li-margin-top-from-text:var(
637
+ --_rs-typography-text-2-sm-list-li-margin-top-from-text,
638
+ 16px
639
+ );
631
640
  --_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
632
641
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
633
642
  --_rs-typography-link-border-bottom-width-from-text:1px;
634
643
  }
635
644
  @media screen and (max-width: 640px){
636
645
  & [data-rs-internal="menu__menu-item"][class]{
637
- --_rs-typography-list-li-margin-top-from-text:12px;
646
+ --_rs-typography-text-2-sm-list-li-margin-top-from-text:12px;
638
647
  }
639
648
  }
640
649
  & [data-rs-internal="checkbox__control"]{
@@ -648,7 +657,7 @@
648
657
  }
649
658
  @define-mixin rs-checkbox-size-l{
650
659
  &[class] [data-rs-internal='checkbox__error-message']{
651
- --_rs-typography-letter-spacing:normal;
660
+ --_rs-typography-letter-spacing:var(--rs-h4-letter-spacing, normal);
652
661
  --_rs-typography-text-transform:initial;
653
662
  --_rs-typography-font-variant-numeric:initial;
654
663
  --_rs-typography-font-family:var(
@@ -685,7 +694,7 @@
685
694
  --_rs-menu-mi-icon-offset:16px;
686
695
  --_rs-menu-mi-vertical-padding:12px;
687
696
  --_rs-menu-mi-horizontal-padding:16px;
688
- --_rs-typography-letter-spacing:normal;
697
+ --_rs-typography-letter-spacing:var(--rs-text-1-letter-spacing, normal);
689
698
  --_rs-typography-text-transform:initial;
690
699
  --_rs-typography-font-variant-numeric:initial;
691
700
  --_rs-typography-font-family:var(
@@ -713,14 +722,17 @@
713
722
  --_rs-typography-text-auto-offset:32px;
714
723
  --_rs-typography-ul-list-li-padding-left:26px;
715
724
  --_rs-typography-ol-list-li-padding-left:32px;
716
- --_rs-typography-list-li-margin-top-from-text:24px;
725
+ --_rs-typography-list-li-margin-top-from-text:var(
726
+ --_rs-typography-text-1-sm-list-li-margin-top-from-text,
727
+ 24px
728
+ );
717
729
  --_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
718
730
  --_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
719
731
  --_rs-typography-link-border-bottom-width-from-text:1px;
720
732
  }
721
733
  @media screen and (max-width: 640px){
722
734
  & [data-rs-internal="menu__menu-item"][class]{
723
- --_rs-typography-list-li-margin-top-from-text:16px;
735
+ --_rs-typography-text-1-sm-list-li-margin-top-from-text:16px;
724
736
  }
725
737
  }
726
738
  & [data-rs-internal="checkbox__control"]{
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@rescui/checkbox",
3
- "version": "0.8.6",
3
+ "version": "0.8.7-RUI-226-Update-card-cn-baacc2f1.68+baacc2f1",
4
4
  "description": "",
5
5
  "license": "Apache-2.0",
6
6
  "author": "JetBrains",
7
7
  "main": "lib/index.js",
8
+ "module": "lib/index.js",
8
9
  "src:main": "src/index.ts",
9
10
  "files": [
10
11
  "lib",
@@ -15,7 +16,7 @@
15
16
  },
16
17
  "dependencies": {
17
18
  "@babel/runtime-corejs3": "^7.26.0",
18
- "@rescui/menu": "^0.10.10",
19
+ "@rescui/menu": "0.10.11-RUI-226-Update-card-cn-baacc2f1.68+baacc2f1",
19
20
  "classnames": "^2.2.6"
20
21
  },
21
22
  "peerDependencies": {
@@ -24,16 +25,16 @@
24
25
  "react": ">=16.8.0 <19"
25
26
  },
26
27
  "devDependencies": {
27
- "@rescui/colors": "^0.2.6",
28
- "@rescui/postcss-preset-library": "^0.2.2",
29
- "@rescui/scripts": "^0.3.5",
30
- "@rescui/typography": "^0.19.1",
31
- "@rescui/visual-regression": "^0.1.2"
28
+ "@rescui/colors": "0.2.7-RUI-226-Update-card-cn-baacc2f1.68+baacc2f1",
29
+ "@rescui/postcss-preset-library": "0.2.2",
30
+ "@rescui/scripts": "0.4.0",
31
+ "@rescui/typography": "0.19.2-RUI-226-Update-card-cn-baacc2f1.68+baacc2f1",
32
+ "@rescui/visual-regression": "0.1.2"
32
33
  },
33
34
  "scripts": {
34
35
  "build": "rescui-scripts build && yarn run build-pcss-api",
35
36
  "build-pcss-api": "rescui-scripts build-pcss-api --file public-api.p.css"
36
37
  },
37
38
  "nx": {},
38
- "gitHead": "67627f69be3de4b4c6a21244fd7de36e841f01f0"
39
+ "gitHead": "baacc2f1a9fe296e6d64d62b8b3143d09cdb70fb"
39
40
  }