@ayseaistudio/ui-components 2.3.1 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ChatMessageLeft/ChatMessageLeft.d.ts +16 -0
- package/dist/ChatMessageLeft/ChatMessageLeft.js +11 -0
- package/dist/ChatMessageLeft/index.d.ts +1 -0
- package/dist/ChatMessageLeft/index.js +1 -0
- package/dist/ChatMessageLeft/style.css +69 -0
- package/dist/ChatMessageRight/ChatMessageRight.d.ts +21 -0
- package/dist/ChatMessageRight/ChatMessageRight.js +13 -0
- package/dist/ChatMessageRight/index.d.ts +1 -0
- package/dist/ChatMessageRight/index.js +1 -0
- package/dist/ChatMessageRight/style.css +87 -0
- package/dist/LabelCheckbox/LabelCheckbox.d.ts +25 -0
- package/dist/LabelCheckbox/LabelCheckbox.js +45 -0
- package/dist/LabelCheckbox/index.d.ts +1 -0
- package/dist/LabelCheckbox/index.js +1 -0
- package/dist/LabelCheckbox/style.css +94 -0
- package/dist/Player/Player.d.ts +24 -0
- package/dist/Player/Player.js +72 -0
- package/dist/Player/index.d.ts +1 -0
- package/dist/Player/index.js +1 -0
- package/dist/Player/style.css +32 -0
- package/dist/ProfileButton/ProfileButton.js +1 -1
- package/dist/Radio/Radio.d.ts +19 -0
- package/dist/Radio/Radio.js +46 -0
- package/dist/Radio/index.d.ts +1 -0
- package/dist/Radio/index.js +1 -0
- package/dist/Radio/style.css +215 -0
- package/dist/SingleSlider/SingleSlider.d.ts +2 -1
- package/dist/SingleSlider/SingleSlider.js +2 -2
- package/dist/SingleSlider/style.css +22 -0
- package/dist/Strikethrough/Strikethrough.d.ts +20 -0
- package/dist/Strikethrough/Strikethrough.js +48 -0
- package/dist/Strikethrough/index.d.ts +1 -0
- package/dist/Strikethrough/index.js +1 -0
- package/dist/Strikethrough/style.css +366 -0
- package/dist/Switch/Switch.d.ts +17 -0
- package/dist/Switch/Switch.js +31 -0
- package/dist/Switch/index.d.ts +1 -0
- package/dist/Switch/index.js +1 -0
- package/dist/Switch/style.css +151 -0
- package/dist/SwitchButton/SwitchButton.d.ts +19 -0
- package/dist/SwitchButton/SwitchButton.js +63 -0
- package/dist/SwitchButton/index.d.ts +1 -0
- package/dist/SwitchButton/index.js +1 -0
- package/dist/SwitchButton/style.css +17 -0
- package/dist/TabButton/TabButton.d.ts +27 -0
- package/dist/TabButton/TabButton.js +22 -0
- package/dist/TabButton/index.d.ts +1 -0
- package/dist/TabButton/index.js +1 -0
- package/dist/TabButton/style.css +134 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
.radio {
|
|
2
|
+
align-items: center;
|
|
3
|
+
display: inline-flex;
|
|
4
|
+
gap: 4px;
|
|
5
|
+
padding: 6px 8px 6px 6px;
|
|
6
|
+
position: relative;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
.radio * {
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.radio .field {
|
|
15
|
+
border-radius: 96px;
|
|
16
|
+
box-shadow: inset 0px 0px 4px #0000001a;
|
|
17
|
+
position: relative;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.radio .ellipse {
|
|
21
|
+
position: relative;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.radio .text {
|
|
25
|
+
align-items: center;
|
|
26
|
+
display: flex;
|
|
27
|
+
justify-content: center;
|
|
28
|
+
position: relative;
|
|
29
|
+
text-align: center;
|
|
30
|
+
white-space: nowrap;
|
|
31
|
+
width: fit-content;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.radio.large .field {
|
|
35
|
+
height: 30px;
|
|
36
|
+
width: 30px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.radio.blue .field {
|
|
40
|
+
background-color: #7240e71a;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.radio.small .field {
|
|
44
|
+
height: 22px;
|
|
45
|
+
width: 22px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.radio.lime .field {
|
|
49
|
+
background-color: #71a30d1a;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.radio.default .field {
|
|
53
|
+
border: 1px solid;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.radio.medium .field {
|
|
57
|
+
height: 24px;
|
|
58
|
+
width: 24px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.radio.selected .field {
|
|
62
|
+
overflow: hidden;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.radio.hover .field {
|
|
66
|
+
border: 1px solid;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.radio.x-small .field {
|
|
70
|
+
aspect-ratio: 1;
|
|
71
|
+
height: 18px;
|
|
72
|
+
width: 18px;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.radio.mauve .field {
|
|
76
|
+
background-color: #a931ec1a;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.radio.lime.default .field {
|
|
80
|
+
border-color: #71a30d66;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.radio.hover.black .field {
|
|
84
|
+
background-color: #d1d1d1;
|
|
85
|
+
border-color: #b0b0b0;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.radio.default.mauve .field {
|
|
89
|
+
border-color: #a931ec33;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.radio.default.black .field {
|
|
93
|
+
background-color: #e7e7e7;
|
|
94
|
+
border-color: #d1d1d1;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.radio.default.blue .field {
|
|
98
|
+
border-color: #7240e733;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.radio.lime.hover .field {
|
|
102
|
+
border-color: #71a30d99;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.radio.black.selected .field {
|
|
106
|
+
background-color: #d1d1d1;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.radio.hover.blue .field {
|
|
110
|
+
border-color: #7240e74c;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.radio.hover.mauve .field {
|
|
114
|
+
border-color: #a931ec66;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.radio.large .ellipse {
|
|
118
|
+
border-radius: 10px;
|
|
119
|
+
box-shadow: inset 0px 0px 10px #ffffff40;
|
|
120
|
+
height: 20px;
|
|
121
|
+
left: 5px;
|
|
122
|
+
top: 5px;
|
|
123
|
+
width: 20px;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.radio.blue .ellipse {
|
|
127
|
+
background-color: #8361f1;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.radio.small .ellipse {
|
|
131
|
+
border-radius: 7px;
|
|
132
|
+
box-shadow: inset 0px 0px 10px #ffffff40;
|
|
133
|
+
height: 14px;
|
|
134
|
+
left: 4px;
|
|
135
|
+
top: 4px;
|
|
136
|
+
width: 14px;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.radio.lime .ellipse {
|
|
140
|
+
background-color: #b1e635;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.radio.black .ellipse {
|
|
144
|
+
background-color: #454545;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.radio.medium .ellipse {
|
|
148
|
+
border-radius: 8px;
|
|
149
|
+
box-shadow: inset 0px 0px 10px #ffffff40;
|
|
150
|
+
height: 16px;
|
|
151
|
+
left: 4px;
|
|
152
|
+
top: 4px;
|
|
153
|
+
width: 16px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.radio.x-small .ellipse {
|
|
157
|
+
border-radius: 7px;
|
|
158
|
+
height: 14px;
|
|
159
|
+
width: 14px;
|
|
160
|
+
top: 2px;
|
|
161
|
+
left: 2px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.radio.mauve .ellipse {
|
|
165
|
+
background-color: #cf82fe;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.radio.large .text {
|
|
169
|
+
font-family: var(--b1-medium-font-family);
|
|
170
|
+
font-size: var(--b1-medium-font-size);
|
|
171
|
+
font-style: var(--b1-medium-font-style);
|
|
172
|
+
font-weight: var(--b1-medium-font-weight);
|
|
173
|
+
letter-spacing: var(--b1-medium-letter-spacing);
|
|
174
|
+
line-height: var(--b1-medium-line-height);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.radio.small .text {
|
|
178
|
+
font-family: var(--b2-medium-font-family);
|
|
179
|
+
font-size: var(--b2-medium-font-size);
|
|
180
|
+
font-style: var(--b2-medium-font-style);
|
|
181
|
+
font-weight: var(--b2-medium-font-weight);
|
|
182
|
+
letter-spacing: var(--b2-medium-letter-spacing);
|
|
183
|
+
line-height: var(--b2-medium-line-height);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.radio.default .text {
|
|
187
|
+
color: #888888;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.radio.medium .text {
|
|
191
|
+
font-family: var(--b1-medium-font-family);
|
|
192
|
+
font-size: var(--b1-medium-font-size);
|
|
193
|
+
font-style: var(--b1-medium-font-style);
|
|
194
|
+
font-weight: var(--b1-medium-font-weight);
|
|
195
|
+
letter-spacing: var(--b1-medium-letter-spacing);
|
|
196
|
+
line-height: var(--b1-medium-line-height);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.radio.selected .text {
|
|
200
|
+
color: #3d3d3d;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.radio.x-small .text {
|
|
204
|
+
font-family: var(--b1-medium-font-family);
|
|
205
|
+
font-size: var(--b1-medium-font-size);
|
|
206
|
+
font-style: var(--b1-medium-font-style);
|
|
207
|
+
font-weight: var(--b1-medium-font-weight);
|
|
208
|
+
letter-spacing: var(--b1-medium-letter-spacing);
|
|
209
|
+
line-height: var(--b1-medium-line-height);
|
|
210
|
+
margin-top: -1.00px;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.radio.hover .text {
|
|
214
|
+
color: #5d5d5d;
|
|
215
|
+
}
|
|
@@ -9,9 +9,10 @@ interface Props {
|
|
|
9
9
|
onChange?: (value: number) => void;
|
|
10
10
|
className?: string;
|
|
11
11
|
disabled?: boolean;
|
|
12
|
+
rightLabel?: React.ReactNode;
|
|
12
13
|
}
|
|
13
14
|
export declare const SingleSlider: {
|
|
14
|
-
({ size, status, value, min, max, onChange, className, disabled, }: Props): React.JSX.Element;
|
|
15
|
+
({ size, status, value, min, max, onChange, className, disabled, rightLabel, }: Props): React.JSX.Element;
|
|
15
16
|
propTypes: {
|
|
16
17
|
size: PropTypes.Requireable<string>;
|
|
17
18
|
status: PropTypes.Requireable<string>;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import PropTypes from "prop-types";
|
|
3
3
|
import "./style.css";
|
|
4
|
-
export const SingleSlider = ({ size, status, value = 0, min = 0, max = 100, onChange, className, disabled = false, }) => {
|
|
4
|
+
export const SingleSlider = ({ size, status, value = 0, min = 0, max = 100, onChange, className, disabled = false, rightLabel, }) => {
|
|
5
5
|
const handleChange = (e) => {
|
|
6
6
|
const newValue = parseFloat(e.target.value);
|
|
7
7
|
onChange?.(newValue);
|
|
8
8
|
};
|
|
9
|
-
return (_jsxs("div", { className: `single-slider ${size} ${status} ${className || ''}`, style: disabled ? { opacity: 0.5, pointerEvents: 'none' } : {}, children: [_jsx("input", { type: "range", min: min, max: max, value: value, onChange: handleChange, className: "slider-input", disabled: disabled }), _jsx("div", { className: "slider-progress", style: { width: `${(value / max) * 100}%` } })] }));
|
|
9
|
+
return (_jsxs("div", { className: `single-slider ${size} ${status} ${className || ''}`, style: disabled ? { opacity: 0.5, pointerEvents: 'none' } : {}, children: [rightLabel && (_jsx("div", { className: "slider-time", children: rightLabel })), _jsx("input", { type: "range", min: min, max: max, value: value, onChange: handleChange, className: "slider-input", disabled: disabled }), _jsx("div", { className: "slider-progress", style: { width: `${(value / max) * 100}%` } })] }));
|
|
10
10
|
};
|
|
11
11
|
SingleSlider.propTypes = {
|
|
12
12
|
size: PropTypes.oneOf(["large"]),
|
|
@@ -15,6 +15,28 @@
|
|
|
15
15
|
z-index: 2;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
+
.slider-time {
|
|
19
|
+
position: absolute;
|
|
20
|
+
top: 9px;
|
|
21
|
+
right: 0;
|
|
22
|
+
display: inline-flex;
|
|
23
|
+
align-items: center;
|
|
24
|
+
gap: 4px;
|
|
25
|
+
color: #5D5D5D;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.slider-time .current-time {
|
|
29
|
+
font-family: var(--b2-medium-font-family, Arial);
|
|
30
|
+
font-size: var(--b2-medium-font-size, 12px);
|
|
31
|
+
font-weight: var(--b2-medium-font-weight, 500);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.slider-time .total-time {
|
|
35
|
+
font-family: var(--b2-bold-font-family, Arial);
|
|
36
|
+
font-size: var(--b2-bold-font-size, 12px);
|
|
37
|
+
font-weight: var(--b2-bold-font-weight, 700);
|
|
38
|
+
}
|
|
39
|
+
|
|
18
40
|
.slider-progress {
|
|
19
41
|
position: absolute;
|
|
20
42
|
height: 100%;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import PropTypes from "prop-types";
|
|
2
|
+
import "./style.css";
|
|
3
|
+
interface Props {
|
|
4
|
+
text?: string;
|
|
5
|
+
size?: "large" | "x-small" | "medium" | "small";
|
|
6
|
+
status?: "hover" | "selected" | "default";
|
|
7
|
+
color?: "mauve" | "lime" | "black" | "blue" | "red";
|
|
8
|
+
className?: any;
|
|
9
|
+
}
|
|
10
|
+
export declare const Strikethrough: {
|
|
11
|
+
({ text, size, status, color, className, }: Props): React.JSX.Element;
|
|
12
|
+
propTypes: {
|
|
13
|
+
text: PropTypes.Requireable<string>;
|
|
14
|
+
withText: PropTypes.Requireable<boolean>;
|
|
15
|
+
size: PropTypes.Requireable<string>;
|
|
16
|
+
status: PropTypes.Requireable<string>;
|
|
17
|
+
color: PropTypes.Requireable<string>;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import { useReducer } from "react";
|
|
4
|
+
import "./style.css";
|
|
5
|
+
import { IconCheck } from "@tabler/icons-react";
|
|
6
|
+
export const Strikethrough = ({ text, size, status, color, className, }) => {
|
|
7
|
+
const [state, dispatch] = useReducer(reducer, {
|
|
8
|
+
size: size || "large",
|
|
9
|
+
status: status || "default",
|
|
10
|
+
color: color || "black",
|
|
11
|
+
});
|
|
12
|
+
return (_jsxs("div", { className: `strikethrough ${state.size} ${state.status} ${state.color} ${className || ""}`, onMouseLeave: () => {
|
|
13
|
+
dispatch("mouse_leave");
|
|
14
|
+
}, onMouseEnter: () => {
|
|
15
|
+
dispatch("mouse_enter");
|
|
16
|
+
}, onClick: () => {
|
|
17
|
+
dispatch("click");
|
|
18
|
+
}, children: [_jsx("div", { className: "field", children: state.status === "selected" && (_jsx(IconCheck, { className: `${state.size === "large" ? "class" : (state.size === "x-small") ? "class-2" : "class-3"}`, color: ["lime", "mauve"].includes(state.color) ? "#3D3D3D" : "#F1F1F1" })) }), text && _jsx("div", { className: "text", children: text })] }));
|
|
19
|
+
};
|
|
20
|
+
function reducer(state, action) {
|
|
21
|
+
const type = typeof action === "string" ? action : action?.type;
|
|
22
|
+
switch (type) {
|
|
23
|
+
case "mouse_enter":
|
|
24
|
+
return {
|
|
25
|
+
...state,
|
|
26
|
+
status: state.status === "selected" ? "selected" : "hover",
|
|
27
|
+
};
|
|
28
|
+
case "mouse_leave":
|
|
29
|
+
return {
|
|
30
|
+
...state,
|
|
31
|
+
status: state.status === "selected" ? "selected" : "default",
|
|
32
|
+
};
|
|
33
|
+
case "click":
|
|
34
|
+
return {
|
|
35
|
+
...state,
|
|
36
|
+
status: state.status === "selected" ? "default" : "selected",
|
|
37
|
+
};
|
|
38
|
+
default:
|
|
39
|
+
return state;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
Strikethrough.propTypes = {
|
|
43
|
+
text: PropTypes.string,
|
|
44
|
+
withText: PropTypes.bool,
|
|
45
|
+
size: PropTypes.oneOf(["large", "x-small", "medium", "small"]),
|
|
46
|
+
status: PropTypes.oneOf(["hover", "selected", "default"]),
|
|
47
|
+
color: PropTypes.oneOf(["mauve", "lime", "black", "blue", "red"]),
|
|
48
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Strikethrough } from "./Strikethrough";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Strikethrough } from "./Strikethrough";
|
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
.strikethrough {
|
|
2
|
+
align-items: center;
|
|
3
|
+
display: inline-flex;
|
|
4
|
+
padding: 6px 8px 6px 6px;
|
|
5
|
+
position: relative;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.strikethrough .field {
|
|
9
|
+
position: relative;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.strikethrough * {
|
|
13
|
+
cursor: pointer;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.strikethrough .class {
|
|
17
|
+
height: 20px !important;
|
|
18
|
+
left: calc(50.00% - 10px) !important;
|
|
19
|
+
position: absolute !important;
|
|
20
|
+
top: calc(50.00% - 10px) !important;
|
|
21
|
+
width: 20px !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.strikethrough .class-2 {
|
|
25
|
+
height: 12px !important;
|
|
26
|
+
left: calc(50.00% - 6px) !important;
|
|
27
|
+
position: absolute !important;
|
|
28
|
+
top: calc(50.00% - 6px) !important;
|
|
29
|
+
width: 12px !important;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.strikethrough .class-3 {
|
|
33
|
+
height: 16px !important;
|
|
34
|
+
left: calc(50.00% - 8px) !important;
|
|
35
|
+
position: absolute !important;
|
|
36
|
+
top: calc(50.00% - 8px) !important;
|
|
37
|
+
width: 16px !important;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.strikethrough .text {
|
|
41
|
+
align-items: center;
|
|
42
|
+
display: flex;
|
|
43
|
+
justify-content: center;
|
|
44
|
+
position: relative;
|
|
45
|
+
text-align: center;
|
|
46
|
+
white-space: nowrap;
|
|
47
|
+
width: fit-content;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.strikethrough.large {
|
|
51
|
+
border-radius: 16px;
|
|
52
|
+
gap: 4px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.strikethrough.small {
|
|
56
|
+
border-radius: 16px;
|
|
57
|
+
gap: 4px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.strikethrough.medium {
|
|
61
|
+
border-radius: 16px;
|
|
62
|
+
gap: 4px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.strikethrough.x-small {
|
|
66
|
+
border-radius: 8px;
|
|
67
|
+
gap: 6px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.strikethrough.large .field {
|
|
71
|
+
border-radius: 12px;
|
|
72
|
+
height: 30px;
|
|
73
|
+
width: 30px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.strikethrough.small .field {
|
|
77
|
+
border-radius: 8px;
|
|
78
|
+
height: 22px;
|
|
79
|
+
width: 22px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.strikethrough.default .field {
|
|
83
|
+
border: 1px solid;
|
|
84
|
+
box-shadow: inset 0px 0px 4px #0000001a;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.strikethrough.medium .field {
|
|
88
|
+
border-radius: 8px;
|
|
89
|
+
height: 24px;
|
|
90
|
+
width: 24px;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.strikethrough.selected .field {
|
|
94
|
+
box-shadow: inset 0px 0px 10px #ffffff40;
|
|
95
|
+
overflow: hidden;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.strikethrough.hover .field {
|
|
99
|
+
border: 1px solid;
|
|
100
|
+
box-shadow: inset 0px 0px 4px #0000001a;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.strikethrough.x-small .field {
|
|
104
|
+
border-radius: 4px;
|
|
105
|
+
height: 18px;
|
|
106
|
+
width: 18px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.strikethrough.lime.selected .field {
|
|
110
|
+
background-color: #b1e635;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.strikethrough.x-small.selected .field {
|
|
114
|
+
aspect-ratio: 1;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.strikethrough.lime.default .field {
|
|
118
|
+
background-color: #71a30d1a;
|
|
119
|
+
border-color: #71a30d66;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.strikethrough.hover.black .field {
|
|
123
|
+
background-color: #d1d1d1;
|
|
124
|
+
border-color: #b0b0b0;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.strikethrough.red.default .field {
|
|
128
|
+
background-color: #7240e71a;
|
|
129
|
+
border-color: #7240e733;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.strikethrough.default.mauve .field {
|
|
133
|
+
background-color: #a931ec1a;
|
|
134
|
+
border-color: #a931ec33;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.strikethrough.x-small.hover .field {
|
|
138
|
+
aspect-ratio: 1;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.strikethrough.blue.selected .field {
|
|
142
|
+
background-color: #8361f1;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.strikethrough.default.black .field {
|
|
146
|
+
background-color: #e7e7e7;
|
|
147
|
+
border-color: #d1d1d1;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.strikethrough.default.blue .field {
|
|
151
|
+
background-color: #7240e71a;
|
|
152
|
+
border-color: #7240e733;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.strikethrough.lime.hover .field {
|
|
156
|
+
background-color: #71a30d1a;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.strikethrough.black.selected .field {
|
|
160
|
+
background-color: #454545;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.strikethrough.mauve.selected .field {
|
|
164
|
+
background-color: #cf82fe;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.strikethrough.hover.blue .field {
|
|
168
|
+
background-color: #7240e71a;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.strikethrough.hover.mauve .field {
|
|
172
|
+
background-color: #a931ec1a;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.strikethrough.red.hover .field {
|
|
176
|
+
background-color: #7240e71a;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.strikethrough.red.selected .field {
|
|
180
|
+
background-color: #8361f1;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.strikethrough.lime.hover.x-small .field {
|
|
184
|
+
border-color: #71a30d66;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.strikethrough.x-small.hover.mauve .field {
|
|
188
|
+
border-color: #71a30d66;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.strikethrough.lime.hover.small .field {
|
|
192
|
+
border-color: #71a30d99;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.strikethrough.x-small.hover.blue .field {
|
|
196
|
+
border-color: #71a30d66;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.strikethrough.x-small.red.hover .field {
|
|
200
|
+
border-color: #71a30d66;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.strikethrough.hover.mauve.large .field {
|
|
204
|
+
border-color: #a931ec66;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.strikethrough.hover.red.large .field {
|
|
208
|
+
border-color: #7240e74c;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.strikethrough.lime.hover.large .field {
|
|
212
|
+
border-color: #71a30d99;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.strikethrough.hover.blue.medium .field {
|
|
216
|
+
border-color: #7240e74c;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.strikethrough.hover.small.blue .field {
|
|
220
|
+
border-color: #7240e74c;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.strikethrough.red.small.hover .field {
|
|
224
|
+
border-color: #7240e74c;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.strikethrough.hover.mauve.medium .field {
|
|
228
|
+
border-color: #a931ec66;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.strikethrough.hover.red.medium .field {
|
|
232
|
+
border-color: #7240e74c;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.strikethrough.lime.hover.medium .field {
|
|
236
|
+
border-color: #71a30d99;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.strikethrough.hover.blue.large .field {
|
|
240
|
+
border-color: #7240e74c;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.strikethrough.hover.small.mauve .field {
|
|
244
|
+
border-color: #a931ec66;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.strikethrough.default .text {
|
|
248
|
+
color: #888888;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.strikethrough.selected .text {
|
|
252
|
+
color: #888888;
|
|
253
|
+
text-decoration: line-through;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.strikethrough.x-small.selected .text {
|
|
257
|
+
font-family: var(--b2-strikethrough-font-family);
|
|
258
|
+
font-size: var(--b2-strikethrough-font-size);
|
|
259
|
+
font-style: var(--b2-strikethrough-font-style);
|
|
260
|
+
font-weight: var(--b2-strikethrough-font-weight);
|
|
261
|
+
letter-spacing: var(--b2-strikethrough-letter-spacing);
|
|
262
|
+
line-height: var(--b2-strikethrough-line-height);
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.strikethrough.medium.selected .text {
|
|
266
|
+
font-family: var(--b1-strikethrough-font-family);
|
|
267
|
+
font-size: var(--b1-strikethrough-font-size);
|
|
268
|
+
font-style: var(--b1-strikethrough-font-style);
|
|
269
|
+
font-weight: var(--b1-strikethrough-font-weight);
|
|
270
|
+
letter-spacing: var(--b1-strikethrough-letter-spacing);
|
|
271
|
+
line-height: var(--b1-strikethrough-line-height);
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.strikethrough.hover.small .text {
|
|
275
|
+
color: #5d5d5d;
|
|
276
|
+
font-family: var(--b2-medium-font-family);
|
|
277
|
+
font-size: var(--b2-medium-font-size);
|
|
278
|
+
font-style: var(--b2-medium-font-style);
|
|
279
|
+
font-weight: var(--b2-medium-font-weight);
|
|
280
|
+
letter-spacing: var(--b2-medium-letter-spacing);
|
|
281
|
+
line-height: var(--b2-medium-line-height);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.strikethrough.hover.large .text {
|
|
285
|
+
color: #5d5d5d;
|
|
286
|
+
font-family: var(--b1-medium-font-family);
|
|
287
|
+
font-size: var(--b1-medium-font-size);
|
|
288
|
+
font-style: var(--b1-medium-font-style);
|
|
289
|
+
font-weight: var(--b1-medium-font-weight);
|
|
290
|
+
letter-spacing: var(--b1-medium-letter-spacing);
|
|
291
|
+
line-height: var(--b1-medium-line-height);
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.strikethrough.large.selected .text {
|
|
295
|
+
font-family: var(--b1-strikethrough-font-family);
|
|
296
|
+
font-size: var(--b1-strikethrough-font-size);
|
|
297
|
+
font-style: var(--b1-strikethrough-font-style);
|
|
298
|
+
font-weight: var(--b1-strikethrough-font-weight);
|
|
299
|
+
letter-spacing: var(--b1-strikethrough-letter-spacing);
|
|
300
|
+
line-height: var(--b1-strikethrough-line-height);
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.strikethrough.x-small.hover .text {
|
|
304
|
+
color: #3d3d3d;
|
|
305
|
+
font-family: var(--b2-medium-font-family);
|
|
306
|
+
font-size: var(--b2-medium-font-size);
|
|
307
|
+
font-style: var(--b2-medium-font-style);
|
|
308
|
+
font-weight: var(--b2-medium-font-weight);
|
|
309
|
+
letter-spacing: var(--b2-medium-letter-spacing);
|
|
310
|
+
line-height: var(--b2-medium-line-height);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.strikethrough.small.selected .text {
|
|
314
|
+
font-family: var(--b2-strikethrough-font-family);
|
|
315
|
+
font-size: var(--b2-strikethrough-font-size);
|
|
316
|
+
font-style: var(--b2-strikethrough-font-style);
|
|
317
|
+
font-weight: var(--b2-strikethrough-font-weight);
|
|
318
|
+
letter-spacing: var(--b2-strikethrough-letter-spacing);
|
|
319
|
+
line-height: var(--b2-strikethrough-line-height);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.strikethrough.default.medium .text {
|
|
323
|
+
font-family: var(--b1-medium-font-family);
|
|
324
|
+
font-size: var(--b1-medium-font-size);
|
|
325
|
+
font-style: var(--b1-medium-font-style);
|
|
326
|
+
font-weight: var(--b1-medium-font-weight);
|
|
327
|
+
letter-spacing: var(--b1-medium-letter-spacing);
|
|
328
|
+
line-height: var(--b1-medium-line-height);
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.strikethrough.default.large .text {
|
|
332
|
+
font-family: var(--b1-medium-font-family);
|
|
333
|
+
font-size: var(--b1-medium-font-size);
|
|
334
|
+
font-style: var(--b1-medium-font-style);
|
|
335
|
+
font-weight: var(--b1-medium-font-weight);
|
|
336
|
+
letter-spacing: var(--b1-medium-letter-spacing);
|
|
337
|
+
line-height: var(--b1-medium-line-height);
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.strikethrough.default.small .text {
|
|
341
|
+
font-family: var(--b2-medium-font-family);
|
|
342
|
+
font-size: var(--b2-medium-font-size);
|
|
343
|
+
font-style: var(--b2-medium-font-style);
|
|
344
|
+
font-weight: var(--b2-medium-font-weight);
|
|
345
|
+
letter-spacing: var(--b2-medium-letter-spacing);
|
|
346
|
+
line-height: var(--b2-medium-line-height);
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.strikethrough.hover.medium .text {
|
|
350
|
+
color: #5d5d5d;
|
|
351
|
+
font-family: var(--b1-medium-font-family);
|
|
352
|
+
font-size: var(--b1-medium-font-size);
|
|
353
|
+
font-style: var(--b1-medium-font-style);
|
|
354
|
+
font-weight: var(--b1-medium-font-weight);
|
|
355
|
+
letter-spacing: var(--b1-medium-letter-spacing);
|
|
356
|
+
line-height: var(--b1-medium-line-height);
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.strikethrough.x-small.default .text {
|
|
360
|
+
font-family: var(--b2-medium-font-family);
|
|
361
|
+
font-size: var(--b2-medium-font-size);
|
|
362
|
+
font-style: var(--b2-medium-font-style);
|
|
363
|
+
font-weight: var(--b2-medium-font-weight);
|
|
364
|
+
letter-spacing: var(--b2-medium-letter-spacing);
|
|
365
|
+
line-height: var(--b2-medium-line-height);
|
|
366
|
+
}
|