@webstudio-is/sdk-components-react-radix 0.216.0 → 0.217.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/lib/accordion.ws.js +61 -77
- package/lib/checkbox.ws.js +15 -16
- package/lib/collapsible.ws.js +31 -39
- package/lib/dialog.ws.js +75 -105
- package/lib/label.ws.js +8 -9
- package/lib/navigation-menu.ws.js +79 -99
- package/lib/popover.ws.js +21 -29
- package/lib/radio-group.ws.js +35 -42
- package/lib/select.ws.js +83 -120
- package/lib/switch.ws.js +22 -23
- package/lib/tabs.ws.js +52 -66
- package/lib/tooltip.ws.js +24 -32
- package/package.json +9 -9
package/lib/accordion.ws.js
CHANGED
|
@@ -1,58 +1,42 @@
|
|
|
1
|
-
import { AccordionIcon as
|
|
2
|
-
import { defaultStates as
|
|
3
|
-
import {
|
|
1
|
+
import { AccordionIcon as t, ItemIcon as n, HeaderIcon as r, TriggerIcon as c, ContentIcon as i } from "@webstudio-is/icons/svg";
|
|
2
|
+
import { defaultStates as p } from "@webstudio-is/sdk";
|
|
3
|
+
import { div as e, h3 as a, button as s } from "@webstudio-is/sdk/normalize.css";
|
|
4
4
|
import { radix as o } from "./shared/meta.js";
|
|
5
|
-
import { buttonReset as
|
|
6
|
-
import { propsAccordion as l, propsAccordionItem as
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
]
|
|
19
|
-
}, C = {
|
|
20
|
-
type: "container",
|
|
5
|
+
import { buttonReset as d } from "./shared/preset-styles.js";
|
|
6
|
+
import { propsAccordion as l, propsAccordionItem as m, propsAccordionHeader as A, propsAccordionTrigger as g, propsAccordionContent as y } from "./__generated__/accordion.props.js";
|
|
7
|
+
const v = {
|
|
8
|
+
icon: t,
|
|
9
|
+
contentModel: {
|
|
10
|
+
category: "instance",
|
|
11
|
+
children: ["instance"],
|
|
12
|
+
descendants: [o.AccordionItem]
|
|
13
|
+
},
|
|
14
|
+
presetStyle: {
|
|
15
|
+
div: e
|
|
16
|
+
}
|
|
17
|
+
}, x = {
|
|
21
18
|
label: "Item",
|
|
22
19
|
icon: n,
|
|
23
|
-
constraints: [
|
|
24
|
-
{
|
|
25
|
-
relation: "ancestor",
|
|
26
|
-
component: { $eq: o.Accordion }
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
relation: "descendant",
|
|
30
|
-
component: { $eq: o.AccordionHeader }
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
relation: "descendant",
|
|
34
|
-
component: { $eq: o.AccordionContent }
|
|
35
|
-
}
|
|
36
|
-
],
|
|
37
20
|
indexWithinAncestor: o.Accordion,
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
21
|
+
contentModel: {
|
|
22
|
+
category: "none",
|
|
23
|
+
children: ["instance"],
|
|
24
|
+
descendants: [o.AccordionHeader, o.AccordionContent]
|
|
25
|
+
},
|
|
26
|
+
presetStyle: {
|
|
27
|
+
div: e
|
|
28
|
+
}
|
|
29
|
+
}, C = {
|
|
41
30
|
label: "Item Header",
|
|
42
31
|
icon: r,
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
{
|
|
49
|
-
relation: "descendant",
|
|
50
|
-
component: { $eq: o.AccordionTrigger }
|
|
51
|
-
}
|
|
52
|
-
],
|
|
32
|
+
contentModel: {
|
|
33
|
+
category: "none",
|
|
34
|
+
children: ["instance"],
|
|
35
|
+
descendants: [o.AccordionTrigger]
|
|
36
|
+
},
|
|
53
37
|
presetStyle: {
|
|
54
38
|
h3: [
|
|
55
|
-
...
|
|
39
|
+
...a,
|
|
56
40
|
{
|
|
57
41
|
property: "margin-top",
|
|
58
42
|
value: { type: "unit", unit: "px", value: 0 }
|
|
@@ -63,16 +47,15 @@ const t = {
|
|
|
63
47
|
}
|
|
64
48
|
]
|
|
65
49
|
}
|
|
66
|
-
},
|
|
67
|
-
type: "container",
|
|
50
|
+
}, H = {
|
|
68
51
|
label: "Item Trigger",
|
|
69
52
|
icon: c,
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
53
|
+
contentModel: {
|
|
54
|
+
category: "none",
|
|
55
|
+
children: ["instance", "rich-text"]
|
|
73
56
|
},
|
|
74
57
|
states: [
|
|
75
|
-
...
|
|
58
|
+
...p,
|
|
76
59
|
{
|
|
77
60
|
category: "component-states",
|
|
78
61
|
label: "Open",
|
|
@@ -80,39 +63,40 @@ const t = {
|
|
|
80
63
|
}
|
|
81
64
|
],
|
|
82
65
|
presetStyle: {
|
|
83
|
-
button: [s,
|
|
66
|
+
button: [s, d].flat()
|
|
84
67
|
}
|
|
85
|
-
},
|
|
86
|
-
type: "container",
|
|
68
|
+
}, S = {
|
|
87
69
|
label: "Item Content",
|
|
88
70
|
icon: i,
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
71
|
+
contentModel: {
|
|
72
|
+
category: "none",
|
|
73
|
+
children: ["instance", "rich-text"]
|
|
92
74
|
},
|
|
93
|
-
presetStyle:
|
|
94
|
-
|
|
75
|
+
presetStyle: {
|
|
76
|
+
div: e
|
|
77
|
+
}
|
|
78
|
+
}, T = {
|
|
95
79
|
props: l,
|
|
96
80
|
initialProps: ["value", "collapsible"]
|
|
97
|
-
}, h = {
|
|
98
|
-
props: A,
|
|
99
|
-
initialProps: ["value"]
|
|
100
81
|
}, P = {
|
|
101
|
-
props:
|
|
82
|
+
props: m,
|
|
83
|
+
initialProps: ["value"]
|
|
102
84
|
}, O = {
|
|
103
|
-
props:
|
|
85
|
+
props: A
|
|
104
86
|
}, R = {
|
|
105
|
-
props:
|
|
87
|
+
props: g
|
|
88
|
+
}, W = {
|
|
89
|
+
props: y
|
|
106
90
|
};
|
|
107
91
|
export {
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
92
|
+
v as metaAccordion,
|
|
93
|
+
S as metaAccordionContent,
|
|
94
|
+
C as metaAccordionHeader,
|
|
95
|
+
x as metaAccordionItem,
|
|
96
|
+
H as metaAccordionTrigger,
|
|
97
|
+
T as propsMetaAccordion,
|
|
98
|
+
W as propsMetaAccordionContent,
|
|
99
|
+
O as propsMetaAccordionHeader,
|
|
100
|
+
P as propsMetaAccordionItem,
|
|
101
|
+
R as propsMetaAccordionTrigger
|
|
118
102
|
};
|
package/lib/checkbox.ws.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { CheckboxCheckedIcon as
|
|
1
|
+
import { CheckboxCheckedIcon as t, TriggerIcon as o } from "@webstudio-is/icons/svg";
|
|
2
2
|
import { defaultStates as e } from "@webstudio-is/sdk";
|
|
3
|
-
import { button as
|
|
4
|
-
import { radix as
|
|
3
|
+
import { button as c, span as n } from "@webstudio-is/sdk/normalize.css";
|
|
4
|
+
import { radix as r } from "./shared/meta.js";
|
|
5
5
|
import { buttonReset as a } from "./shared/preset-styles.js";
|
|
6
|
-
import { propsCheckbox as s, propsCheckboxIndicator as
|
|
6
|
+
import { propsCheckbox as s, propsCheckboxIndicator as i } from "./__generated__/checkbox.props.js";
|
|
7
7
|
const b = {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
icon: t,
|
|
9
|
+
contentModel: {
|
|
10
|
+
category: "instance",
|
|
11
|
+
children: ["instance"],
|
|
12
|
+
descendants: [r.CheckboxIndicator]
|
|
12
13
|
},
|
|
13
|
-
icon: o,
|
|
14
14
|
states: [
|
|
15
15
|
...e,
|
|
16
16
|
{
|
|
@@ -25,15 +25,14 @@ const b = {
|
|
|
25
25
|
}
|
|
26
26
|
],
|
|
27
27
|
presetStyle: {
|
|
28
|
-
button: [
|
|
28
|
+
button: [c, a].flat()
|
|
29
29
|
}
|
|
30
30
|
}, x = {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
31
|
+
icon: o,
|
|
32
|
+
contentModel: {
|
|
33
|
+
category: "none",
|
|
34
|
+
children: ["instance", "rich-text"]
|
|
35
35
|
},
|
|
36
|
-
icon: c,
|
|
37
36
|
states: e,
|
|
38
37
|
presetStyle: {
|
|
39
38
|
span: n
|
|
@@ -42,7 +41,7 @@ const b = {
|
|
|
42
41
|
props: s,
|
|
43
42
|
initialProps: ["id", "className", "name", "value", "required", "checked"]
|
|
44
43
|
}, f = {
|
|
45
|
-
props:
|
|
44
|
+
props: i
|
|
46
45
|
};
|
|
47
46
|
export {
|
|
48
47
|
b as metaCheckbox,
|
package/lib/collapsible.ws.js
CHANGED
|
@@ -1,43 +1,35 @@
|
|
|
1
1
|
import { CollapsibleIcon as n, TriggerIcon as t, ContentIcon as l } from "@webstudio-is/icons/svg";
|
|
2
|
-
import { div as
|
|
3
|
-
import { radix as
|
|
4
|
-
import { propsCollapsible as
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
relation: "descendant",
|
|
14
|
-
component: { $eq: o.CollapsibleContent }
|
|
15
|
-
}
|
|
16
|
-
],
|
|
17
|
-
presetStyle: {
|
|
18
|
-
div: e
|
|
2
|
+
import { div as o } from "@webstudio-is/sdk/normalize.css";
|
|
3
|
+
import { radix as e } from "./shared/meta.js";
|
|
4
|
+
import { propsCollapsible as r, propsCollapsibleTrigger as p, propsCollapsibleContent as i } from "./__generated__/collapsible.props.js";
|
|
5
|
+
const g = {
|
|
6
|
+
icon: n,
|
|
7
|
+
contentModel: {
|
|
8
|
+
category: "instance",
|
|
9
|
+
children: ["instance"],
|
|
10
|
+
descendants: [e.CollapsibleTrigger, e.CollapsibleContent]
|
|
19
11
|
},
|
|
20
|
-
|
|
12
|
+
presetStyle: {
|
|
13
|
+
div: o
|
|
14
|
+
}
|
|
21
15
|
}, b = {
|
|
22
|
-
type: "container",
|
|
23
16
|
icon: t,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
17
|
+
contentModel: {
|
|
18
|
+
category: "none",
|
|
19
|
+
children: ["instance", "rich-text"]
|
|
27
20
|
}
|
|
28
|
-
},
|
|
29
|
-
type: "container",
|
|
30
|
-
presetStyle: {
|
|
31
|
-
div: e
|
|
32
|
-
},
|
|
21
|
+
}, d = {
|
|
33
22
|
icon: l,
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
23
|
+
contentModel: {
|
|
24
|
+
category: "none",
|
|
25
|
+
children: ["instance", "rich-text"]
|
|
26
|
+
},
|
|
27
|
+
presetStyle: {
|
|
28
|
+
div: o
|
|
37
29
|
}
|
|
38
|
-
},
|
|
30
|
+
}, m = {
|
|
39
31
|
props: {
|
|
40
|
-
...
|
|
32
|
+
...r,
|
|
41
33
|
onOpenChange: {
|
|
42
34
|
type: "action",
|
|
43
35
|
control: "action",
|
|
@@ -45,16 +37,16 @@ const m = {
|
|
|
45
37
|
}
|
|
46
38
|
},
|
|
47
39
|
initialProps: ["open", "onOpenChange"]
|
|
40
|
+
}, h = {
|
|
41
|
+
props: p
|
|
48
42
|
}, y = {
|
|
49
|
-
props: r
|
|
50
|
-
}, f = {
|
|
51
43
|
props: i
|
|
52
44
|
};
|
|
53
45
|
export {
|
|
54
|
-
|
|
55
|
-
|
|
46
|
+
g as metaCollapsible,
|
|
47
|
+
d as metaCollapsibleContent,
|
|
56
48
|
b as metaCollapsibleTrigger,
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
49
|
+
m as propsMetaCollapsible,
|
|
50
|
+
y as propsMetaCollapsibleContent,
|
|
51
|
+
h as propsMetaCollapsibleTrigger
|
|
60
52
|
};
|
package/lib/dialog.ws.js
CHANGED
|
@@ -1,139 +1,109 @@
|
|
|
1
|
-
import { TriggerIcon as
|
|
2
|
-
import { defaultStates as
|
|
3
|
-
import { div as t, h2 as
|
|
1
|
+
import { TriggerIcon as e, OverlayIcon as n, ContentIcon as i, HeadingIcon as r, TextIcon as a, ButtonElementIcon as s, DialogIcon as l } from "@webstudio-is/icons/svg";
|
|
2
|
+
import { defaultStates as c } from "@webstudio-is/sdk";
|
|
3
|
+
import { div as t, h2 as p, p as g, button as D } from "@webstudio-is/sdk/normalize.css";
|
|
4
4
|
import { radix as o } from "./shared/meta.js";
|
|
5
|
-
import { propsDialog as
|
|
5
|
+
import { propsDialog as d, propsDialogTrigger as m, propsDialogContent as y, propsDialogOverlay as M, propsDialogClose as h, propsDialogTitle as C, propsDialogDescription as T } from "./__generated__/dialog.props.js";
|
|
6
6
|
import { buttonReset as f } from "./shared/preset-styles.js";
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
component: { $eq: o.Dialog }
|
|
7
|
+
const O = {
|
|
8
|
+
icon: e,
|
|
9
|
+
contentModel: {
|
|
10
|
+
category: "none",
|
|
11
|
+
children: ["instance"]
|
|
13
12
|
}
|
|
14
13
|
}, b = {
|
|
15
|
-
|
|
14
|
+
icon: n,
|
|
15
|
+
contentModel: {
|
|
16
|
+
category: "none",
|
|
17
|
+
children: ["instance"],
|
|
18
|
+
descendants: [o.DialogContent]
|
|
19
|
+
},
|
|
16
20
|
presetStyle: {
|
|
17
21
|
div: t
|
|
22
|
+
}
|
|
23
|
+
}, B = {
|
|
24
|
+
icon: i,
|
|
25
|
+
contentModel: {
|
|
26
|
+
category: "none",
|
|
27
|
+
children: ["instance"],
|
|
28
|
+
descendants: [
|
|
29
|
+
o.DialogTitle,
|
|
30
|
+
o.DialogDescription,
|
|
31
|
+
o.DialogClose
|
|
32
|
+
]
|
|
18
33
|
},
|
|
19
|
-
icon: e,
|
|
20
|
-
constraints: [
|
|
21
|
-
{
|
|
22
|
-
relation: "ancestor",
|
|
23
|
-
component: { $eq: o.Dialog }
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
relation: "descendant",
|
|
27
|
-
component: { $eq: o.DialogContent }
|
|
28
|
-
}
|
|
29
|
-
]
|
|
30
|
-
}, x = {
|
|
31
|
-
type: "container",
|
|
32
34
|
presetStyle: {
|
|
33
35
|
div: t
|
|
36
|
+
}
|
|
37
|
+
}, E = {
|
|
38
|
+
icon: r,
|
|
39
|
+
contentModel: {
|
|
40
|
+
category: "none",
|
|
41
|
+
children: ["instance", "rich-text"]
|
|
34
42
|
},
|
|
35
|
-
icon: i,
|
|
36
|
-
constraints: [
|
|
37
|
-
{
|
|
38
|
-
relation: "ancestor",
|
|
39
|
-
component: { $eq: o.DialogOverlay }
|
|
40
|
-
},
|
|
41
|
-
// often deleted by users
|
|
42
|
-
// though radix starts throwing warnings in console
|
|
43
|
-
/*
|
|
44
|
-
{
|
|
45
|
-
relation: "descendant",
|
|
46
|
-
component: { $eq: radix.DialogTitle },
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
relation: "descendant",
|
|
50
|
-
component: { $eq: radix.DialogDescription },
|
|
51
|
-
},
|
|
52
|
-
*/
|
|
53
|
-
{
|
|
54
|
-
relation: "descendant",
|
|
55
|
-
component: { $eq: o.DialogClose }
|
|
56
|
-
}
|
|
57
|
-
]
|
|
58
|
-
}, B = {
|
|
59
|
-
type: "container",
|
|
60
43
|
presetStyle: {
|
|
61
|
-
h2:
|
|
62
|
-
},
|
|
63
|
-
icon: a,
|
|
64
|
-
constraints: {
|
|
65
|
-
relation: "ancestor",
|
|
66
|
-
component: { $eq: o.DialogContent }
|
|
44
|
+
h2: p
|
|
67
45
|
}
|
|
68
|
-
},
|
|
69
|
-
|
|
46
|
+
}, H = {
|
|
47
|
+
icon: a,
|
|
48
|
+
contentModel: {
|
|
49
|
+
category: "none",
|
|
50
|
+
children: ["instance", "rich-text"]
|
|
51
|
+
},
|
|
70
52
|
presetStyle: {
|
|
71
53
|
p: g
|
|
72
|
-
},
|
|
73
|
-
icon: r,
|
|
74
|
-
constraints: {
|
|
75
|
-
relation: "ancestor",
|
|
76
|
-
component: { $eq: o.DialogContent }
|
|
77
54
|
}
|
|
78
|
-
},
|
|
79
|
-
type: "container",
|
|
80
|
-
presetStyle: {
|
|
81
|
-
button: [f, D].flat()
|
|
82
|
-
},
|
|
83
|
-
states: l,
|
|
55
|
+
}, R = {
|
|
84
56
|
icon: s,
|
|
85
57
|
label: "Close Button",
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
58
|
+
contentModel: {
|
|
59
|
+
category: "none",
|
|
60
|
+
children: ["instance", "rich-text"]
|
|
61
|
+
},
|
|
62
|
+
states: c,
|
|
63
|
+
presetStyle: {
|
|
64
|
+
button: [f, D].flat()
|
|
89
65
|
}
|
|
90
|
-
}, H = {
|
|
91
|
-
type: "container",
|
|
92
|
-
icon: p,
|
|
93
|
-
constraints: [
|
|
94
|
-
{
|
|
95
|
-
relation: "descendant",
|
|
96
|
-
component: { $eq: o.DialogTrigger }
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
relation: "descendant",
|
|
100
|
-
component: { $eq: o.DialogOverlay }
|
|
101
|
-
}
|
|
102
|
-
]
|
|
103
|
-
}, R = {
|
|
104
|
-
props: m,
|
|
105
|
-
initialProps: []
|
|
106
66
|
}, j = {
|
|
107
|
-
|
|
67
|
+
icon: l,
|
|
68
|
+
contentModel: {
|
|
69
|
+
category: "instance",
|
|
70
|
+
children: ["instance"],
|
|
71
|
+
descendants: [o.DialogTrigger, o.DialogOverlay]
|
|
72
|
+
}
|
|
108
73
|
}, k = {
|
|
109
|
-
props:
|
|
74
|
+
props: d,
|
|
110
75
|
initialProps: []
|
|
76
|
+
}, q = {
|
|
77
|
+
props: m
|
|
111
78
|
}, w = {
|
|
112
|
-
props:
|
|
79
|
+
props: y,
|
|
113
80
|
initialProps: []
|
|
114
81
|
}, z = {
|
|
115
|
-
props:
|
|
82
|
+
props: M,
|
|
116
83
|
initialProps: []
|
|
117
84
|
}, A = {
|
|
118
|
-
props:
|
|
85
|
+
props: h,
|
|
119
86
|
initialProps: []
|
|
120
87
|
}, F = {
|
|
88
|
+
props: C,
|
|
89
|
+
initialProps: []
|
|
90
|
+
}, G = {
|
|
121
91
|
props: T,
|
|
122
92
|
initialProps: []
|
|
123
93
|
};
|
|
124
94
|
export {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
95
|
+
j as metaDialog,
|
|
96
|
+
R as metaDialogClose,
|
|
97
|
+
B as metaDialogContent,
|
|
98
|
+
H as metaDialogDescription,
|
|
129
99
|
b as metaDialogOverlay,
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
100
|
+
E as metaDialogTitle,
|
|
101
|
+
O as metaDialogTrigger,
|
|
102
|
+
k as propsMetaDialog,
|
|
103
|
+
A as propsMetaDialogClose,
|
|
104
|
+
w as propsMetaDialogContent,
|
|
105
|
+
G as propsMetaDialogDescription,
|
|
106
|
+
z as propsMetaDialogOverlay,
|
|
107
|
+
F as propsMetaDialogTitle,
|
|
108
|
+
q as propsMetaDialogTrigger
|
|
139
109
|
};
|
package/lib/label.ws.js
CHANGED
|
@@ -2,18 +2,17 @@ import { LabelIcon as t } from "@webstudio-is/icons/svg";
|
|
|
2
2
|
import { defaultStates as o } from "@webstudio-is/sdk";
|
|
3
3
|
import { label as r } from "@webstudio-is/sdk/normalize.css";
|
|
4
4
|
import { props as e } from "./__generated__/label.props.js";
|
|
5
|
-
const
|
|
6
|
-
label: r
|
|
7
|
-
}, l = {
|
|
8
|
-
type: "container",
|
|
5
|
+
const i = {
|
|
9
6
|
icon: t,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
states: o,
|
|
8
|
+
presetStyle: {
|
|
9
|
+
label: r
|
|
10
|
+
}
|
|
11
|
+
}, l = {
|
|
13
12
|
props: e,
|
|
14
13
|
initialProps: ["id", "className", "htmlFor"]
|
|
15
14
|
};
|
|
16
15
|
export {
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
i as meta,
|
|
17
|
+
l as propsMeta
|
|
19
18
|
};
|