@salutejs/plasma-web 1.468.0-canary.1610.12230892013.0 → 1.468.0-canary.1610.12252096000.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. package/api/plasma-web.api.md +43 -0
  2. package/components/Combobox/Combobox.d.ts +12 -0
  3. package/components/Dropdown/Dropdown.d.ts +1 -0
  4. package/components/Rating/Rating.config.d.ts +27 -0
  5. package/components/Rating/Rating.config.js +36 -0
  6. package/components/Rating/Rating.d.ts +35 -0
  7. package/components/Rating/Rating.js +10 -0
  8. package/components/Rating/index.d.ts +2 -0
  9. package/components/Rating/index.js +25 -0
  10. package/components/Select/Select.d.ts +4 -0
  11. package/css/cjs/components/Rating/Rating.config.js +35 -0
  12. package/css/cjs/components/Rating/Rating.config.js.map +1 -0
  13. package/css/cjs/components/Rating/Rating.config_1yxdjbj.css +15 -0
  14. package/css/cjs/components/Rating/Rating.css +15 -0
  15. package/css/cjs/components/Rating/Rating.js +12 -0
  16. package/css/cjs/components/Rating/Rating.js.map +1 -0
  17. package/css/cjs/index.css +16 -0
  18. package/css/cjs/index.js +10 -0
  19. package/css/cjs/index.js.map +1 -1
  20. package/css/es/components/Rating/Rating.config.js +31 -0
  21. package/css/es/components/Rating/Rating.config.js.map +1 -0
  22. package/css/es/components/Rating/Rating.config_1yxdjbj.css +15 -0
  23. package/css/es/components/Rating/Rating.css +15 -0
  24. package/css/es/components/Rating/Rating.js +8 -0
  25. package/css/es/components/Rating/Rating.js.map +1 -0
  26. package/css/es/index.css +16 -0
  27. package/css/es/index.js +2 -1
  28. package/css/es/index.js.map +1 -1
  29. package/css/index.d.ts +2 -0
  30. package/es/components/Rating/Rating.config.js +30 -0
  31. package/es/components/Rating/Rating.js +4 -0
  32. package/es/components/Rating/index.js +2 -0
  33. package/es/index.js +2 -1
  34. package/index.d.ts +1 -0
  35. package/index.js +11 -0
  36. package/package.json +3 -3
  37. package/temp/plasma-web.api.md +43 -0
@@ -239,6 +239,8 @@ import { radiuses } from '@salutejs/plasma-core';
239
239
  import { RangeInputRefs } from '@salutejs/plasma-new-hope/styled-components';
240
240
  import { RangeProps } from '@salutejs/plasma-new-hope/styled-components';
241
241
  import { rangeTokens } from '@salutejs/plasma-new-hope/styled-components';
242
+ import { ratingClasses } from '@salutejs/plasma-new-hope/styled-components';
243
+ import { ratingTokens } from '@salutejs/plasma-new-hope/styled-components';
242
244
  import { Ratio } from '@salutejs/plasma-new-hope/styled-components';
243
245
  import { default as React_2 } from 'react';
244
246
  import { ReactElement } from 'react';
@@ -1898,6 +1900,7 @@ default: PolymorphicClassName;
1898
1900
  variant?: "normal" | "tight" | undefined;
1899
1901
  portal?: string | React_2.RefObject<HTMLElement> | undefined;
1900
1902
  renderItem?: ((item: DropdownItemOption) => React_2.ReactNode) | undefined;
1903
+ zIndex?: Property.ZIndex | undefined;
1901
1904
  onItemClick?: ((item: DropdownItemOption, event: React_2.SyntheticEvent<Element, Event>) => void) | undefined;
1902
1905
  listOverflow?: Property.Overflow | undefined;
1903
1906
  listHeight?: Property.Height<string | number> | undefined;
@@ -3391,6 +3394,46 @@ export { RangeProps }
3391
3394
 
3392
3395
  export { rangeTokens }
3393
3396
 
3397
+ // @public (undocumented)
3398
+ export const Rating: FunctionComponent<PropsType< {
3399
+ view: {
3400
+ default: PolymorphicClassName;
3401
+ accent: PolymorphicClassName;
3402
+ };
3403
+ size: {
3404
+ l: PolymorphicClassName;
3405
+ m: PolymorphicClassName;
3406
+ s: PolymorphicClassName;
3407
+ xs: PolymorphicClassName;
3408
+ xxs: PolymorphicClassName;
3409
+ h1: PolymorphicClassName;
3410
+ h2: PolymorphicClassName;
3411
+ h3: PolymorphicClassName;
3412
+ h4: PolymorphicClassName;
3413
+ h5: PolymorphicClassName;
3414
+ displayL: PolymorphicClassName;
3415
+ displayM: PolymorphicClassName;
3416
+ displayS: PolymorphicClassName;
3417
+ };
3418
+ }> & {
3419
+ value?: number | null | undefined;
3420
+ hasValue?: boolean | undefined;
3421
+ precision?: number | undefined;
3422
+ valuePlacement?: "after" | "before" | undefined;
3423
+ iconSlot?: ReactNode;
3424
+ iconSlotOutline?: ReactNode;
3425
+ iconSlotHalf?: ReactNode;
3426
+ hasIcons?: boolean | undefined;
3427
+ iconQuantity?: 1 | 5 | 10 | undefined;
3428
+ helperText?: string | undefined;
3429
+ size?: string | undefined;
3430
+ view?: string | undefined;
3431
+ } & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLInputElement>>;
3432
+
3433
+ export { ratingClasses }
3434
+
3435
+ export { ratingTokens }
3436
+
3394
3437
  export { Ratio }
3395
3438
 
3396
3439
  export { RectSkeleton }
@@ -35,6 +35,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
35
35
  textBefore?: string | undefined;
36
36
  textAfter?: string | undefined;
37
37
  variant?: "normal" | "tight" | undefined;
38
+ zIndex?: import("csstype").Property.ZIndex | undefined;
38
39
  listOverflow?: import("csstype").Property.Overflow | undefined;
39
40
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
40
41
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
@@ -67,6 +68,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
67
68
  textBefore?: string | undefined;
68
69
  textAfter?: string | undefined;
69
70
  variant?: "normal" | "tight" | undefined;
71
+ zIndex?: import("csstype").Property.ZIndex | undefined;
70
72
  listOverflow?: import("csstype").Property.Overflow | undefined;
71
73
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
72
74
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
@@ -99,6 +101,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
99
101
  textBefore?: string | undefined;
100
102
  textAfter?: string | undefined;
101
103
  variant?: "normal" | "tight" | undefined;
104
+ zIndex?: import("csstype").Property.ZIndex | undefined;
102
105
  listOverflow?: import("csstype").Property.Overflow | undefined;
103
106
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
104
107
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
@@ -131,6 +134,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
131
134
  textBefore?: string | undefined;
132
135
  textAfter?: string | undefined;
133
136
  variant?: "normal" | "tight" | undefined;
137
+ zIndex?: import("csstype").Property.ZIndex | undefined;
134
138
  listOverflow?: import("csstype").Property.Overflow | undefined;
135
139
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
136
140
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
@@ -163,6 +167,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
163
167
  textBefore?: string | undefined;
164
168
  textAfter?: string | undefined;
165
169
  variant?: "normal" | "tight" | undefined;
170
+ zIndex?: import("csstype").Property.ZIndex | undefined;
166
171
  listOverflow?: import("csstype").Property.Overflow | undefined;
167
172
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
168
173
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
@@ -195,6 +200,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
195
200
  textBefore?: string | undefined;
196
201
  textAfter?: string | undefined;
197
202
  variant?: "normal" | "tight" | undefined;
203
+ zIndex?: import("csstype").Property.ZIndex | undefined;
198
204
  listOverflow?: import("csstype").Property.Overflow | undefined;
199
205
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
200
206
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
@@ -227,6 +233,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
227
233
  textBefore?: string | undefined;
228
234
  textAfter?: string | undefined;
229
235
  variant?: "normal" | "tight" | undefined;
236
+ zIndex?: import("csstype").Property.ZIndex | undefined;
230
237
  listOverflow?: import("csstype").Property.Overflow | undefined;
231
238
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
232
239
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
@@ -259,6 +266,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
259
266
  textBefore?: string | undefined;
260
267
  textAfter?: string | undefined;
261
268
  variant?: "normal" | "tight" | undefined;
269
+ zIndex?: import("csstype").Property.ZIndex | undefined;
262
270
  listOverflow?: import("csstype").Property.Overflow | undefined;
