@smg-automotive/components 25.11.0-migrate-v3-header-full.1 → 25.11.0-migrate-v3-header-full.2
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/cjs/components/drawer/DrawerBody.d.ts +4 -0
- package/dist/cjs/components/drawer/DrawerBody.d.ts.map +1 -0
- package/dist/cjs/components/drawer/DrawerContent.d.ts +8 -0
- package/dist/cjs/components/drawer/DrawerContent.d.ts.map +1 -0
- package/dist/cjs/components/drawer/DrawerOverlay.d.ts +3 -0
- package/dist/cjs/components/drawer/DrawerOverlay.d.ts.map +1 -0
- package/dist/cjs/components/drawer/index.d.ts +13 -0
- package/dist/cjs/components/drawer/index.d.ts.map +1 -0
- package/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/components/index.d.ts.map +1 -1
- package/dist/cjs/index.js +310 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/themes/shared/index.d.ts +54 -0
- package/dist/cjs/themes/shared/index.d.ts.map +1 -1
- package/dist/cjs/themes/shared/keyframes.d.ts.map +1 -1
- package/dist/cjs/themes/shared/slotRecipes/drawer.d.ts +46 -0
- package/dist/cjs/themes/shared/slotRecipes/drawer.d.ts.map +1 -0
- package/dist/cjs/themes/shared/slotRecipes/index.d.ts +45 -0
- package/dist/cjs/themes/shared/slotRecipes/index.d.ts.map +1 -1
- package/dist/cjs/themes/shared/tokens/animations.d.ts +3 -0
- package/dist/cjs/themes/shared/tokens/animations.d.ts.map +1 -1
- package/dist/cjs/themes/shared/tokens/durations.d.ts +3 -0
- package/dist/cjs/themes/shared/tokens/durations.d.ts.map +1 -1
- package/dist/cjs/themes/shared/tokens/sizes.d.ts +3 -0
- package/dist/cjs/themes/shared/tokens/sizes.d.ts.map +1 -1
- package/dist/esm/components/drawer/DrawerBody.d.ts +4 -0
- package/dist/esm/components/drawer/DrawerBody.d.ts.map +1 -0
- package/dist/esm/components/drawer/DrawerBody.js +11 -0
- package/dist/esm/components/drawer/DrawerBody.js.map +1 -0
- package/dist/esm/components/drawer/DrawerContent.d.ts +8 -0
- package/dist/esm/components/drawer/DrawerContent.d.ts.map +1 -0
- package/dist/esm/components/drawer/DrawerContent.js +181 -0
- package/dist/esm/components/drawer/DrawerContent.js.map +1 -0
- package/dist/esm/components/drawer/DrawerOverlay.d.ts +3 -0
- package/dist/esm/components/drawer/DrawerOverlay.d.ts.map +1 -0
- package/dist/esm/components/drawer/DrawerOverlay.js +10 -0
- package/dist/esm/components/drawer/DrawerOverlay.js.map +1 -0
- package/dist/esm/components/drawer/index.d.ts +13 -0
- package/dist/esm/components/drawer/index.d.ts.map +1 -0
- package/dist/esm/components/drawer/index.js +178 -0
- package/dist/esm/components/drawer/index.js.map +1 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/components/index.d.ts.map +1 -1
- package/dist/esm/components/themeProvider/index.js +1 -0
- package/dist/esm/components/themeProvider/index.js.map +1 -1
- package/dist/esm/index.js +5 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/themes/shared/index.d.ts +54 -0
- package/dist/esm/themes/shared/index.d.ts.map +1 -1
- package/dist/esm/themes/shared/keyframes.d.ts.map +1 -1
- package/dist/esm/themes/shared/keyframes.js +32 -0
- package/dist/esm/themes/shared/keyframes.js.map +1 -1
- package/dist/esm/themes/shared/slotRecipes/drawer.d.ts +46 -0
- package/dist/esm/themes/shared/slotRecipes/drawer.d.ts.map +1 -0
- package/dist/esm/themes/shared/slotRecipes/drawer.js +247 -0
- package/dist/esm/themes/shared/slotRecipes/drawer.js.map +1 -0
- package/dist/esm/themes/shared/slotRecipes/index.d.ts +45 -0
- package/dist/esm/themes/shared/slotRecipes/index.d.ts.map +1 -1
- package/dist/esm/themes/shared/slotRecipes/index.js +2 -0
- package/dist/esm/themes/shared/slotRecipes/index.js.map +1 -1
- package/dist/esm/themes/shared/tokens/animations.d.ts +3 -0
- package/dist/esm/themes/shared/tokens/animations.d.ts.map +1 -1
- package/dist/esm/themes/shared/tokens/animations.js +2 -1
- package/dist/esm/themes/shared/tokens/animations.js.map +1 -1
- package/dist/esm/themes/shared/tokens/durations.d.ts +3 -0
- package/dist/esm/themes/shared/tokens/durations.d.ts.map +1 -1
- package/dist/esm/themes/shared/tokens/durations.js +3 -0
- package/dist/esm/themes/shared/tokens/durations.js.map +1 -1
- package/dist/esm/themes/shared/tokens/sizes.d.ts +3 -0
- package/dist/esm/themes/shared/tokens/sizes.d.ts.map +1 -1
- package/dist/esm/themes/shared/tokens/sizes.js +1 -0
- package/dist/esm/themes/shared/tokens/sizes.js.map +1 -1
- package/dist/index.d.ts +21 -3
- package/package.json +1 -1
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
import { defineSlotRecipe } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
var drawerRecipe = defineSlotRecipe({
|
|
4
|
+
slots: ['root', 'backdrop', 'positioner', 'content', 'body', 'closeTrigger'],
|
|
5
|
+
className: 'chakra-drawer',
|
|
6
|
+
base: {
|
|
7
|
+
root: {},
|
|
8
|
+
backdrop: {
|
|
9
|
+
position: 'fixed',
|
|
10
|
+
insetInlineStart: '0',
|
|
11
|
+
top: '0',
|
|
12
|
+
width: 'full',
|
|
13
|
+
height: 'full',
|
|
14
|
+
zIndex: 'overlay',
|
|
15
|
+
_open: {
|
|
16
|
+
animation: 'fade-in',
|
|
17
|
+
},
|
|
18
|
+
_closed: {
|
|
19
|
+
animation: 'fade-out',
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
positioner: {
|
|
23
|
+
display: 'flex',
|
|
24
|
+
width: 'full',
|
|
25
|
+
height: 'full',
|
|
26
|
+
position: 'fixed',
|
|
27
|
+
insetInlineStart: '0',
|
|
28
|
+
top: '0',
|
|
29
|
+
zIndex: 'modal',
|
|
30
|
+
},
|
|
31
|
+
content: {
|
|
32
|
+
bg: 'white',
|
|
33
|
+
boxShadow: 'xs',
|
|
34
|
+
},
|
|
35
|
+
body: {
|
|
36
|
+
flex: 1,
|
|
37
|
+
padding: 'lg',
|
|
38
|
+
overflowY: 'auto',
|
|
39
|
+
},
|
|
40
|
+
closeTrigger: {
|
|
41
|
+
display: 'flex',
|
|
42
|
+
justifyContent: 'center',
|
|
43
|
+
alignItems: 'center',
|
|
44
|
+
width: 'xs',
|
|
45
|
+
height: 'xs',
|
|
46
|
+
borderRadius: 'sm',
|
|
47
|
+
color: 'gray.800',
|
|
48
|
+
fontSize: 'base',
|
|
49
|
+
cursor: 'pointer',
|
|
50
|
+
_hover: {
|
|
51
|
+
bg: 'gray.100',
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
variants: {
|
|
56
|
+
placement: {
|
|
57
|
+
top: {
|
|
58
|
+
positioner: {
|
|
59
|
+
alignItems: 'flex-start',
|
|
60
|
+
justifyContent: 'stretch',
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
bottom: {
|
|
64
|
+
positioner: {
|
|
65
|
+
alignItems: 'flex-end',
|
|
66
|
+
justifyContent: 'stretch',
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
left: {
|
|
70
|
+
positioner: {
|
|
71
|
+
alignItems: 'stretch',
|
|
72
|
+
justifyContent: 'flex-start',
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
right: {
|
|
76
|
+
positioner: {
|
|
77
|
+
alignItems: 'stretch',
|
|
78
|
+
justifyContent: 'flex-end',
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
size: {
|
|
83
|
+
xl: {
|
|
84
|
+
content: {
|
|
85
|
+
width: '4xl',
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
half: {
|
|
89
|
+
content: {
|
|
90
|
+
width: 'half',
|
|
91
|
+
},
|
|
92
|
+
},
|
|
93
|
+
full: {
|
|
94
|
+
content: {
|
|
95
|
+
width: 'full',
|
|
96
|
+
},
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
compoundVariants: [
|
|
101
|
+
{
|
|
102
|
+
placement: 'top',
|
|
103
|
+
size: 'xl',
|
|
104
|
+
css: {
|
|
105
|
+
content: {
|
|
106
|
+
width: 'full',
|
|
107
|
+
height: '2xl',
|
|
108
|
+
_open: {
|
|
109
|
+
animationName: 'slide-in-from-top',
|
|
110
|
+
animationDuration: 'slow',
|
|
111
|
+
},
|
|
112
|
+
_closed: {
|
|
113
|
+
animationName: 'slide-out-to-top',
|
|
114
|
+
animationDuration: 'fast',
|
|
115
|
+
},
|
|
116
|
+
},
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
placement: 'top',
|
|
121
|
+
size: 'half',
|
|
122
|
+
css: {
|
|
123
|
+
content: {
|
|
124
|
+
width: 'full',
|
|
125
|
+
height: 'half',
|
|
126
|
+
_open: {
|
|
127
|
+
animationName: 'slide-in-from-top',
|
|
128
|
+
animationDuration: 'slow',
|
|
129
|
+
},
|
|
130
|
+
_closed: {
|
|
131
|
+
animationName: 'slide-out-to-top',
|
|
132
|
+
animationDuration: 'fast',
|
|
133
|
+
},
|
|
134
|
+
},
|
|
135
|
+
},
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
placement: 'top',
|
|
139
|
+
size: 'full',
|
|
140
|
+
css: {
|
|
141
|
+
content: {
|
|
142
|
+
width: 'full',
|
|
143
|
+
height: 'full',
|
|
144
|
+
_open: {
|
|
145
|
+
animationName: 'slide-in-from-top',
|
|
146
|
+
animationDuration: 'slow',
|
|
147
|
+
},
|
|
148
|
+
_closed: {
|
|
149
|
+
animationName: 'slide-out-to-top',
|
|
150
|
+
animationDuration: 'fast',
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
},
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
placement: 'right',
|
|
157
|
+
css: {
|
|
158
|
+
content: {
|
|
159
|
+
_open: {
|
|
160
|
+
animationName: 'slide-in-from-right',
|
|
161
|
+
animationDuration: 'slow',
|
|
162
|
+
},
|
|
163
|
+
_closed: {
|
|
164
|
+
animationName: 'slide-out-to-right',
|
|
165
|
+
animationDuration: 'fast',
|
|
166
|
+
},
|
|
167
|
+
},
|
|
168
|
+
},
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
placement: 'bottom',
|
|
172
|
+
size: 'xl',
|
|
173
|
+
css: {
|
|
174
|
+
content: {
|
|
175
|
+
width: 'full',
|
|
176
|
+
height: '2xl',
|
|
177
|
+
_open: {
|
|
178
|
+
animationName: 'slide-in-from-bottom',
|
|
179
|
+
animationDuration: 'slow',
|
|
180
|
+
},
|
|
181
|
+
_closed: {
|
|
182
|
+
animationName: 'slide-out-to-bottom',
|
|
183
|
+
animationDuration: 'fast',
|
|
184
|
+
},
|
|
185
|
+
},
|
|
186
|
+
},
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
placement: 'bottom',
|
|
190
|
+
size: 'half',
|
|
191
|
+
css: {
|
|
192
|
+
content: {
|
|
193
|
+
width: 'full',
|
|
194
|
+
height: 'half',
|
|
195
|
+
_open: {
|
|
196
|
+
animationName: 'slide-in-from-bottom',
|
|
197
|
+
animationDuration: 'slow',
|
|
198
|
+
},
|
|
199
|
+
_closed: {
|
|
200
|
+
animationName: 'slide-out-to-bottom',
|
|
201
|
+
animationDuration: 'fast',
|
|
202
|
+
},
|
|
203
|
+
},
|
|
204
|
+
},
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
placement: 'bottom',
|
|
208
|
+
size: 'full',
|
|
209
|
+
css: {
|
|
210
|
+
content: {
|
|
211
|
+
width: 'full',
|
|
212
|
+
height: 'full',
|
|
213
|
+
_open: {
|
|
214
|
+
animationName: 'slide-in-from-bottom',
|
|
215
|
+
animationDuration: 'slow',
|
|
216
|
+
},
|
|
217
|
+
_closed: {
|
|
218
|
+
animationName: 'slide-out-to-bottom',
|
|
219
|
+
animationDuration: 'fast',
|
|
220
|
+
},
|
|
221
|
+
},
|
|
222
|
+
},
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
placement: 'left',
|
|
226
|
+
css: {
|
|
227
|
+
content: {
|
|
228
|
+
_open: {
|
|
229
|
+
animationName: 'slide-in-from-left',
|
|
230
|
+
animationDuration: 'slow',
|
|
231
|
+
},
|
|
232
|
+
_closed: {
|
|
233
|
+
animationName: 'slide-out-to-left',
|
|
234
|
+
animationDuration: 'fast',
|
|
235
|
+
},
|
|
236
|
+
},
|
|
237
|
+
},
|
|
238
|
+
},
|
|
239
|
+
],
|
|
240
|
+
defaultVariants: {
|
|
241
|
+
placement: 'right',
|
|
242
|
+
size: 'half',
|
|
243
|
+
},
|
|
244
|
+
});
|
|
245
|
+
|
|
246
|
+
export { drawerRecipe };
|
|
247
|
+
//# sourceMappingURL=drawer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"drawer.js","sources":["../../../../../../src/themes/shared/slotRecipes/drawer.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|
|
@@ -1610,6 +1610,51 @@ export declare const slotRecipes: {
|
|
|
1610
1610
|
};
|
|
1611
1611
|
}>;
|
|
1612
1612
|
dialogFilter: import("@chakra-ui/react").SlotRecipeDefinition<"content", import("@chakra-ui/react").SlotRecipeVariantRecord<"content">>;
|
|
1613
|
+
drawer: import("@chakra-ui/react").SlotRecipeDefinition<"content" | "body" | "positioner" | "root" | "backdrop" | "closeTrigger", {
|
|
1614
|
+
placement: {
|
|
1615
|
+
top: {
|
|
1616
|
+
positioner: {
|
|
1617
|
+
alignItems: "flex-start";
|
|
1618
|
+
justifyContent: "stretch";
|
|
1619
|
+
};
|
|
1620
|
+
};
|
|
1621
|
+
bottom: {
|
|
1622
|
+
positioner: {
|
|
1623
|
+
alignItems: "flex-end";
|
|
1624
|
+
justifyContent: "stretch";
|
|
1625
|
+
};
|
|
1626
|
+
};
|
|
1627
|
+
left: {
|
|
1628
|
+
positioner: {
|
|
1629
|
+
alignItems: "stretch";
|
|
1630
|
+
justifyContent: "flex-start";
|
|
1631
|
+
};
|
|
1632
|
+
};
|
|
1633
|
+
right: {
|
|
1634
|
+
positioner: {
|
|
1635
|
+
alignItems: "stretch";
|
|
1636
|
+
justifyContent: "flex-end";
|
|
1637
|
+
};
|
|
1638
|
+
};
|
|
1639
|
+
};
|
|
1640
|
+
size: {
|
|
1641
|
+
xl: {
|
|
1642
|
+
content: {
|
|
1643
|
+
width: "4xl";
|
|
1644
|
+
};
|
|
1645
|
+
};
|
|
1646
|
+
half: {
|
|
1647
|
+
content: {
|
|
1648
|
+
width: "half";
|
|
1649
|
+
};
|
|
1650
|
+
};
|
|
1651
|
+
full: {
|
|
1652
|
+
content: {
|
|
1653
|
+
width: "full";
|
|
1654
|
+
};
|
|
1655
|
+
};
|
|
1656
|
+
};
|
|
1657
|
+
}>;
|
|
1613
1658
|
alert: import("@chakra-ui/react").SlotRecipeDefinition<"description" | "content" | "root" | "title" | "indicator", {
|
|
1614
1659
|
status: {
|
|
1615
1660
|
error: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/themes/shared/slotRecipes/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/themes/shared/slotRecipes/index.ts"],"names":[],"mappings":"AA8BA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8BvB,CAAC"}
|
|
@@ -18,6 +18,7 @@ import { inputSlotRecipe } from './input.js';
|
|
|
18
18
|
import { galleryHeaderRecipe } from './galleryHeader.js';
|
|
19
19
|
import { fieldSlotRecipe } from './field.js';
|
|
20
20
|
import { energyLabelRecipe } from './energyLabel.js';
|
|
21
|
+
import { drawerRecipe } from './drawer.js';
|
|
21
22
|
import { dialogFilterRecipe } from './dialogFilter.js';
|
|
22
23
|
import { dialogRecipe } from './dialog.js';
|
|
23
24
|
import { checkboxRecipe } from './checkbox.js';
|
|
@@ -49,6 +50,7 @@ var slotRecipes = {
|
|
|
49
50
|
input: inputSlotRecipe,
|
|
50
51
|
select: selectSlotRecipe,
|
|
51
52
|
dialogFilter: dialogFilterRecipe,
|
|
53
|
+
drawer: drawerRecipe,
|
|
52
54
|
alert: alertRecipe,
|
|
53
55
|
popoverFilter: popoverFilterRecipe,
|
|
54
56
|
numberInput: numberInputRecipe,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../../../../src/themes/shared/slotRecipes/index.ts"],"sourcesContent":[null],"names":["articleTeaser","accordion","breadcrumbs","card","energyLabel","galleryHeader","list","markedText","dialog","simpleHeader","table","tabs","vehicleReference","tooltip","field","section","checkbox","input","select","dialogFilter","alert","popoverFilter","numberInput","radio","slider","pagination","menu"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../../../src/themes/shared/slotRecipes/index.ts"],"sourcesContent":[null],"names":["articleTeaser","accordion","breadcrumbs","card","energyLabel","galleryHeader","list","markedText","dialog","simpleHeader","table","tabs","vehicleReference","tooltip","field","section","checkbox","input","select","dialogFilter","drawer","alert","popoverFilter","numberInput","radio","slider","pagination","menu"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8BO,IAAM,WAAW,GAAG;AACzB,IAAA,aAAa,EAAAA,mBAAA;AACb,IAAA,SAAS,EAAAC,eAAA;AACT,IAAA,WAAW,EAAAC,iBAAA;AACX,IAAA,IAAI,EAAAC,UAAA;AACJ,IAAA,WAAW,EAAAC,iBAAA;AACX,IAAA,aAAa,EAAAC,mBAAA;AACb,IAAA,IAAI,EAAAC,UAAA;AACJ,IAAA,UAAU,EAAAC,gBAAA;AACV,IAAA,MAAM,EAAAC,YAAA;AACN,IAAA,YAAY,EAAAC,kBAAA;AACZ,IAAA,KAAK,EAAAC,WAAA;AACL,IAAA,IAAI,EAAAC,UAAA;AACJ,IAAA,gBAAgB,EAAAC,sBAAA;AAChB,IAAA,OAAO,EAAAC,iBAAA;AACP,IAAA,KAAK,EAAAC,eAAA;AACL,IAAA,OAAO,EAAAC,aAAA;AACP,IAAA,QAAQ,EAAAC,cAAA;AACR,IAAA,MAAM,EAAE,YAAY;AACpB,IAAA,KAAK,EAAAC,eAAA;AACL,IAAA,MAAM,EAAAC,gBAAA;AACN,IAAA,YAAY,EAAAC,kBAAA;AACZ,IAAA,MAAM,EAAAC,YAAA;AACN,IAAA,KAAK,EAAAC,WAAA;AACL,IAAA,aAAa,EAAAC,mBAAA;AACb,IAAA,WAAW,EAAAC,iBAAA;AACX,IAAA,KAAK,EAAAC,WAAA;AACL,IAAA,MAAM,EAAAC,gBAAA;AACN,IAAA,UAAU,EAAAC,gBAAA;AACV,IAAA,IAAI,EAAAC,UAAA;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"animations.d.ts","sourceRoot":"","sources":["../../../../../src/themes/shared/tokens/animations.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"animations.d.ts","sourceRoot":"","sources":["../../../../../src/themes/shared/tokens/animations.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU;;;;;;;;;;;;;CAKrB,CAAC"}
|
|
@@ -3,7 +3,8 @@ import { defineTokens } from '@chakra-ui/react';
|
|
|
3
3
|
var animations = defineTokens.animations({
|
|
4
4
|
skeletonPulse: { value: 'skeletonPulse 1.6s linear infinite' },
|
|
5
5
|
spin: { value: 'spin 0.8s linear infinite' },
|
|
6
|
-
'fade-in': { value: 'fade-in var(--fade-in-duration, 0.1s) ease-
|
|
6
|
+
'fade-in': { value: 'fade-in var(--fade-in-duration, 0.1s) ease-in' },
|
|
7
|
+
'fade-out': { value: 'fade-out var(--fade-out-duration, 0.1s) ease-out' },
|
|
7
8
|
});
|
|
8
9
|
|
|
9
10
|
export { animations };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"animations.js","sources":["../../../../../../src/themes/shared/tokens/animations.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAEO,IAAM,UAAU,GAAG,YAAY,CAAC,UAAU,CAAC;AAChD,IAAA,aAAa,EAAE,EAAE,KAAK,EAAE,oCAAoC,EAAE;AAC9D,IAAA,IAAI,EAAE,EAAE,KAAK,EAAE,2BAA2B,EAAE;AAC5C,IAAA,SAAS,EAAE,EAAE,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"animations.js","sources":["../../../../../../src/themes/shared/tokens/animations.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAEO,IAAM,UAAU,GAAG,YAAY,CAAC,UAAU,CAAC;AAChD,IAAA,aAAa,EAAE,EAAE,KAAK,EAAE,oCAAoC,EAAE;AAC9D,IAAA,IAAI,EAAE,EAAE,KAAK,EAAE,2BAA2B,EAAE;AAC5C,IAAA,SAAS,EAAE,EAAE,KAAK,EAAE,+CAA+C,EAAE;AACrE,IAAA,UAAU,EAAE,EAAE,KAAK,EAAE,kDAAkD,EAAE;AAC1E,CAAA;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"durations.d.ts","sourceRoot":"","sources":["../../../../../src/themes/shared/tokens/durations.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"durations.d.ts","sourceRoot":"","sources":["../../../../../src/themes/shared/tokens/durations.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;;;;;;;;;;CAUpB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"durations.js","sources":["../../../../../../src/themes/shared/tokens/durations.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAEO,IAAM,SAAS,GAAG,YAAY,CAAC,SAAS,CAAC;AAC9C,IAAA,IAAI,EAAE;AACJ,QAAA,KAAK,EAAE,OAAO;AACf,KAAA;AACD,IAAA,MAAM,EAAE;AACN,QAAA,KAAK,EAAE,OAAO;AACf,KAAA;AACF,CAAA;;;;"}
|
|
1
|
+
{"version":3,"file":"durations.js","sources":["../../../../../../src/themes/shared/tokens/durations.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAEO,IAAM,SAAS,GAAG,YAAY,CAAC,SAAS,CAAC;AAC9C,IAAA,IAAI,EAAE;AACJ,QAAA,KAAK,EAAE,OAAO;AACf,KAAA;AACD,IAAA,MAAM,EAAE;AACN,QAAA,KAAK,EAAE,OAAO;AACf,KAAA;AACD,IAAA,IAAI,EAAE;AACJ,QAAA,KAAK,EAAE,OAAO;AACf,KAAA;AACF,CAAA;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sizes.d.ts","sourceRoot":"","sources":["../../../../../src/themes/shared/tokens/sizes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"sizes.d.ts","sourceRoot":"","sources":["../../../../../src/themes/shared/tokens/sizes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6BhB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sizes.js","sources":["../../../../../../src/themes/shared/tokens/sizes.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAEO,IAAM,KAAK,GAAG,YAAY,CAAC,KAAK,CAAC;AACtC,IAAA,CAAC,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE;AACjB,IAAA,IAAI,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACvB,IAAA,GAAG,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE;AACxB,IAAA,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACrB,IAAA,EAAE,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE;AACvB,IAAA,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE;AACxB,IAAA,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACrB,IAAA,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACrB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACxB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACxB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACzB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACzB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACzB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACzB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACzB,IAAA,IAAI,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACvB,IAAA,GAAG,EAAE,EAAE,KAAK,EAAE,aAAa,EAAE;AAC7B,IAAA,SAAS,EAAE;AACT,QAAA,EAAE,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACtB,QAAA,EAAE,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACtB,QAAA,EAAE,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE;AACvB,QAAA,EAAE,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE;AACvB,QAAA,KAAK,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE;AAC3B,KAAA;AACD,IAAA,aAAa,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACjC,IAAA,cAAc,EAAE,EAAE,KAAK,EAAE,UAAU,EAAE;AACrC,IAAA,eAAe,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACpC,CAAA;;;;"}
|
|
1
|
+
{"version":3,"file":"sizes.js","sources":["../../../../../../src/themes/shared/tokens/sizes.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAEO,IAAM,KAAK,GAAG,YAAY,CAAC,KAAK,CAAC;AACtC,IAAA,CAAC,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE;AACjB,IAAA,IAAI,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACvB,IAAA,GAAG,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE;AACxB,IAAA,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACrB,IAAA,EAAE,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE;AACvB,IAAA,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE;AACxB,IAAA,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACrB,IAAA,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACrB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACxB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACxB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACzB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACzB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACzB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACzB,IAAA,KAAK,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACzB,IAAA,IAAI,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE;AACtB,IAAA,IAAI,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;AACvB,IAAA,GAAG,EAAE,EAAE,KAAK,EAAE,aAAa,EAAE;AAC7B,IAAA,SAAS,EAAE;AACT,QAAA,EAAE,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACtB,QAAA,EAAE,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACtB,QAAA,EAAE,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE;AACvB,QAAA,EAAE,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE;AACvB,QAAA,KAAK,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE;AAC3B,KAAA;AACD,IAAA,aAAa,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACjC,IAAA,cAAc,EAAE,EAAE,KAAK,EAAE,UAAU,EAAE;AACrC,IAAA,eAAe,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;AACpC,CAAA;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { keyframes } from '@emotion/react';
|
|
2
2
|
import * as _chakra_ui_react from '@chakra-ui/react';
|
|
3
|
-
import { UseMediaQueryOptions, AccordionRootProps, RecipeVariantProps, BoxProps, BadgeProps as BadgeProps$1, BreadcrumbRootProps, ButtonProps, Card as Card$1, CenterProps as CenterProps$1, CheckboxCheckedChangeDetails, InputProps as InputProps$1, Switch as Switch$1, UseDialogProps, FlexProps as FlexProps$1, HeadingProps as HeadingProps$1, LinkProps as LinkProps$2, List as List$1, MenuTriggerProps, MenuRootProps, Accordion as Accordion$1, NativeSelectRootProps, NativeSelectFieldProps, SeparatorProps, SimpleGridProps, StackProps as StackProps$1, TabsTriggerProps, TabsListProps, TabsContentProps, TabsRootProps, Table as Table$1, TextProps, NumberInput } from '@chakra-ui/react';
|
|
3
|
+
import { UseMediaQueryOptions, AccordionRootProps, RecipeVariantProps, BoxProps, BadgeProps as BadgeProps$1, BreadcrumbRootProps, ButtonProps, Card as Card$1, CenterProps as CenterProps$1, CheckboxCheckedChangeDetails, InputProps as InputProps$1, Switch as Switch$1, UseDialogProps, DrawerContentProps, DrawerBodyProps, DrawerRootProps, FlexProps as FlexProps$1, HeadingProps as HeadingProps$1, LinkProps as LinkProps$2, List as List$1, MenuTriggerProps, MenuRootProps, Accordion as Accordion$1, NativeSelectRootProps, NativeSelectFieldProps, SeparatorProps, SimpleGridProps, StackProps as StackProps$1, TabsTriggerProps, TabsListProps, TabsContentProps, TabsRootProps, Table as Table$1, TextProps, NumberInput } from '@chakra-ui/react';
|
|
4
4
|
export { AspectRatioProps, Box, BoxProps, CardBodyProps, CardFooterProps, CardHeaderProps, GridItemProps, GridProps, ListItemProps, ListRootProps, SeparatorProps, StackSeparator, TableBodyProps, TableCaptionProps, TableCellProps, TableColumnGroupProps, TableColumnHeaderProps, TableColumnProps, TableFooterProps, TableHeaderProps, TableRootProps, TableRowProps, TableScrollAreaProps, TextProps, useBreakpointValue, useChakraContext, useDisclosure } from '@chakra-ui/react';
|
|
5
5
|
import * as React from 'react';
|
|
6
6
|
import React__default, { FocusEventHandler, ChangeEventHandler, FC, PropsWithChildren, ReactNode, ReactElement, ElementType, ComponentProps, JSX } from 'react';
|
|
@@ -511,6 +511,9 @@ declare const sizes: {
|
|
|
511
511
|
'8xl': {
|
|
512
512
|
value: string;
|
|
513
513
|
};
|
|
514
|
+
half: {
|
|
515
|
+
value: string;
|
|
516
|
+
};
|
|
514
517
|
full: {
|
|
515
518
|
value: string;
|
|
516
519
|
};
|
|
@@ -1736,6 +1739,21 @@ type DialogProps = DialogRootProps & {
|
|
|
1736
1739
|
};
|
|
1737
1740
|
declare const Dialog: FC<PropsWithChildren<DialogProps>>;
|
|
1738
1741
|
|
|
1742
|
+
declare const DrawerOverlay: FC<PropsWithChildren>;
|
|
1743
|
+
|
|
1744
|
+
interface Props$5 extends DrawerContentProps {
|
|
1745
|
+
withCloseButton?: boolean;
|
|
1746
|
+
}
|
|
1747
|
+
declare const DrawerContent: FC<PropsWithChildren<Props$5>>;
|
|
1748
|
+
|
|
1749
|
+
declare const DrawerBody: FC<PropsWithChildren<DrawerBodyProps>>;
|
|
1750
|
+
|
|
1751
|
+
interface DrawerProps extends Omit<DrawerRootProps, 'open' | 'onOpenChange'> {
|
|
1752
|
+
isOpen: boolean;
|
|
1753
|
+
onClose: () => void;
|
|
1754
|
+
}
|
|
1755
|
+
declare const Drawer: FC<PropsWithChildren<DrawerProps>>;
|
|
1756
|
+
|
|
1739
1757
|
declare const energyLabelRecipe: _chakra_ui_react.SlotRecipeDefinition<"text" | "root" | "triangle" | "textWrapper", {
|
|
1740
1758
|
efficiency: {
|
|
1741
1759
|
A: {
|
|
@@ -2677,5 +2695,5 @@ declare class Logger {
|
|
|
2677
2695
|
}
|
|
2678
2696
|
declare const logger: Logger;
|
|
2679
2697
|
|
|
2680
|
-
export { Accordion, AddPhotoIcon, AdvancedSearchIcon, AndroidIcon, AppleIcon, ArrowCircleIcon, ArrowDiagonalIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpIcon, ArticleTeaser, AspectRatio, AutoScout24AppLogo, AutoScout24Icon, Avatar, AvatarIcon, AvatarWithNotificationIcon, Badge, BankNotesIcon, BatteryIcon, BookmarkIcon, Breadcrumbs, BulbIcon, Button, CabrioletIcon, CalculatorIcon, CalendarIcon, CallIcon, CamperIcon, CarConditionIcon, CarIcon, Card, Body$1 as CardBody, Footer$2 as CardFooter, Header$1 as CardHeader, Root$2 as CardRoot, CartIcon, CategoryAIcon, CategoryAMinusIcon, CategoryAOneIcon, Center, ChartIcon, ChatBubbleIcon, CheckShieldIcon, Checkbox, CheckboxGroup, CheckmarkCircleColorIcon, CheckmarkCircleIcon, CheckmarkIcon, ChevronDownLargeIcon, ChevronDownSmallIcon, ChevronLeftLargeIcon, ChevronLeftSmallIcon, ChevronRightLargeIcon, ChevronRightSmallIcon, ChevronRightTinyIcon, ChevronUpLargeIcon, ChevronUpSmallIcon, ChfCurrencyIcon, Chip, CloseIcon, CollapseIcon, CompareIcon, ConsumptionIcon, CopyIcon, Count, CoupeIcon, CreditCardIcon, CreditIcon, DatePicker, DaylightIcon, DeleteIcon, DevOverlay, Dialog, DigitalContractIcon, DiscreteSlider, DocumentCheckIcon, DocumentIcon, DoubleChevronDownIcon, DoubleChevronUpIcon, DoubleLineIcon, DownloadIcon, DragIcon, DriveSystemIcon, DriveSystemLargeIcon, DriveTypeIcon, EnergyLabel, EquipmentIcon, ErrorIcon, ErrorPage, ExchangeIcon, ExpandIcon, EyeCrossedIcon, EyeIcon, FacebookIcon, FlagIcon, FlameIcon, FlashIcon, Flex, Footer$1 as Footer, FormControlSection, ForwardIcon, FullHeight, GalleryHeader, GarageIcon, GasStationIcon, GlobeIcon, GoogleIcon, Grid, GridItem, H1, H2, H3, H4, H5, H6, HamburgerMenuIcon, HeartIcon, HighlightedText, HistoryClockIcon, HouseIcon, ImageIcon, InfinityCircleIcon, InfoIcon, InformationBubbleIcon, InformationIcon, Input, InstagramIcon, InteriorIcon, LabelIcon, LayoutWithVehicleReference, Link, LinkedinIcon, List, ListIcon, Item as ListItem, Root$1 as ListRoot, LocationPinIcon, LockIcon, LogoutIcon, MagnifierIcon, MagnifierLargeIcon, MarkedText, Menu, MessageIcon, MiniVanIcon, MinusIcon, MissingImage, MissingImageIcon, MobileOnlyAccordion, MotoScout24AppLogo, MotoScout24Icon, MotorcycleIcon, Navigation, NoPhotoIcon, NotAvailableIcon, NotAvailableSquareIcon, OptimizerIcon, OverflowVerticalIcon, PageLayout, Pagination, PartialClockIcon, PenIcon, PickUpIcon, PlusCircleIcon, PlusIcon, PrintIcon, QualitySealIcon, RangeFilterInput, RangeIcon, Rating, RoadIcon, RocketIcon, RotateIcon, SafeNumberIcon, SaveSearchIcon, ScreenIcon, Section, SedanIcon, Select, Separator, ShareIcon, SimpleGrid, SimpleHeader, SingleColumnCenteredLayout, SmallCarIcon, SortIcon, SpeakerIcon, Stack, StarCircleIcon, StarIcon, SteeringWheelIcon, SuvIcon, SwissFlagIcon, Switch, Tab, TabList, TabPanel, TabPanels, Table, Body as TableBody, Caption as TableCaption, Cell as TableCell, Column as TableColumn, ColumnGroup as TableColumnGroup, ColumnHeader as TableColumnHeader, Footer as TableFooter, Header as TableHeader, Root as TableRoot, Row as TableRow, ScrollArea as TableScrollArea, Tabs, Text, ThemeProvider, ThreeSixtyIcon, ThumbsDownIcon, ThumbsUpIcon, TiltedRectangleIcon, TimeIcon, TooltipIcon, TopListingBadge, TopListingIcon, TopVehicleSharedBadge, TrailerIcon, TransmissionIcon, TrashIcon, TriangleIcon, TruckIcon, TwitterIcon, TwoColumnsLayout, UtilityVehicleIcon, VanIcon, VehiclePowerIcon, VehicleReference, VehicleTypesMotorcycleIcon, VehicleTypesMotorcycleStarIcon, VideoCameraIcon, VideoIcon, ViewCarIcon, ViewMotorcycleIcon, WagonIcon, WarningIcon, WarrantyIcon, WhatsAppIcon, WindowsIcon, YoutubeIcon, autoScout24Config, _default as autoScout24System, breakpoints, convertRemEmToPx, logger, motoScout24Config, _default$1 as motoScout24System, repeatArea, useDebouncedOnChange, useMediaQuery, useToken };
|
|
2681
|
-
export type { AccordionProps, ArticleTeaserProps, AvatarProps, BadgeProps, BaseButtonProps, BaseProps, BreadcrumbsPropsExtended, ButtonSharedProps, CenterProps, ChangeCallback, CheckboxGroupProps, CheckboxProps, ChipProps, CountProps, DatePickerProps, DevOverlayProps, DevOverlayVariables, DialogProps, DiscreteSliderMark, DiscreteSliderProps, EnergyLabelProps, ErrorPageProps, FlexProps, BaseProps as FormControlSectionProps, GalleryHeaderProps, HeadingProps, HighlightedTextProps, InputProps, LinkProps, MarkedTextProps, MenuProps, MissingImageProps, MobileOnlyAccordionProps, NavigationProps, Option, PaginationProps, PickedNumberInputProps, Props$2 as Props, RangeFilterInputField, RatingProps, SectionProps, SelectProps, SimpleHeaderProps, StackProps, SwitchProps, TabListProps, TabPanelProps, TabPanelsProps, TabProps, TabsProps, ThemeProviderProps, UnifiedButtonProps, VehicleReferenceProps };
|
|
2698
|
+
export { Accordion, AddPhotoIcon, AdvancedSearchIcon, AndroidIcon, AppleIcon, ArrowCircleIcon, ArrowDiagonalIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpIcon, ArticleTeaser, AspectRatio, AutoScout24AppLogo, AutoScout24Icon, Avatar, AvatarIcon, AvatarWithNotificationIcon, Badge, BankNotesIcon, BatteryIcon, BookmarkIcon, Breadcrumbs, BulbIcon, Button, CabrioletIcon, CalculatorIcon, CalendarIcon, CallIcon, CamperIcon, CarConditionIcon, CarIcon, Card, Body$1 as CardBody, Footer$2 as CardFooter, Header$1 as CardHeader, Root$2 as CardRoot, CartIcon, CategoryAIcon, CategoryAMinusIcon, CategoryAOneIcon, Center, ChartIcon, ChatBubbleIcon, CheckShieldIcon, Checkbox, CheckboxGroup, CheckmarkCircleColorIcon, CheckmarkCircleIcon, CheckmarkIcon, ChevronDownLargeIcon, ChevronDownSmallIcon, ChevronLeftLargeIcon, ChevronLeftSmallIcon, ChevronRightLargeIcon, ChevronRightSmallIcon, ChevronRightTinyIcon, ChevronUpLargeIcon, ChevronUpSmallIcon, ChfCurrencyIcon, Chip, CloseIcon, CollapseIcon, CompareIcon, ConsumptionIcon, CopyIcon, Count, CoupeIcon, CreditCardIcon, CreditIcon, DatePicker, DaylightIcon, DeleteIcon, DevOverlay, Dialog, DigitalContractIcon, DiscreteSlider, DocumentCheckIcon, DocumentIcon, DoubleChevronDownIcon, DoubleChevronUpIcon, DoubleLineIcon, DownloadIcon, DragIcon, Drawer, DrawerBody, DrawerContent, DrawerOverlay, DriveSystemIcon, DriveSystemLargeIcon, DriveTypeIcon, EnergyLabel, EquipmentIcon, ErrorIcon, ErrorPage, ExchangeIcon, ExpandIcon, EyeCrossedIcon, EyeIcon, FacebookIcon, FlagIcon, FlameIcon, FlashIcon, Flex, Footer$1 as Footer, FormControlSection, ForwardIcon, FullHeight, GalleryHeader, GarageIcon, GasStationIcon, GlobeIcon, GoogleIcon, Grid, GridItem, H1, H2, H3, H4, H5, H6, HamburgerMenuIcon, HeartIcon, HighlightedText, HistoryClockIcon, HouseIcon, ImageIcon, InfinityCircleIcon, InfoIcon, InformationBubbleIcon, InformationIcon, Input, InstagramIcon, InteriorIcon, LabelIcon, LayoutWithVehicleReference, Link, LinkedinIcon, List, ListIcon, Item as ListItem, Root$1 as ListRoot, LocationPinIcon, LockIcon, LogoutIcon, MagnifierIcon, MagnifierLargeIcon, MarkedText, Menu, MessageIcon, MiniVanIcon, MinusIcon, MissingImage, MissingImageIcon, MobileOnlyAccordion, MotoScout24AppLogo, MotoScout24Icon, MotorcycleIcon, Navigation, NoPhotoIcon, NotAvailableIcon, NotAvailableSquareIcon, OptimizerIcon, OverflowVerticalIcon, PageLayout, Pagination, PartialClockIcon, PenIcon, PickUpIcon, PlusCircleIcon, PlusIcon, PrintIcon, QualitySealIcon, RangeFilterInput, RangeIcon, Rating, RoadIcon, RocketIcon, RotateIcon, SafeNumberIcon, SaveSearchIcon, ScreenIcon, Section, SedanIcon, Select, Separator, ShareIcon, SimpleGrid, SimpleHeader, SingleColumnCenteredLayout, SmallCarIcon, SortIcon, SpeakerIcon, Stack, StarCircleIcon, StarIcon, SteeringWheelIcon, SuvIcon, SwissFlagIcon, Switch, Tab, TabList, TabPanel, TabPanels, Table, Body as TableBody, Caption as TableCaption, Cell as TableCell, Column as TableColumn, ColumnGroup as TableColumnGroup, ColumnHeader as TableColumnHeader, Footer as TableFooter, Header as TableHeader, Root as TableRoot, Row as TableRow, ScrollArea as TableScrollArea, Tabs, Text, ThemeProvider, ThreeSixtyIcon, ThumbsDownIcon, ThumbsUpIcon, TiltedRectangleIcon, TimeIcon, TooltipIcon, TopListingBadge, TopListingIcon, TopVehicleSharedBadge, TrailerIcon, TransmissionIcon, TrashIcon, TriangleIcon, TruckIcon, TwitterIcon, TwoColumnsLayout, UtilityVehicleIcon, VanIcon, VehiclePowerIcon, VehicleReference, VehicleTypesMotorcycleIcon, VehicleTypesMotorcycleStarIcon, VideoCameraIcon, VideoIcon, ViewCarIcon, ViewMotorcycleIcon, WagonIcon, WarningIcon, WarrantyIcon, WhatsAppIcon, WindowsIcon, YoutubeIcon, autoScout24Config, _default as autoScout24System, breakpoints, convertRemEmToPx, logger, motoScout24Config, _default$1 as motoScout24System, repeatArea, useDebouncedOnChange, useMediaQuery, useToken };
|
|
2699
|
+
export type { AccordionProps, ArticleTeaserProps, AvatarProps, BadgeProps, BaseButtonProps, BaseProps, BreadcrumbsPropsExtended, ButtonSharedProps, CenterProps, ChangeCallback, CheckboxGroupProps, CheckboxProps, ChipProps, CountProps, DatePickerProps, DevOverlayProps, DevOverlayVariables, DialogProps, DiscreteSliderMark, DiscreteSliderProps, DrawerProps, EnergyLabelProps, ErrorPageProps, FlexProps, BaseProps as FormControlSectionProps, GalleryHeaderProps, HeadingProps, HighlightedTextProps, InputProps, LinkProps, MarkedTextProps, MenuProps, MissingImageProps, MobileOnlyAccordionProps, NavigationProps, Option, PaginationProps, PickedNumberInputProps, Props$2 as Props, RangeFilterInputField, RatingProps, SectionProps, SelectProps, SimpleHeaderProps, StackProps, SwitchProps, TabListProps, TabPanelProps, TabPanelsProps, TabProps, TabsProps, ThemeProviderProps, UnifiedButtonProps, VehicleReferenceProps };
|
package/package.json
CHANGED