@smg-automotive/components 25.11.0-chakra-v3.2 → 25.11.0-dbojovic-vsst-4320-select-menu-migration.1
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 +2 -0
- package/dist/cjs/components/index.d.ts.map +1 -1
- package/dist/cjs/components/menu/index.d.ts +2 -1
- package/dist/cjs/components/menu/index.d.ts.map +1 -1
- package/dist/cjs/components/tab/Tab.d.ts +6 -0
- package/dist/cjs/components/tab/Tab.d.ts.map +1 -0
- package/dist/cjs/components/tab/TabList.d.ts +6 -0
- package/dist/cjs/components/tab/TabList.d.ts.map +1 -0
- package/dist/cjs/components/tab/TabPanel.d.ts +6 -0
- package/dist/cjs/components/tab/TabPanel.d.ts.map +1 -0
- package/dist/cjs/components/tab/TabPanels.d.ts +6 -0
- package/dist/cjs/components/tab/TabPanels.d.ts.map +1 -0
- package/dist/cjs/components/tab/index.d.ts +10 -0
- package/dist/cjs/components/tab/index.d.ts.map +1 -0
- package/dist/cjs/index.js +485 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/themes/shared/index.d.ts +122 -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 +113 -0
- package/dist/cjs/themes/shared/slotRecipes/index.d.ts.map +1 -1
- package/dist/cjs/themes/shared/slotRecipes/tabs.d.ts +69 -0
- package/dist/cjs/themes/shared/slotRecipes/tabs.d.ts.map +1 -0
- 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 +2 -0
- package/dist/esm/components/index.d.ts.map +1 -1
- package/dist/esm/components/menu/index.d.ts +2 -1
- package/dist/esm/components/menu/index.d.ts.map +1 -1
- package/dist/esm/components/menu/index.js +5 -3
- package/dist/esm/components/menu/index.js.map +1 -1
- package/dist/esm/components/tab/Tab.d.ts +6 -0
- package/dist/esm/components/tab/Tab.d.ts.map +1 -0
- package/dist/esm/components/tab/Tab.js +13 -0
- package/dist/esm/components/tab/Tab.js.map +1 -0
- package/dist/esm/components/tab/TabList.d.ts +6 -0
- package/dist/esm/components/tab/TabList.d.ts.map +1 -0
- package/dist/esm/components/tab/TabList.js +18 -0
- package/dist/esm/components/tab/TabList.js.map +1 -0
- package/dist/esm/components/tab/TabPanel.d.ts +6 -0
- package/dist/esm/components/tab/TabPanel.d.ts.map +1 -0
- package/dist/esm/components/tab/TabPanel.js +13 -0
- package/dist/esm/components/tab/TabPanel.js.map +1 -0
- package/dist/esm/components/tab/TabPanels.d.ts +6 -0
- package/dist/esm/components/tab/TabPanels.d.ts.map +1 -0
- package/dist/esm/components/tab/TabPanels.js +16 -0
- package/dist/esm/components/tab/TabPanels.js.map +1 -0
- package/dist/esm/components/tab/index.d.ts +10 -0
- package/dist/esm/components/tab/index.d.ts.map +1 -0
- package/dist/esm/components/tab/index.js +17 -0
- package/dist/esm/components/tab/index.js.map +1 -0
- package/dist/esm/components/themeProvider/index.js +2 -0
- package/dist/esm/components/themeProvider/index.js.map +1 -1
- package/dist/esm/index.js +11 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/themes/shared/index.d.ts +122 -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 +113 -0
- package/dist/esm/themes/shared/slotRecipes/index.d.ts.map +1 -1
- package/dist/esm/themes/shared/slotRecipes/index.js +4 -0
- package/dist/esm/themes/shared/slotRecipes/index.js.map +1 -1
- package/dist/esm/themes/shared/slotRecipes/tabs.d.ts +69 -0
- package/dist/esm/themes/shared/slotRecipes/tabs.d.ts.map +1 -0
- package/dist/esm/themes/shared/slotRecipes/tabs.js +120 -0
- package/dist/esm/themes/shared/slotRecipes/tabs.js.map +1 -0
- 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 +106 -3
- package/package.json +1 -1
|
@@ -1636,6 +1636,74 @@ export declare const getSharedConfig: () => {
|
|
|
1636
1636
|
};
|
|
1637
1637
|
};
|
|
1638
1638
|
}>;
|
|
1639
|
+
tabs: import("@chakra-ui/react").SlotRecipeDefinition<"content" | "trigger" | "root" | "list" | "contentGroup", {
|
|
1640
|
+
variant: {
|
|
1641
|
+
default: {
|
|
1642
|
+
trigger: {
|
|
1643
|
+
_selected: {
|
|
1644
|
+
borderBottomColor: "currentColor";
|
|
1645
|
+
};
|
|
1646
|
+
};
|
|
1647
|
+
};
|
|
1648
|
+
spaceBetween: {
|
|
1649
|
+
list: {
|
|
1650
|
+
justifyContent: "space-between";
|
|
1651
|
+
};
|
|
1652
|
+
trigger: {
|
|
1653
|
+
_selected: {
|
|
1654
|
+
borderBottomColor: "currentColor";
|
|
1655
|
+
};
|
|
1656
|
+
};
|
|
1657
|
+
};
|
|
1658
|
+
spaceAround: {
|
|
1659
|
+
list: {
|
|
1660
|
+
justifyContent: "space-around";
|
|
1661
|
+
};
|
|
1662
|
+
trigger: {
|
|
1663
|
+
_selected: {
|
|
1664
|
+
borderBottomColor: "currentColor";
|
|
1665
|
+
};
|
|
1666
|
+
};
|
|
1667
|
+
};
|
|
1668
|
+
enclosed: {
|
|
1669
|
+
list: {
|
|
1670
|
+
borderBottom: "none";
|
|
1671
|
+
};
|
|
1672
|
+
trigger: {
|
|
1673
|
+
color: "gray.700";
|
|
1674
|
+
fontWeight: "bold";
|
|
1675
|
+
flexBasis: "full";
|
|
1676
|
+
border: "1px";
|
|
1677
|
+
borderColor: "blue.200";
|
|
1678
|
+
backgroundColor: "blue.50";
|
|
1679
|
+
borderRight: "none";
|
|
1680
|
+
'--tabs-border-width': "1px";
|
|
1681
|
+
_selected: {
|
|
1682
|
+
backgroundColor: "transparent";
|
|
1683
|
+
borderBottomColor: "transparent";
|
|
1684
|
+
};
|
|
1685
|
+
_last: {
|
|
1686
|
+
borderRight: "1px";
|
|
1687
|
+
borderRightColor: "blue.200";
|
|
1688
|
+
};
|
|
1689
|
+
};
|
|
1690
|
+
content: {
|
|
1691
|
+
m: "0";
|
|
1692
|
+
};
|
|
1693
|
+
};
|
|
1694
|
+
fullWidth: {
|
|
1695
|
+
trigger: {
|
|
1696
|
+
flex: number;
|
|
1697
|
+
_selected: {
|
|
1698
|
+
borderBottomColor: "currentColor";
|
|
1699
|
+
};
|
|
1700
|
+
};
|
|
1701
|
+
content: {
|
|
1702
|
+
m: "0";
|
|
1703
|
+
};
|
|
1704
|
+
};
|
|
1705
|
+
};
|
|
1706
|
+
}>;
|
|
1639
1707
|
vehicleReference: import("@chakra-ui/react").SlotRecipeDefinition<"carTitle" | "price" | "dealerName" | "dealerAddress", import("@chakra-ui/react").SlotRecipeVariantRecord<"carTitle" | "price" | "dealerName" | "dealerAddress">>;
|
|
1640
1708
|
tooltip: import("@chakra-ui/react").SlotRecipeDefinition<"content" | "trigger" | "arrow" | "arrowTip" | "positioner", import("@chakra-ui/react").SlotRecipeVariantRecord<"content" | "trigger" | "arrow" | "arrowTip" | "positioner">>;
|
|
1641
1709
|
field: import("@chakra-ui/react").SlotRecipeDefinition<"button" | "label" | "root" | "errorText" | "helperText" | "labelRoot" | "requiredIndicator" | "tooltipWrapper" | "tooltipIcon", {
|
|
@@ -1741,6 +1809,51 @@ export declare const getSharedConfig: () => {
|
|
|
1741
1809
|
};
|
|
1742
1810
|
}>;
|
|
1743
1811
|
dialogFilter: import("@chakra-ui/react").SlotRecipeDefinition<"content", import("@chakra-ui/react").SlotRecipeVariantRecord<"content">>;
|
|
1812
|
+
drawer: import("@chakra-ui/react").SlotRecipeDefinition<"content" | "body" | "positioner" | "root" | "backdrop" | "closeTrigger", {
|
|
1813
|
+
placement: {
|
|
1814
|
+
top: {
|
|
1815
|
+
positioner: {
|
|
1816
|
+
alignItems: "flex-start";
|
|
1817
|
+
justifyContent: "stretch";
|
|
1818
|
+
};
|
|
1819
|
+
};
|
|
1820
|
+
bottom: {
|
|
1821
|
+
positioner: {
|
|
1822
|
+
alignItems: "flex-end";
|
|
1823
|
+
justifyContent: "stretch";
|
|
1824
|
+
};
|
|
1825
|
+
};
|
|
1826
|
+
left: {
|
|
1827
|
+
positioner: {
|
|
1828
|
+
alignItems: "stretch";
|
|
1829
|
+
justifyContent: "flex-start";
|
|
1830
|
+
};
|
|
1831
|
+
};
|
|
1832
|
+
right: {
|
|
1833
|
+
positioner: {
|
|
1834
|
+
alignItems: "stretch";
|
|
1835
|
+
justifyContent: "flex-end";
|
|
1836
|
+
};
|
|
1837
|
+
};
|
|
1838
|
+
};
|
|
1839
|
+
size: {
|
|
1840
|
+
xl: {
|
|
1841
|
+
content: {
|
|
1842
|
+
width: "4xl";
|
|
1843
|
+
};
|
|
1844
|
+
};
|
|
1845
|
+
half: {
|
|
1846
|
+
content: {
|
|
1847
|
+
width: "half";
|
|
1848
|
+
};
|
|
1849
|
+
};
|
|
1850
|
+
full: {
|
|
1851
|
+
content: {
|
|
1852
|
+
width: "full";
|
|
1853
|
+
};
|
|
1854
|
+
};
|
|
1855
|
+
};
|
|
1856
|
+
}>;
|
|
1744
1857
|
alert: import("@chakra-ui/react").SlotRecipeDefinition<"description" | "content" | "root" | "title" | "indicator", {
|
|
1745
1858
|
status: {
|
|
1746
1859
|
error: {
|
|
@@ -2065,6 +2178,9 @@ export declare const getSharedConfig: () => {
|
|
|
2065
2178
|
'8xl': {
|
|
2066
2179
|
value: string;
|
|
2067
2180
|
};
|
|
2181
|
+
half: {
|
|
2182
|
+
value: string;
|
|
2183
|
+
};
|
|
2068
2184
|
full: {
|
|
2069
2185
|
value: string;
|
|
2070
2186
|
};
|
|
@@ -2650,6 +2766,9 @@ export declare const getSharedConfig: () => {
|
|
|
2650
2766
|
'fade-in': {
|
|
2651
2767
|
value: string;
|
|
2652
2768
|
};
|
|
2769
|
+
'fade-out': {
|
|
2770
|
+
value: string;
|
|
2771
|
+
};
|
|
2653
2772
|
};
|
|
2654
2773
|
durations: {
|
|
2655
2774
|
fast: {
|
|
@@ -2658,6 +2777,9 @@ export declare const getSharedConfig: () => {
|
|
|
2658
2777
|
normal: {
|
|
2659
2778
|
value: string;
|
|
2660
2779
|
};
|
|
2780
|
+
slow: {
|
|
2781
|
+
value: string;
|
|
2782
|
+
};
|
|
2661
2783
|
};
|
|
2662
2784
|
};
|
|
2663
2785
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/themes/shared/index.ts"],"names":[],"mappings":"AAwBA,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/themes/shared/index.ts"],"names":[],"mappings":"AAwBA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6B1B,CAAC;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"keyframes.d.ts","sourceRoot":"","sources":["../../../../src/themes/shared/keyframes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"keyframes.d.ts","sourceRoot":"","sources":["../../../../src/themes/shared/keyframes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS,yCA8EpB,CAAC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export declare const drawerRecipe: import("@chakra-ui/react").SlotRecipeDefinition<"content" | "body" | "positioner" | "root" | "backdrop" | "closeTrigger", {
|
|
2
|
+
placement: {
|
|
3
|
+
top: {
|
|
4
|
+
positioner: {
|
|
5
|
+
alignItems: "flex-start";
|
|
6
|
+
justifyContent: "stretch";
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
bottom: {
|
|
10
|
+
positioner: {
|
|
11
|
+
alignItems: "flex-end";
|
|
12
|
+
justifyContent: "stretch";
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
left: {
|
|
16
|
+
positioner: {
|
|
17
|
+
alignItems: "stretch";
|
|
18
|
+
justifyContent: "flex-start";
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
right: {
|
|
22
|
+
positioner: {
|
|
23
|
+
alignItems: "stretch";
|
|
24
|
+
justifyContent: "flex-end";
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
size: {
|
|
29
|
+
xl: {
|
|
30
|
+
content: {
|
|
31
|
+
width: "4xl";
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
half: {
|
|
35
|
+
content: {
|
|
36
|
+
width: "half";
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
full: {
|
|
40
|
+
content: {
|
|
41
|
+
width: "full";
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}>;
|
|
46
|
+
//# sourceMappingURL=drawer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"drawer.d.ts","sourceRoot":"","sources":["../../../../../src/themes/shared/slotRecipes/drawer.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiPvB,CAAC"}
|
|
@@ -1437,6 +1437,74 @@ export declare const slotRecipes: {
|
|
|
1437
1437
|
};
|
|
1438
1438
|
};
|
|
1439
1439
|
}>;
|
|
1440
|
+
tabs: import("@chakra-ui/react").SlotRecipeDefinition<"content" | "trigger" | "root" | "list" | "contentGroup", {
|
|
1441
|
+
variant: {
|
|
1442
|
+
default: {
|
|
1443
|
+
trigger: {
|
|
1444
|
+
_selected: {
|
|
1445
|
+
borderBottomColor: "currentColor";
|
|
1446
|
+
};
|
|
1447
|
+
};
|
|
1448
|
+
};
|
|
1449
|
+
spaceBetween: {
|
|
1450
|
+
list: {
|
|
1451
|
+
justifyContent: "space-between";
|
|
1452
|
+
};
|
|
1453
|
+
trigger: {
|
|
1454
|
+
_selected: {
|
|
1455
|
+
borderBottomColor: "currentColor";
|
|
1456
|
+
};
|
|
1457
|
+
};
|
|
1458
|
+
};
|
|
1459
|
+
spaceAround: {
|
|
1460
|
+
list: {
|
|
1461
|
+
justifyContent: "space-around";
|
|
1462
|
+
};
|
|
1463
|
+
trigger: {
|
|
1464
|
+
_selected: {
|
|
1465
|
+
borderBottomColor: "currentColor";
|
|
1466
|
+
};
|
|
1467
|
+
};
|
|
1468
|
+
};
|
|
1469
|
+
enclosed: {
|
|
1470
|
+
list: {
|
|
1471
|
+
borderBottom: "none";
|
|
1472
|
+
};
|
|
1473
|
+
trigger: {
|
|
1474
|
+
color: "gray.700";
|
|
1475
|
+
fontWeight: "bold";
|
|
1476
|
+
flexBasis: "full";
|
|
1477
|
+
border: "1px";
|
|
1478
|
+
borderColor: "blue.200";
|
|
1479
|
+
backgroundColor: "blue.50";
|
|
1480
|
+
borderRight: "none";
|
|
1481
|
+
'--tabs-border-width': "1px";
|
|
1482
|
+
_selected: {
|
|
1483
|
+
backgroundColor: "transparent";
|
|
1484
|
+
borderBottomColor: "transparent";
|
|
1485
|
+
};
|
|
1486
|
+
_last: {
|
|
1487
|
+
borderRight: "1px";
|
|
1488
|
+
borderRightColor: "blue.200";
|
|
1489
|
+
};
|
|
1490
|
+
};
|
|
1491
|
+
content: {
|
|
1492
|
+
m: "0";
|
|
1493
|
+
};
|
|
1494
|
+
};
|
|
1495
|
+
fullWidth: {
|
|
1496
|
+
trigger: {
|
|
1497
|
+
flex: number;
|
|
1498
|
+
_selected: {
|
|
1499
|
+
borderBottomColor: "currentColor";
|
|
1500
|
+
};
|
|
1501
|
+
};
|
|
1502
|
+
content: {
|
|
1503
|
+
m: "0";
|
|
1504
|
+
};
|
|
1505
|
+
};
|
|
1506
|
+
};
|
|
1507
|
+
}>;
|
|
1440
1508
|
vehicleReference: import("@chakra-ui/react").SlotRecipeDefinition<"carTitle" | "price" | "dealerName" | "dealerAddress", import("@chakra-ui/react").SlotRecipeVariantRecord<"carTitle" | "price" | "dealerName" | "dealerAddress">>;
|
|
1441
1509
|
tooltip: import("@chakra-ui/react").SlotRecipeDefinition<"content" | "trigger" | "arrow" | "arrowTip" | "positioner", import("@chakra-ui/react").SlotRecipeVariantRecord<"content" | "trigger" | "arrow" | "arrowTip" | "positioner">>;
|
|
1442
1510
|
field: import("@chakra-ui/react").SlotRecipeDefinition<"button" | "label" | "root" | "errorText" | "helperText" | "labelRoot" | "requiredIndicator" | "tooltipWrapper" | "tooltipIcon", {
|
|
@@ -1542,6 +1610,51 @@ export declare const slotRecipes: {
|
|
|
1542
1610
|
};
|
|
1543
1611
|
}>;
|
|
1544
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
|
+
}>;
|
|
1545
1658
|
alert: import("@chakra-ui/react").SlotRecipeDefinition<"description" | "content" | "root" | "title" | "indicator", {
|
|
1546
1659
|
status: {
|
|
1547
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"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
export declare const tabsRecipe: import("@chakra-ui/react").SlotRecipeDefinition<"content" | "trigger" | "root" | "list" | "contentGroup", {
|
|
2
|
+
variant: {
|
|
3
|
+
default: {
|
|
4
|
+
trigger: {
|
|
5
|
+
_selected: {
|
|
6
|
+
borderBottomColor: "currentColor";
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
spaceBetween: {
|
|
11
|
+
list: {
|
|
12
|
+
justifyContent: "space-between";
|
|
13
|
+
};
|
|
14
|
+
trigger: {
|
|
15
|
+
_selected: {
|
|
16
|
+
borderBottomColor: "currentColor";
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
spaceAround: {
|
|
21
|
+
list: {
|
|
22
|
+
justifyContent: "space-around";
|
|
23
|
+
};
|
|
24
|
+
trigger: {
|
|
25
|
+
_selected: {
|
|
26
|
+
borderBottomColor: "currentColor";
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
enclosed: {
|
|
31
|
+
list: {
|
|
32
|
+
borderBottom: "none";
|
|
33
|
+
};
|
|
34
|
+
trigger: {
|
|
35
|
+
color: "gray.700";
|
|
36
|
+
fontWeight: "bold";
|
|
37
|
+
flexBasis: "full";
|
|
38
|
+
border: "1px";
|
|
39
|
+
borderColor: "blue.200";
|
|
40
|
+
backgroundColor: "blue.50";
|
|
41
|
+
borderRight: "none";
|
|
42
|
+
'--tabs-border-width': "1px";
|
|
43
|
+
_selected: {
|
|
44
|
+
backgroundColor: "transparent";
|
|
45
|
+
borderBottomColor: "transparent";
|
|
46
|
+
};
|
|
47
|
+
_last: {
|
|
48
|
+
borderRight: "1px";
|
|
49
|
+
borderRightColor: "blue.200";
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
content: {
|
|
53
|
+
m: "0";
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
fullWidth: {
|
|
57
|
+
trigger: {
|
|
58
|
+
flex: number;
|
|
59
|
+
_selected: {
|
|
60
|
+
borderBottomColor: "currentColor";
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
content: {
|
|
64
|
+
m: "0";
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
}>;
|
|
69
|
+
//# sourceMappingURL=tabs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tabs.d.ts","sourceRoot":"","sources":["../../../../../src/themes/shared/slotRecipes/tabs.ts"],"names":[],"mappings":"AAwCA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+ErB,CAAC"}
|
|
@@ -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"}
|
|
@@ -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":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DrawerBody.d.ts","sourceRoot":"","sources":["../../../../src/components/drawer/DrawerBody.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAErD,OAAO,EAA0B,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAE3E,eAAO,MAAM,UAAU,EAAE,EAAE,CAAC,iBAAiB,CAAC,eAAe,CAAC,CAI7D,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { __rest, __assign } from '../../node_modules/tslib/tslib.es6.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { Drawer } from '@chakra-ui/react';
|
|
4
|
+
|
|
5
|
+
var DrawerBody = function (props) {
|
|
6
|
+
var children = props.children, drawerBodyProps = __rest(props, ["children"]);
|
|
7
|
+
return React.createElement(Drawer.Body, __assign({}, drawerBodyProps), children);
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { DrawerBody };
|
|
11
|
+
//# sourceMappingURL=DrawerBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DrawerBody.js","sources":["../../../../../src/components/drawer/DrawerBody.tsx"],"sourcesContent":[null],"names":["ChakraDrawer"],"mappings":";;;;AAIO,IAAM,UAAU,GAA2C,UAAC,KAAK,EAAA;IAC9D,IAAA,QAAQ,GAAyB,KAAK,CAAA,QAA9B,EAAK,eAAe,GAAA,MAAA,CAAK,KAAK,EAAxC,CAAA,UAAA,CAAgC,CAAF;IAEpC,OAAO,KAAA,CAAA,aAAA,CAACA,MAAY,CAAC,IAAI,eAAK,eAAe,CAAA,EAAG,QAAQ,CAAqB;AAC/E;;;;"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FC, PropsWithChildren } from 'react';
|
|
2
|
+
import { DrawerContentProps as ChakraDrawerContentProps } from '@chakra-ui/react';
|
|
3
|
+
interface Props extends ChakraDrawerContentProps {
|
|
4
|
+
withCloseButton?: boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare const DrawerContent: FC<PropsWithChildren<Props>>;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=DrawerContent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DrawerContent.d.ts","sourceRoot":"","sources":["../../../../src/components/drawer/DrawerContent.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAErD,OAAO,EAEL,kBAAkB,IAAI,wBAAwB,EAC/C,MAAM,kBAAkB,CAAC;AAI1B,UAAU,KAAM,SAAQ,wBAAwB;IAC9C,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAED,eAAO,MAAM,aAAa,EAAE,EAAE,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAetD,CAAC"}
|