263
271
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
264
272
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
@@ -291,6 +299,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
291
299
  textBefore?: string | undefined;
292
300
  textAfter?: string | undefined;
293
301
  variant?: "normal" | "tight" | undefined;
302
+ zIndex?: import("csstype").Property.ZIndex | undefined;
294
303
  listOverflow?: import("csstype").Property.Overflow | undefined;
295
304
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
296
305
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
@@ -323,6 +332,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
323
332
  textBefore?: string | undefined;
324
333
  textAfter?: string | undefined;
325
334
  variant?: "normal" | "tight" | undefined;
335
+ zIndex?: import("csstype").Property.ZIndex | undefined;
326
336
  listOverflow?: import("csstype").Property.Overflow | undefined;
327
337
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
328
338
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
@@ -355,6 +365,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
355
365
  textBefore?: string | undefined;
356
366
  textAfter?: string | undefined;
357
367
  variant?: "normal" | "tight" | undefined;
368
+ zIndex?: import("csstype").Property.ZIndex | undefined;
358
369
  listOverflow?: import("csstype").Property.Overflow | undefined;
359
370
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
360
371
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
@@ -387,6 +398,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
387
398
  textBefore?: string | undefined;
388
399
  textAfter?: string | undefined;
389
400
  variant?: "normal" | "tight" | undefined;
401
+ zIndex?: import("csstype").Property.ZIndex | undefined;
390
402
  listOverflow?: import("csstype").Property.Overflow | undefined;
