@salutejs/plasma-web 1.468.0-canary.1610.12206012256.0 → 1.468.0-canary.1610.12233446800.0
Sign up to get free protection for your applications and to get access to all the features.
- package/api/plasma-web.api.md +42 -0
- package/components/Rating/Rating.config.d.ts +27 -0
- package/components/Rating/Rating.config.js +36 -0
- package/components/Rating/Rating.d.ts +35 -0
- package/components/Rating/Rating.js +10 -0
- package/components/Rating/index.d.ts +2 -0
- package/components/Rating/index.js +25 -0
- package/css/cjs/components/Rating/Rating.config.js +35 -0
- package/css/cjs/components/Rating/Rating.config.js.map +1 -0
- package/css/cjs/components/Rating/Rating.config_1yxdjbj.css +15 -0
- package/css/cjs/components/Rating/Rating.css +15 -0
- package/css/cjs/components/Rating/Rating.js +12 -0
- package/css/cjs/components/Rating/Rating.js.map +1 -0
- package/css/cjs/index.css +16 -0
- package/css/cjs/index.js +10 -0
- package/css/cjs/index.js.map +1 -1
- package/css/es/components/Rating/Rating.config.js +31 -0
- package/css/es/components/Rating/Rating.config.js.map +1 -0
- package/css/es/components/Rating/Rating.config_1yxdjbj.css +15 -0
- package/css/es/components/Rating/Rating.css +15 -0
- package/css/es/components/Rating/Rating.js +8 -0
- package/css/es/components/Rating/Rating.js.map +1 -0
- package/css/es/index.css +16 -0
- package/css/es/index.js +2 -1
- package/css/es/index.js.map +1 -1
- package/css/index.d.ts +2 -0
- package/es/components/Rating/Rating.config.js +30 -0
- package/es/components/Rating/Rating.js +4 -0
- package/es/components/Rating/index.js +2 -0
- package/es/index.js +2 -1
- package/index.d.ts +1 -0
- package/index.js +11 -0
- package/package.json +3 -3
- package/temp/plasma-web.api.md +42 -0
package/api/plasma-web.api.md
CHANGED
@@ -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';
|
@@ -3391,6 +3393,46 @@ export { RangeProps }
|
|
3391
3393
|
|
3392
3394
|
export { rangeTokens }
|
3393
3395
|
|
3396
|
+
// @public (undocumented)
|
3397
|
+
export const Rating: FunctionComponent<PropsType< {
|
3398
|
+
view: {
|
3399
|
+
default: PolymorphicClassName;
|
3400
|
+
accent: PolymorphicClassName;
|
3401
|
+
};
|
3402
|
+
size: {
|
3403
|
+
l: PolymorphicClassName;
|
3404
|
+
m: PolymorphicClassName;
|
3405
|
+
s: PolymorphicClassName;
|
3406
|
+
xs: PolymorphicClassName;
|
3407
|
+
xxs: PolymorphicClassName;
|
3408
|
+
h1: PolymorphicClassName;
|
3409
|
+
h2: PolymorphicClassName;
|
3410
|
+
h3: PolymorphicClassName;
|
3411
|
+
h4: PolymorphicClassName;
|
3412
|
+
h5: PolymorphicClassName;
|
3413
|
+
displayL: PolymorphicClassName;
|
3414
|
+
displayM: PolymorphicClassName;
|
3415
|
+
displayS: PolymorphicClassName;
|
3416
|
+
};
|
3417
|
+
}> & {
|
3418
|
+
value?: number | undefined;
|
3419
|
+
hasValue?: boolean | undefined;
|
3420
|
+
precision?: number | undefined;
|
3421
|
+
valuePlacement?: "after" | "before" | undefined;
|
3422
|
+
iconSlot?: ReactNode;
|
3423
|
+
iconSlotOutline?: ReactNode;
|
3424
|
+
iconSlotHalf?: ReactNode;
|
3425
|
+
hasIcons?: boolean | undefined;
|
3426
|
+
iconQuantity?: 1 | 5 | 10 | undefined;
|
3427
|
+
helperText?: string | undefined;
|
3428
|
+
size?: string | undefined;
|
3429
|
+
view?: string | undefined;
|
3430
|
+
} & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLInputElement>>;
|
3431
|
+
|
3432
|
+
export { ratingClasses }
|
3433
|
+
|
3434
|
+
export { ratingTokens }
|
3435
|
+
|
3394
3436
|
export { Ratio }
|
3395
3437
|
|
3396
3438
|
export { RectSkeleton }
|
@@ -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 | 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,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");
|
@@ -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
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"Rating.js","sources":["../../../../src-css/components/Rating/Rating.ts"],"sourcesContent":["import { ratingConfig, component, mergeConfig } from '@salutejs/plasma-new-hope';\n\nimport { config } from './Rating.config';\n\nconst mergedConfig = mergeConfig(ratingConfig, config);\n\nexport const Rating = component(mergedConfig);\n"],"names":["mergedConfig","mergeConfig","ratingConfig","config","Rating","component"],"mappings":";;;;;;;AAIA,IAAMA,YAAY,gBAAGC,yBAAW,CAACC,0BAAY,EAAEC,oBAAM,CAAC,CAAA;IAEzCC,MAAM,gBAAGC,uBAAS,CAACL,YAAY;;;;"}
|
package/css/cjs/index.css
CHANGED
@@ -381,6 +381,22 @@
|
|
381
381
|
.Range_config_tettq8_t3pjoau__9018d4e0{--plasma-range-disabled-opacity:0.4;}
|
382
382
|
.Range_config_tettq8_tk9yl84__9018d4e0{--plasma-range-background-readonly:var(--surface-clear);--plasma-range-border-color-readonly:var(--surface-transparent-tertiary);--plasma-range__label-color-readonly:var(--text-secondary);--plasma-range__left-helper-color-readonly:var(--text-secondary);--plasma-range__divider-color-readonly:var(--text-secondary);--plasma-range-textfield-color-readonly:var(--text-secondary);--plasma-range-textfield-background-color-readonly:transparent;--plasma-range-textfield-placeholder-color-readonly:var(--text-secondary);}
|
383
383
|
|
384
|
+
.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);}
|
385
|
+
.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);}
|
386
|
+
.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;}
|
387
|
+
.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;}
|
388
|
+
.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;}
|
389
|
+
.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;}
|
390
|
+
.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;}
|
391
|
+
.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;}
|
392
|
+
.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;}
|
393
|
+
.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;}
|
394
|
+
.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;}
|
395
|
+
.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;}
|
396
|
+
.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;}
|
397
|
+
.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;}
|
398
|
+
.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;}
|
399
|
+
|
384
400
|
.SegmentItem_config_1mppsqs_cw5l9ny__3bdc03cc{--plasma-segment-item-color:var(--text-secondary);--plasma-segment-item-background-color:transparent;--plasma-segment-item-color-hover:var(--text-primary-hover);--plasma-segment-item-background-color-hover:transparent;--plasma-segment-item-additional-color:var(--text-tertiary);--plasma-segment-item-additional-color-hover:var(--text-secondary);--plasma-segment-item-selected-color:var(--text-primary-hover);--plasma-segment-item-selected-background-color:transparent;--plasma-segment-item-selected-color-hover:var(--text-primary);--plasma-segment-item-selected-background-color-hover:transparent;--plasma-segment-item-selected-additional-color:var(--text-secondary);--plasma-segment-item-selected-additional-color-hover:var(--text-secondary);--plasma-segment-outline-focus-color:var(--plasma-colors-button-focused,var(--text-accent));}
|
385
401
|
.SegmentItem_config_1mppsqs_s1xvuorj__3bdc03cc{--plasma-segment-item-color:var(--text-primary);--plasma-segment-item-background-color:transparent;--plasma-segment-item-color-hover:var(--text-primary-hover);--plasma-segment-item-background-color-hover:transparent;--plasma-segment-item-additional-color:var(--text-secondary);--plasma-segment-item-additional-color-hover:var(--text-secondary);--plasma-segment-item-selected-color:var(--text-primary);--plasma-segment-item-selected-background-color:var(--surface-transparent-card);--plasma-segment-item-selected-color-hover:var(--text-primary-hover);--plasma-segment-item-selected-background-color-hover:var(--surface-transparent-card);--plasma-segment-item-selected-additional-color:var(--text-secondary);--plasma-segment-item-selected-additional-color-hover:var(--text-secondary);--plasma-segment-outline-focus-color:var(--plasma-colors-button-focused,var(--text-accent));}
|
386
402
|
.SegmentItem_config_1mppsqs_d1f4sf91__3bdc03cc{--plasma-segment-item-color:var(--text-primary);--plasma-segment-item-background-color:transparent;--plasma-segment-item-color-hover:var(--text-primary-hover);--plasma-segment-item-background-color-hover:transparent;--plasma-segment-item-additional-color:var(--text-secondary);--plasma-segment-item-additional-color-hover:var(--text-secondary);--plasma-segment-item-selected-color:var(--inverse-text-primary);--plasma-segment-item-selected-background-color:var(--surface-solid-default);--plasma-segment-item-selected-color-hover:var(--inverse-text-primary-hover);--plasma-segment-item-selected-background-color-hover:var(--surface-solid-default);--plasma-segment-item-selected-additional-color:var(--inverse-text-secondary);--plasma-segment-item-selected-additional-color-hover:var(--inverse-text-secondary);--plasma-segment-outline-focus-color:var(--plasma-colors-button-focused,var(--text-accent));}
|
package/css/cjs/index.js
CHANGED
@@ -47,6 +47,7 @@ var Price = require('./components/Price/Price.js');
|
|
47
47
|
var Progress = require('./components/Progress/Progress.js');
|
48
48
|
var Radiobox = require('./components/Radiobox/Radiobox.js');
|
49
49
|
var Range = require('./components/Range/Range.js');
|
50
|
+
var Rating = require('./components/Rating/Rating.js');
|
50
51
|
var Segment = require('./components/Segment/Segment.js');
|
51
52
|
var Select = require('./components/Select/Select.js');
|
52
53
|
var Sheet = require('./components/Sheet/Sheet.js');
|
@@ -193,6 +194,14 @@ Object.defineProperty(exports, 'rangeTokens', {
|
|
193
194
|
enumerable: true,
|
194
195
|
get: function () { return plasmaNewHope.rangeTokens; }
|
195
196
|
});
|
197
|
+
Object.defineProperty(exports, 'ratingClasses', {
|
198
|
+
enumerable: true,
|
199
|
+
get: function () { return plasmaNewHope.ratingClasses; }
|
200
|
+
});
|
201
|
+
Object.defineProperty(exports, 'ratingTokens', {
|
202
|
+
enumerable: true,
|
203
|
+
get: function () { return plasmaNewHope.ratingTokens; }
|
204
|
+
});
|
196
205
|
Object.defineProperty(exports, 'sheetClasses', {
|
197
206
|
enumerable: true,
|
198
207
|
get: function () { return plasmaNewHope.sheetClasses; }
|
@@ -281,6 +290,7 @@ exports.Price = Price.Price;
|
|
281
290
|
exports.Progress = Progress.Progress;
|
282
291
|
exports.Radiobox = Radiobox.Radiobox;
|
283
292
|
exports.Range = Range.Range;
|
293
|
+
exports.Rating = Rating.Rating;
|
284
294
|
exports.SegmentGroup = Segment.SegmentGroup;
|
285
295
|
exports.SegmentItem = Segment.SegmentItem;
|
286
296
|
exports.Select = Select.Select;
|
package/css/cjs/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import './Rating.config_1yxdjbj.css';
|
2
|
+
var config = {
|
3
|
+
defaults: {
|
4
|
+
view: 'default',
|
5
|
+
size: 'l'
|
6
|
+
},
|
7
|
+
variations: {
|
8
|
+
view: {
|
9
|
+
"default": "d4wv9lv",
|
10
|
+
accent: "aegxbm4"
|
11
|
+
},
|
12
|
+
size: {
|
13
|
+
l: "l10vyqiv",
|
14
|
+
m: "mkrysed",
|
15
|
+
s: "sl5rvhy",
|
16
|
+
xs: "xhutyqx",
|
17
|
+
xxs: "x3t7cxk",
|
18
|
+
h1: "h1tims0h",
|
19
|
+
h2: "hmoy08m",
|
20
|
+
h3: "h1lhjcjg",
|
21
|
+
h4: "h1n2d4te",
|
22
|
+
h5: "h3d2rf7",
|
23
|
+
displayL: "dkdlkli",
|
24
|
+
displayM: "d1dhhugl",
|
25
|
+
displayS: "d1m6sthe"
|
26
|
+
}
|
27
|
+
}
|
28
|
+
};
|
29
|
+
|
30
|
+
export { config };
|
31
|
+
//# 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,8 @@
|
|
1
|
+
import { component, mergeConfig, ratingConfig } from '@salutejs/plasma-new-hope';
|
2
|
+
import { config } from './Rating.config.js';
|
3
|
+
|
4
|
+
var mergedConfig = /*#__PURE__*/mergeConfig(ratingConfig, config);
|
5
|
+
var Rating = /*#__PURE__*/component(mergedConfig);
|
6
|
+
|
7
|
+
export { Rating };
|
8
|
+
//# sourceMappingURL=Rating.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"Rating.js","sources":["../../../../src-css/components/Rating/Rating.ts"],"sourcesContent":["import { ratingConfig, component, mergeConfig } from '@salutejs/plasma-new-hope';\n\nimport { config } from './Rating.config';\n\nconst mergedConfig = mergeConfig(ratingConfig, config);\n\nexport const Rating = component(mergedConfig);\n"],"names":["mergedConfig","mergeConfig","ratingConfig","config","Rating","component"],"mappings":";;;AAIA,IAAMA,YAAY,gBAAGC,WAAW,CAACC,YAAY,EAAEC,MAAM,CAAC,CAAA;IAEzCC,MAAM,gBAAGC,SAAS,CAACL,YAAY;;;;"}
|
package/css/es/index.css
CHANGED
@@ -381,6 +381,22 @@
|
|
381
381
|
.Range_config_tettq8_t3pjoau__9018d4e0{--plasma-range-disabled-opacity:0.4;}
|
382
382
|
.Range_config_tettq8_tk9yl84__9018d4e0{--plasma-range-background-readonly:var(--surface-clear);--plasma-range-border-color-readonly:var(--surface-transparent-tertiary);--plasma-range__label-color-readonly:var(--text-secondary);--plasma-range__left-helper-color-readonly:var(--text-secondary);--plasma-range__divider-color-readonly:var(--text-secondary);--plasma-range-textfield-color-readonly:var(--text-secondary);--plasma-range-textfield-background-color-readonly:transparent;--plasma-range-textfield-placeholder-color-readonly:var(--text-secondary);}
|
383
383
|
|
384
|
+
.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);}
|
385
|
+
.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);}
|
386
|
+
.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;}
|
387
|
+
.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;}
|
388
|
+
.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;}
|
389
|
+
.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;}
|
390
|
+
.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;}
|
391
|
+
.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;}
|
392
|
+
.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;}
|
393
|
+
.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;}
|
394
|
+
.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;}
|
395
|
+
.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;}
|
396
|
+
.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;}
|
397
|
+
.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;}
|
398
|
+
.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;}
|
399
|
+
|
384
400
|
.SegmentItem_config_1mppsqs_cw5l9ny__3bdc03cc{--plasma-segment-item-color:var(--text-secondary);--plasma-segment-item-background-color:transparent;--plasma-segment-item-color-hover:var(--text-primary-hover);--plasma-segment-item-background-color-hover:transparent;--plasma-segment-item-additional-color:var(--text-tertiary);--plasma-segment-item-additional-color-hover:var(--text-secondary);--plasma-segment-item-selected-color:var(--text-primary-hover);--plasma-segment-item-selected-background-color:transparent;--plasma-segment-item-selected-color-hover:var(--text-primary);--plasma-segment-item-selected-background-color-hover:transparent;--plasma-segment-item-selected-additional-color:var(--text-secondary);--plasma-segment-item-selected-additional-color-hover:var(--text-secondary);--plasma-segment-outline-focus-color:var(--plasma-colors-button-focused,var(--text-accent));}
|
385
401
|
.SegmentItem_config_1mppsqs_s1xvuorj__3bdc03cc{--plasma-segment-item-color:var(--text-primary);--plasma-segment-item-background-color:transparent;--plasma-segment-item-color-hover:var(--text-primary-hover);--plasma-segment-item-background-color-hover:transparent;--plasma-segment-item-additional-color:var(--text-secondary);--plasma-segment-item-additional-color-hover:var(--text-secondary);--plasma-segment-item-selected-color:var(--text-primary);--plasma-segment-item-selected-background-color:var(--surface-transparent-card);--plasma-segment-item-selected-color-hover:var(--text-primary-hover);--plasma-segment-item-selected-background-color-hover:var(--surface-transparent-card);--plasma-segment-item-selected-additional-color:var(--text-secondary);--plasma-segment-item-selected-additional-color-hover:var(--text-secondary);--plasma-segment-outline-focus-color:var(--plasma-colors-button-focused,var(--text-accent));}
|
386
402
|
.SegmentItem_config_1mppsqs_d1f4sf91__3bdc03cc{--plasma-segment-item-color:var(--text-primary);--plasma-segment-item-background-color:transparent;--plasma-segment-item-color-hover:var(--text-primary-hover);--plasma-segment-item-background-color-hover:transparent;--plasma-segment-item-additional-color:var(--text-secondary);--plasma-segment-item-additional-color-hover:var(--text-secondary);--plasma-segment-item-selected-color:var(--inverse-text-primary);--plasma-segment-item-selected-background-color:var(--surface-solid-default);--plasma-segment-item-selected-color-hover:var(--inverse-text-primary-hover);--plasma-segment-item-selected-background-color-hover:var(--surface-solid-default);--plasma-segment-item-selected-additional-color:var(--inverse-text-secondary);--plasma-segment-item-selected-additional-color-hover:var(--inverse-text-secondary);--plasma-segment-outline-focus-color:var(--plasma-colors-button-focused,var(--text-accent));}
|
package/css/es/index.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
export { AccordionItem, ButtonBase, CellTextbox, CellTextboxLabel, CellTextboxSubtitle, CellTextboxTitle, Col, Overlay, PopupProvider as PopupBaseProvider, Portal, RadioGroup, RectSkeleton, Row, SSRProvider, SegmentProvider, TabItemRefs, TabsContext, addNotification, closeNotification, counterTokens, datePickerClasses, datePickerTokens, dividerTokens, dropzoneClasses, dropzoneTokens, modalClasses as modalBaseClasses, numberInputClasses, numberInputTokens, popupClasses as popupBaseClasses, priceClasses, rangeTokens, sheetClasses, toolbarTokens, usePopupContext as usePopupBaseContext, useSegment, useToast } from '@salutejs/plasma-new-hope';
|
1
|
+
export { AccordionItem, ButtonBase, CellTextbox, CellTextboxLabel, CellTextboxSubtitle, CellTextboxTitle, Col, Overlay, PopupProvider as PopupBaseProvider, Portal, RadioGroup, RectSkeleton, Row, SSRProvider, SegmentProvider, TabItemRefs, TabsContext, addNotification, closeNotification, counterTokens, datePickerClasses, datePickerTokens, dividerTokens, dropzoneClasses, dropzoneTokens, modalClasses as modalBaseClasses, numberInputClasses, numberInputTokens, popupClasses as popupBaseClasses, priceClasses, rangeTokens, ratingClasses, ratingTokens, sheetClasses, toolbarTokens, usePopupContext as usePopupBaseContext, useSegment, useToast } from '@salutejs/plasma-new-hope';
|
2
2
|
export { Accordion } from './components/Accordion/Accordion.js';
|
3
3
|
export { Attach } from './components/Attach/Attach.js';
|
4
4
|
export { Autocomplete } from './components/Autocomplete/Autocomplete.js';
|
@@ -43,6 +43,7 @@ export { Price } from './components/Price/Price.js';
|
|
43
43
|
export { Progress } from './components/Progress/Progress.js';
|
44
44
|
export { Radiobox } from './components/Radiobox/Radiobox.js';
|
45
45
|
export { Range } from './components/Range/Range.js';
|
46
|
+
export { Rating } from './components/Rating/Rating.js';
|
46
47
|
export { SegmentGroup, SegmentItem } from './components/Segment/Segment.js';
|
47
48
|
export { Select } from './components/Select/Select.js';
|
48
49
|
export { Sheet } from './components/Sheet/Sheet.js';
|
package/css/es/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/css/index.d.ts
CHANGED
@@ -40,6 +40,7 @@ export * from '../components/Price';
|
|
40
40
|
export * from '../components/Progress';
|
41
41
|
export * from '../components/Radiobox';
|
42
42
|
export * from '../components/Range';
|
43
|
+
export * from '../components/Rating';
|
43
44
|
export * from '../components/SSRProvider';
|
44
45
|
export * from '../components/Segment';
|
45
46
|
export * from '../components/Select';
|
@@ -99,6 +100,7 @@ export * from '../components/Price';
|
|
99
100
|
export * from '../components/Progress';
|
100
101
|
export * from '../components/Radiobox';
|
101
102
|
export * from '../components/Range';
|
103
|
+
export * from '../components/Rating';
|
102
104
|
export * from '../components/SSRProvider';
|
103
105
|
export * from '../components/Segment';
|
104
106
|
export * from '../components/Select';
|
@@ -0,0 +1,30 @@
|
|
1
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15;
|
2
|
+
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
3
|
+
import { css, ratingTokens as tokens } from '@salutejs/plasma-new-hope/styled-components';
|
4
|
+
export var config = {
|
5
|
+
defaults: {
|
6
|
+
view: 'default',
|
7
|
+
size: 'l'
|
8
|
+
},
|
9
|
+
variations: {
|
10
|
+
view: {
|
11
|
+
"default": /*#__PURE__*/css(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-primary);\n "])), tokens.color, tokens.helperTextColor, tokens.iconColor, tokens.outlineIconColor),
|
12
|
+
accent: /*#__PURE__*/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 "])), tokens.color, tokens.helperTextColor, tokens.iconColor, tokens.outlineIconColor)
|
13
|
+
},
|
14
|
+
size: {
|
15
|
+
l: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.starsWrapperGap, tokens.iconSize),
|
16
|
+
m: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.starsWrapperGap, tokens.iconSize),
|
17
|
+
s: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.starsWrapperGap, tokens.iconSize),
|
18
|
+
xs: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.starsWrapperGap, tokens.iconSize, tokens.actualIconSize, tokens.scaleFactor),
|
19
|
+
xxs: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.starsWrapperGap, tokens.iconSize, tokens.actualIconSize, tokens.scaleFactor),
|
20
|
+
h1: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.starsWrapperGap, tokens.iconMarginBottom, tokens.iconSizeLarge, tokens.iconSizeMedium, tokens.iconSizeSmall, tokens.singleIconMarginBottom, tokens.singleIconSizeLarge, tokens.singleIconSizeMedium, tokens.singleIconSizeSmall),
|
21
|
+
h2: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.starsWrapperGap, tokens.iconMarginBottom, tokens.iconSizeLarge, tokens.iconSizeMedium, tokens.iconSizeSmall, tokens.singleIconMarginBottom, tokens.singleIconSizeLarge, tokens.singleIconSizeMedium, tokens.singleIconSizeSmall),
|
22
|
+
h3: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.starsWrapperGap, tokens.iconMarginBottom, tokens.iconSizeLarge, tokens.iconSizeMedium, tokens.iconSizeSmall, tokens.singleIconMarginBottom, tokens.singleIconSizeLarge, tokens.singleIconSizeMedium, tokens.singleIconSizeSmall),
|
23
|
+
h4: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.starsWrapperGap, tokens.iconMarginBottom, tokens.iconSizeLarge, tokens.iconSizeMedium, tokens.iconSizeSmall, tokens.singleIconMarginBottom, tokens.singleIconSizeLarge, tokens.singleIconSizeMedium, tokens.singleIconSizeSmall),
|
24
|
+
h5: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.starsWrapperGap, tokens.iconSizeLarge, tokens.iconSizeMedium, tokens.iconSizeSmall, tokens.singleIconSizeLarge, tokens.singleIconSizeMedium, tokens.singleIconSizeSmall),
|
25
|
+
displayL: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.wrapperGap, tokens.starsWrapperGap, tokens.iconSizeLarge, tokens.iconSizeMedium, tokens.iconSizeSmall, tokens.singleIconSizeLarge, tokens.singleIconSizeMedium, tokens.singleIconSizeSmall),
|
26
|
+
displayM: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.wrapperGap, tokens.starsWrapperGap, tokens.iconSizeLarge, tokens.iconSizeMedium, tokens.iconSizeSmall, tokens.singleIconMarginBottom, tokens.singleIconSizeLarge, tokens.singleIconSizeMedium, tokens.singleIconSizeSmall),
|
27
|
+
displayS: /*#__PURE__*/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 "])), tokens.gap, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.letterSpacing, tokens.lineHeight, tokens.helperTextFontFamily, tokens.helperTextFontSize, tokens.helperTextFontStyle, tokens.helperTextFontWeight, tokens.helperTextLetterSpacing, tokens.helperTextLineHeight, tokens.contentGap, tokens.singleIconContentGap, tokens.wrapperGap, tokens.starsWrapperGap, tokens.iconSizeLarge, tokens.iconSizeMedium, tokens.iconSizeSmall, tokens.singleIconMarginBottom, tokens.singleIconSizeLarge, tokens.singleIconSizeMedium, tokens.singleIconSizeSmall)
|
28
|
+
}
|
29
|
+
}
|
30
|
+
};
|
package/es/index.js
CHANGED
@@ -73,4 +73,5 @@ export * from './components/Mask';
|
|
73
73
|
export * from './components/Attach';
|
74
74
|
export * from './components/ChipGroup';
|
75
75
|
export * from './components/NumberInput';
|
76
|
-
export * from './components/Dropzone';
|
76
|
+
export * from './components/Dropzone';
|
77
|
+
export * from './components/Rating';
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
@@ -838,4 +838,15 @@ Object.keys(_Dropzone).forEach(function (key) {
|
|
838
838
|
return _Dropzone[key];
|
839
839
|
}
|
840
840
|
});
|
841
|
+
});
|
842
|
+
var _Rating = /*#__PURE__*/require("./components/Rating");
|
843
|
+
Object.keys(_Rating).forEach(function (key) {
|
844
|
+
if (key === "default" || key === "__esModule") return;
|
845
|
+
if (key in exports && exports[key] === _Rating[key]) return;
|
846
|
+
Object.defineProperty(exports, key, {
|
847
|
+
enumerable: true,
|
848
|
+
get: function get() {
|
849
|
+
return _Rating[key];
|
850
|
+
}
|
851
|
+
});
|
841
852
|
});
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/plasma-web",
|
3
|
-
"version": "1.468.0-canary.1610.
|
3
|
+
"version": "1.468.0-canary.1610.12233446800.0",
|
4
4
|
"description": "Salute Design System / React UI kit for web applications",
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -21,7 +21,7 @@
|
|
21
21
|
"dependencies": {
|
22
22
|
"@salutejs/plasma-core": "1.187.0",
|
23
23
|
"@salutejs/plasma-hope": "1.322.0",
|
24
|
-
"@salutejs/plasma-new-hope": "0.213.0-canary.1610.
|
24
|
+
"@salutejs/plasma-new-hope": "0.213.0-canary.1610.12233446800.0",
|
25
25
|
"@salutejs/plasma-themes": "0.23.0",
|
26
26
|
"@salutejs/plasma-tokens-b2b": "1.43.0",
|
27
27
|
"@salutejs/plasma-tokens-b2c": "0.54.0",
|
@@ -112,5 +112,5 @@
|
|
112
112
|
"Fanil Zubairov"
|
113
113
|
],
|
114
114
|
"sideEffects": false,
|
115
|
-
"gitHead": "
|
115
|
+
"gitHead": "600b3969e9fcf532bbb89c7c978cf699ed2cfa46"
|
116
116
|
}
|
package/temp/plasma-web.api.md
CHANGED
@@ -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';
|
@@ -3391,6 +3393,46 @@ export { RangeProps }
|
|
3391
3393
|
|
3392
3394
|
export { rangeTokens }
|
3393
3395
|
|
3396
|
+
// @public (undocumented)
|
3397
|
+
export const Rating: FunctionComponent<PropsType< {
|
3398
|
+
view: {
|
3399
|
+
default: PolymorphicClassName;
|
3400
|
+
accent: PolymorphicClassName;
|
3401
|
+
};
|
3402
|
+
size: {
|
3403
|
+
l: PolymorphicClassName;
|
3404
|
+
m: PolymorphicClassName;
|
3405
|
+
s: PolymorphicClassName;
|
3406
|
+
xs: PolymorphicClassName;
|
3407
|
+
xxs: PolymorphicClassName;
|
3408
|
+
h1: PolymorphicClassName;
|
3409
|
+
h2: PolymorphicClassName;
|
3410
|
+
h3: PolymorphicClassName;
|
3411
|
+
h4: PolymorphicClassName;
|
3412
|
+
h5: PolymorphicClassName;
|
3413
|
+
displayL: PolymorphicClassName;
|
3414
|
+
displayM: PolymorphicClassName;
|
3415
|
+
displayS: PolymorphicClassName;
|
3416
|
+
};
|
3417
|
+
}> & {
|
3418
|
+
value?: number | undefined;
|
3419
|
+
hasValue?: boolean | undefined;
|
3420
|
+
precision?: number | undefined;
|
3421
|
+
valuePlacement?: "after" | "before" | undefined;
|
3422
|
+
iconSlot?: ReactNode;
|
3423
|
+
iconSlotOutline?: ReactNode;
|
3424
|
+
iconSlotHalf?: ReactNode;
|
3425
|
+
hasIcons?: boolean | undefined;
|
3426
|
+
iconQuantity?: 1 | 5 | 10 | undefined;
|
3427
|
+
helperText?: string | undefined;
|
3428
|
+
size?: string | undefined;
|
3429
|
+
view?: string | undefined;
|
3430
|
+
} & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLInputElement>>;
|
3431
|
+
|
3432
|
+
export { ratingClasses }
|
3433
|
+
|
3434
|
+
export { ratingTokens }
|
3435
|
+
|
3394
3436
|
export { Ratio }
|
3395
3437
|
|
3396
3438
|
export { RectSkeleton }
|