@vellira-ui/tokens 2.28.0 → 2.30.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/css/tokens.css +1045 -56
- package/dist/dark/components/button.d.ts +15 -15
- package/dist/dark/components/button.js +1 -1
- package/dist/dark/components/checkbox.d.ts +15 -15
- package/dist/dark/components/checkbox.js +1 -1
- package/dist/dark/components/formField.d.ts +52 -0
- package/dist/dark/components/formField.d.ts.map +1 -1
- package/dist/dark/components/formField.js +55 -0
- package/dist/dark/components/input.d.ts +109 -4
- package/dist/dark/components/input.d.ts.map +1 -1
- package/dist/dark/components/input.js +81 -4
- package/dist/dark/components/radio.d.ts +35 -25
- package/dist/dark/components/radio.d.ts.map +1 -1
- package/dist/dark/components/radio.js +117 -27
- package/dist/factories/createButtonPalette.d.ts.map +1 -0
- package/dist/factories/createCheckboxPalette.d.ts.map +1 -0
- package/dist/factories/createInputPalette.d.ts +78 -0
- package/dist/factories/createInputPalette.d.ts.map +1 -0
- package/dist/factories/createInputPalette.js +78 -0
- package/dist/factories/createRadioPalette.d.ts +19 -0
- package/dist/factories/createRadioPalette.d.ts.map +1 -0
- package/dist/factories/createRadioPalette.js +6 -0
- package/dist/factories/index.d.ts +5 -0
- package/dist/factories/index.d.ts.map +1 -0
- package/dist/factories/index.js +4 -0
- package/dist/generated/token-types.d.ts +4 -4
- package/dist/generated/token-types.d.ts.map +1 -1
- package/dist/generated/token-types.js +1388 -68
- package/dist/highContrast/components/button.d.ts +15 -15
- package/dist/highContrast/components/button.js +1 -1
- package/dist/highContrast/components/checkbox.d.ts +15 -15
- package/dist/highContrast/components/checkbox.js +1 -1
- package/dist/highContrast/components/formField.d.ts +52 -0
- package/dist/highContrast/components/formField.d.ts.map +1 -1
- package/dist/highContrast/components/formField.js +55 -0
- package/dist/highContrast/components/input.d.ts +109 -4
- package/dist/highContrast/components/input.d.ts.map +1 -1
- package/dist/highContrast/components/input.js +101 -4
- package/dist/highContrast/components/radio.d.ts +35 -25
- package/dist/highContrast/components/radio.d.ts.map +1 -1
- package/dist/highContrast/components/radio.js +117 -27
- package/dist/light/components/button.d.ts +15 -15
- package/dist/light/components/button.js +1 -1
- package/dist/light/components/checkbox.d.ts +15 -15
- package/dist/light/components/checkbox.js +1 -1
- package/dist/light/components/formField.d.ts +52 -0
- package/dist/light/components/formField.d.ts.map +1 -1
- package/dist/light/components/formField.js +55 -0
- package/dist/light/components/input.d.ts +110 -5
- package/dist/light/components/input.d.ts.map +1 -1
- package/dist/light/components/input.js +81 -4
- package/dist/light/components/radio.d.ts +35 -25
- package/dist/light/components/radio.d.ts.map +1 -1
- package/dist/light/components/radio.js +117 -27
- package/dist/light/semantic/icons.d.ts +1 -1
- package/dist/light/semantic/icons.js +1 -1
- package/package.json +3 -2
- package/dist/utils/createButtonPalette.d.ts.map +0 -1
- package/dist/utils/createCheckboxPalette.d.ts.map +0 -1
- /package/dist/{utils → factories}/createButtonPalette.d.ts +0 -0
- /package/dist/{utils → factories}/createButtonPalette.js +0 -0
- /package/dist/{utils → factories}/createCheckboxPalette.d.ts +0 -0
- /package/dist/{utils → factories}/createCheckboxPalette.js +0 -0
|
@@ -1,10 +1,72 @@
|
|
|
1
|
+
import { createInputColorPalette } from '../../factories/createInputPalette.js';
|
|
2
|
+
import { colors } from '../../primitives/colors.js';
|
|
1
3
|
import { border } from '../semantic/border.js';
|
|
2
4
|
import { focus } from '../semantic/focus.js';
|
|
3
5
|
import { icons } from '../semantic/icons.js';
|
|
4
6
|
import { status } from '../semantic/status.js';
|
|
5
7
|
import { surface } from '../semantic/surface.js';
|
|
6
8
|
import { text } from '../semantic/text.js';
|
|
9
|
+
const inputPaletteDefaults = {
|
|
10
|
+
fg: text.primary,
|
|
11
|
+
placeholder: text.secondary,
|
|
12
|
+
filledFocusBg: surface.subtle,
|
|
13
|
+
hoverBg: surface.hover,
|
|
14
|
+
};
|
|
15
|
+
const primary = createInputColorPalette({
|
|
16
|
+
...inputPaletteDefaults,
|
|
17
|
+
accent: colors.primary[500],
|
|
18
|
+
accentHover: colors.primary[700],
|
|
19
|
+
accentSoft: colors.primary[50],
|
|
20
|
+
filledBg: colors.primary[100],
|
|
21
|
+
filledHoverBg: colors.primary[200],
|
|
22
|
+
ring: colors.primary[400],
|
|
23
|
+
});
|
|
24
|
+
const neutral = createInputColorPalette({
|
|
25
|
+
...inputPaletteDefaults,
|
|
26
|
+
accent: colors.vellira[400],
|
|
27
|
+
accentHover: colors.vellira[600],
|
|
28
|
+
accentSoft: colors.vellira[100],
|
|
29
|
+
filledBg: colors.vellira[150],
|
|
30
|
+
filledHoverBg: colors.vellira[200],
|
|
31
|
+
hoverBg: colors.vellira[100],
|
|
32
|
+
ring: colors.vellira[400],
|
|
33
|
+
});
|
|
34
|
+
const success = createInputColorPalette({
|
|
35
|
+
...inputPaletteDefaults,
|
|
36
|
+
accent: colors.success[600],
|
|
37
|
+
accentHover: colors.success[700],
|
|
38
|
+
accentSoft: colors.success[50],
|
|
39
|
+
filledBg: colors.success[100],
|
|
40
|
+
filledHoverBg: colors.success[200],
|
|
41
|
+
hoverBg: colors.success[50],
|
|
42
|
+
ring: colors.success[500],
|
|
43
|
+
});
|
|
44
|
+
const warning = createInputColorPalette({
|
|
45
|
+
...inputPaletteDefaults,
|
|
46
|
+
accent: colors.warning[600],
|
|
47
|
+
accentHover: colors.warning[700],
|
|
48
|
+
accentSoft: colors.warning[50],
|
|
49
|
+
filledBg: colors.warning[100],
|
|
50
|
+
filledHoverBg: colors.warning[200],
|
|
51
|
+
hoverBg: colors.warning[50],
|
|
52
|
+
ring: colors.warning[500],
|
|
53
|
+
});
|
|
54
|
+
const danger = createInputColorPalette({
|
|
55
|
+
...inputPaletteDefaults,
|
|
56
|
+
accent: colors.error[600],
|
|
57
|
+
accentHover: colors.error[700],
|
|
58
|
+
accentSoft: colors.error[50],
|
|
59
|
+
filledBg: colors.error[100],
|
|
60
|
+
filledHoverBg: colors.error[200],
|
|
61
|
+
hoverBg: colors.error[50],
|
|
62
|
+
ring: colors.error[500],
|
|
63
|
+
});
|
|
7
64
|
export const input = {
|
|
65
|
+
primary,
|
|
66
|
+
neutral,
|
|
67
|
+
success,
|
|
68
|
+
warning,
|
|
69
|
+
danger,
|
|
8
70
|
default: {
|
|
9
71
|
bg: 'transparent',
|
|
10
72
|
fg: text.primary,
|
|
@@ -38,10 +100,6 @@ export const input = {
|
|
|
38
100
|
border: status.error.border,
|
|
39
101
|
ring: status.error.ring,
|
|
40
102
|
},
|
|
41
|
-
success: {
|
|
42
|
-
border: status.success.border,
|
|
43
|
-
ring: status.success.ring,
|
|
44
|
-
},
|
|
45
103
|
readOnly: {
|
|
46
104
|
bg: surface.subtle,
|
|
47
105
|
fg: text.secondary,
|
|
@@ -66,4 +124,23 @@ export const input = {
|
|
|
66
124
|
focusBg: surface.subtle,
|
|
67
125
|
pressedBg: surface.active,
|
|
68
126
|
},
|
|
127
|
+
revealButton: {
|
|
128
|
+
fg: text.primary,
|
|
129
|
+
hoverFg: text.primary,
|
|
130
|
+
hoverBg: surface.hover,
|
|
131
|
+
},
|
|
132
|
+
addon: {
|
|
133
|
+
bg: surface.muted,
|
|
134
|
+
fg: text.secondary,
|
|
135
|
+
border: border.default,
|
|
136
|
+
},
|
|
137
|
+
affix: {
|
|
138
|
+
fg: text.primary,
|
|
139
|
+
},
|
|
140
|
+
counter: {
|
|
141
|
+
fg: text.secondary,
|
|
142
|
+
},
|
|
143
|
+
spinner: {
|
|
144
|
+
fg: icons.muted,
|
|
145
|
+
},
|
|
69
146
|
};
|
|
@@ -14,31 +14,35 @@ export declare const radio: {
|
|
|
14
14
|
readonly fg: "#342580";
|
|
15
15
|
readonly border: "#402C9F";
|
|
16
16
|
};
|
|
17
|
-
readonly
|
|
18
|
-
readonly
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
readonly
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
readonly
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
readonly
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
17
|
+
readonly primary: {
|
|
18
|
+
readonly ring: string;
|
|
19
|
+
readonly default: import("../../factories/createRadioPalette.js").RadioState;
|
|
20
|
+
readonly hover: import("../../factories/createRadioPalette.js").RadioState;
|
|
21
|
+
readonly pressed: import("../../factories/createRadioPalette.js").RadioState;
|
|
22
|
+
};
|
|
23
|
+
readonly neutral: {
|
|
24
|
+
readonly ring: string;
|
|
25
|
+
readonly default: import("../../factories/createRadioPalette.js").RadioState;
|
|
26
|
+
readonly hover: import("../../factories/createRadioPalette.js").RadioState;
|
|
27
|
+
readonly pressed: import("../../factories/createRadioPalette.js").RadioState;
|
|
28
|
+
};
|
|
29
|
+
readonly success: {
|
|
30
|
+
readonly ring: string;
|
|
31
|
+
readonly default: import("../../factories/createRadioPalette.js").RadioState;
|
|
32
|
+
readonly hover: import("../../factories/createRadioPalette.js").RadioState;
|
|
33
|
+
readonly pressed: import("../../factories/createRadioPalette.js").RadioState;
|
|
34
|
+
};
|
|
35
|
+
readonly warning: {
|
|
36
|
+
readonly ring: string;
|
|
37
|
+
readonly default: import("../../factories/createRadioPalette.js").RadioState;
|
|
38
|
+
readonly hover: import("../../factories/createRadioPalette.js").RadioState;
|
|
39
|
+
readonly pressed: import("../../factories/createRadioPalette.js").RadioState;
|
|
40
|
+
};
|
|
41
|
+
readonly danger: {
|
|
42
|
+
readonly ring: string;
|
|
43
|
+
readonly default: import("../../factories/createRadioPalette.js").RadioState;
|
|
44
|
+
readonly hover: import("../../factories/createRadioPalette.js").RadioState;
|
|
45
|
+
readonly pressed: import("../../factories/createRadioPalette.js").RadioState;
|
|
42
46
|
};
|
|
43
47
|
readonly invalid: {
|
|
44
48
|
readonly border: "#E11D48";
|
|
@@ -55,5 +59,11 @@ export declare const radio: {
|
|
|
55
59
|
readonly fg: "#958CB0";
|
|
56
60
|
readonly border: "#E4DDF4";
|
|
57
61
|
};
|
|
62
|
+
readonly selectedDisabled: {
|
|
63
|
+
readonly bg: "#F4F1FB";
|
|
64
|
+
readonly fg: "#958CB0";
|
|
65
|
+
readonly border: "#E4DDF4";
|
|
66
|
+
readonly labelFg: "#958CB0";
|
|
67
|
+
};
|
|
58
68
|
};
|
|
59
69
|
//# sourceMappingURL=radio.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radio.d.ts","sourceRoot":"","sources":["../../../src/light/components/radio.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"radio.d.ts","sourceRoot":"","sources":["../../../src/light/components/radio.ts"],"names":[],"mappings":"AAsHA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgCR,CAAC"}
|
|
@@ -1,40 +1,124 @@
|
|
|
1
|
+
import { createRadioPalette } from '../../factories/createRadioPalette.js';
|
|
1
2
|
import { colors } from '../../primitives/colors.js';
|
|
2
3
|
import { border } from '../semantic/border.js';
|
|
3
4
|
import { control } from '../semantic/control.js';
|
|
4
5
|
import { focus } from '../semantic/focus.js';
|
|
5
6
|
import { status } from '../semantic/status.js';
|
|
6
|
-
import { surface } from '../semantic/surface.js';
|
|
7
7
|
import { text } from '../semantic/text.js';
|
|
8
|
+
const primary = createRadioPalette({
|
|
9
|
+
ring: colors.primary[400],
|
|
10
|
+
default: {
|
|
11
|
+
bg: colors.primary[50],
|
|
12
|
+
fg: colors.primary[600],
|
|
13
|
+
border: colors.primary[600],
|
|
14
|
+
labelFg: colors.primary[700],
|
|
15
|
+
},
|
|
16
|
+
hover: {
|
|
17
|
+
bg: colors.primary[100],
|
|
18
|
+
fg: colors.primary[700],
|
|
19
|
+
border: colors.primary[700],
|
|
20
|
+
labelFg: colors.primary[800],
|
|
21
|
+
},
|
|
22
|
+
pressed: {
|
|
23
|
+
bg: colors.primary[200],
|
|
24
|
+
fg: colors.primary[800],
|
|
25
|
+
border: colors.primary[800],
|
|
26
|
+
labelFg: colors.primary[900],
|
|
27
|
+
},
|
|
28
|
+
});
|
|
29
|
+
const neutral = createRadioPalette({
|
|
30
|
+
ring: colors.vellira[400],
|
|
31
|
+
default: {
|
|
32
|
+
bg: colors.vellira[50],
|
|
33
|
+
fg: colors.vellira[600],
|
|
34
|
+
border: colors.vellira[500],
|
|
35
|
+
labelFg: colors.vellira[600],
|
|
36
|
+
},
|
|
37
|
+
hover: {
|
|
38
|
+
bg: colors.vellira[100],
|
|
39
|
+
fg: colors.vellira[700],
|
|
40
|
+
border: colors.vellira[600],
|
|
41
|
+
labelFg: colors.vellira[700],
|
|
42
|
+
},
|
|
43
|
+
pressed: {
|
|
44
|
+
bg: colors.vellira[200],
|
|
45
|
+
fg: colors.vellira[800],
|
|
46
|
+
border: colors.vellira[700],
|
|
47
|
+
labelFg: colors.vellira[800],
|
|
48
|
+
},
|
|
49
|
+
});
|
|
50
|
+
const success = createRadioPalette({
|
|
51
|
+
ring: colors.success[500],
|
|
52
|
+
default: {
|
|
53
|
+
bg: colors.success[50],
|
|
54
|
+
fg: colors.success[600],
|
|
55
|
+
border: colors.success[600],
|
|
56
|
+
labelFg: colors.success[700],
|
|
57
|
+
},
|
|
58
|
+
hover: {
|
|
59
|
+
bg: colors.success[100],
|
|
60
|
+
fg: colors.success[700],
|
|
61
|
+
border: colors.success[700],
|
|
62
|
+
labelFg: colors.success[800],
|
|
63
|
+
},
|
|
64
|
+
pressed: {
|
|
65
|
+
bg: colors.success[200],
|
|
66
|
+
fg: colors.success[800],
|
|
67
|
+
border: colors.success[800],
|
|
68
|
+
labelFg: colors.success[900],
|
|
69
|
+
},
|
|
70
|
+
});
|
|
71
|
+
const warning = createRadioPalette({
|
|
72
|
+
ring: colors.warning[500],
|
|
73
|
+
default: {
|
|
74
|
+
bg: colors.warning[50],
|
|
75
|
+
fg: colors.warning[600],
|
|
76
|
+
border: colors.warning[600],
|
|
77
|
+
labelFg: colors.warning[700],
|
|
78
|
+
},
|
|
79
|
+
hover: {
|
|
80
|
+
bg: colors.warning[100],
|
|
81
|
+
fg: colors.warning[700],
|
|
82
|
+
border: colors.warning[700],
|
|
83
|
+
labelFg: colors.warning[800],
|
|
84
|
+
},
|
|
85
|
+
pressed: {
|
|
86
|
+
bg: colors.warning[200],
|
|
87
|
+
fg: colors.warning[800],
|
|
88
|
+
border: colors.warning[800],
|
|
89
|
+
labelFg: colors.warning[900],
|
|
90
|
+
},
|
|
91
|
+
});
|
|
92
|
+
const danger = createRadioPalette({
|
|
93
|
+
ring: colors.error[500],
|
|
94
|
+
default: {
|
|
95
|
+
bg: colors.error[50],
|
|
96
|
+
fg: colors.error[700],
|
|
97
|
+
border: colors.error[700],
|
|
98
|
+
labelFg: colors.error[700],
|
|
99
|
+
},
|
|
100
|
+
hover: {
|
|
101
|
+
bg: colors.error[100],
|
|
102
|
+
fg: colors.error[800],
|
|
103
|
+
border: colors.error[800],
|
|
104
|
+
labelFg: colors.error[800],
|
|
105
|
+
},
|
|
106
|
+
pressed: {
|
|
107
|
+
bg: colors.error[200],
|
|
108
|
+
fg: colors.error[900],
|
|
109
|
+
border: colors.error[900],
|
|
110
|
+
labelFg: colors.error[700],
|
|
111
|
+
},
|
|
112
|
+
});
|
|
8
113
|
export const radio = {
|
|
9
114
|
default: control.default,
|
|
10
115
|
hover: control.hover,
|
|
11
116
|
pressed: control.active,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
labelFg: text.interactive,
|
|
18
|
-
},
|
|
19
|
-
hover: {
|
|
20
|
-
bg: colors.primary[50],
|
|
21
|
-
fg: colors.primary[700],
|
|
22
|
-
border: colors.primary[700],
|
|
23
|
-
labelFg: text.interactiveHover,
|
|
24
|
-
},
|
|
25
|
-
pressed: {
|
|
26
|
-
bg: colors.primary[100],
|
|
27
|
-
fg: colors.primary[800],
|
|
28
|
-
border: colors.primary[800],
|
|
29
|
-
labelFg: text.interactiveActive,
|
|
30
|
-
},
|
|
31
|
-
disabled: {
|
|
32
|
-
bg: surface.disabled,
|
|
33
|
-
fg: text.disabled,
|
|
34
|
-
border: border.disabled,
|
|
35
|
-
labelFg: text.disabled,
|
|
36
|
-
},
|
|
37
|
-
},
|
|
117
|
+
primary,
|
|
118
|
+
neutral,
|
|
119
|
+
success,
|
|
120
|
+
warning,
|
|
121
|
+
danger,
|
|
38
122
|
invalid: {
|
|
39
123
|
...control.default,
|
|
40
124
|
border: status.error.border,
|
|
@@ -45,4 +129,10 @@ export const radio = {
|
|
|
45
129
|
border: border.focus,
|
|
46
130
|
},
|
|
47
131
|
disabled: control.disabled,
|
|
132
|
+
selectedDisabled: {
|
|
133
|
+
bg: control.disabled.bg,
|
|
134
|
+
fg: text.disabled,
|
|
135
|
+
border: border.disabled,
|
|
136
|
+
labelFg: text.disabled,
|
|
137
|
+
},
|
|
48
138
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vellira-ui/tokens",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.30.0",
|
|
4
4
|
"description": "Design tokens for Vellira Design System",
|
|
5
5
|
"author": "Roman Bakurov",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,10 +30,11 @@
|
|
|
30
30
|
],
|
|
31
31
|
"scripts": {
|
|
32
32
|
"clean": "node --input-type=module -e \"import fs from 'node:fs'; fs.rmSync('dist', { recursive: true, force: true })\"",
|
|
33
|
+
"clean:build": "node --input-type=module -e \"import fs from 'node:fs'; if (fs.existsSync('dist')) for (const entry of fs.readdirSync('dist')) { if (entry !== 'css') fs.rmSync('dist/' + entry, { recursive: true, force: true }); }\"",
|
|
33
34
|
"generate:types": "tsx scripts/generate-token-types.ts",
|
|
34
35
|
"generate:types:check": "tsx scripts/generate-token-types.ts --check",
|
|
35
36
|
"build:tokens": "pnpm run generate:types && tsx scripts/generate-css.ts",
|
|
36
|
-
"build": "pnpm run clean && pnpm run build:tokens && tsc -p tsconfig.build.json",
|
|
37
|
+
"build": "pnpm run clean:build && pnpm run build:tokens && tsc -p tsconfig.build.json",
|
|
37
38
|
"typecheck": "pnpm run generate:types:check && tsc -p tsconfig.json --noEmit",
|
|
38
39
|
"test": "pnpm run generate:types:check && vitest run"
|
|
39
40
|
},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"createButtonPalette.d.ts","sourceRoot":"","sources":["../../src/utils/createButtonPalette.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG;IAChC,IAAI,EAAE,MAAM,CAAC;IAEb,KAAK,EAAE;QACL,OAAO,EAAE,WAAW,CAAC;QACrB,KAAK,EAAE,WAAW,CAAC;QACnB,OAAO,EAAE,WAAW,CAAC;KACtB,CAAC;IAEF,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IAEf,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B,CAAC;AAEF,eAAO,MAAM,WAAW;;;CAGd,CAAC;AAEX,eAAO,MAAM,mBAAmB,GAAI,sJAejC,mBAAmB;;;iBA1CT,WAAW;eACb,WAAW;iBACT,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiHX,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"createCheckboxPalette.d.ts","sourceRoot":"","sources":["../../src/utils/createCheckboxPalette.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,aAAa,CAAC;IACvB,KAAK,EAAE,aAAa,CAAC;IACrB,OAAO,EAAE,aAAa,CAAC;CACxB,CAAC;AAEF,eAAO,MAAM,qBAAqB,GAAI,kDAKnC,qBAAqB;;;;;CAMX,CAAC"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|