@ironsource/shared-ui 1.4.2 → 1.4.3-andyk.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dialog.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
- package/Editable.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
- package/README.md +36 -21
- package/Typography.vue_vue_type_style_index_0_scoped_true_lang.css +1 -0
- package/components/button/index.d.ts +6 -6
- package/components/dialog/Dialog.vue.js +2 -2
- package/components/emptyState/index.d.ts +3 -3
- package/components/icon/Icon.vue.js +1 -0
- package/components/icon/icons/Hammer.vue.d.ts +2 -0
- package/components/icon/icons/Hammer.vue.js +26 -0
- package/components/icon/icons/index.d.ts +3 -0
- package/components/icon/icons/index.vue.js +3 -0
- package/components/icon/index.d.ts +3 -0
- package/components/table-cells/Editable.vue.js +1 -1
- package/components/typography/v4/Typography.vue.d.ts +34 -0
- package/components/typography/v4/Typography.vue.js +68 -0
- package/components/typography/v4/index.d.ts +23 -0
- package/components/typography/v4/index.vue.js +6 -0
- package/design-foundation.stories/colors/ColorsData.d.ts +114 -0
- package/design-foundation.stories/colors/ColorsStoryWrapper.vue.d.ts +3 -0
- package/design-foundation.stories/colors/index.d.ts +1 -0
- package/design-foundation.stories/elevations/ElevationStoryWrapper.vue.d.ts +4 -0
- package/design-foundation.stories/elevations/ElevationsData.d.ts +10 -0
- package/design-foundation.stories/elevations/index.d.ts +1 -0
- package/design-foundation.stories/typography/TypographyData.d.ts +7 -0
- package/design-foundation.stories/typography/TypographyStoryWrapper.vue.d.ts +3 -0
- package/design-foundation.stories/typography/index.d.ts +1 -0
- package/index.d.ts +1 -0
- package/index.vue.js +3 -1
- package/package.json +8 -3
- package/styles/v4/colors.css +91 -0
- package/styles/v4/elevations.css +10 -0
- package/styles/v4/fonts.css +1 -0
- package/styles/v4/fonts.css.map +1 -0
- package/styles/v4/fonts.scss +258 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { defineComponent, computed, openBlock, createBlock, resolveDynamicComponent, unref, normalizeClass, withCtx, renderSlot } from 'vue';
|
|
2
|
+
/* empty css */import _export_sfc from '../../../_virtual/plugin-vue_export-helper.vue.js';
|
|
3
|
+
|
|
4
|
+
////import "../../Typography.vue_vue_type_style_index_0_scoped_true_lang.css";
|
|
5
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
6
|
+
__name: "Typography",
|
|
7
|
+
props: {
|
|
8
|
+
isTruncated: { type: Boolean },
|
|
9
|
+
variant: { default: "body1" }
|
|
10
|
+
},
|
|
11
|
+
setup(__props) {
|
|
12
|
+
const props = __props;
|
|
13
|
+
const variantToClassMap = {
|
|
14
|
+
title: "font-title",
|
|
15
|
+
h1: "font-heading-1",
|
|
16
|
+
h2: "font-heading-2",
|
|
17
|
+
h3: "font-heading-3",
|
|
18
|
+
h4: "font-heading-4",
|
|
19
|
+
h5: "font-heading-5",
|
|
20
|
+
h6: "font-heading-6",
|
|
21
|
+
body1: "font-body-1",
|
|
22
|
+
body2: "font-body-2",
|
|
23
|
+
subtitle1: "font-subtitle-1",
|
|
24
|
+
subtitle2: "font-subtitle-2",
|
|
25
|
+
button: "font-button",
|
|
26
|
+
caption: "font-caption",
|
|
27
|
+
tableLabel: "font-table-label",
|
|
28
|
+
inputLabel: "font-input-label",
|
|
29
|
+
tabLabel1: "font-tab-label1",
|
|
30
|
+
tabLabel2: "font-tab-label2",
|
|
31
|
+
chipLabel: "font-chip-label",
|
|
32
|
+
chart1: "font-chart-1",
|
|
33
|
+
chart2: "font-chart-2",
|
|
34
|
+
overline: "font-overline"
|
|
35
|
+
};
|
|
36
|
+
const tag = computed(() => {
|
|
37
|
+
switch (props.variant) {
|
|
38
|
+
case "title":
|
|
39
|
+
return "h1";
|
|
40
|
+
case "h1":
|
|
41
|
+
case "h2":
|
|
42
|
+
case "h3":
|
|
43
|
+
case "h4":
|
|
44
|
+
case "h5":
|
|
45
|
+
case "h6":
|
|
46
|
+
return props.variant;
|
|
47
|
+
default:
|
|
48
|
+
return "span";
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
const fontClass = computed(() => {
|
|
52
|
+
return variantToClassMap[props.variant];
|
|
53
|
+
});
|
|
54
|
+
return (_ctx, _cache) => {
|
|
55
|
+
return openBlock(), createBlock(resolveDynamicComponent(unref(tag)), {
|
|
56
|
+
class: normalizeClass({ [unref(fontClass)]: true, truncate: __props.isTruncated })
|
|
57
|
+
}, {
|
|
58
|
+
default: withCtx(() => [
|
|
59
|
+
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
60
|
+
]),
|
|
61
|
+
_: 3
|
|
62
|
+
}, 8, ["class"]);
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
var Typography = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-fac69a9c"]]);
|
|
67
|
+
|
|
68
|
+
export { Typography as default };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare const TypographyTypesV4: () => import("vue").DefineComponent<{
|
|
2
|
+
isTruncated: {
|
|
3
|
+
type: import("vue").PropType<boolean>;
|
|
4
|
+
};
|
|
5
|
+
variant: {
|
|
6
|
+
type: import("vue").PropType<"button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "title" | "overline" | "body1" | "body2" | "subtitle1" | "subtitle2" | "tableLabel" | "inputLabel" | "tabLabel1" | "tabLabel2" | "chipLabel" | "chart1" | "chart2">;
|
|
7
|
+
} & {
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
isTruncated: {
|
|
12
|
+
type: import("vue").PropType<boolean>;
|
|
13
|
+
};
|
|
14
|
+
variant: {
|
|
15
|
+
type: import("vue").PropType<"button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "title" | "overline" | "body1" | "body2" | "subtitle1" | "subtitle2" | "tableLabel" | "inputLabel" | "tabLabel1" | "tabLabel2" | "chipLabel" | "chart1" | "chart2">;
|
|
16
|
+
} & {
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
}>>, {
|
|
20
|
+
variant: "button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "title" | "overline" | "body1" | "body2" | "subtitle1" | "subtitle2" | "tableLabel" | "inputLabel" | "tabLabel1" | "tabLabel2" | "chipLabel" | "chart1" | "chart2";
|
|
21
|
+
}>[];
|
|
22
|
+
export { default as Typography } from './Typography.vue';
|
|
23
|
+
export { TypographyTypesV4 };
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
export declare const colorPaletteLight: {
|
|
2
|
+
background: {
|
|
3
|
+
default: string;
|
|
4
|
+
neutral: string;
|
|
5
|
+
paper: string;
|
|
6
|
+
modalElevation: string;
|
|
7
|
+
paperElevation0: string;
|
|
8
|
+
paperElevation1: string;
|
|
9
|
+
paperElevation2: string;
|
|
10
|
+
paperElevation3: string;
|
|
11
|
+
paperElevation4: string;
|
|
12
|
+
paperElevation5: string;
|
|
13
|
+
paperElevation6: string;
|
|
14
|
+
paperElevation7: string;
|
|
15
|
+
paperElevation8: string;
|
|
16
|
+
paperElevation9: string;
|
|
17
|
+
};
|
|
18
|
+
action: {
|
|
19
|
+
primary: string;
|
|
20
|
+
active: string;
|
|
21
|
+
hover: string;
|
|
22
|
+
selected: string;
|
|
23
|
+
disabled: string;
|
|
24
|
+
disabledBackground: string;
|
|
25
|
+
focus: string;
|
|
26
|
+
outlinedBorder: string;
|
|
27
|
+
};
|
|
28
|
+
default: {
|
|
29
|
+
light: string;
|
|
30
|
+
main: string;
|
|
31
|
+
dark: string;
|
|
32
|
+
outlinedBorder: string;
|
|
33
|
+
contrastText: string;
|
|
34
|
+
};
|
|
35
|
+
common: {
|
|
36
|
+
white: string;
|
|
37
|
+
black: string;
|
|
38
|
+
inverseWhite: string;
|
|
39
|
+
inverseBlack: string;
|
|
40
|
+
};
|
|
41
|
+
text: {
|
|
42
|
+
primary: string;
|
|
43
|
+
secondary: string;
|
|
44
|
+
disabled: string;
|
|
45
|
+
};
|
|
46
|
+
divider: {
|
|
47
|
+
divider: string;
|
|
48
|
+
};
|
|
49
|
+
primary: {
|
|
50
|
+
lighter: string;
|
|
51
|
+
light: string;
|
|
52
|
+
main: string;
|
|
53
|
+
main8p: string;
|
|
54
|
+
main50p: string;
|
|
55
|
+
dark: string;
|
|
56
|
+
darker: string;
|
|
57
|
+
hover: string;
|
|
58
|
+
selected: string;
|
|
59
|
+
outlinedBorder: string;
|
|
60
|
+
contrastText: string;
|
|
61
|
+
};
|
|
62
|
+
info: {
|
|
63
|
+
lighter: string;
|
|
64
|
+
light: string;
|
|
65
|
+
main: string;
|
|
66
|
+
main8p: string;
|
|
67
|
+
main50p: string;
|
|
68
|
+
dark: string;
|
|
69
|
+
darker: string;
|
|
70
|
+
hover: string;
|
|
71
|
+
outlinedBorder: string;
|
|
72
|
+
contrastText: string;
|
|
73
|
+
};
|
|
74
|
+
success: {
|
|
75
|
+
lighter: string;
|
|
76
|
+
light: string;
|
|
77
|
+
main: string;
|
|
78
|
+
main8p: string;
|
|
79
|
+
main50p: string;
|
|
80
|
+
dark: string;
|
|
81
|
+
darker: string;
|
|
82
|
+
hover: string;
|
|
83
|
+
outlinedBorder: string;
|
|
84
|
+
contrastText: string;
|
|
85
|
+
};
|
|
86
|
+
warning: {
|
|
87
|
+
lighter: string;
|
|
88
|
+
light: string;
|
|
89
|
+
main: string;
|
|
90
|
+
main8p: string;
|
|
91
|
+
main50p: string;
|
|
92
|
+
dark: string;
|
|
93
|
+
darker: string;
|
|
94
|
+
hover: string;
|
|
95
|
+
outlinedBorder: string;
|
|
96
|
+
contrastText: string;
|
|
97
|
+
};
|
|
98
|
+
error: {
|
|
99
|
+
lighter: string;
|
|
100
|
+
light: string;
|
|
101
|
+
main: string;
|
|
102
|
+
main8p: string;
|
|
103
|
+
main50p: string;
|
|
104
|
+
dark: string;
|
|
105
|
+
darker: string;
|
|
106
|
+
hover: string;
|
|
107
|
+
outlinedBorder: string;
|
|
108
|
+
contrastText: string;
|
|
109
|
+
};
|
|
110
|
+
'A/B test': {
|
|
111
|
+
'A Control': string;
|
|
112
|
+
'B test': string;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import '../../style/v4/colors.css';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ColorsStoryWrapper } from './ColorsStoryWrapper.vue';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import '../../style/v4/colors.css';
|
|
2
|
+
import '../../style/v4/elevations.css';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ElevationStoryWrapper } from './ElevationStoryWrapper.vue';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import '../../style/v4/colors.css';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TypographyStoryWrapper } from './TypographyStoryWrapper.vue';
|
package/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export * from '@/components/icon';
|
|
|
23
23
|
export * from '@/components/search';
|
|
24
24
|
export * from '@/components/skeleton';
|
|
25
25
|
export * from '@/components/typography';
|
|
26
|
+
export * from '@/components/typography/v4';
|
|
26
27
|
export * from '@/components/popover';
|
|
27
28
|
export * from '@/components/chip';
|
|
28
29
|
export * from '@/components/toggle';
|
package/index.vue.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './MenuItem.vue_vue_type_style_index_0_scoped_true_lang.css';
|
|
2
2
|
export { AppTriggerTypes } from './components/appTrigger/index.vue.js';
|
|
3
3
|
export { AutocompleteDropdownTypes } from './components/autocompleteDropdown/index.vue.js';
|
|
4
4
|
export { MenuItemTypes } from './components/menuItem/index.vue.js';
|
|
@@ -24,6 +24,7 @@ export { IconTypes } from './components/icon/index.vue.js';
|
|
|
24
24
|
export { SearchTypes } from './components/search/index.vue.js';
|
|
25
25
|
export { SkeletonTypes } from './components/skeleton/index.vue.js';
|
|
26
26
|
export { TypographyTypes } from './components/typography/index.vue.js';
|
|
27
|
+
export { TypographyTypesV4 } from './components/typography/v4/index.vue.js';
|
|
27
28
|
export { PopoverTypes } from './components/popover/index.vue.js';
|
|
28
29
|
export { ChipTypes } from './components/chip/index.vue.js';
|
|
29
30
|
export { ToggleTypes } from './components/toggle/index.vue.js';
|
|
@@ -79,6 +80,7 @@ export { default as Search } from './components/search/Search.vue.js';
|
|
|
79
80
|
export { default as Skeleton } from './components/skeleton/Skeleton.vue.js';
|
|
80
81
|
export { default as Heading } from './components/typography/Heading.vue.js';
|
|
81
82
|
export { default as Text } from './components/typography/Text.vue.js';
|
|
83
|
+
export { default as Typography } from './components/typography/v4/Typography.vue.js';
|
|
82
84
|
export { default as Chip } from './components/chip/Chip.vue.js';
|
|
83
85
|
export { default as Toggle } from './components/toggle/Toggle.vue.js';
|
|
84
86
|
export { default as Input } from './components/input/Input.vue.js';
|
package/package.json
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ironsource/shared-ui",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3-andyk.1",
|
|
4
4
|
"engines": {
|
|
5
5
|
"npm": ">=7.0.0",
|
|
6
6
|
"node": ">=16.0.0"
|
|
7
7
|
},
|
|
8
8
|
"scripts": {
|
|
9
9
|
"dev": "vite",
|
|
10
|
-
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly --project tsconfig.build.json && node inject-css.js",
|
|
10
|
+
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly --project tsconfig.build.json && node inject-css.js && sh ./scripts/build-styles.sh",
|
|
11
11
|
"preview": "vite preview",
|
|
12
12
|
"storybook": "StoryBookEnv=dev start-storybook -p 6006",
|
|
13
13
|
"storybook:dist": "StoryBookEnv=prod start-storybook -p 6006",
|
|
14
14
|
"build-storybook": "build-storybook -o docs",
|
|
15
15
|
"serve-storybook": "RemoveAddons=true npm run build-storybook && http-server ./docs --port 6007",
|
|
16
|
+
"serve-storybook-ci": "npx concurrently -s first -n 'SB,TEST' -c 'magenta,blue' 'npm run storybook:dist --silent' 'npx wait-on tcp:6006' ",
|
|
16
17
|
"test-storybook": "test-storybook --maxWorkers=2",
|
|
17
18
|
"test-storybook-ci": "npx concurrently -k -s first -n 'SB,TEST' -c 'magenta,blue' 'npm run storybook:dist --silent' 'npx wait-on tcp:6006 && npm run test-storybook' ",
|
|
18
19
|
"jest:integration:update": "jest --updateSnapshot",
|
|
@@ -175,7 +176,8 @@
|
|
|
175
176
|
"./percentageInput": "./components/input/PercentageInput.vue.js",
|
|
176
177
|
"./textArea": "./components/textArea/TextArea.vue.js",
|
|
177
178
|
"./styleguide": "./styleguide.scss",
|
|
178
|
-
"./banner": "./components/banner/Banner.vue.js"
|
|
179
|
+
"./banner": "./components/banner/Banner.vue.js",
|
|
180
|
+
"./typography": "./components/typography/v4/Typography.vue.js"
|
|
179
181
|
},
|
|
180
182
|
"typesVersions": {
|
|
181
183
|
"*": {
|
|
@@ -298,6 +300,9 @@
|
|
|
298
300
|
],
|
|
299
301
|
"textArea": [
|
|
300
302
|
"./components/textArea/TextArea.vue.d.ts"
|
|
303
|
+
],
|
|
304
|
+
"typography": [
|
|
305
|
+
"./components/typography/v4/Typography.vue.d.ts"
|
|
301
306
|
]
|
|
302
307
|
}
|
|
303
308
|
},
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--background-default: #FFFFFF;
|
|
3
|
+
--background-neutral: #FFFFFF;
|
|
4
|
+
--background-paper: hsl(0, 0%, 99.0%);
|
|
5
|
+
--background-modalElevation: #FFFFFF;
|
|
6
|
+
--background-paperElevation0: hsl(0, 0%, 97.5%);
|
|
7
|
+
--background-paperElevation1: hsl(0, 0%, 94.6%);
|
|
8
|
+
--background-paperElevation2: hsl(0, 0%, 92.0%);
|
|
9
|
+
--background-paperElevation3: hsl(0, 0%, 89.5%);
|
|
10
|
+
--background-paperElevation4: hsl(0, 0%, 86.8%);
|
|
11
|
+
--background-paperElevation5: hsl(0, 0%, 83.0%);
|
|
12
|
+
--background-paperElevation6: hsl(0, 0%, 73.2%);
|
|
13
|
+
--background-paperElevation7: hsl(0, 0%, 55.2%);
|
|
14
|
+
--background-paperElevation8: hsl(0, 0%, 50.3%);
|
|
15
|
+
--background-paperElevation9: hsl(0, 0%, 39.3%);
|
|
16
|
+
--action-primary: hsl(0, 0%, 12.5%);
|
|
17
|
+
--action-active: hsl(0, 0%, 50.3%);
|
|
18
|
+
--action-hover: hsl(0, 0%, 92.0%);
|
|
19
|
+
--action-selected: hsl(0, 0%, 89.5%);
|
|
20
|
+
--action-disabled: hsl(0, 0%, 73.2%);
|
|
21
|
+
--action-disabledBackground: hsl(0, 0%, 92.0%);
|
|
22
|
+
--action-focus: hsl(0, 0%, 92.0%);
|
|
23
|
+
--action-outlinedBorder: hsl(0, 0%, 83.0%);
|
|
24
|
+
--default-light: hsl(0, 0%, 89.5%);
|
|
25
|
+
--default-main: hsl(0, 0%, 86.8%);
|
|
26
|
+
--default-dark: hsl(0, 0%, 92.0%);
|
|
27
|
+
--default-outlinedBorder: hsl(0, 0%, 73.2%);
|
|
28
|
+
--default-contrastText: hsl(0, 0%, 12.5%);
|
|
29
|
+
--common-white: #FFFFFF;
|
|
30
|
+
--common-black: #000000;
|
|
31
|
+
--common-inverseWhite: #000000;
|
|
32
|
+
--common-inverseBlack: #FFFFFF;
|
|
33
|
+
--text-primary: hsl(0, 0%, 12.5%);
|
|
34
|
+
--text-secondary: hsl(0, 0%, 39.3%);
|
|
35
|
+
--text-disabled: hsl(0, 0%, 50.3%);
|
|
36
|
+
--primary-lighter: hsl(209, 100%, 96.5%);
|
|
37
|
+
--primary-light: hsl(209, 95.0%, 90.1%);
|
|
38
|
+
--primary-main: hsl(206, 100%, 50.0%);
|
|
39
|
+
--primary-main8p: hsla(206, 100%, 50%, 0.08);
|
|
40
|
+
--primary-main50p: hsla(206, 100%, 50%, 0.5);
|
|
41
|
+
--primary-dark: hsl(208, 93.5%, 47.4%);
|
|
42
|
+
--primary-darker: hsl(211, 90.0%, 42.0%);
|
|
43
|
+
--primary-hover: hsl(209, 100%, 96.5%);
|
|
44
|
+
--primary-selected: hsl(209, 95.0%, 90.1%);
|
|
45
|
+
--primary-outlinedBorder: hsl(206, 100%, 50.0%);
|
|
46
|
+
--primary-contrastText: hsl(216, 71.0%, 23.0%);
|
|
47
|
+
--info-lighter: hsl(223, 98.4%, 97.1%);
|
|
48
|
+
--info-light: hsl(224, 87.1%, 92.0%);
|
|
49
|
+
--info-main: hsl(226, 70.0%, 55.5%);
|
|
50
|
+
--info-main8p: hsla(226, 70%, 55.5%, 0.08);
|
|
51
|
+
--info-main50p: hsla(226, 70%, 55.5%, 0.5);
|
|
52
|
+
--info-dark: hsl(226, 58.6%, 51.3%);
|
|
53
|
+
--info-darker: hsl(226, 55.0%, 45.0%);
|
|
54
|
+
--info-hover: hsl(223, 98.4%, 97.1%);
|
|
55
|
+
--info-outlinedBorder: hsl(226, 70.0%, 55.5%);
|
|
56
|
+
--info-contrastText: hsl(226, 50.0%, 24.0%);
|
|
57
|
+
--success-lighter: hsl(139, 55.2%, 94.5%);
|
|
58
|
+
--success-light: hsl(141, 43.7%, 86.0%);
|
|
59
|
+
--success-main: hsl(151, 55.0%, 41.5%);
|
|
60
|
+
--success-main8p: hsla(151, 55%, 41.5%, 0.08);
|
|
61
|
+
--success-main50p: hsla(151, 55%, 41.5%, 0.5);
|
|
62
|
+
--success-dark: hsl(152, 57.5%, 37.6%);
|
|
63
|
+
--success-darker: hsl(153, 67.0%, 28.5%);
|
|
64
|
+
--success-hover: hsl(139, 55.2%, 94.5%);
|
|
65
|
+
--success-outlinedBorder: hsl(151, 55.0%, 41.5%);
|
|
66
|
+
--success-contrastText: hsl(155, 40.0%, 16.5%);
|
|
67
|
+
--warning-lighter: hsl(45, 100%, 90.8%);
|
|
68
|
+
--warning-light: hsl(40, 100%, 81.5%);
|
|
69
|
+
--warning-main: hsl(42, 100%, 62.0%);
|
|
70
|
+
--warning-main8p: hsla(42, 100%, 62%, 0.08);
|
|
71
|
+
--warning-main50p: hsla(42, 100%, 62%, 0.5);
|
|
72
|
+
--warning-dark: hsl(42, 100%, 55.0%);
|
|
73
|
+
--warning-darker: hsl(25, 50.0%, 38.0%);
|
|
74
|
+
--warning-hover: hsl(45, 100%, 90.8%);
|
|
75
|
+
--warning-outlinedBorder: hsl(42, 100%, 62.0%);
|
|
76
|
+
--warning-contrastText: hsl(25, 40.0%, 22.0%);
|
|
77
|
+
--error-lighter: hsl(360, 100%, 96.8%);
|
|
78
|
+
--error-light: hsl(360, 90.2%, 91.9%);
|
|
79
|
+
--error-main: hsl(358, 75.0%, 59.0%);
|
|
80
|
+
--error-main8p: hsla(358, 75%, 59%, 0.08);
|
|
81
|
+
--error-main50p: hsla(358, 75%, 59%, 0.5);
|
|
82
|
+
--error-dark: hsl(358, 67.4%, 54.6%);
|
|
83
|
+
--error-darker: hsl(358, 65.0%, 47.0%);
|
|
84
|
+
--error-hover: hsl(360, 100%, 96.8%);
|
|
85
|
+
--error-outlinedBorder: hsl(358, 75.0%, 59.0%);
|
|
86
|
+
--error-contrastText: hsl(350, 63.0%, 24.0%);
|
|
87
|
+
--divider: hsl(0, 0%, 86.8%);
|
|
88
|
+
|
|
89
|
+
--abtest-a-control: #FFC134;
|
|
90
|
+
--abtest-b-test: #4F4FF5;
|
|
91
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--elevation-xs: 0px 1px 2px rgba(16, 24, 40, 0.05);
|
|
3
|
+
--elevation-sm: 0px 1px 2px rgba(16, 24, 40, 0.06), 0px 1px 3px rgba(16, 24, 40, 0.1);
|
|
4
|
+
--elevation-md: 0px 4px 8px -2px rgba(16, 24, 40, 0.12);
|
|
5
|
+
--elevation-lg: 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
|
|
6
|
+
--elevation-xl: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -6px rgba(16, 24, 40, 0.08);
|
|
7
|
+
--elevation-xxl: 0px 24px 48px -12px rgba(16, 24, 40, 0.18);
|
|
8
|
+
--elevation-xxxl: 0px 19px 32px 2px rgba(44, 45, 45, 0.14);
|
|
9
|
+
--elevation-sl: 0px 27px 27px 2px rgba(44, 45, 45, 0.14);
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";.font-tab-label2,.font-chart-2,.font-chart-1{font-family:"Inter",sans-serif;font-weight:700}.font-chip-label,.font-table-label,.font-button,.font-heading-6,.font-heading-5,.font-heading-4,.font-heading-3,.font-heading-2,.font-heading-1,.font-title{font-family:"Inter",sans-serif;font-weight:600}.font-tab-label1,.font-input-label,.font-overline,.font-subtitle-2,.font-subtitle-1{font-family:"Inter",sans-serif;font-weight:500}.font-caption,.font-body-2,.font-body-1{font-family:"Inter",sans-serif;font-weight:400}.font-title{font-size:2.5rem;line-height:3rem;letter-spacing:-0.055rem}.font-heading-1{font-size:1.5rem;line-height:1.75rem;letter-spacing:-0.0285rem}.font-heading-2{font-size:1.125rem;line-height:1.75rem;letter-spacing:-0.01575rem}.font-heading-3{font-size:1rem;line-height:1.5rem;letter-spacing:-0.011rem}.font-heading-4{font-size:.875rem;line-height:1rem;letter-spacing:unset}.font-heading-5{font-size:.8125rem;line-height:16px;letter-spacing:unset}.font-heading-6{font-size:.75rem;line-height:.75rem;letter-spacing:0}.font-body-1{font-size:.875rem;line-height:1.25rem;letter-spacing:-0.00525rem}.font-body-2{font-size:.8125rem;line-height:1.25rem;letter-spacing:-0.00244rem}.font-subtitle-1{font-size:.875rem;line-height:1.25rem;letter-spacing:-0.00525rem}.font-subtitle-2{font-size:.8125rem;line-height:1.25rem;letter-spacing:-0.00244rem}.font-chart-1{font-size:1.5rem;line-height:1.5rem;letter-spacing:-0.015rem}.font-chart-2{font-size:1.25rem;line-height:1.25rem;letter-spacing:-0.0125rem}.font-button{font-size:.875rem;line-height:1.25rem;letter-spacing:.00875rem}.font-overline{font-size:.75rem;line-height:1rem;letter-spacing:.045rem;text-transform:uppercase}.font-caption{font-size:.75rem;line-height:1rem}.font-table-label{font-size:.8125rem;line-height:1.25rem;letter-spacing:.00813rem}.font-input-label{font-size:.8125rem;line-height:1rem;letter-spacing:.00813rem}.font-tab-label1{font-size:.875rem;line-height:1rem}.font-tab-label2{font-size:.875rem;line-height:1rem}.font-chip-label{font-size:.75rem;line-height:1rem}h1,h2,h3,h4,h5,h6{margin:0}/*# sourceMappingURL=fonts.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["fonts.scss"],"names":[],"mappings":"AAKQ,0FAKR,6CACE,YAHM,mBAIN,gBAEF,4JACE,YAPM,mBAQN,gBAEF,oFACE,YAXM,mBAYN,gBAEF,wCACE,YAfM,mBAgBN,gBAIF,YACE,iBACA,iBACA,yBAGF,gBACE,iBACA,oBACA,0BAGF,gBACE,mBACA,oBACA,2BAGF,gBACE,eACA,mBACA,yBAGF,gBACE,kBACA,iBACA,qBAGF,gBACE,mBACA,iBACA,qBAGF,gBACE,iBACA,mBACA,iBAMF,aACE,kBACA,oBACA,2BAGF,aACE,mBACA,oBACA,2BAMF,iBACE,kBACA,oBACA,2BAGF,iBACE,mBACA,oBACA,2BAMF,cACE,iBACA,mBACA,yBAGF,cACE,kBACA,oBACA,0BAOF,aACE,kBACA,oBACA,yBAGF,eACE,iBACA,iBACA,uBACA,yBAGF,cACE,iBACA,iBAGF,kBACE,mBACA,oBACA,yBAGF,kBACE,mBACA,iBACA,yBAGF,iBACE,kBACA,iBAGF,iBACE,kBACA,iBAGF,iBACE,iBACA,iBAKF,kBAME","file":"fonts.css"}
|