391
403
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
392
404
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
@@ -30,6 +30,7 @@ declare const Dropdown: <T extends DropdownItemOption>(props: Omit<DropdownNewPr
30
30
  variant?: "normal" | "tight" | undefined;
31
31
  portal?: string | React.RefObject<HTMLElement> | undefined;
32
32
  renderItem?: ((item: DropdownItemOption) => React.ReactNode) | undefined;
33
+ zIndex?: import("csstype").Property.ZIndex | undefined;
33
34
  onItemClick?: ((item: DropdownItemOption, event: React.SyntheticEvent<Element, Event>) => void) | undefined;
34
35
  listOverflow?: import("csstype").Property.Overflow | undefined;
35
36
  listHeight?: import("csstype").Property.Height<string | number> | undefined;
@@ -0,0 +1,27 @@
1
+ export declare const config: {
2
+ defaults: {
3
+ view: string;
4
+ size: string;
5
+ };
6
+ variations: {
7
+ view: {
8
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
9
+ accent: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
10
+ };
11
+ size: {
12
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
13
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
14
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
15
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
16
+ xxs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
17
+ h1: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
18
+ h2: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
19
+ h3: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
20
+ h4: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
21
+ h5: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
22
+ displayL: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
23
+ displayM: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
24
+ displayS: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
25
+ };
26
+ };
27
+ };
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.config = void 0;
7
+ var _styledComponents = /*#__PURE__*/require("@salutejs/plasma-new-hope/styled-components");
8
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15;
9
+ function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
10
+ var config = exports.config = {
11
+ defaults: {
12
+ view: 'default',
13
+ size: 'l'
14
+ },
15
+ variations: {
16
+ view: {
17
+ "default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-primary);\n "])), _styledComponents.ratingTokens.color, _styledComponents.ratingTokens.helperTextColor, _styledComponents.ratingTokens.iconColor, _styledComponents.ratingTokens.outlineIconColor),
18
+ accent: /*#__PURE__*/(0, _styledComponents.css)(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n // TODO: change with token data-yellow, when it will be added to theme\n ", ": #F3A912;\n ", ": var(--text-tertiary);\n "])), _styledComponents.ratingTokens.color, _styledComponents.ratingTokens.helperTextColor, _styledComponents.ratingTokens.iconColor, _styledComponents.ratingTokens.outlineIconColor)
19
+ },
20
+ size: {
21
+ l: /*#__PURE__*/(0, _styledComponents.css)(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 0.625rem;\n ", ": 0.25rem;\n ", ": 0.125rem;\n\n ", ": 1.25rem;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconSize),
22
+ m: /*#__PURE__*/(0, _styledComponents.css)(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.25rem;\n\n ", ": var(--plasma-typo-body-m-font-family);\n ", ": var(--plasma-typo-body-m-font-size);\n ", ": var(--plasma-typo-body-m-font-style);\n ", ": var(--plasma-typo-body-m-bold-font-weight);\n ", ": var(--plasma-typo-body-m-letter-spacing);\n ", ": var(--plasma-typo-body-m-line-height);\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 0.5rem;\n ", ": 0.25rem;\n ", ": 0.125rem;\n\n ", ": 1.25rem;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconSize),
23
+ s: /*#__PURE__*/(0, _styledComponents.css)(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.25rem;\n\n ", ": var(--plasma-typo-body-s-font-family);\n ", ": var(--plasma-typo-body-s-font-size);\n ", ": var(--plasma-typo-body-s-font-style);\n ", ": var(--plasma-typo-body-s-bold-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 0.5rem;\n ", ": 0.25rem;\n ", ": 0.125rem;\n\n ", ": 1rem;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconSize),
24
+ xs: /*#__PURE__*/(0, _styledComponents.css)(_templateObject6 || (_templateObject6 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.25rem;\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-bold-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": var(--plasma-typo-body-xxs-font-family);\n ", ": var(--plasma-typo-body-xxs-font-size);\n ", ": var(--plasma-typo-body-xxs-font-style);\n ", ": var(--plasma-typo-body-xxs-font-weight);\n ", ": var(--plasma-typo-body-xxs-letter-spacing);\n ", ": var(--plasma-typo-body-xxs-line-height);\n\n ", ": 0.375rem;\n ", ": 0.25rem;\n ", ": 0.125rem;\n\n ", ": 0.75rem;\n ", ": 1rem;\n ", ": 0.75;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconSize, _styledComponents.ratingTokens.actualIconSize, _styledComponents.ratingTokens.scaleFactor),
25
+ xxs: /*#__PURE__*/(0, _styledComponents.css)(_templateObject7 || (_templateObject7 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.25rem;\n\n ", ": var(--plasma-typo-body-xxs-font-family);\n ", ": var(--plasma-typo-body-xxs-font-size);\n ", ": var(--plasma-typo-body-xxs-font-style);\n ", ": var(--plasma-typo-body-xxs-bold-font-weight);\n ", ": var(--plasma-typo-body-xxs-letter-spacing);\n ", ": var(--plasma-typo-body-xxs-line-height);\n\n ", ": var(--plasma-typo-body-xxs-font-family);\n ", ": var(--plasma-typo-body-xxs-font-size);\n ", ": var(--plasma-typo-body-xxs-font-style);\n ", ": var(--plasma-typo-body-xxs-font-weight);\n ", ": var(--plasma-typo-body-xxs-letter-spacing);\n ", ": var(--plasma-typo-body-xxs-line-height);\n\n ", ": 0.375rem;\n ", ": 0.25rem;\n ", ": 0.125rem;\n\n ", ": 0.75rem;\n ", ": 1rem;\n ", ": 0.75;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconSize, _styledComponents.ratingTokens.actualIconSize, _styledComponents.ratingTokens.scaleFactor),
26
+ h1: /*#__PURE__*/(0, _styledComponents.css)(_templateObject8 || (_templateObject8 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.25rem;\n\n ", ": var(--plasma-typo-h1-font-family);\n ", ": var(--plasma-typo-h1-font-size);\n ", ": var(--plasma-typo-h1-font-style);\n ", ": var(--plasma-typo-h1-bold-font-weight);\n ", ": var(--plasma-typo-h1-letter-spacing);\n ", ": var(--plasma-typo-h1-line-height);\n\n ", ": var(--plasma-typo-body-m-font-family);\n ", ": var(--plasma-typo-body-m-font-size);\n ", ": var(--plasma-typo-body-m-font-style);\n ", ": var(--plasma-typo-body-m-font-weight);\n ", ": var(--plasma-typo-body-m-letter-spacing);\n ", ": var(--plasma-typo-body-m-line-height);\n\n ", ": 1rem;\n ", ": 0.5rem;\n ", ": 0.125rem;\n\n ", ": 0.25rem;\n ", ": 3rem;\n ", ": 3rem;\n ", ": 2.25rem;\n\n ", ": 0.25rem;\n ", ": 3rem;\n ", ": 3rem;\n ", ": 2.25rem;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconMarginBottom, _styledComponents.ratingTokens.iconSizeLarge, _styledComponents.ratingTokens.iconSizeMedium, _styledComponents.ratingTokens.iconSizeSmall, _styledComponents.ratingTokens.singleIconMarginBottom, _styledComponents.ratingTokens.singleIconSizeLarge, _styledComponents.ratingTokens.singleIconSizeMedium, _styledComponents.ratingTokens.singleIconSizeSmall),
27
+ h2: /*#__PURE__*/(0, _styledComponents.css)(_templateObject9 || (_templateObject9 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.25rem;\n\n ", ": var(--plasma-typo-h2-font-family);\n ", ": var(--plasma-typo-h2-font-size);\n ", ": var(--plasma-typo-h2-font-style);\n ", ": var(--plasma-typo-h2-bold-font-weight);\n ", ": var(--plasma-typo-h2-letter-spacing);\n ", ": var(--plasma-typo-h2-line-height);\n\n ", ": var(--plasma-typo-body-s-font-family);\n ", ": var(--plasma-typo-body-s-font-size);\n ", ": var(--plasma-typo-body-s-font-style);\n ", ": var(--plasma-typo-body-s-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n\n ", ": 0.875rem;\n ", ": 0.5rem;\n ", ": 0.125rem;\n\n ", ": 0.25rem;\n ", ": 2rem;\n ", ": 1.75rem;\n ", ": 1.5rem;\n\n ", ": 0.25rem;\n ", ": 2rem;\n ", ": 1.75rem;\n ", ": 1.5rem;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconMarginBottom, _styledComponents.ratingTokens.iconSizeLarge, _styledComponents.ratingTokens.iconSizeMedium, _styledComponents.ratingTokens.iconSizeSmall, _styledComponents.ratingTokens.singleIconMarginBottom, _styledComponents.ratingTokens.singleIconSizeLarge, _styledComponents.ratingTokens.singleIconSizeMedium, _styledComponents.ratingTokens.singleIconSizeSmall),
28
+ h3: /*#__PURE__*/(0, _styledComponents.css)(_templateObject10 || (_templateObject10 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.25rem;\n\n ", ": var(--plasma-typo-h3-font-family);\n ", ": var(--plasma-typo-h3-font-size);\n ", ": var(--plasma-typo-h3-font-style);\n ", ": var(--plasma-typo-h3-bold-font-weight);\n ", ": var(--plasma-typo-h3-letter-spacing);\n ", ": var(--plasma-typo-h3-line-height);\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 0.75rem;\n ", ": 0.375rem;\n ", ": 0.125rem;\n\n ", ": 0.125rem;\n ", ": 1.75rem;\n ", ": 1.5rem;\n ", ": 1.25rem;\n\n ", ": 0.125rem;\n ", ": 1.75rem;\n ", ": 1.5rem;\n ", ": 1.25rem;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconMarginBottom, _styledComponents.ratingTokens.iconSizeLarge, _styledComponents.ratingTokens.iconSizeMedium, _styledComponents.ratingTokens.iconSizeSmall, _styledComponents.ratingTokens.singleIconMarginBottom, _styledComponents.ratingTokens.singleIconSizeLarge, _styledComponents.ratingTokens.singleIconSizeMedium, _styledComponents.ratingTokens.singleIconSizeSmall),
29
+ h4: /*#__PURE__*/(0, _styledComponents.css)(_templateObject11 || (_templateObject11 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.25rem;\n\n ", ": var(--plasma-typo-h4-font-family);\n ", ": var(--plasma-typo-h4-font-size);\n ", ": var(--plasma-typo-h4-font-style);\n ", ": var(--plasma-typo-h4-bold-font-weight);\n ", ": var(--plasma-typo-h4-letter-spacing);\n ", ": var(--plasma-typo-h4-line-height);\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 0.625rem;\n ", ": 0.25rem;\n ", ": 0.125rem;\n\n ", ": 0.125rem;\n ", ": 1.5rem;\n ", ": 1.25rem;\n ", ": 1.25rem;\n\n ", ": 0.125rem;\n ", ": 1.5rem;\n ", ": 1.25rem;\n ", ": 1.25rem;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconMarginBottom, _styledComponents.ratingTokens.iconSizeLarge, _styledComponents.ratingTokens.iconSizeMedium, _styledComponents.ratingTokens.iconSizeSmall, _styledComponents.ratingTokens.singleIconMarginBottom, _styledComponents.ratingTokens.singleIconSizeLarge, _styledComponents.ratingTokens.singleIconSizeMedium, _styledComponents.ratingTokens.singleIconSizeSmall),
30
+ h5: /*#__PURE__*/(0, _styledComponents.css)(_templateObject12 || (_templateObject12 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.25rem;\n\n ", ": var(--plasma-typo-h5-font-family);\n ", ": var(--plasma-typo-h5-font-size);\n ", ": var(--plasma-typo-h5-font-style);\n ", ": var(--plasma-typo-h5-bold-font-weight);\n ", ": var(--plasma-typo-h5-letter-spacing);\n ", ": var(--plasma-typo-h5-line-height);\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 0.625rem;\n ", ": 0.25rem;\n ", ": 0.125rem;\n\n ", ": 1.25rem;\n ", ": 1.25rem;\n ", ": 1rem;\n\n ", ": 1.25rem;\n ", ": 1.25rem;\n ", ": 1rem;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconSizeLarge, _styledComponents.ratingTokens.iconSizeMedium, _styledComponents.ratingTokens.iconSizeSmall, _styledComponents.ratingTokens.singleIconSizeLarge, _styledComponents.ratingTokens.singleIconSizeMedium, _styledComponents.ratingTokens.singleIconSizeSmall),
31
+ displayL: /*#__PURE__*/(0, _styledComponents.css)(_templateObject13 || (_templateObject13 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.375rem;\n\n ", ": var(--plasma-typo-dspl-l-font-family);\n ", ": var(--plasma-typo-dspl-l-font-size);\n ", ": var(--plasma-typo-dspl-l-font-style);\n ", ": var(--plasma-typo-dspl-l-bold-font-weight);\n ", ": var(--plasma-typo-dspl-l-letter-spacing);\n ", ": var(--plasma-typo-dspl-l-line-height);\n\n ", ": var(--plasma-typo-h3-font-family);\n ", ": var(--plasma-typo-h3-font-size);\n ", ": var(--plasma-typo-h3-font-style);\n ", ": var(--plasma-typo-h3-font-weight);\n ", ": var(--plasma-typo-h3-letter-spacing);\n ", ": var(--plasma-typo-h3-line-height);\n\n ", ": 1.5rem;\n ", ": 0.75rem;\n ", ": 0.625rem;\n ", ": 0.125rem;\n\n ", ": 4rem;\n ", ": 3rem;\n ", ": 2.25rem;\n\n ", ": 7.5rem;\n ", ": 7rem;\n ", ": 5.5rem;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.wrapperGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconSizeLarge, _styledComponents.ratingTokens.iconSizeMedium, _styledComponents.ratingTokens.iconSizeSmall, _styledComponents.ratingTokens.singleIconSizeLarge, _styledComponents.ratingTokens.singleIconSizeMedium, _styledComponents.ratingTokens.singleIconSizeSmall),
32
+ displayM: /*#__PURE__*/(0, _styledComponents.css)(_templateObject14 || (_templateObject14 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.375rem;\n\n ", ": var(--plasma-typo-dspl-m-font-family);\n ", ": var(--plasma-typo-dspl-m-font-size);\n ", ": var(--plasma-typo-dspl-m-font-style);\n ", ": var(--plasma-typo-dspl-m-bold-font-weight);\n ", ": var(--plasma-typo-dspl-m-letter-spacing);\n ", ": var(--plasma-typo-dspl-m-line-height);\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 1.5rem;\n ", ": 0.75rem;\n ", ": 0.5rem;\n ", ": 0.125rem;\n\n ", ": 3rem;\n ", ": 2.25rem;\n ", ": 1.75rem;\n\n ", ": 0.5rem;\n ", ": 5.25rem;\n ", ": 4.5rem;\n ", ": 4rem;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.wrapperGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconSizeLarge, _styledComponents.ratingTokens.iconSizeMedium, _styledComponents.ratingTokens.iconSizeSmall, _styledComponents.ratingTokens.singleIconMarginBottom, _styledComponents.ratingTokens.singleIconSizeLarge, _styledComponents.ratingTokens.singleIconSizeMedium, _styledComponents.ratingTokens.singleIconSizeSmall),
33
+ displayS: /*#__PURE__*/(0, _styledComponents.css)(_templateObject15 || (_templateObject15 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.375rem;\n\n ", ": var(--plasma-typo-dspl-s-font-family);\n ", ": var(--plasma-typo-dspl-s-font-size);\n ", ": var(--plasma-typo-dspl-s-font-style);\n ", ": var(--plasma-typo-dspl-s-bold-font-weight);\n ", ": var(--plasma-typo-dspl-s-letter-spacing);\n ", ": var(--plasma-typo-dspl-s-line-height);\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 1.5rem;\n ", ": 0.75rem;\n ", ": 0.375rem;\n ", ": 0.125rem;\n\n ", ": 2rem;\n ", ": 1.5rem;\n ", ": 1.25rem;\n\n ", ": 0.313rem;\n ", ": 4rem;\n ", ": 3.5rem;\n ", ": 2.75rem;\n "])), _styledComponents.ratingTokens.gap, _styledComponents.ratingTokens.fontFamily, _styledComponents.ratingTokens.fontSize, _styledComponents.ratingTokens.fontStyle, _styledComponents.ratingTokens.fontWeight, _styledComponents.ratingTokens.letterSpacing, _styledComponents.ratingTokens.lineHeight, _styledComponents.ratingTokens.helperTextFontFamily, _styledComponents.ratingTokens.helperTextFontSize, _styledComponents.ratingTokens.helperTextFontStyle, _styledComponents.ratingTokens.helperTextFontWeight, _styledComponents.ratingTokens.helperTextLetterSpacing, _styledComponents.ratingTokens.helperTextLineHeight, _styledComponents.ratingTokens.contentGap, _styledComponents.ratingTokens.singleIconContentGap, _styledComponents.ratingTokens.wrapperGap, _styledComponents.ratingTokens.starsWrapperGap, _styledComponents.ratingTokens.iconSizeLarge, _styledComponents.ratingTokens.iconSizeMedium, _styledComponents.ratingTokens.iconSizeSmall, _styledComponents.ratingTokens.singleIconMarginBottom, _styledComponents.ratingTokens.singleIconSizeLarge, _styledComponents.ratingTokens.singleIconSizeMedium, _styledComponents.ratingTokens.singleIconSizeSmall)
34
+ }
35
+ }
36
+ };
@@ -0,0 +1,35 @@
1
+ /// <reference types="react" />
2
+ export declare const Rating: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
3
+ view: {
4
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
5
+ accent: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
6
+ };
7
+ size: {
8
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
9
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
10
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
11
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
12
+ xxs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
13
+ h1: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
14
+ h2: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
15
+ h3: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
16
+ h4: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
17
+ h5: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
18
+ displayL: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
19
+ displayM: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
20
+ displayS: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
21
+ };
22
+ }> & {
23
+ value?: number | null | undefined;
24
+ hasValue?: boolean | undefined;
25
+ precision?: number | undefined;
26
+ valuePlacement?: "after" | "before" | undefined;
27
+ iconSlot?: import("react").ReactNode;
28
+ iconSlotOutline?: import("react").ReactNode;
29
+ iconSlotHalf?: import("react").ReactNode;
30
+ hasIcons?: boolean | undefined;
31
+ iconQuantity?: 1 | 5 | 10 | undefined;
32
+ helperText?: string | undefined;
33
+ size?: string | undefined;
34
+ view?: string | undefined;
35
+ } & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLInputElement>>;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Rating = void 0;
7
+ var _styledComponents = /*#__PURE__*/require("@salutejs/plasma-new-hope/styled-components");
8
+ var _Rating = /*#__PURE__*/require("./Rating.config");
9
+ var mergedConfig = /*#__PURE__*/(0, _styledComponents.mergeConfig)(_styledComponents.ratingConfig, _Rating.config);
10
+ var Rating = exports.Rating = /*#__PURE__*/(0, _styledComponents.component)(mergedConfig);
@@ -0,0 +1,2 @@
1
+ export { Rating } from './Rating';
2
+ export { ratingTokens, ratingClasses } from '@salutejs/plasma-new-hope/styled-components';
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "Rating", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _Rating.Rating;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "ratingClasses", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _styledComponents.ratingClasses;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "ratingTokens", {
19
+ enumerable: true,
20
+ get: function get() {
21
+ return _styledComponents.ratingTokens;
22
+ }
23
+ });
24
+ var _Rating = /*#__PURE__*/require("./Rating");
25
+ var _styledComponents = /*#__PURE__*/require("@salutejs/plasma-new-hope/styled-components");
@@ -57,6 +57,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
57
57
  placement?: ("top" | "right" | "bottom" | "left" | "auto") | ("top" | "right" | "bottom" | "left")[] | undefined;
58
58
  onScrollBottom?: ((e: React.UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
59
59
  variant?: "normal" | "tight" | undefined;
60
+ zIndex?: import("csstype").Property.ZIndex | undefined;
60
61
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
61
62
  portal?: string | React.RefObject<HTMLElement> | undefined;
62
63
  renderValue?: ((item: DropdownNodeSelect) => string) | undefined;
@@ -96,6 +97,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
96
97
  placement?: ("top" | "right" | "bottom" | "left" | "auto") | ("top" | "right" | "bottom" | "left")[] | undefined;
97
98
  onScrollBottom?: ((e: React.UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
98
99
  variant?: "normal" | "tight" | undefined;
100
+ zIndex?: import("csstype").Property.ZIndex | undefined;
99
101
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
100
102
  portal?: string | React.RefObject<HTMLElement> | undefined;
101
103
  renderValue?: ((item: DropdownNodeSelect) => string) | undefined;
@@ -135,6 +137,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
135
137
  placement?: ("top" | "right" | "bottom" | "left" | "auto") | ("top" | "right" | "bottom" | "left")[] | undefined;
136
138
  onScrollBottom?: ((e: React.UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
137
139
  variant?: "normal" | "tight" | undefined;
140
+ zIndex?: import("csstype").Property.ZIndex | undefined;
138
141
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
139
142
  portal?: string | React.RefObject<HTMLElement> | undefined;
140
143
  renderValue?: ((item: DropdownNodeSelect) => string) | undefined;
@@ -174,6 +177,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
174
177
  placement?: ("top" | "right" | "bottom" | "left" | "auto") | ("top" | "right" | "bottom" | "left")[] | undefined;
175
178
  onScrollBottom?: ((e: React.UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
176
179
  variant?: "normal" | "tight" | undefined;
180
+ zIndex?: import("csstype").Property.ZIndex | undefined;
177
181
  listWidth?: import("csstype").Property.Width<string | number> | undefined;
178
182
  portal?: string | React.RefObject<HTMLElement> | undefined;
179
183
  renderValue?: ((item: DropdownNodeSelect) => string) | undefined;
@@ -0,0 +1,35 @@
1
+ import './Rating.config_1yxdjbj.css';
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, '__esModule', { value: true });
5
+
6
+ var config = {
7
+ defaults: {
8
+ view: 'default',
9
+ size: 'l'
10
+ },
11
+ variations: {
12
+ view: {
13
+ "default": "d4wv9lv",
14
+ accent: "aegxbm4"
15
+ },
16
+ size: {
17
+ l: "l10vyqiv",
18
+ m: "mkrysed",
19
+ s: "sl5rvhy",
20
+ xs: "xhutyqx",
21
+ xxs: "x3t7cxk",
22
+ h1: "h1tims0h",
23
+ h2: "hmoy08m",
24
+ h3: "h1lhjcjg",
25
+ h4: "h1n2d4te",
26
+ h5: "h3d2rf7",
27
+ displayL: "dkdlkli",
28
+ displayM: "d1dhhugl",
29
+ displayS: "d1m6sthe"
30
+ }
31
+ }
32
+ };
33
+
34
+ exports.config = config;
35
+ //# sourceMappingURL=Rating.config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Rating.config.js","sources":["../../../../src-css/components/Rating/Rating.config.ts"],"sourcesContent":["import { css, ratingTokens as tokens } from '@salutejs/plasma-new-hope';\n\nexport const config = {\n defaults: {\n view: 'default',\n size: 'l',\n },\n variations: {\n view: {\n default: css`\n ${tokens.color}: var(--text-primary);\n ${tokens.helperTextColor}: var(--text-secondary);\n ${tokens.iconColor}: var(--text-primary);\n ${tokens.outlineIconColor}: var(--text-primary);\n `,\n accent: css`\n ${tokens.color}: var(--text-primary);\n ${tokens.helperTextColor}: var(--text-secondary);\n // TODO: change with token data-yellow, when it will be added to theme\n ${tokens.iconColor}: #F3A912;\n ${tokens.outlineIconColor}: var(--text-tertiary);\n `,\n },\n size: {\n l: css`\n ${tokens.gap}: 0.25rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-body-l-font-family);\n ${tokens.fontSize}: var(--plasma-typo-body-l-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-body-l-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-body-l-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-body-l-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-body-l-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-body-xs-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-body-xs-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-body-xs-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-body-xs-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-body-xs-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-body-xs-line-height);\n\n ${tokens.contentGap}: 0.625rem;\n ${tokens.singleIconContentGap}: 0.25rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconSize}: 1.25rem;\n `,\n m: css`\n ${tokens.gap}: 0.25rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-body-m-font-family);\n ${tokens.fontSize}: var(--plasma-typo-body-m-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-body-m-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-body-m-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-body-m-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-body-m-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-body-xs-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-body-xs-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-body-xs-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-body-xs-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-body-xs-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-body-xs-line-height);\n\n ${tokens.contentGap}: 0.5rem;\n ${tokens.singleIconContentGap}: 0.25rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconSize}: 1.25rem;\n `,\n s: css`\n ${tokens.gap}: 0.25rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-body-s-font-family);\n ${tokens.fontSize}: var(--plasma-typo-body-s-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-body-s-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-body-s-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-body-s-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-body-s-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-body-xs-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-body-xs-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-body-xs-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-body-xs-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-body-xs-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-body-xs-line-height);\n\n ${tokens.contentGap}: 0.5rem;\n ${tokens.singleIconContentGap}: 0.25rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconSize}: 1rem;\n `,\n xs: css`\n ${tokens.gap}: 0.25rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-body-xs-font-family);\n ${tokens.fontSize}: var(--plasma-typo-body-xs-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-body-xs-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-body-xs-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-body-xs-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-body-xs-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-body-xxs-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-body-xxs-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-body-xxs-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-body-xxs-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-body-xxs-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-body-xxs-line-height);\n\n ${tokens.contentGap}: 0.375rem;\n ${tokens.singleIconContentGap}: 0.25rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconSize}: 0.75rem;\n ${tokens.actualIconSize}: 1rem;\n ${tokens.scaleFactor}: 0.75;\n `,\n xxs: css`\n ${tokens.gap}: 0.25rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-body-xxs-font-family);\n ${tokens.fontSize}: var(--plasma-typo-body-xxs-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-body-xxs-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-body-xxs-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-body-xxs-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-body-xxs-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-body-xxs-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-body-xxs-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-body-xxs-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-body-xxs-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-body-xxs-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-body-xxs-line-height);\n\n ${tokens.contentGap}: 0.375rem;\n ${tokens.singleIconContentGap}: 0.25rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconSize}: 0.75rem;\n ${tokens.actualIconSize}: 1rem;\n ${tokens.scaleFactor}: 0.75;\n `,\n h1: css`\n ${tokens.gap}: 0.25rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-h1-font-family);\n ${tokens.fontSize}: var(--plasma-typo-h1-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-h1-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-h1-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-h1-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-h1-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-body-m-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-body-m-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-body-m-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-body-m-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-body-m-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-body-m-line-height);\n\n ${tokens.contentGap}: 1rem;\n ${tokens.singleIconContentGap}: 0.5rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconMarginBottom}: 0.25rem;\n ${tokens.iconSizeLarge}: 3rem;\n ${tokens.iconSizeMedium}: 3rem;\n ${tokens.iconSizeSmall}: 2.25rem;\n\n ${tokens.singleIconMarginBottom}: 0.25rem;\n ${tokens.singleIconSizeLarge}: 3rem;\n ${tokens.singleIconSizeMedium}: 3rem;\n ${tokens.singleIconSizeSmall}: 2.25rem;\n `,\n h2: css`\n ${tokens.gap}: 0.25rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-h2-font-family);\n ${tokens.fontSize}: var(--plasma-typo-h2-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-h2-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-h2-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-h2-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-h2-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-body-s-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-body-s-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-body-s-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-body-s-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-body-s-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-body-s-line-height);\n\n ${tokens.contentGap}: 0.875rem;\n ${tokens.singleIconContentGap}: 0.5rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconMarginBottom}: 0.25rem;\n ${tokens.iconSizeLarge}: 2rem;\n ${tokens.iconSizeMedium}: 1.75rem;\n ${tokens.iconSizeSmall}: 1.5rem;\n\n ${tokens.singleIconMarginBottom}: 0.25rem;\n ${tokens.singleIconSizeLarge}: 2rem;\n ${tokens.singleIconSizeMedium}: 1.75rem;\n ${tokens.singleIconSizeSmall}: 1.5rem;\n `,\n h3: css`\n ${tokens.gap}: 0.25rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-h3-font-family);\n ${tokens.fontSize}: var(--plasma-typo-h3-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-h3-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-h3-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-h3-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-h3-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-body-xs-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-body-xs-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-body-xs-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-body-xs-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-body-xs-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-body-xs-line-height);\n\n ${tokens.contentGap}: 0.75rem;\n ${tokens.singleIconContentGap}: 0.375rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconMarginBottom}: 0.125rem;\n ${tokens.iconSizeLarge}: 1.75rem;\n ${tokens.iconSizeMedium}: 1.5rem;\n ${tokens.iconSizeSmall}: 1.25rem;\n\n ${tokens.singleIconMarginBottom}: 0.125rem;\n ${tokens.singleIconSizeLarge}: 1.75rem;\n ${tokens.singleIconSizeMedium}: 1.5rem;\n ${tokens.singleIconSizeSmall}: 1.25rem;\n `,\n h4: css`\n ${tokens.gap}: 0.25rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-h4-font-family);\n ${tokens.fontSize}: var(--plasma-typo-h4-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-h4-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-h4-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-h4-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-h4-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-body-xs-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-body-xs-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-body-xs-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-body-xs-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-body-xs-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-body-xs-line-height);\n\n ${tokens.contentGap}: 0.625rem;\n ${tokens.singleIconContentGap}: 0.25rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconMarginBottom}: 0.125rem;\n ${tokens.iconSizeLarge}: 1.5rem;\n ${tokens.iconSizeMedium}: 1.25rem;\n ${tokens.iconSizeSmall}: 1.25rem;\n\n ${tokens.singleIconMarginBottom}: 0.125rem;\n ${tokens.singleIconSizeLarge}: 1.5rem;\n ${tokens.singleIconSizeMedium}: 1.25rem;\n ${tokens.singleIconSizeSmall}: 1.25rem;\n `,\n h5: css`\n ${tokens.gap}: 0.25rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-h5-font-family);\n ${tokens.fontSize}: var(--plasma-typo-h5-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-h5-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-h5-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-h5-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-h5-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-body-xs-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-body-xs-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-body-xs-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-body-xs-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-body-xs-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-body-xs-line-height);\n\n ${tokens.contentGap}: 0.625rem;\n ${tokens.singleIconContentGap}: 0.25rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconSizeLarge}: 1.25rem;\n ${tokens.iconSizeMedium}: 1.25rem;\n ${tokens.iconSizeSmall}: 1rem;\n\n ${tokens.singleIconSizeLarge}: 1.25rem;\n ${tokens.singleIconSizeMedium}: 1.25rem;\n ${tokens.singleIconSizeSmall}: 1rem;\n `,\n displayL: css`\n ${tokens.gap}: 0.375rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-dspl-l-font-family);\n ${tokens.fontSize}: var(--plasma-typo-dspl-l-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-dspl-l-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-dspl-l-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-dspl-l-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-dspl-l-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-h3-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-h3-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-h3-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-h3-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-h3-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-h3-line-height);\n\n ${tokens.contentGap}: 1.5rem;\n ${tokens.singleIconContentGap}: 0.75rem;\n ${tokens.wrapperGap}: 0.625rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconSizeLarge}: 4rem;\n ${tokens.iconSizeMedium}: 3rem;\n ${tokens.iconSizeSmall}: 2.25rem;\n\n ${tokens.singleIconSizeLarge}: 7.5rem;\n ${tokens.singleIconSizeMedium}: 7rem;\n ${tokens.singleIconSizeSmall}: 5.5rem;\n `,\n displayM: css`\n ${tokens.gap}: 0.375rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-dspl-m-font-family);\n ${tokens.fontSize}: var(--plasma-typo-dspl-m-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-dspl-m-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-dspl-m-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-dspl-m-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-dspl-m-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-body-l-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-body-l-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-body-l-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-body-l-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-body-l-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-body-l-line-height);\n\n ${tokens.contentGap}: 1.5rem;\n ${tokens.singleIconContentGap}: 0.75rem;\n ${tokens.wrapperGap}: 0.5rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconSizeLarge}: 3rem;\n ${tokens.iconSizeMedium}: 2.25rem;\n ${tokens.iconSizeSmall}: 1.75rem;\n\n ${tokens.singleIconMarginBottom}: 0.5rem;\n ${tokens.singleIconSizeLarge}: 5.25rem;\n ${tokens.singleIconSizeMedium}: 4.5rem;\n ${tokens.singleIconSizeSmall}: 4rem;\n `,\n displayS: css`\n ${tokens.gap}: 0.375rem;\n\n ${tokens.fontFamily}: var(--plasma-typo-dspl-s-font-family);\n ${tokens.fontSize}: var(--plasma-typo-dspl-s-font-size);\n ${tokens.fontStyle}: var(--plasma-typo-dspl-s-font-style);\n ${tokens.fontWeight}: var(--plasma-typo-dspl-s-bold-font-weight);\n ${tokens.letterSpacing}: var(--plasma-typo-dspl-s-letter-spacing);\n ${tokens.lineHeight}: var(--plasma-typo-dspl-s-line-height);\n\n ${tokens.helperTextFontFamily}: var(--plasma-typo-body-l-font-family);\n ${tokens.helperTextFontSize}: var(--plasma-typo-body-l-font-size);\n ${tokens.helperTextFontStyle}: var(--plasma-typo-body-l-font-style);\n ${tokens.helperTextFontWeight}: var(--plasma-typo-body-l-font-weight);\n ${tokens.helperTextLetterSpacing}: var(--plasma-typo-body-l-letter-spacing);\n ${tokens.helperTextLineHeight}: var(--plasma-typo-body-l-line-height);\n\n ${tokens.contentGap}: 1.5rem;\n ${tokens.singleIconContentGap}: 0.75rem;\n ${tokens.wrapperGap}: 0.375rem;\n ${tokens.starsWrapperGap}: 0.125rem;\n\n ${tokens.iconSizeLarge}: 2rem;\n ${tokens.iconSizeMedium}: 1.5rem;\n ${tokens.iconSizeSmall}: 1.25rem;\n\n ${tokens.singleIconMarginBottom}: 0.313rem;\n ${tokens.singleIconSizeLarge}: 4rem;\n ${tokens.singleIconSizeMedium}: 3.5rem;\n ${tokens.singleIconSizeSmall}: 2.75rem;\n `,\n },\n },\n};\n"],"names":["config","defaults","view","size","variations","default","accent","l","m","s","xs","xxs","h1","h2","h3","h4","h5","displayL","displayM","displayS"],"mappings":";;;;AAEO,IAAMA,MAAM,GAAG;AAClBC,EAAAA,QAAQ,EAAE;AACNC,IAAAA,IAAI,EAAE,SAAS;AACfC,IAAAA,IAAI,EAAE,GAAA;GACT;AACDC,EAAAA,UAAU,EAAE;AACRF,IAAAA,IAAI,EAAE;AACFG,MAAAA,SAAAA,EAKC,SAAA;AACDC,MAAAA,MAAM,EAAA,SAAA;KAOT;AACDH,IAAAA,IAAI,EAAE;AACFI,MAAAA,CAAC,EAsBA,UAAA;AACDC,MAAAA,CAAC,EAsBA,SAAA;AACDC,MAAAA,CAAC,EAsBA,SAAA;AACDC,MAAAA,EAAE,EAwBD,SAAA;AACDC,MAAAA,GAAG,EAwBF,SAAA;AACDC,MAAAA,EAAE,EA8BD,UAAA;AACDC,MAAAA,EAAE,EA8BD,SAAA;AACDC,MAAAA,EAAE,EA8BD,UAAA;AACDC,MAAAA,EAAE,EA8BD,UAAA;AACDC,MAAAA,EAAE,EA4BD,SAAA;AACDC,MAAAA,QAAQ,EA6BP,SAAA;AACDC,MAAAA,QAAQ,EA8BP,UAAA;AACDC,MAAAA,QAAQ,EAAA,UAAA;AA+BZ,KAAA;AACJ,GAAA;AACJ;;;;"}
@@ -0,0 +1,15 @@
1
+ .d4wv9lv{--plasma-rating-color:var(--text-primary);--plasma-rating_helper-text_color:var(--text-secondary);--plasma-rating_icon_color:var(--text-primary);--plasma-rating_outline-icon_color:var(--text-primary);}
2
+ .aegxbm4{--plasma-rating-color:var(--text-primary);--plasma-rating_helper-text_color:var(--text-secondary);--plasma-rating_icon_color:#F3A912;--plasma-rating_outline-icon_color:var(--text-tertiary);}
3
+ .l10vyqiv{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-body-l-font-family);--plasma-rating-font-size:var(--plasma-typo-body-l-font-size);--plasma-rating-font-style:var(--plasma-typo-body-l-font-style);--plasma-rating-font-weight:var(--plasma-typo-body-l-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-body-l-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_content_gap:0.625rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size:1.25rem;}
4
+ .mkrysed{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-body-m-font-family);--plasma-rating-font-size:var(--plasma-typo-body-m-font-size);--plasma-rating-font-style:var(--plasma-typo-body-m-font-style);--plasma-rating-font-weight:var(--plasma-typo-body-m-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-body-m-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_content_gap:0.5rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size:1.25rem;}
5
+ .sl5rvhy{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-body-s-font-family);--plasma-rating-font-size:var(--plasma-typo-body-s-font-size);--plasma-rating-font-style:var(--plasma-typo-body-s-font-style);--plasma-rating-font-weight:var(--plasma-typo-body-s-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-body-s-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_content_gap:0.5rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size:1rem;}
6
+ .xhutyqx{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating-font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating-font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating-font-weight:var(--plasma-typo-body-xs-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xxs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xxs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xxs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xxs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xxs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xxs-line-height);--plasma-rating_content_gap:0.375rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size:0.75rem;--plasma-rating_icon-size_actual:1rem;--plasma-rating_icon-size_scale-factor:0.75;}
7
+ .x3t7cxk{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-body-xxs-font-family);--plasma-rating-font-size:var(--plasma-typo-body-xxs-font-size);--plasma-rating-font-style:var(--plasma-typo-body-xxs-font-style);--plasma-rating-font-weight:var(--plasma-typo-body-xxs-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-body-xxs-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-body-xxs-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xxs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xxs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xxs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xxs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xxs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xxs-line-height);--plasma-rating_content_gap:0.375rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size:0.75rem;--plasma-rating_icon-size_actual:1rem;--plasma-rating_icon-size_scale-factor:0.75;}
8
+ .h1tims0h{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-h1-font-family);--plasma-rating-font-size:var(--plasma-typo-h1-font-size);--plasma-rating-font-style:var(--plasma-typo-h1-font-style);--plasma-rating-font-weight:var(--plasma-typo-h1-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-h1-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-h1-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-m-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-m-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-m-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-m-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-m-line-height);--plasma-rating_content_gap:1rem;--plasma-rating_single-icon_content_gap:0.5rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-margin-bottom:0.25rem;--plasma-rating_icon-size_large-screen:3rem;--plasma-rating_icon-size_medium-screen:3rem;--plasma-rating_icon-size_small-screen:2.25rem;--plasma-rating_single-icon_margin-bottom:0.25rem;--plasma-rating_single-icon-size_large-screen:3rem;--plasma-rating_single-icon-size_medium-screen:3rem;--plasma-rating_single-icon-size_small-screen:2.25rem;}
9
+ .hmoy08m{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-h2-font-family);--plasma-rating-font-size:var(--plasma-typo-h2-font-size);--plasma-rating-font-style:var(--plasma-typo-h2-font-style);--plasma-rating-font-weight:var(--plasma-typo-h2-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-h2-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-h2-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-s-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-s-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-s-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-s-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-s-line-height);--plasma-rating_content_gap:0.875rem;--plasma-rating_single-icon_content_gap:0.5rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-margin-bottom:0.25rem;--plasma-rating_icon-size_large-screen:2rem;--plasma-rating_icon-size_medium-screen:1.75rem;--plasma-rating_icon-size_small-screen:1.5rem;--plasma-rating_single-icon_margin-bottom:0.25rem;--plasma-rating_single-icon-size_large-screen:2rem;--plasma-rating_single-icon-size_medium-screen:1.75rem;--plasma-rating_single-icon-size_small-screen:1.5rem;}
10
+ .h1lhjcjg{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-h3-font-family);--plasma-rating-font-size:var(--plasma-typo-h3-font-size);--plasma-rating-font-style:var(--plasma-typo-h3-font-style);--plasma-rating-font-weight:var(--plasma-typo-h3-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-h3-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-h3-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_content_gap:0.75rem;--plasma-rating_single-icon_content_gap:0.375rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-margin-bottom:0.125rem;--plasma-rating_icon-size_large-screen:1.75rem;--plasma-rating_icon-size_medium-screen:1.5rem;--plasma-rating_icon-size_small-screen:1.25rem;--plasma-rating_single-icon_margin-bottom:0.125rem;--plasma-rating_single-icon-size_large-screen:1.75rem;--plasma-rating_single-icon-size_medium-screen:1.5rem;--plasma-rating_single-icon-size_small-screen:1.25rem;}
11
+ .h1n2d4te{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-h4-font-family);--plasma-rating-font-size:var(--plasma-typo-h4-font-size);--plasma-rating-font-style:var(--plasma-typo-h4-font-style);--plasma-rating-font-weight:var(--plasma-typo-h4-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-h4-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-h4-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_content_gap:0.625rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-margin-bottom:0.125rem;--plasma-rating_icon-size_large-screen:1.5rem;--plasma-rating_icon-size_medium-screen:1.25rem;--plasma-rating_icon-size_small-screen:1.25rem;--plasma-rating_single-icon_margin-bottom:0.125rem;--plasma-rating_single-icon-size_large-screen:1.5rem;--plasma-rating_single-icon-size_medium-screen:1.25rem;--plasma-rating_single-icon-size_small-screen:1.25rem;}
12
+ .h3d2rf7{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-h5-font-family);--plasma-rating-font-size:var(--plasma-typo-h5-font-size);--plasma-rating-font-style:var(--plasma-typo-h5-font-style);--plasma-rating-font-weight:var(--plasma-typo-h5-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-h5-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-h5-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_content_gap:0.625rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size_large-screen:1.25rem;--plasma-rating_icon-size_medium-screen:1.25rem;--plasma-rating_icon-size_small-screen:1rem;--plasma-rating_single-icon-size_large-screen:1.25rem;--plasma-rating_single-icon-size_medium-screen:1.25rem;--plasma-rating_single-icon-size_small-screen:1rem;}
13
+ .dkdlkli{--plasma-rating-gap:0.375rem;--plasma-rating-font-family:var(--plasma-typo-dspl-l-font-family);--plasma-rating-font-size:var(--plasma-typo-dspl-l-font-size);--plasma-rating-font-style:var(--plasma-typo-dspl-l-font-style);--plasma-rating-font-weight:var(--plasma-typo-dspl-l-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-dspl-l-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-dspl-l-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-h3-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-h3-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-h3-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-h3-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-h3-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-h3-line-height);--plasma-rating_content_gap:1.5rem;--plasma-rating_single-icon_content_gap:0.75rem;--plasma-rating_wrapper_gap:0.625rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size_large-screen:4rem;--plasma-rating_icon-size_medium-screen:3rem;--plasma-rating_icon-size_small-screen:2.25rem;--plasma-rating_single-icon-size_large-screen:7.5rem;--plasma-rating_single-icon-size_medium-screen:7rem;--plasma-rating_single-icon-size_small-screen:5.5rem;}
14
+ .d1dhhugl{--plasma-rating-gap:0.375rem;--plasma-rating-font-family:var(--plasma-typo-dspl-m-font-family);--plasma-rating-font-size:var(--plasma-typo-dspl-m-font-size);--plasma-rating-font-style:var(--plasma-typo-dspl-m-font-style);--plasma-rating-font-weight:var(--plasma-typo-dspl-m-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-dspl-m-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-dspl-m-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-l-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-l-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-l-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-l-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-l-line-height);--plasma-rating_content_gap:1.5rem;--plasma-rating_single-icon_content_gap:0.75rem;--plasma-rating_wrapper_gap:0.5rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size_large-screen:3rem;--plasma-rating_icon-size_medium-screen:2.25rem;--plasma-rating_icon-size_small-screen:1.75rem;--plasma-rating_single-icon_margin-bottom:0.5rem;--plasma-rating_single-icon-size_large-screen:5.25rem;--plasma-rating_single-icon-size_medium-screen:4.5rem;--plasma-rating_single-icon-size_small-screen:4rem;}
15
+ .d1m6sthe{--plasma-rating-gap:0.375rem;--plasma-rating-font-family:var(--plasma-typo-dspl-s-font-family);--plasma-rating-font-size:var(--plasma-typo-dspl-s-font-size);--plasma-rating-font-style:var(--plasma-typo-dspl-s-font-style);--plasma-rating-font-weight:var(--plasma-typo-dspl-s-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-dspl-s-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-dspl-s-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-l-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-l-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-l-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-l-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-l-line-height);--plasma-rating_content_gap:1.5rem;--plasma-rating_single-icon_content_gap:0.75rem;--plasma-rating_wrapper_gap:0.375rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size_large-screen:2rem;--plasma-rating_icon-size_medium-screen:1.5rem;--plasma-rating_icon-size_small-screen:1.25rem;--plasma-rating_single-icon_margin-bottom:0.313rem;--plasma-rating_single-icon-size_large-screen:4rem;--plasma-rating_single-icon-size_medium-screen:3.5rem;--plasma-rating_single-icon-size_small-screen:2.75rem;}
@@ -0,0 +1,15 @@
1
+ .Rating_config_1yxdjbj_d4wv9lv__d0ccba7c{--plasma-rating-color:var(--text-primary);--plasma-rating_helper-text_color:var(--text-secondary);--plasma-rating_icon_color:var(--text-primary);--plasma-rating_outline-icon_color:var(--text-primary);}
2
+ .Rating_config_1yxdjbj_aegxbm4__d0ccba7c{--plasma-rating-color:var(--text-primary);--plasma-rating_helper-text_color:var(--text-secondary);--plasma-rating_icon_color:#F3A912;--plasma-rating_outline-icon_color:var(--text-tertiary);}
3
+ .Rating_config_1yxdjbj_l10vyqiv__d0ccba7c{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-body-l-font-family);--plasma-rating-font-size:var(--plasma-typo-body-l-font-size);--plasma-rating-font-style:var(--plasma-typo-body-l-font-style);--plasma-rating-font-weight:var(--plasma-typo-body-l-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-body-l-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_content_gap:0.625rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size:1.25rem;}
4
+ .Rating_config_1yxdjbj_mkrysed__d0ccba7c{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-body-m-font-family);--plasma-rating-font-size:var(--plasma-typo-body-m-font-size);--plasma-rating-font-style:var(--plasma-typo-body-m-font-style);--plasma-rating-font-weight:var(--plasma-typo-body-m-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-body-m-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_content_gap:0.5rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size:1.25rem;}
5
+ .Rating_config_1yxdjbj_sl5rvhy__d0ccba7c{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-body-s-font-family);--plasma-rating-font-size:var(--plasma-typo-body-s-font-size);--plasma-rating-font-style:var(--plasma-typo-body-s-font-style);--plasma-rating-font-weight:var(--plasma-typo-body-s-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-body-s-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_content_gap:0.5rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size:1rem;}
6
+ .Rating_config_1yxdjbj_xhutyqx__d0ccba7c{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating-font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating-font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating-font-weight:var(--plasma-typo-body-xs-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xxs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xxs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xxs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xxs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xxs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xxs-line-height);--plasma-rating_content_gap:0.375rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size:0.75rem;--plasma-rating_icon-size_actual:1rem;--plasma-rating_icon-size_scale-factor:0.75;}
7
+ .Rating_config_1yxdjbj_x3t7cxk__d0ccba7c{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-body-xxs-font-family);--plasma-rating-font-size:var(--plasma-typo-body-xxs-font-size);--plasma-rating-font-style:var(--plasma-typo-body-xxs-font-style);--plasma-rating-font-weight:var(--plasma-typo-body-xxs-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-body-xxs-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-body-xxs-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xxs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xxs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xxs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xxs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xxs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xxs-line-height);--plasma-rating_content_gap:0.375rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size:0.75rem;--plasma-rating_icon-size_actual:1rem;--plasma-rating_icon-size_scale-factor:0.75;}
8
+ .Rating_config_1yxdjbj_h1tims0h__d0ccba7c{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-h1-font-family);--plasma-rating-font-size:var(--plasma-typo-h1-font-size);--plasma-rating-font-style:var(--plasma-typo-h1-font-style);--plasma-rating-font-weight:var(--plasma-typo-h1-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-h1-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-h1-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-m-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-m-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-m-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-m-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-m-line-height);--plasma-rating_content_gap:1rem;--plasma-rating_single-icon_content_gap:0.5rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-margin-bottom:0.25rem;--plasma-rating_icon-size_large-screen:3rem;--plasma-rating_icon-size_medium-screen:3rem;--plasma-rating_icon-size_small-screen:2.25rem;--plasma-rating_single-icon_margin-bottom:0.25rem;--plasma-rating_single-icon-size_large-screen:3rem;--plasma-rating_single-icon-size_medium-screen:3rem;--plasma-rating_single-icon-size_small-screen:2.25rem;}
9
+ .Rating_config_1yxdjbj_hmoy08m__d0ccba7c{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-h2-font-family);--plasma-rating-font-size:var(--plasma-typo-h2-font-size);--plasma-rating-font-style:var(--plasma-typo-h2-font-style);--plasma-rating-font-weight:var(--plasma-typo-h2-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-h2-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-h2-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-s-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-s-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-s-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-s-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-s-line-height);--plasma-rating_content_gap:0.875rem;--plasma-rating_single-icon_content_gap:0.5rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-margin-bottom:0.25rem;--plasma-rating_icon-size_large-screen:2rem;--plasma-rating_icon-size_medium-screen:1.75rem;--plasma-rating_icon-size_small-screen:1.5rem;--plasma-rating_single-icon_margin-bottom:0.25rem;--plasma-rating_single-icon-size_large-screen:2rem;--plasma-rating_single-icon-size_medium-screen:1.75rem;--plasma-rating_single-icon-size_small-screen:1.5rem;}
10
+ .Rating_config_1yxdjbj_h1lhjcjg__d0ccba7c{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-h3-font-family);--plasma-rating-font-size:var(--plasma-typo-h3-font-size);--plasma-rating-font-style:var(--plasma-typo-h3-font-style);--plasma-rating-font-weight:var(--plasma-typo-h3-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-h3-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-h3-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_content_gap:0.75rem;--plasma-rating_single-icon_content_gap:0.375rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-margin-bottom:0.125rem;--plasma-rating_icon-size_large-screen:1.75rem;--plasma-rating_icon-size_medium-screen:1.5rem;--plasma-rating_icon-size_small-screen:1.25rem;--plasma-rating_single-icon_margin-bottom:0.125rem;--plasma-rating_single-icon-size_large-screen:1.75rem;--plasma-rating_single-icon-size_medium-screen:1.5rem;--plasma-rating_single-icon-size_small-screen:1.25rem;}
11
+ .Rating_config_1yxdjbj_h1n2d4te__d0ccba7c{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-h4-font-family);--plasma-rating-font-size:var(--plasma-typo-h4-font-size);--plasma-rating-font-style:var(--plasma-typo-h4-font-style);--plasma-rating-font-weight:var(--plasma-typo-h4-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-h4-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-h4-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_content_gap:0.625rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-margin-bottom:0.125rem;--plasma-rating_icon-size_large-screen:1.5rem;--plasma-rating_icon-size_medium-screen:1.25rem;--plasma-rating_icon-size_small-screen:1.25rem;--plasma-rating_single-icon_margin-bottom:0.125rem;--plasma-rating_single-icon-size_large-screen:1.5rem;--plasma-rating_single-icon-size_medium-screen:1.25rem;--plasma-rating_single-icon-size_small-screen:1.25rem;}
12
+ .Rating_config_1yxdjbj_h3d2rf7__d0ccba7c{--plasma-rating-gap:0.25rem;--plasma-rating-font-family:var(--plasma-typo-h5-font-family);--plasma-rating-font-size:var(--plasma-typo-h5-font-size);--plasma-rating-font-style:var(--plasma-typo-h5-font-style);--plasma-rating-font-weight:var(--plasma-typo-h5-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-h5-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-h5-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-xs-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-xs-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-xs-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-xs-line-height);--plasma-rating_content_gap:0.625rem;--plasma-rating_single-icon_content_gap:0.25rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size_large-screen:1.25rem;--plasma-rating_icon-size_medium-screen:1.25rem;--plasma-rating_icon-size_small-screen:1rem;--plasma-rating_single-icon-size_large-screen:1.25rem;--plasma-rating_single-icon-size_medium-screen:1.25rem;--plasma-rating_single-icon-size_small-screen:1rem;}
13
+ .Rating_config_1yxdjbj_dkdlkli__d0ccba7c{--plasma-rating-gap:0.375rem;--plasma-rating-font-family:var(--plasma-typo-dspl-l-font-family);--plasma-rating-font-size:var(--plasma-typo-dspl-l-font-size);--plasma-rating-font-style:var(--plasma-typo-dspl-l-font-style);--plasma-rating-font-weight:var(--plasma-typo-dspl-l-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-dspl-l-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-dspl-l-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-h3-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-h3-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-h3-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-h3-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-h3-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-h3-line-height);--plasma-rating_content_gap:1.5rem;--plasma-rating_single-icon_content_gap:0.75rem;--plasma-rating_wrapper_gap:0.625rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size_large-screen:4rem;--plasma-rating_icon-size_medium-screen:3rem;--plasma-rating_icon-size_small-screen:2.25rem;--plasma-rating_single-icon-size_large-screen:7.5rem;--plasma-rating_single-icon-size_medium-screen:7rem;--plasma-rating_single-icon-size_small-screen:5.5rem;}
14
+ .Rating_config_1yxdjbj_d1dhhugl__d0ccba7c{--plasma-rating-gap:0.375rem;--plasma-rating-font-family:var(--plasma-typo-dspl-m-font-family);--plasma-rating-font-size:var(--plasma-typo-dspl-m-font-size);--plasma-rating-font-style:var(--plasma-typo-dspl-m-font-style);--plasma-rating-font-weight:var(--plasma-typo-dspl-m-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-dspl-m-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-dspl-m-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-l-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-l-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-l-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-l-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-l-line-height);--plasma-rating_content_gap:1.5rem;--plasma-rating_single-icon_content_gap:0.75rem;--plasma-rating_wrapper_gap:0.5rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size_large-screen:3rem;--plasma-rating_icon-size_medium-screen:2.25rem;--plasma-rating_icon-size_small-screen:1.75rem;--plasma-rating_single-icon_margin-bottom:0.5rem;--plasma-rating_single-icon-size_large-screen:5.25rem;--plasma-rating_single-icon-size_medium-screen:4.5rem;--plasma-rating_single-icon-size_small-screen:4rem;}
15
+ .Rating_config_1yxdjbj_d1m6sthe__d0ccba7c{--plasma-rating-gap:0.375rem;--plasma-rating-font-family:var(--plasma-typo-dspl-s-font-family);--plasma-rating-font-size:var(--plasma-typo-dspl-s-font-size);--plasma-rating-font-style:var(--plasma-typo-dspl-s-font-style);--plasma-rating-font-weight:var(--plasma-typo-dspl-s-bold-font-weight);--plasma-rating-letter-spacing:var(--plasma-typo-dspl-s-letter-spacing);--plasma-rating-line-height:var(--plasma-typo-dspl-s-line-height);--plasma-rating_helper-text_font-family:var(--plasma-typo-body-l-font-family);--plasma-rating_helper-text_font-size:var(--plasma-typo-body-l-font-size);--plasma-rating_helper-text_font-style:var(--plasma-typo-body-l-font-style);--plasma-rating_helper-text_font-weight:var(--plasma-typo-body-l-font-weight);--plasma-rating_helper-text_letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-rating_helper-text_line-height:var(--plasma-typo-body-l-line-height);--plasma-rating_content_gap:1.5rem;--plasma-rating_single-icon_content_gap:0.75rem;--plasma-rating_wrapper_gap:0.375rem;--plasma-rating_stars-wrapper_gap:0.125rem;--plasma-rating_icon-size_large-screen:2rem;--plasma-rating_icon-size_medium-screen:1.5rem;--plasma-rating_icon-size_small-screen:1.25rem;--plasma-rating_single-icon_margin-bottom:0.313rem;--plasma-rating_single-icon-size_large-screen:4rem;--plasma-rating_single-icon-size_medium-screen:3.5rem;--plasma-rating_single-icon-size_small-screen:2.75rem;}
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var plasmaNewHope = require('@salutejs/plasma-new-hope');
6
+ var Rating_config = require('./Rating.config.js');
7
+
8
+ var mergedConfig = /*#__PURE__*/plasmaNewHope.mergeConfig(plasmaNewHope.ratingConfig, Rating_config.config);
9
+ var Rating = /*#__PURE__*/plasmaNewHope.component(mergedConfig);
10
+
11
+ exports.Rating = Rating;
12
+ //# sourceMappingURL=Rating.js.map