@smg-automotive/components 25.11.0-chakra-v3.2 → 25.11.0-chakra-v3.3
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/index.d.ts +1 -0
- package/dist/cjs/components/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 +170 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/themes/shared/index.d.ts +68 -0
- package/dist/cjs/themes/shared/index.d.ts.map +1 -1
- package/dist/cjs/themes/shared/slotRecipes/index.d.ts +68 -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/esm/components/index.d.ts +1 -0
- package/dist/esm/components/index.d.ts.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 +1 -0
- package/dist/esm/components/themeProvider/index.js.map +1 -1
- package/dist/esm/index.js +6 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/themes/shared/index.d.ts +68 -0
- package/dist/esm/themes/shared/index.d.ts.map +1 -1
- package/dist/esm/themes/shared/slotRecipes/index.d.ts +68 -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/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/index.d.ts +88 -4
- package/package.json +1 -1
|
@@ -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", {
|
|
@@ -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":"AA6BA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6BvB,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { vehicleReferenceRecipe } from './vehicleReference.js';
|
|
2
2
|
import { tooltipSlotRecipe } from './tooltip.js';
|
|
3
|
+
import { tabsRecipe } from './tabs.js';
|
|
3
4
|
import { tableRecipe } from './table.js';
|
|
4
5
|
import { switchRecipe } from './switch.js';
|
|
5
6
|
import { sliderSlotRecipe } from './slider.js';
|
|
@@ -38,6 +39,7 @@ var slotRecipes = {
|
|
|
38
39
|
dialog: dialogRecipe,
|
|
39
40
|
simpleHeader: simpleHeaderRecipe,
|
|
40
41
|
table: tableRecipe,
|
|
42
|
+
tabs: tabsRecipe,
|
|
41
43
|
vehicleReference: vehicleReferenceRecipe,
|
|
42
44
|
tooltip: tooltipSlotRecipe,
|
|
43
45
|
field: fieldSlotRecipe,
|
|
@@ -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","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","alert","popoverFilter","numberInput","radio","slider","pagination","menu"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BO,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,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;;;;;"}
|
|
@@ -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"}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { defineStyle, defineSlotRecipe } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
var baseTriggerStyle = defineStyle({
|
|
4
|
+
textStyle: 'body',
|
|
5
|
+
transitionProperty: 'common',
|
|
6
|
+
transitionDuration: 'normal',
|
|
7
|
+
'--tabs-border-width': '3px',
|
|
8
|
+
borderBottomWidth: 'var(--tabs-border-width)',
|
|
9
|
+
borderBottomStyle: 'var(--tabs-border-style, solid)',
|
|
10
|
+
borderBottomColor: 'transparent',
|
|
11
|
+
p: 'md',
|
|
12
|
+
color: 'gray.600',
|
|
13
|
+
cursor: 'pointer',
|
|
14
|
+
_selected: {
|
|
15
|
+
fontWeight: 'bold',
|
|
16
|
+
color: 'gray.900',
|
|
17
|
+
borderBottomWidth: 'var(--tabs-border-width)',
|
|
18
|
+
borderBottomStyle: 'var(--tabs-border-style, solid)',
|
|
19
|
+
borderBottomColor: 'currentColor',
|
|
20
|
+
},
|
|
21
|
+
_disabled: {
|
|
22
|
+
_active: { bg: 'none' },
|
|
23
|
+
cursor: 'notAllowed',
|
|
24
|
+
color: 'gray.300',
|
|
25
|
+
},
|
|
26
|
+
});
|
|
27
|
+
var baseListStyle = defineStyle({
|
|
28
|
+
display: 'flex',
|
|
29
|
+
width: 'full',
|
|
30
|
+
borderBottom: '1px',
|
|
31
|
+
borderColor: 'gray.200',
|
|
32
|
+
justifyContent: 'start',
|
|
33
|
+
});
|
|
34
|
+
var baseContentStyle = defineStyle({
|
|
35
|
+
textStyle: 'body',
|
|
36
|
+
m: 'sm',
|
|
37
|
+
});
|
|
38
|
+
var tabsRecipe = defineSlotRecipe({
|
|
39
|
+
slots: ['root', 'list', 'trigger', 'content', 'contentGroup'],
|
|
40
|
+
className: 'chakra-tabs',
|
|
41
|
+
base: {
|
|
42
|
+
trigger: baseTriggerStyle,
|
|
43
|
+
list: baseListStyle,
|
|
44
|
+
content: baseContentStyle,
|
|
45
|
+
},
|
|
46
|
+
variants: {
|
|
47
|
+
variant: {
|
|
48
|
+
default: {
|
|
49
|
+
trigger: {
|
|
50
|
+
_selected: {
|
|
51
|
+
borderBottomColor: 'currentColor',
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
spaceBetween: {
|
|
56
|
+
list: {
|
|
57
|
+
justifyContent: 'space-between',
|
|
58
|
+
},
|
|
59
|
+
trigger: {
|
|
60
|
+
_selected: {
|
|
61
|
+
borderBottomColor: 'currentColor',
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
},
|
|
65
|
+
spaceAround: {
|
|
66
|
+
list: {
|
|
67
|
+
justifyContent: 'space-around',
|
|
68
|
+
},
|
|
69
|
+
trigger: {
|
|
70
|
+
_selected: {
|
|
71
|
+
borderBottomColor: 'currentColor',
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
enclosed: {
|
|
76
|
+
list: {
|
|
77
|
+
borderBottom: 'none',
|
|
78
|
+
},
|
|
79
|
+
trigger: {
|
|
80
|
+
color: 'gray.700',
|
|
81
|
+
fontWeight: 'bold',
|
|
82
|
+
flexBasis: 'full',
|
|
83
|
+
border: '1px',
|
|
84
|
+
borderColor: 'blue.200',
|
|
85
|
+
backgroundColor: 'blue.50',
|
|
86
|
+
borderRight: 'none',
|
|
87
|
+
'--tabs-border-width': '1px',
|
|
88
|
+
_selected: {
|
|
89
|
+
backgroundColor: 'transparent',
|
|
90
|
+
borderBottomColor: 'transparent',
|
|
91
|
+
},
|
|
92
|
+
_last: {
|
|
93
|
+
borderRight: '1px',
|
|
94
|
+
borderRightColor: 'blue.200',
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
content: {
|
|
98
|
+
m: '0',
|
|
99
|
+
},
|
|
100
|
+
},
|
|
101
|
+
fullWidth: {
|
|
102
|
+
trigger: {
|
|
103
|
+
flex: 1,
|
|
104
|
+
_selected: {
|
|
105
|
+
borderBottomColor: 'currentColor',
|
|
106
|
+
},
|
|
107
|
+
},
|
|
108
|
+
content: {
|
|
109
|
+
m: '0',
|
|
110
|
+
},
|
|
111
|
+
},
|
|
112
|
+
},
|
|
113
|
+
},
|
|
114
|
+
defaultVariants: {
|
|
115
|
+
variant: 'default',
|
|
116
|
+
},
|
|
117
|
+
});
|
|
118
|
+
|
|
119
|
+
export { tabsRecipe };
|
|
120
|
+
//# sourceMappingURL=tabs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tabs.js","sources":["../../../../../../src/themes/shared/slotRecipes/tabs.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|
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, 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, 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';
|
|
@@ -430,7 +430,7 @@ type DatePickerProps = Pick<InputProps$1, 'onFocus' | 'onBlur' | 'onChange'> & I
|
|
|
430
430
|
value?: string;
|
|
431
431
|
invalid?: boolean;
|
|
432
432
|
};
|
|
433
|
-
declare const DatePicker: React__default.ForwardRefExoticComponent<Pick<InputProps$1, "
|
|
433
|
+
declare const DatePicker: React__default.ForwardRefExoticComponent<Pick<InputProps$1, "onFocus" | "onBlur" | "onChange"> & {
|
|
434
434
|
variant?: _chakra_ui_react.ConditionalValue<"outline" | undefined>;
|
|
435
435
|
size?: _chakra_ui_react.ConditionalValue<"md" | "lg" | undefined>;
|
|
436
436
|
} & {
|
|
@@ -2425,6 +2425,90 @@ declare const SimpleHeader: FC<SimpleHeaderProps>;
|
|
|
2425
2425
|
type StackProps = Pick<StackProps$1, 'align' | 'children' | 'direction' | 'justify' | 'gap' | 'wrap' | 'margin' | 'marginX' | 'marginY' | 'marginTop' | 'marginBottom' | 'marginLeft' | 'marginRight' | 'padding' | 'paddingX' | 'paddingY' | 'paddingTop' | 'paddingBottom' | 'paddingLeft' | 'paddingRight' | 'separator' | 'alignItems' | 'width'>;
|
|
2426
2426
|
declare const Stack: FC<StackProps>;
|
|
2427
2427
|
|
|
2428
|
+
declare const tabsRecipe: _chakra_ui_react.SlotRecipeDefinition<"content" | "list" | "root" | "trigger" | "contentGroup", {
|
|
2429
|
+
variant: {
|
|
2430
|
+
default: {
|
|
2431
|
+
trigger: {
|
|
2432
|
+
_selected: {
|
|
2433
|
+
borderBottomColor: "currentColor";
|
|
2434
|
+
};
|
|
2435
|
+
};
|
|
2436
|
+
};
|
|
2437
|
+
spaceBetween: {
|
|
2438
|
+
list: {
|
|
2439
|
+
justifyContent: "space-between";
|
|
2440
|
+
};
|
|
2441
|
+
trigger: {
|
|
2442
|
+
_selected: {
|
|
2443
|
+
borderBottomColor: "currentColor";
|
|
2444
|
+
};
|
|
2445
|
+
};
|
|
2446
|
+
};
|
|
2447
|
+
spaceAround: {
|
|
2448
|
+
list: {
|
|
2449
|
+
justifyContent: "space-around";
|
|
2450
|
+
};
|
|
2451
|
+
trigger: {
|
|
2452
|
+
_selected: {
|
|
2453
|
+
borderBottomColor: "currentColor";
|
|
2454
|
+
};
|
|
2455
|
+
};
|
|
2456
|
+
};
|
|
2457
|
+
enclosed: {
|
|
2458
|
+
list: {
|
|
2459
|
+
borderBottom: "none";
|
|
2460
|
+
};
|
|
2461
|
+
trigger: {
|
|
2462
|
+
color: "gray.700";
|
|
2463
|
+
fontWeight: "bold";
|
|
2464
|
+
flexBasis: "full";
|
|
2465
|
+
border: "1px";
|
|
2466
|
+
borderColor: "blue.200";
|
|
2467
|
+
backgroundColor: "blue.50";
|
|
2468
|
+
borderRight: "none";
|
|
2469
|
+
'--tabs-border-width': "1px";
|
|
2470
|
+
_selected: {
|
|
2471
|
+
backgroundColor: "transparent";
|
|
2472
|
+
borderBottomColor: "transparent";
|
|
2473
|
+
};
|
|
2474
|
+
_last: {
|
|
2475
|
+
borderRight: "1px";
|
|
2476
|
+
borderRightColor: "blue.200";
|
|
2477
|
+
};
|
|
2478
|
+
};
|
|
2479
|
+
content: {
|
|
2480
|
+
m: "0";
|
|
2481
|
+
};
|
|
2482
|
+
};
|
|
2483
|
+
fullWidth: {
|
|
2484
|
+
trigger: {
|
|
2485
|
+
flex: number;
|
|
2486
|
+
_selected: {
|
|
2487
|
+
borderBottomColor: "currentColor";
|
|
2488
|
+
};
|
|
2489
|
+
};
|
|
2490
|
+
content: {
|
|
2491
|
+
m: "0";
|
|
2492
|
+
};
|
|
2493
|
+
};
|
|
2494
|
+
};
|
|
2495
|
+
}>;
|
|
2496
|
+
|
|
2497
|
+
type TabProps = Omit<TabsTriggerProps, 'variant'> & RecipeVariantProps<typeof tabsRecipe>;
|
|
2498
|
+
declare const Tab: FC<PropsWithChildren<TabProps>>;
|
|
2499
|
+
|
|
2500
|
+
type TabListProps = Omit<TabsListProps, 'variant'> & RecipeVariantProps<typeof tabsRecipe>;
|
|
2501
|
+
declare const TabList: FC<PropsWithChildren<TabListProps>>;
|
|
2502
|
+
|
|
2503
|
+
type TabPanelProps = Omit<TabsContentProps, 'variant'> & RecipeVariantProps<typeof tabsRecipe>;
|
|
2504
|
+
declare const TabPanel: FC<PropsWithChildren<TabPanelProps>>;
|
|
2505
|
+
|
|
2506
|
+
type TabPanelsProps = RecipeVariantProps<typeof tabsRecipe>;
|
|
2507
|
+
declare const TabPanels: FC<PropsWithChildren<TabPanelsProps>>;
|
|
2508
|
+
|
|
2509
|
+
type TabsProps = Omit<TabsRootProps, 'variant'> & RecipeVariantProps<typeof tabsRecipe>;
|
|
2510
|
+
declare const Tabs: FC<PropsWithChildren<TabsProps>>;
|
|
2511
|
+
|
|
2428
2512
|
declare const Body: React.ForwardRefExoticComponent<Table$1.BodyProps & React.RefAttributes<HTMLTableSectionElement>>;
|
|
2429
2513
|
declare const Caption: React.ForwardRefExoticComponent<Table$1.CaptionProps & React.RefAttributes<HTMLTableCaptionElement>>;
|
|
2430
2514
|
declare const Cell: React.ForwardRefExoticComponent<Table$1.CellProps & React.RefAttributes<HTMLTableCellElement>>;
|
|
@@ -2567,5 +2651,5 @@ declare class Logger {
|
|
|
2567
2651
|
}
|
|
2568
2652
|
declare const logger: Logger;
|
|
2569
2653
|
|
|
2570
|
-
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, 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, 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, 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 };
|
|
2571
|
-
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, Option, PaginationProps, PickedNumberInputProps, Props$2 as Props, RangeFilterInputField, RatingProps, SectionProps, SelectProps, SimpleHeaderProps, StackProps, SwitchProps, ThemeProviderProps, UnifiedButtonProps, VehicleReferenceProps };
|
|
2654
|
+
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, 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 };
|
|
2655
|
+
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, Option, PaginationProps, PickedNumberInputProps, Props$2 as Props, RangeFilterInputField, RatingProps, SectionProps, SelectProps, SimpleHeaderProps, StackProps, SwitchProps, TabListProps, TabPanelProps, TabPanelsProps, TabProps, TabsProps, ThemeProviderProps, UnifiedButtonProps, VehicleReferenceProps };
|