@webstudio-is/sdk-components-react-radix 0.0.0-c1d6247 → 0.0.0-ca00e2a
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/lib/__generated__/accordion.props.js +15 -2582
- package/lib/__generated__/checkbox.props.js +5 -1071
- package/lib/__generated__/collapsible.props.js +7 -1012
- package/lib/__generated__/dialog.props.js +10 -2585
- package/lib/__generated__/label.props.js +2 -517
- package/lib/__generated__/navigation-menu.props.js +13 -3625
- package/lib/__generated__/popover.props.js +5 -508
- package/lib/__generated__/radio-group.props.js +19 -1568
- package/lib/__generated__/select.props.js +42 -3615
- package/lib/__generated__/switch.props.js +5 -1071
- package/lib/__generated__/tabs.props.js +16 -2072
- package/lib/__generated__/tooltip.props.js +6 -503
- package/lib/accordion.js +24 -23
- package/lib/accordion.template.js +12 -12
- package/lib/accordion.ws.js +67 -82
- package/lib/checkbox.js +2 -2
- package/lib/checkbox.template.js +10 -10
- package/lib/checkbox.ws.js +21 -21
- package/lib/collapsible.js +3 -3
- package/lib/collapsible.ws.js +30 -37
- package/lib/dialog.template.js +19 -19
- package/lib/dialog.ws.js +85 -114
- package/lib/label.template.js +3 -3
- package/lib/label.ws.js +8 -9
- package/lib/navigation-menu.js +21 -20
- package/lib/navigation-menu.template.js +8 -8
- package/lib/navigation-menu.ws.js +82 -99
- package/lib/popover.ws.js +31 -38
- package/lib/radio-group.js +2 -2
- package/lib/radio-group.ws.js +37 -43
- package/lib/select.js +4 -6
- package/lib/select.ws.js +91 -127
- package/lib/shared/meta.js +13 -0
- package/lib/shared/preset-styles.js +29 -29
- package/lib/shared/theme.js +25 -68
- package/lib/sheet.template.js +32 -32
- package/lib/switch.js +2 -2
- package/lib/switch.template.js +9 -9
- package/lib/switch.ws.js +25 -25
- package/lib/tabs.js +41 -40
- package/lib/tabs.template.js +15 -15
- package/lib/tabs.ws.js +45 -58
- package/lib/tooltip.ws.js +32 -39
- package/lib/types/select.d.ts +3 -3
- package/lib/types/shared/meta.d.ts +1 -0
- package/lib/types/shared/preset-styles.d.ts +2 -2
- package/lib/types/shared/proxy.d.ts +1 -0
- package/package.json +21 -21
package/lib/popover.ws.js
CHANGED
|
@@ -1,50 +1,43 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PopoverIcon as e, TriggerIcon as n, ContentIcon as r } from "@webstudio-is/icons/svg";
|
|
2
2
|
import { div as t } from "@webstudio-is/sdk/normalize.css";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
icon:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
3
|
+
import { radix as o } from "./shared/meta.js";
|
|
4
|
+
import { propsPopover as p, propsPopoverTrigger as i, propsPopoverContent as s } from "./__generated__/popover.props.js";
|
|
5
|
+
const v = {
|
|
6
|
+
icon: n,
|
|
7
|
+
contentModel: {
|
|
8
|
+
category: "none",
|
|
9
|
+
children: ["instance"]
|
|
10
10
|
}
|
|
11
|
-
},
|
|
12
|
-
|
|
11
|
+
}, d = {
|
|
12
|
+
icon: r,
|
|
13
|
+
contentModel: {
|
|
14
|
+
category: "none",
|
|
15
|
+
children: ["instance"]
|
|
16
|
+
},
|
|
13
17
|
presetStyle: {
|
|
14
18
|
div: t
|
|
15
|
-
}
|
|
19
|
+
}
|
|
20
|
+
}, l = {
|
|
16
21
|
icon: e,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
22
|
+
contentModel: {
|
|
23
|
+
category: "instance",
|
|
24
|
+
children: ["instance"],
|
|
25
|
+
descendants: [o.PopoverTrigger, o.PopoverContent]
|
|
20
26
|
}
|
|
21
27
|
}, m = {
|
|
22
|
-
|
|
23
|
-
icon: n,
|
|
24
|
-
constraints: [
|
|
25
|
-
{
|
|
26
|
-
relation: "descendant",
|
|
27
|
-
component: { $eq: "PopoverTrigger" }
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
relation: "descendant",
|
|
31
|
-
component: { $eq: "PopoverContent" }
|
|
32
|
-
}
|
|
33
|
-
]
|
|
34
|
-
}, g = {
|
|
35
|
-
props: r,
|
|
28
|
+
props: p,
|
|
36
29
|
initialProps: ["open"]
|
|
37
|
-
},
|
|
38
|
-
props:
|
|
39
|
-
},
|
|
40
|
-
props:
|
|
30
|
+
}, f = {
|
|
31
|
+
props: i
|
|
32
|
+
}, M = {
|
|
33
|
+
props: s,
|
|
41
34
|
initialProps: ["side", "sideOffset", "align", "alignOffset"]
|
|
42
35
|
};
|
|
43
36
|
export {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
37
|
+
l as metaPopover,
|
|
38
|
+
d as metaPopoverContent,
|
|
39
|
+
v as metaPopoverTrigger,
|
|
40
|
+
m as propsMetaPopover,
|
|
41
|
+
M as propsMetaPopoverContent,
|
|
42
|
+
f as propsMetaPopoverTrigger
|
|
50
43
|
};
|
package/lib/radio-group.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as i } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef as m } from "react";
|
|
3
|
-
import {
|
|
4
|
-
const u = m(({ value: o, defaultValue: r, ...t }, a) => /* @__PURE__ */ i(
|
|
3
|
+
import { Item as d, Indicator as p, Root as e } from "@radix-ui/react-radio-group";
|
|
4
|
+
const u = m(({ value: o, defaultValue: r, ...t }, a) => /* @__PURE__ */ i(e, { ...t, defaultValue: o ?? r, ref: a })), R = d, s = p;
|
|
5
5
|
export {
|
|
6
6
|
u as RadioGroup,
|
|
7
7
|
s as RadioGroupIndicator,
|
package/lib/radio-group.ws.js
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import { RadioGroupIcon as
|
|
1
|
+
import { RadioGroupIcon as e, ItemIcon as a, TriggerIcon as r } from "@webstudio-is/icons/svg";
|
|
2
2
|
import { defaultStates as o } from "@webstudio-is/sdk";
|
|
3
|
-
import { div as
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
3
|
+
import { div as n, button as s, span as c } from "@webstudio-is/sdk/normalize.css";
|
|
4
|
+
import { radix as t } from "./shared/meta.js";
|
|
5
|
+
import { buttonReset as p } from "./shared/preset-styles.js";
|
|
6
|
+
import { propsRadioGroup as i, propsRadioGroupItem as d, propsRadioGroupIndicator as m } from "./__generated__/radio-group.props.js";
|
|
7
|
+
const y = {
|
|
8
|
+
icon: e,
|
|
9
|
+
contentModel: {
|
|
10
|
+
category: "instance",
|
|
11
|
+
children: ["instance"],
|
|
12
|
+
descendants: [t.RadioGroupItem]
|
|
11
13
|
},
|
|
12
|
-
icon: t,
|
|
13
14
|
states: [
|
|
14
15
|
...o,
|
|
15
16
|
{
|
|
@@ -24,50 +25,43 @@ const I = {
|
|
|
24
25
|
}
|
|
25
26
|
],
|
|
26
27
|
presetStyle: {
|
|
27
|
-
div:
|
|
28
|
+
div: n
|
|
28
29
|
}
|
|
29
|
-
},
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
{
|
|
37
|
-
relation: "descendant",
|
|
38
|
-
component: { $eq: "RadioGroupIndicator" }
|
|
39
|
-
}
|
|
40
|
-
],
|
|
41
|
-
icon: e,
|
|
30
|
+
}, g = {
|
|
31
|
+
icon: a,
|
|
32
|
+
contentModel: {
|
|
33
|
+
category: "none",
|
|
34
|
+
children: ["instance"],
|
|
35
|
+
descendants: [t.RadioGroupIndicator]
|
|
36
|
+
},
|
|
42
37
|
states: o,
|
|
43
38
|
presetStyle: {
|
|
44
|
-
button: [
|
|
39
|
+
button: [s, p].flat()
|
|
45
40
|
}
|
|
46
|
-
},
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
component: { $eq: "RadioGroupItem" }
|
|
41
|
+
}, h = {
|
|
42
|
+
icon: r,
|
|
43
|
+
contentModel: {
|
|
44
|
+
category: "none",
|
|
45
|
+
children: ["instance"]
|
|
52
46
|
},
|
|
53
47
|
states: o,
|
|
54
48
|
presetStyle: {
|
|
55
|
-
span:
|
|
49
|
+
span: c
|
|
56
50
|
}
|
|
57
|
-
},
|
|
51
|
+
}, M = {
|
|
58
52
|
props: i,
|
|
59
53
|
initialProps: ["id", "className", "name", "value", "required"]
|
|
60
|
-
},
|
|
61
|
-
props:
|
|
54
|
+
}, b = {
|
|
55
|
+
props: d,
|
|
62
56
|
initialProps: ["value"]
|
|
63
|
-
},
|
|
64
|
-
props:
|
|
57
|
+
}, k = {
|
|
58
|
+
props: m
|
|
65
59
|
};
|
|
66
60
|
export {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
61
|
+
y as metaRadioGroup,
|
|
62
|
+
h as metaRadioGroupIndicator,
|
|
63
|
+
g as metaRadioGroupItem,
|
|
64
|
+
M as propsMetaRadioGroup,
|
|
65
|
+
k as propsMetaRadioGroupIndicator,
|
|
66
|
+
b as propsMetaRadioGroupItem
|
|
73
67
|
};
|
package/lib/select.js
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import { jsx as c } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef as s, useContext as l } from "react";
|
|
3
|
-
import {
|
|
3
|
+
import { Viewport as m, Item as p, ItemIndicator as f, ItemText as S, Root as d, Trigger as u, Value as I, Portal as P, Content as g } from "@radix-ui/react-select";
|
|
4
4
|
import { ReactSdkContext as x, getClosestInstance as i } from "@webstudio-is/react-sdk/runtime";
|
|
5
|
-
const v = s(
|
|
6
|
-
({ value: e, defaultValue: t, ...o }, n) => /* @__PURE__ */ c(m, { ...o, defaultValue: e ?? t })
|
|
7
|
-
), T = s((e, t) => {
|
|
5
|
+
const v = s(({ value: e, defaultValue: t, ...o }, n) => /* @__PURE__ */ c(d, { ...o, defaultValue: e ?? t })), T = s((e, t) => {
|
|
8
6
|
const { renderer: o } = l(x);
|
|
9
|
-
return /* @__PURE__ */ c(
|
|
7
|
+
return /* @__PURE__ */ c(u, { onPointerDown: o === "canvas" ? (a) => {
|
|
10
8
|
a.preventDefault();
|
|
11
9
|
} : void 0, ref: t, ...e });
|
|
12
|
-
}), $ = s((e, t) => /* @__PURE__ */ c(
|
|
10
|
+
}), $ = s((e, t) => /* @__PURE__ */ c(I, { ref: t, ...e })), k = s((e, t) => /* @__PURE__ */ c(P, { children: /* @__PURE__ */ c(g, { ref: t, ...e, position: "popper" }) })), D = m, R = p, y = f, M = S, r = "@webstudio-is/sdk-components-react-radix", N = {
|
|
13
11
|
onNavigatorUnselect: (e, t) => {
|
|
14
12
|
for (const o of t.instancePath)
|
|
15
13
|
if (o.component === `${r}:SelectContent`) {
|
package/lib/select.ws.js
CHANGED
|
@@ -1,155 +1,119 @@
|
|
|
1
|
-
import { SelectIcon as o, TriggerIcon as
|
|
2
|
-
import { button as
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { SelectIcon as o, TriggerIcon as c, FormTextFieldIcon as r, ViewportIcon as l, ContentIcon as p, ItemIcon as s, CheckMarkIcon as a, TextIcon as i } from "@webstudio-is/icons/svg";
|
|
2
|
+
import { button as S, span as t, div as n } from "@webstudio-is/sdk/normalize.css";
|
|
3
|
+
import { radix as e } from "./shared/meta.js";
|
|
4
|
+
import { propsSelect as d, propsSelectTrigger as m, propsSelectValue as I, propsSelectViewport as g, propsSelectContent as M, propsSelectItem as y, propsSelectItemIndicator as T, propsSelectItemText as h } from "./__generated__/select.props.js";
|
|
5
|
+
const w = {
|
|
6
6
|
icon: o,
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
relation: "descendant",
|
|
14
|
-
component: { $eq: "SelectContent" }
|
|
15
|
-
}
|
|
16
|
-
]
|
|
17
|
-
}, x = {
|
|
18
|
-
type: "container",
|
|
19
|
-
icon: n,
|
|
20
|
-
presetStyle: {
|
|
21
|
-
button: i
|
|
22
|
-
},
|
|
23
|
-
constraints: [
|
|
24
|
-
{
|
|
25
|
-
relation: "ancestor",
|
|
26
|
-
component: { $eq: "Select" }
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
relation: "descendant",
|
|
30
|
-
component: { $eq: "SelectValue" }
|
|
31
|
-
}
|
|
32
|
-
]
|
|
33
|
-
}, C = {
|
|
34
|
-
type: "container",
|
|
35
|
-
label: "Value",
|
|
7
|
+
contentModel: {
|
|
8
|
+
category: "instance",
|
|
9
|
+
children: ["instance"],
|
|
10
|
+
descendants: [e.SelectTrigger, e.SelectContent]
|
|
11
|
+
}
|
|
12
|
+
}, b = {
|
|
36
13
|
icon: c,
|
|
37
|
-
|
|
38
|
-
|
|
14
|
+
contentModel: {
|
|
15
|
+
category: "none",
|
|
16
|
+
children: ["instance"],
|
|
17
|
+
descendants: [e.SelectValue]
|
|
39
18
|
},
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
component: { $eq: "SelectTrigger" }
|
|
19
|
+
presetStyle: {
|
|
20
|
+
button: S
|
|
43
21
|
}
|
|
44
|
-
},
|
|
45
|
-
|
|
22
|
+
}, f = {
|
|
23
|
+
label: "Value",
|
|
46
24
|
icon: r,
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
constraints: [
|
|
51
|
-
{
|
|
52
|
-
relation: "ancestor",
|
|
53
|
-
component: { $eq: "Select" }
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
relation: "descendant",
|
|
57
|
-
component: { $eq: "SelectViewport" }
|
|
58
|
-
}
|
|
59
|
-
]
|
|
60
|
-
}, b = {
|
|
61
|
-
type: "container",
|
|
62
|
-
icon: p,
|
|
63
|
-
presetStyle: {
|
|
64
|
-
div: t
|
|
25
|
+
contentModel: {
|
|
26
|
+
category: "none",
|
|
27
|
+
children: []
|
|
65
28
|
},
|
|
66
|
-
constraints: [
|
|
67
|
-
{
|
|
68
|
-
relation: "ancestor",
|
|
69
|
-
component: { $eq: "SelectContent" }
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
relation: "descendant",
|
|
73
|
-
component: { $eq: "SelectItem" }
|
|
74
|
-
}
|
|
75
|
-
]
|
|
76
|
-
}, f = {
|
|
77
|
-
type: "container",
|
|
78
|
-
icon: a,
|
|
79
|
-
constraints: [
|
|
80
|
-
{
|
|
81
|
-
relation: "ancestor",
|
|
82
|
-
component: { $eq: "SelectViewport" }
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
relation: "descendant",
|
|
86
|
-
component: { $eq: "SelectItemIndicator" }
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
relation: "descendant",
|
|
90
|
-
component: { $eq: "SelectItemText" }
|
|
91
|
-
}
|
|
92
|
-
],
|
|
93
29
|
presetStyle: {
|
|
94
|
-
|
|
30
|
+
span: t
|
|
95
31
|
}
|
|
96
32
|
}, v = {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
component: { $eq: "SelectItem" }
|
|
33
|
+
icon: p,
|
|
34
|
+
contentModel: {
|
|
35
|
+
category: "none",
|
|
36
|
+
children: ["instance"],
|
|
37
|
+
descendants: [e.SelectViewport]
|
|
103
38
|
},
|
|
104
39
|
presetStyle: {
|
|
105
|
-
|
|
40
|
+
div: n
|
|
106
41
|
}
|
|
107
42
|
}, P = {
|
|
108
|
-
type: "container",
|
|
109
|
-
label: "Item Text",
|
|
110
43
|
icon: l,
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
44
|
+
contentModel: {
|
|
45
|
+
category: "none",
|
|
46
|
+
children: ["instance"],
|
|
47
|
+
descendants: [e.SelectItem]
|
|
114
48
|
},
|
|
115
49
|
presetStyle: {
|
|
116
|
-
|
|
50
|
+
div: n
|
|
117
51
|
}
|
|
118
|
-
}, h = {
|
|
119
|
-
props: m,
|
|
120
|
-
initialProps: ["name", "value", "open", "required"]
|
|
121
52
|
}, k = {
|
|
122
|
-
|
|
53
|
+
icon: s,
|
|
54
|
+
contentModel: {
|
|
55
|
+
category: "none",
|
|
56
|
+
children: ["instance"],
|
|
57
|
+
descendants: [e.SelectItemIndicator, e.SelectItemText]
|
|
58
|
+
},
|
|
59
|
+
presetStyle: {
|
|
60
|
+
div: n
|
|
61
|
+
}
|
|
123
62
|
}, F = {
|
|
124
|
-
|
|
125
|
-
|
|
63
|
+
label: "Indicator",
|
|
64
|
+
icon: a,
|
|
65
|
+
contentModel: {
|
|
66
|
+
category: "none",
|
|
67
|
+
children: ["instance"]
|
|
68
|
+
},
|
|
69
|
+
presetStyle: {
|
|
70
|
+
span: t
|
|
71
|
+
}
|
|
72
|
+
}, q = {
|
|
73
|
+
label: "Item Text",
|
|
74
|
+
icon: i,
|
|
75
|
+
contentModel: {
|
|
76
|
+
category: "none",
|
|
77
|
+
children: ["instance", "rich-text"]
|
|
78
|
+
},
|
|
79
|
+
presetStyle: {
|
|
80
|
+
span: t
|
|
81
|
+
}
|
|
126
82
|
}, j = {
|
|
127
|
-
props: d
|
|
83
|
+
props: d,
|
|
84
|
+
initialProps: ["name", "value", "open", "required"]
|
|
128
85
|
}, z = {
|
|
129
|
-
props:
|
|
86
|
+
props: m
|
|
130
87
|
}, A = {
|
|
131
|
-
props:
|
|
132
|
-
initialProps: ["
|
|
88
|
+
props: I,
|
|
89
|
+
initialProps: ["placeholder"]
|
|
133
90
|
}, B = {
|
|
134
|
-
props:
|
|
91
|
+
props: M
|
|
135
92
|
}, D = {
|
|
93
|
+
props: g
|
|
94
|
+
}, E = {
|
|
95
|
+
props: y,
|
|
96
|
+
initialProps: ["value"]
|
|
97
|
+
}, G = {
|
|
136
98
|
props: T
|
|
99
|
+
}, H = {
|
|
100
|
+
props: h
|
|
137
101
|
};
|
|
138
102
|
export {
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
103
|
+
w as metaSelect,
|
|
104
|
+
v as metaSelectContent,
|
|
105
|
+
k as metaSelectItem,
|
|
106
|
+
F as metaSelectItemIndicator,
|
|
107
|
+
q as metaSelectItemText,
|
|
108
|
+
b as metaSelectTrigger,
|
|
109
|
+
f as metaSelectValue,
|
|
110
|
+
P as metaSelectViewport,
|
|
111
|
+
j as propsMetaSelect,
|
|
112
|
+
B as propsMetaSelectContent,
|
|
113
|
+
E as propsMetaSelectItem,
|
|
114
|
+
G as propsMetaSelectItemIndicator,
|
|
115
|
+
H as propsMetaSelectItemText,
|
|
116
|
+
z as propsMetaSelectTrigger,
|
|
117
|
+
A as propsMetaSelectValue,
|
|
118
|
+
D as propsMetaSelectViewport
|
|
155
119
|
};
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
const o = (
|
|
2
|
-
property:
|
|
3
|
-
value: { type: "unit", unit: p, value:
|
|
4
|
-
}),
|
|
5
|
-
property:
|
|
6
|
-
value: { type: "keyword", value:
|
|
7
|
-
}), d = (
|
|
8
|
-
property:
|
|
9
|
-
value: { type: "rgb", alpha: 1, r, g: p, b: l }
|
|
10
|
-
}),
|
|
1
|
+
const o = (r, t, p) => ({
|
|
2
|
+
property: r,
|
|
3
|
+
value: { type: "unit", unit: p, value: t }
|
|
4
|
+
}), e = (r, t) => ({
|
|
5
|
+
property: r,
|
|
6
|
+
value: { type: "keyword", value: t }
|
|
7
|
+
}), d = (r, t, p, l) => ({
|
|
8
|
+
property: r,
|
|
9
|
+
value: { type: "rgb", alpha: 1, r: t, g: p, b: l }
|
|
10
|
+
}), b = [
|
|
11
11
|
{
|
|
12
|
-
property: "
|
|
12
|
+
property: "background-color",
|
|
13
13
|
value: { type: "keyword", value: "transparent" }
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
|
-
property: "
|
|
16
|
+
property: "background-image",
|
|
17
17
|
value: { type: "keyword", value: "none" }
|
|
18
18
|
},
|
|
19
|
-
o("
|
|
20
|
-
o("
|
|
21
|
-
o("
|
|
22
|
-
o("
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
d("
|
|
28
|
-
d("
|
|
29
|
-
d("
|
|
30
|
-
d("
|
|
31
|
-
o("
|
|
32
|
-
o("
|
|
33
|
-
o("
|
|
34
|
-
o("
|
|
19
|
+
o("border-top-width", 0, "px"),
|
|
20
|
+
o("border-right-width", 0, "px"),
|
|
21
|
+
o("border-bottom-width", 0, "px"),
|
|
22
|
+
o("border-left-width", 0, "px"),
|
|
23
|
+
e("border-top-style", "solid"),
|
|
24
|
+
e("border-right-style", "solid"),
|
|
25
|
+
e("border-bottom-style", "solid"),
|
|
26
|
+
e("border-left-style", "solid"),
|
|
27
|
+
d("border-top-color", 226, 232, 240),
|
|
28
|
+
d("border-right-color", 226, 232, 240),
|
|
29
|
+
d("border-bottom-color", 226, 232, 240),
|
|
30
|
+
d("border-left-color", 226, 232, 240),
|
|
31
|
+
o("padding-top", 0, "px"),
|
|
32
|
+
o("padding-right", 0, "px"),
|
|
33
|
+
o("padding-bottom", 0, "px"),
|
|
34
|
+
o("padding-left", 0, "px")
|
|
35
35
|
];
|
|
36
36
|
export {
|
|
37
|
-
|
|
37
|
+
b as buttonReset
|
|
38
38
|
};
|