@bitrise/bitkit-v2 0.3.414 → 0.3.416
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/components/BitkitControlButton/BitkitControlButton.js +1 -0
- package/dist/components/BitkitControlButton/BitkitControlButton.js.map +1 -1
- package/dist/components/BitkitGroupHeading/BitkitGroupHeading.d.ts +2 -0
- package/dist/components/BitkitGroupHeading/BitkitGroupHeading.js +15 -11
- package/dist/components/BitkitGroupHeading/BitkitGroupHeading.js.map +1 -1
- package/dist/components/BitkitPageHeader/BitkitPageHeader.d.ts +120 -0
- package/dist/components/BitkitPageHeader/BitkitPageHeader.js +105 -0
- package/dist/components/BitkitPageHeader/BitkitPageHeader.js.map +1 -0
- package/dist/components/BitkitPageSidebar/BitkitPageSidebar.d.ts +74 -0
- package/dist/components/BitkitPageSidebar/BitkitPageSidebar.js +263 -0
- package/dist/components/BitkitPageSidebar/BitkitPageSidebar.js.map +1 -0
- package/dist/components/index.d.ts +2 -1
- package/dist/main.js +3 -2
- package/dist/theme/slot-recipes/GroupHeading.recipe.js +4 -1
- package/dist/theme/slot-recipes/GroupHeading.recipe.js.map +1 -1
- package/dist/theme/slot-recipes/PageHeader.recipe.d.ts +202 -0
- package/dist/theme/slot-recipes/PageHeader.recipe.js +354 -0
- package/dist/theme/slot-recipes/PageHeader.recipe.js.map +1 -0
- package/dist/theme/slot-recipes/PageSidebar.recipe.d.ts +85 -0
- package/dist/theme/slot-recipes/PageSidebar.recipe.js +276 -0
- package/dist/theme/slot-recipes/PageSidebar.recipe.js.map +1 -0
- package/dist/theme/slot-recipes/Tour.recipe.d.ts +1 -1
- package/dist/theme/slot-recipes/index.d.ts +286 -22
- package/dist/theme/slot-recipes/index.js +4 -2
- package/dist/theme/slot-recipes/index.js.map +1 -1
- package/dist/utilities/useIsTruncated.d.ts +27 -0
- package/dist/utilities/useIsTruncated.js +54 -0
- package/dist/utilities/useIsTruncated.js.map +1 -0
- package/docs/v1-to-v2-migration-guide.md +9 -6
- package/package.json +1 -1
- package/dist/components/BitkitSidebar/BitkitSidebar.d.ts +0 -45
- package/dist/components/BitkitSidebar/BitkitSidebar.js +0 -147
- package/dist/components/BitkitSidebar/BitkitSidebar.js.map +0 -1
- package/dist/theme/slot-recipes/Sidebar.recipe.d.ts +0 -22
- package/dist/theme/slot-recipes/Sidebar.recipe.js +0 -143
- package/dist/theme/slot-recipes/Sidebar.recipe.js.map +0 -1
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
import { rem } from "../themeUtils.js";
|
|
2
|
+
import { defineSlotRecipe } from "@chakra-ui/react/styled-system";
|
|
3
|
+
//#region lib/theme/slot-recipes/PageSidebar.recipe.ts
|
|
4
|
+
var pageSidebarSlotRecipe = defineSlotRecipe({
|
|
5
|
+
className: "page-sidebar",
|
|
6
|
+
slots: [
|
|
7
|
+
"body",
|
|
8
|
+
"contentBlock",
|
|
9
|
+
"divider",
|
|
10
|
+
"footer",
|
|
11
|
+
"item",
|
|
12
|
+
"itemIcon",
|
|
13
|
+
"itemLabel",
|
|
14
|
+
"project",
|
|
15
|
+
"projectLabel",
|
|
16
|
+
"projectValue",
|
|
17
|
+
"projectValueWrapper",
|
|
18
|
+
"root",
|
|
19
|
+
"selectionMarker",
|
|
20
|
+
"suffixIcon",
|
|
21
|
+
"title",
|
|
22
|
+
"titleBlock",
|
|
23
|
+
"titleText"
|
|
24
|
+
],
|
|
25
|
+
base: {
|
|
26
|
+
root: {
|
|
27
|
+
background: "background/primary",
|
|
28
|
+
borderInlineEndColor: "border/regular",
|
|
29
|
+
borderInlineEndStyle: "solid",
|
|
30
|
+
borderInlineEndWidth: "1",
|
|
31
|
+
display: "flex",
|
|
32
|
+
flexDirection: "column",
|
|
33
|
+
minHeight: "100dvh",
|
|
34
|
+
maxWidth: {
|
|
35
|
+
base: "none",
|
|
36
|
+
tablet: rem(320)
|
|
37
|
+
},
|
|
38
|
+
minWidth: rem(240),
|
|
39
|
+
paddingBlockStart: "16",
|
|
40
|
+
width: {
|
|
41
|
+
base: "full",
|
|
42
|
+
tablet: rem(240)
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
body: {
|
|
46
|
+
display: "flex",
|
|
47
|
+
flex: 1,
|
|
48
|
+
flexDirection: "column",
|
|
49
|
+
marginBlockEnd: "16",
|
|
50
|
+
width: "full"
|
|
51
|
+
},
|
|
52
|
+
title: {
|
|
53
|
+
alignItems: "center",
|
|
54
|
+
color: "text/primary",
|
|
55
|
+
display: "flex",
|
|
56
|
+
flexShrink: 0,
|
|
57
|
+
overflow: "clip",
|
|
58
|
+
paddingInlineEnd: "32"
|
|
59
|
+
},
|
|
60
|
+
titleBlock: {
|
|
61
|
+
alignItems: "center",
|
|
62
|
+
display: "flex",
|
|
63
|
+
minWidth: 0
|
|
64
|
+
},
|
|
65
|
+
titleText: {
|
|
66
|
+
textStyle: "heading/h3",
|
|
67
|
+
whiteSpace: "nowrap"
|
|
68
|
+
},
|
|
69
|
+
item: {
|
|
70
|
+
alignItems: "center",
|
|
71
|
+
cursor: "pointer",
|
|
72
|
+
display: "flex",
|
|
73
|
+
focusVisibleRing: "inside",
|
|
74
|
+
gap: "12",
|
|
75
|
+
overflow: "clip",
|
|
76
|
+
paddingBlock: {
|
|
77
|
+
base: "12",
|
|
78
|
+
tablet: "8"
|
|
79
|
+
},
|
|
80
|
+
paddingInline: "24",
|
|
81
|
+
position: "relative",
|
|
82
|
+
width: "full",
|
|
83
|
+
_hover: {
|
|
84
|
+
background: {
|
|
85
|
+
base: "background/hover",
|
|
86
|
+
tablet: "background/secondary"
|
|
87
|
+
},
|
|
88
|
+
_active: { background: {
|
|
89
|
+
base: "background/active",
|
|
90
|
+
tablet: "background/tertiary"
|
|
91
|
+
} }
|
|
92
|
+
},
|
|
93
|
+
_active: { background: {
|
|
94
|
+
base: "background/active",
|
|
95
|
+
tablet: "background/tertiary"
|
|
96
|
+
} },
|
|
97
|
+
_focusVisible: { outlineOffset: "calc(var(--focus-ring-width) * -1)" }
|
|
98
|
+
},
|
|
99
|
+
contentBlock: {
|
|
100
|
+
alignItems: "center",
|
|
101
|
+
display: "flex",
|
|
102
|
+
flex: 1,
|
|
103
|
+
gap: "12",
|
|
104
|
+
minWidth: 0,
|
|
105
|
+
paddingBlock: {
|
|
106
|
+
base: "0",
|
|
107
|
+
tablet: "2"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
itemIcon: {
|
|
111
|
+
color: "icon/secondary",
|
|
112
|
+
flexShrink: 0,
|
|
113
|
+
_groupHover: { color: "icon/primary" }
|
|
114
|
+
},
|
|
115
|
+
itemLabel: {
|
|
116
|
+
color: "text/primary",
|
|
117
|
+
flex: 1,
|
|
118
|
+
minWidth: 0,
|
|
119
|
+
overflow: "hidden",
|
|
120
|
+
textAlign: "start",
|
|
121
|
+
textOverflow: "ellipsis",
|
|
122
|
+
textStyle: {
|
|
123
|
+
base: "body/lg/regular",
|
|
124
|
+
tablet: "body/md/regular"
|
|
125
|
+
},
|
|
126
|
+
whiteSpace: "nowrap"
|
|
127
|
+
},
|
|
128
|
+
suffixIcon: {
|
|
129
|
+
color: "icon/tertiary",
|
|
130
|
+
flexShrink: 0
|
|
131
|
+
},
|
|
132
|
+
selectionMarker: {
|
|
133
|
+
background: "border/selected",
|
|
134
|
+
borderEndStartRadius: {
|
|
135
|
+
base: "0",
|
|
136
|
+
tablet: "2"
|
|
137
|
+
},
|
|
138
|
+
borderStartStartRadius: {
|
|
139
|
+
base: "0",
|
|
140
|
+
tablet: "2"
|
|
141
|
+
},
|
|
142
|
+
height: "full",
|
|
143
|
+
insetBlockStart: 0,
|
|
144
|
+
insetInlineEnd: 0,
|
|
145
|
+
position: "absolute",
|
|
146
|
+
width: {
|
|
147
|
+
base: "4",
|
|
148
|
+
tablet: "2"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
footer: {
|
|
152
|
+
borderBlockStart: "1px solid",
|
|
153
|
+
borderColor: "border/minimal",
|
|
154
|
+
display: "flex",
|
|
155
|
+
flexDirection: "column",
|
|
156
|
+
flexShrink: 0,
|
|
157
|
+
paddingBlock: "8"
|
|
158
|
+
},
|
|
159
|
+
project: {
|
|
160
|
+
display: "flex",
|
|
161
|
+
flexDirection: "column",
|
|
162
|
+
gap: "4",
|
|
163
|
+
justifyContent: "center",
|
|
164
|
+
overflow: "clip",
|
|
165
|
+
paddingBlockEnd: {
|
|
166
|
+
base: "12",
|
|
167
|
+
tablet: "8"
|
|
168
|
+
},
|
|
169
|
+
paddingBlockStart: "8",
|
|
170
|
+
paddingInlineEnd: {
|
|
171
|
+
base: "24",
|
|
172
|
+
tablet: "32"
|
|
173
|
+
},
|
|
174
|
+
paddingInlineStart: "24",
|
|
175
|
+
whiteSpace: "nowrap"
|
|
176
|
+
},
|
|
177
|
+
projectLabel: {
|
|
178
|
+
color: "text/tertiary",
|
|
179
|
+
textStyle: "heading/h6"
|
|
180
|
+
},
|
|
181
|
+
projectValue: {
|
|
182
|
+
color: "text/body",
|
|
183
|
+
overflow: "hidden",
|
|
184
|
+
textOverflow: "ellipsis",
|
|
185
|
+
textStyle: "body/lg/semibold"
|
|
186
|
+
},
|
|
187
|
+
projectValueWrapper: {
|
|
188
|
+
display: "flex",
|
|
189
|
+
minWidth: 0
|
|
190
|
+
},
|
|
191
|
+
divider: {
|
|
192
|
+
borderColor: "border/minimal",
|
|
193
|
+
marginBlock: {
|
|
194
|
+
base: "20",
|
|
195
|
+
tablet: "16"
|
|
196
|
+
},
|
|
197
|
+
marginInline: "24",
|
|
198
|
+
width: "auto"
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
variants: {
|
|
202
|
+
hasBack: {
|
|
203
|
+
true: {
|
|
204
|
+
title: {
|
|
205
|
+
paddingBlockEnd: "8",
|
|
206
|
+
paddingInlineStart: "16"
|
|
207
|
+
},
|
|
208
|
+
titleBlock: {
|
|
209
|
+
gap: "4",
|
|
210
|
+
paddingBlock: "4"
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
false: {
|
|
214
|
+
title: {
|
|
215
|
+
paddingBlockEnd: "16",
|
|
216
|
+
paddingInlineStart: "24"
|
|
217
|
+
},
|
|
218
|
+
titleBlock: { paddingBlock: "6" }
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
isDisabled: {
|
|
222
|
+
true: {
|
|
223
|
+
item: {
|
|
224
|
+
cursor: "not-allowed",
|
|
225
|
+
_hover: {
|
|
226
|
+
background: "transparent",
|
|
227
|
+
_active: { background: "transparent" }
|
|
228
|
+
},
|
|
229
|
+
_active: { background: "transparent" }
|
|
230
|
+
},
|
|
231
|
+
itemIcon: {
|
|
232
|
+
color: "icon/disabled",
|
|
233
|
+
_groupHover: { color: "icon/disabled" }
|
|
234
|
+
},
|
|
235
|
+
itemLabel: { color: "text/disabled" }
|
|
236
|
+
},
|
|
237
|
+
false: {}
|
|
238
|
+
},
|
|
239
|
+
selected: {
|
|
240
|
+
true: {
|
|
241
|
+
item: {
|
|
242
|
+
background: "background/selected",
|
|
243
|
+
_hover: {
|
|
244
|
+
background: "background/selected-hover",
|
|
245
|
+
_active: { background: {
|
|
246
|
+
base: "background/selected-hover",
|
|
247
|
+
tablet: "background/selected-active"
|
|
248
|
+
} }
|
|
249
|
+
},
|
|
250
|
+
_active: { background: {
|
|
251
|
+
base: "background/selected-hover",
|
|
252
|
+
tablet: "background/selected-active"
|
|
253
|
+
} }
|
|
254
|
+
},
|
|
255
|
+
itemIcon: {
|
|
256
|
+
color: "icon/interactive",
|
|
257
|
+
_groupHover: { color: "icon/interactive-hover" }
|
|
258
|
+
},
|
|
259
|
+
itemLabel: { textStyle: {
|
|
260
|
+
base: "body/lg/semibold",
|
|
261
|
+
tablet: "body/md/semibold"
|
|
262
|
+
} }
|
|
263
|
+
},
|
|
264
|
+
false: {}
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
defaultVariants: {
|
|
268
|
+
hasBack: false,
|
|
269
|
+
isDisabled: false,
|
|
270
|
+
selected: false
|
|
271
|
+
}
|
|
272
|
+
});
|
|
273
|
+
//#endregion
|
|
274
|
+
export { pageSidebarSlotRecipe as default };
|
|
275
|
+
|
|
276
|
+
//# sourceMappingURL=PageSidebar.recipe.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PageSidebar.recipe.js","names":[],"sources":["../../../lib/theme/slot-recipes/PageSidebar.recipe.ts"],"sourcesContent":["import { defineSlotRecipe } from '@chakra-ui/react/styled-system';\n\nimport { rem } from '../themeUtils';\n\nconst pageSidebarSlotRecipe = defineSlotRecipe({\n className: 'page-sidebar',\n slots: [\n 'body',\n 'contentBlock',\n 'divider',\n 'footer',\n 'item',\n 'itemIcon',\n 'itemLabel',\n 'project',\n 'projectLabel',\n 'projectValue',\n 'projectValueWrapper',\n 'root',\n 'selectionMarker',\n 'suffixIcon',\n 'title',\n 'titleBlock',\n 'titleText',\n ],\n base: {\n root: {\n background: 'background/primary',\n // Longhands, not the `borderInlineEnd: '1px solid'` shorthand: that shorthand carries no\n // colour, so it resets it to `currentColor` if it lands after `borderColor` — which is what\n // sorting these keys alphabetically did, turning the rule dark.\n borderInlineEndColor: 'border/regular',\n borderInlineEndStyle: 'solid',\n borderInlineEndWidth: '1',\n display: 'flex',\n flexDirection: 'column',\n // `minHeight` rather than `height`: on a short navigation the sidebar still reaches the\n // bottom of the viewport, but a long one grows past it and scrolls with the page as one\n // block — the footer is part of that scroll, not pinned to the bottom.\n minHeight: '100dvh',\n // Below `tablet` the sidebar is the whole view — Figma's mobile frame (`23056:50745`) is the\n // full 375 of the phone, not a 240 column beside a page.\n maxWidth: { base: 'none', tablet: rem(320) },\n minWidth: rem(240),\n paddingBlockStart: '16',\n width: { base: 'full', tablet: rem(240) },\n },\n body: {\n display: 'flex',\n // Absorbs the slack so the footer sits at the bottom when the navigation is short, and\n // simply grows when it is long.\n flex: 1,\n flexDirection: 'column',\n // The minimum gap between the navigation and the footer block. It is a margin so it stays\n // outside the items' own box, and `flex: 1` above means any extra space lands in the body\n // rather than widening this gap.\n marginBlockEnd: '16',\n width: 'full',\n },\n title: {\n alignItems: 'center',\n color: 'text/primary',\n display: 'flex',\n flexShrink: 0,\n overflow: 'clip',\n paddingInlineEnd: '32',\n },\n titleBlock: {\n alignItems: 'center',\n display: 'flex',\n minWidth: 0,\n },\n titleText: {\n textStyle: 'heading/h3',\n whiteSpace: 'nowrap',\n },\n item: {\n alignItems: 'center',\n cursor: 'pointer',\n display: 'flex',\n focusVisibleRing: 'inside',\n gap: '12',\n overflow: 'clip',\n // 48 tall on mobile against 40 on desktop — the row is a touch target there.\n paddingBlock: { base: '12', tablet: '8' },\n paddingInline: '24',\n position: 'relative',\n width: 'full',\n // Mobile reaches for `background/hover` / `background/active` where desktop uses the\n // `secondary` / `tertiary` surfaces. The two happen to resolve close, but they are separate\n // tokens in the design and the mobile item (`9221:4406`) binds these.\n _hover: {\n background: { base: 'background/hover', tablet: 'background/secondary' },\n _active: {\n background: { base: 'background/active', tablet: 'background/tertiary' },\n },\n },\n _active: {\n background: { base: 'background/active', tablet: 'background/tertiary' },\n },\n // `focusVisibleRing: 'inside'` still resolves to `outline-offset: 0`, which draws the ring\n // just outside the border box. The item spans the sidebar's full width, so that would bleed\n // past the sidebar's edges — pull the whole ring inside the item instead.\n _focusVisible: {\n outlineOffset: 'calc(var(--focus-ring-width) * -1)',\n },\n },\n contentBlock: {\n alignItems: 'center',\n display: 'flex',\n flex: 1,\n gap: '12',\n minWidth: 0,\n // Pads the 16px icon out to the 24px line box on desktop. The mobile icon is already 24, so\n // there is nothing to make up — the row would just grow past 48.\n paddingBlock: { base: '0', tablet: '2' },\n },\n itemIcon: {\n color: 'icon/secondary',\n flexShrink: 0,\n _groupHover: {\n color: 'icon/primary',\n },\n },\n itemLabel: {\n color: 'text/primary',\n flex: 1,\n minWidth: 0,\n overflow: 'hidden',\n textAlign: 'start',\n textOverflow: 'ellipsis',\n textStyle: { base: 'body/lg/regular', tablet: 'body/md/regular' },\n whiteSpace: 'nowrap',\n },\n suffixIcon: {\n color: 'icon/tertiary',\n flexShrink: 0,\n },\n selectionMarker: {\n background: 'border/selected',\n // Mobile draws the marker as a plain 4px edge (`9221:4417`); desktop as a 2px rounded rule.\n borderEndStartRadius: { base: '0', tablet: '2' },\n borderStartStartRadius: { base: '0', tablet: '2' },\n height: 'full',\n insetBlockStart: 0,\n insetInlineEnd: 0,\n position: 'absolute',\n width: { base: '4', tablet: '2' },\n },\n footer: {\n borderBlockStart: '1px solid',\n borderColor: 'border/minimal',\n display: 'flex',\n flexDirection: 'column',\n // The body above absorbs the free space, so the footer needs no positioning of its own —\n // it just must not be squashed by a long list.\n flexShrink: 0,\n paddingBlock: '8',\n },\n project: {\n display: 'flex',\n flexDirection: 'column',\n gap: '4',\n justifyContent: 'center',\n overflow: 'clip',\n paddingBlockEnd: { base: '12', tablet: '8' },\n paddingBlockStart: '8',\n paddingInlineEnd: { base: '24', tablet: '32' },\n paddingInlineStart: '24',\n whiteSpace: 'nowrap',\n },\n projectLabel: {\n color: 'text/tertiary',\n textStyle: 'heading/h6',\n },\n projectValue: {\n color: 'text/body',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n textStyle: 'body/lg/semibold',\n },\n projectValueWrapper: {\n display: 'flex',\n minWidth: 0,\n },\n divider: {\n // Both of the sidebar's separator roles are `border/minimal` — the group header\n // (`20014:6508`) and this plain rule (`20014:6511`) — against `border/regular` for the general\n // Separator component. The override is per-slot for that reason, not to limit blast radius.\n borderColor: 'border/minimal',\n // Mobile's separator row is 40 tall, which centres the rule at 19.5 a side; 20 is the token\n // next to it and the resulting 1px lands nowhere the eye can find it.\n marginBlock: { base: '20', tablet: '16' },\n marginInline: '24',\n width: 'auto',\n },\n },\n variants: {\n hasBack: {\n // Redlines on the sub view (Figma `- page sidebar - interactions`): the title block sits at\n // x/y 16, is 40 tall, and the 32px back button sits at y 20 — i.e. the 4px padding belongs to\n // the block wrapping button + text, not to the text. Header totals 16 + 40 + 8 = 64.\n true: {\n title: {\n paddingBlockEnd: '8',\n paddingInlineStart: '16',\n },\n titleBlock: {\n gap: '4',\n paddingBlock: '4',\n },\n },\n // Main view: no button, so the text alone is the block — 6 + 28 + 6 = 40, header 16+40+16 = 72.\n false: {\n title: {\n paddingBlockEnd: '16',\n paddingInlineStart: '24',\n },\n titleBlock: {\n paddingBlock: '6',\n },\n },\n },\n isDisabled: {\n true: {\n item: {\n cursor: 'not-allowed',\n _hover: {\n background: 'transparent',\n _active: {\n background: 'transparent',\n },\n },\n _active: {\n background: 'transparent',\n },\n },\n itemIcon: {\n color: 'icon/disabled',\n _groupHover: {\n color: 'icon/disabled',\n },\n },\n itemLabel: {\n color: 'text/disabled',\n },\n },\n false: {},\n },\n selected: {\n true: {\n item: {\n background: 'background/selected',\n _hover: {\n background: 'background/selected-hover',\n _active: {\n background: { base: 'background/selected-hover', tablet: 'background/selected-active' },\n },\n },\n _active: {\n background: { base: 'background/selected-hover', tablet: 'background/selected-active' },\n },\n },\n itemIcon: {\n color: 'icon/interactive',\n _groupHover: {\n color: 'icon/interactive-hover',\n },\n },\n itemLabel: {\n textStyle: { base: 'body/lg/semibold', tablet: 'body/md/semibold' },\n },\n },\n false: {},\n },\n },\n defaultVariants: {\n hasBack: false,\n isDisabled: false,\n selected: false,\n },\n});\n\nexport default pageSidebarSlotRecipe;\n"],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const tourSlotRecipe: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "media" | "header" | "title" | "badge" | "arrow" | "arrowTip" | "positioner" | "closeTrigger" | "description" | "control" | "backdrop" | "actions" | "
|
|
1
|
+
declare const tourSlotRecipe: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "media" | "header" | "title" | "badge" | "arrow" | "arrowTip" | "positioner" | "closeTrigger" | "description" | "control" | "backdrop" | "actions" | "titleRow" | "titleGroup" | "actionTrigger" | "progressText" | "spotlight", import('@chakra-ui/react').SlotRecipeVariantRecord<"content" | "media" | "header" | "title" | "badge" | "arrow" | "arrowTip" | "positioner" | "closeTrigger" | "description" | "control" | "backdrop" | "actions" | "titleRow" | "titleGroup" | "actionTrigger" | "progressText" | "spotlight">>;
|
|
2
2
|
export default tourSlotRecipe;
|
|
@@ -1419,6 +1419,291 @@ declare const slotRecipes: {
|
|
|
1419
1419
|
};
|
|
1420
1420
|
};
|
|
1421
1421
|
}>;
|
|
1422
|
+
pageHeader: import('@chakra-ui/react').SlotRecipeDefinition<"title" | "badge" | "avatar" | "breadcrumb" | "tabs" | "root" | "secondaryText" | "controls" | "titleBlock" | "headerBlock" | "contentBlock" | "textBlock" | "titleRow" | "actionBlock", {
|
|
1423
|
+
contentVariant: {
|
|
1424
|
+
title: {
|
|
1425
|
+
titleBlock: {
|
|
1426
|
+
alignItems: "center";
|
|
1427
|
+
gap: "12";
|
|
1428
|
+
};
|
|
1429
|
+
textBlock: {
|
|
1430
|
+
gap: "4";
|
|
1431
|
+
};
|
|
1432
|
+
};
|
|
1433
|
+
app: {
|
|
1434
|
+
titleBlock: {
|
|
1435
|
+
gap: "16";
|
|
1436
|
+
alignItems: "center";
|
|
1437
|
+
};
|
|
1438
|
+
title: {
|
|
1439
|
+
readonly textStyle: {
|
|
1440
|
+
readonly base: "heading/mobile/h2";
|
|
1441
|
+
readonly tablet: "heading/h2";
|
|
1442
|
+
};
|
|
1443
|
+
};
|
|
1444
|
+
secondaryText: {
|
|
1445
|
+
readonly textStyle: "body/md/regular";
|
|
1446
|
+
};
|
|
1447
|
+
};
|
|
1448
|
+
user: {
|
|
1449
|
+
titleBlock: {
|
|
1450
|
+
gap: "12";
|
|
1451
|
+
alignItems: "center";
|
|
1452
|
+
};
|
|
1453
|
+
title: {
|
|
1454
|
+
readonly textStyle: {
|
|
1455
|
+
readonly base: "heading/mobile/h2";
|
|
1456
|
+
readonly tablet: "heading/h2";
|
|
1457
|
+
};
|
|
1458
|
+
};
|
|
1459
|
+
secondaryText: {
|
|
1460
|
+
readonly textStyle: "body/md/regular";
|
|
1461
|
+
};
|
|
1462
|
+
};
|
|
1463
|
+
};
|
|
1464
|
+
hasBreadcrumb: {
|
|
1465
|
+
true: {
|
|
1466
|
+
headerBlock: {
|
|
1467
|
+
paddingBlockStart: "24";
|
|
1468
|
+
};
|
|
1469
|
+
};
|
|
1470
|
+
false: {};
|
|
1471
|
+
};
|
|
1472
|
+
hasControls: {
|
|
1473
|
+
true: {};
|
|
1474
|
+
false: {};
|
|
1475
|
+
};
|
|
1476
|
+
isSticky: {
|
|
1477
|
+
true: {
|
|
1478
|
+
headerBlock: {
|
|
1479
|
+
readonly tablet: {
|
|
1480
|
+
readonly alignItems: "center";
|
|
1481
|
+
readonly flexDirection: "row";
|
|
1482
|
+
readonly gap: "24";
|
|
1483
|
+
readonly minHeight: string;
|
|
1484
|
+
readonly paddingBlockEnd: "12";
|
|
1485
|
+
readonly paddingBlockStart: "12";
|
|
1486
|
+
readonly paddingInlineEnd: "32";
|
|
1487
|
+
readonly paddingInlineStart: "24";
|
|
1488
|
+
};
|
|
1489
|
+
};
|
|
1490
|
+
breadcrumb: {
|
|
1491
|
+
readonly tablet: {
|
|
1492
|
+
readonly flex: "0 1 auto";
|
|
1493
|
+
readonly minWidth: 0;
|
|
1494
|
+
};
|
|
1495
|
+
};
|
|
1496
|
+
contentBlock: {
|
|
1497
|
+
readonly tablet: {
|
|
1498
|
+
readonly alignItems: "center";
|
|
1499
|
+
readonly flex: "1 0 0";
|
|
1500
|
+
readonly gap: "24";
|
|
1501
|
+
readonly justifyContent: "flex-end";
|
|
1502
|
+
readonly minWidth: 0;
|
|
1503
|
+
};
|
|
1504
|
+
};
|
|
1505
|
+
titleBlock: {
|
|
1506
|
+
readonly tablet: {
|
|
1507
|
+
readonly alignItems: "center";
|
|
1508
|
+
};
|
|
1509
|
+
};
|
|
1510
|
+
title: {
|
|
1511
|
+
readonly tablet: {
|
|
1512
|
+
readonly textStyle: "heading/h3";
|
|
1513
|
+
};
|
|
1514
|
+
};
|
|
1515
|
+
actionBlock: {
|
|
1516
|
+
readonly tablet: {
|
|
1517
|
+
readonly alignItems: "center";
|
|
1518
|
+
readonly flexDirection: "row";
|
|
1519
|
+
readonly gap: "8";
|
|
1520
|
+
readonly width: "auto";
|
|
1521
|
+
};
|
|
1522
|
+
};
|
|
1523
|
+
avatar: {
|
|
1524
|
+
readonly tablet: {
|
|
1525
|
+
readonly display: "none";
|
|
1526
|
+
};
|
|
1527
|
+
};
|
|
1528
|
+
badge: {
|
|
1529
|
+
readonly tablet: {
|
|
1530
|
+
readonly display: "none";
|
|
1531
|
+
};
|
|
1532
|
+
};
|
|
1533
|
+
secondaryText: {
|
|
1534
|
+
readonly tablet: {
|
|
1535
|
+
readonly display: "none";
|
|
1536
|
+
};
|
|
1537
|
+
};
|
|
1538
|
+
tabs: {
|
|
1539
|
+
readonly tablet: {
|
|
1540
|
+
readonly display: "none";
|
|
1541
|
+
};
|
|
1542
|
+
};
|
|
1543
|
+
root: {
|
|
1544
|
+
tablet: {
|
|
1545
|
+
borderColor: "border/minimal";
|
|
1546
|
+
boxShadow: "elevation/sm";
|
|
1547
|
+
};
|
|
1548
|
+
};
|
|
1549
|
+
};
|
|
1550
|
+
false: {};
|
|
1551
|
+
};
|
|
1552
|
+
variant: {
|
|
1553
|
+
default: {};
|
|
1554
|
+
minimal: {
|
|
1555
|
+
readonly headerBlock: {
|
|
1556
|
+
readonly tablet: {
|
|
1557
|
+
readonly alignItems: "center";
|
|
1558
|
+
readonly flexDirection: "row";
|
|
1559
|
+
readonly gap: "24";
|
|
1560
|
+
readonly minHeight: string;
|
|
1561
|
+
readonly paddingBlockEnd: "12";
|
|
1562
|
+
readonly paddingBlockStart: "12";
|
|
1563
|
+
readonly paddingInlineEnd: "32";
|
|
1564
|
+
readonly paddingInlineStart: "24";
|
|
1565
|
+
};
|
|
1566
|
+
};
|
|
1567
|
+
readonly breadcrumb: {
|
|
1568
|
+
readonly tablet: {
|
|
1569
|
+
readonly flex: "0 1 auto";
|
|
1570
|
+
readonly minWidth: 0;
|
|
1571
|
+
};
|
|
1572
|
+
};
|
|
1573
|
+
readonly contentBlock: {
|
|
1574
|
+
readonly tablet: {
|
|
1575
|
+
readonly alignItems: "center";
|
|
1576
|
+
readonly flex: "1 0 0";
|
|
1577
|
+
readonly gap: "24";
|
|
1578
|
+
readonly justifyContent: "flex-end";
|
|
1579
|
+
readonly minWidth: 0;
|
|
1580
|
+
};
|
|
1581
|
+
};
|
|
1582
|
+
readonly titleBlock: {
|
|
1583
|
+
readonly tablet: {
|
|
1584
|
+
readonly alignItems: "center";
|
|
1585
|
+
};
|
|
1586
|
+
};
|
|
1587
|
+
readonly title: {
|
|
1588
|
+
readonly tablet: {
|
|
1589
|
+
readonly textStyle: "heading/h3";
|
|
1590
|
+
};
|
|
1591
|
+
};
|
|
1592
|
+
readonly actionBlock: {
|
|
1593
|
+
readonly tablet: {
|
|
1594
|
+
readonly alignItems: "center";
|
|
1595
|
+
readonly flexDirection: "row";
|
|
1596
|
+
readonly gap: "8";
|
|
1597
|
+
readonly width: "auto";
|
|
1598
|
+
};
|
|
1599
|
+
};
|
|
1600
|
+
readonly avatar: {
|
|
1601
|
+
readonly tablet: {
|
|
1602
|
+
readonly display: "none";
|
|
1603
|
+
};
|
|
1604
|
+
};
|
|
1605
|
+
readonly badge: {
|
|
1606
|
+
readonly tablet: {
|
|
1607
|
+
readonly display: "none";
|
|
1608
|
+
};
|
|
1609
|
+
};
|
|
1610
|
+
readonly secondaryText: {
|
|
1611
|
+
readonly tablet: {
|
|
1612
|
+
readonly display: "none";
|
|
1613
|
+
};
|
|
1614
|
+
};
|
|
1615
|
+
readonly tabs: {
|
|
1616
|
+
readonly tablet: {
|
|
1617
|
+
readonly display: "none";
|
|
1618
|
+
};
|
|
1619
|
+
};
|
|
1620
|
+
};
|
|
1621
|
+
};
|
|
1622
|
+
}>;
|
|
1623
|
+
pageSidebar: import('@chakra-ui/react').SlotRecipeDefinition<"body" | "footer" | "title" | "root" | "item" | "titleText" | "suffixIcon" | "titleBlock" | "itemLabel" | "itemIcon" | "contentBlock" | "divider" | "project" | "projectLabel" | "projectValue" | "projectValueWrapper" | "selectionMarker", {
|
|
1624
|
+
hasBack: {
|
|
1625
|
+
true: {
|
|
1626
|
+
title: {
|
|
1627
|
+
paddingBlockEnd: "8";
|
|
1628
|
+
paddingInlineStart: "16";
|
|
1629
|
+
};
|
|
1630
|
+
titleBlock: {
|
|
1631
|
+
gap: "4";
|
|
1632
|
+
paddingBlock: "4";
|
|
1633
|
+
};
|
|
1634
|
+
};
|
|
1635
|
+
false: {
|
|
1636
|
+
title: {
|
|
1637
|
+
paddingBlockEnd: "16";
|
|
1638
|
+
paddingInlineStart: "24";
|
|
1639
|
+
};
|
|
1640
|
+
titleBlock: {
|
|
1641
|
+
paddingBlock: "6";
|
|
1642
|
+
};
|
|
1643
|
+
};
|
|
1644
|
+
};
|
|
1645
|
+
isDisabled: {
|
|
1646
|
+
true: {
|
|
1647
|
+
item: {
|
|
1648
|
+
cursor: "not-allowed";
|
|
1649
|
+
_hover: {
|
|
1650
|
+
background: "transparent";
|
|
1651
|
+
_active: {
|
|
1652
|
+
background: "transparent";
|
|
1653
|
+
};
|
|
1654
|
+
};
|
|
1655
|
+
_active: {
|
|
1656
|
+
background: "transparent";
|
|
1657
|
+
};
|
|
1658
|
+
};
|
|
1659
|
+
itemIcon: {
|
|
1660
|
+
color: "icon/disabled";
|
|
1661
|
+
_groupHover: {
|
|
1662
|
+
color: "icon/disabled";
|
|
1663
|
+
};
|
|
1664
|
+
};
|
|
1665
|
+
itemLabel: {
|
|
1666
|
+
color: "text/disabled";
|
|
1667
|
+
};
|
|
1668
|
+
};
|
|
1669
|
+
false: {};
|
|
1670
|
+
};
|
|
1671
|
+
selected: {
|
|
1672
|
+
true: {
|
|
1673
|
+
item: {
|
|
1674
|
+
background: "background/selected";
|
|
1675
|
+
_hover: {
|
|
1676
|
+
background: "background/selected-hover";
|
|
1677
|
+
_active: {
|
|
1678
|
+
background: {
|
|
1679
|
+
base: "background/selected-hover";
|
|
1680
|
+
tablet: "background/selected-active";
|
|
1681
|
+
};
|
|
1682
|
+
};
|
|
1683
|
+
};
|
|
1684
|
+
_active: {
|
|
1685
|
+
background: {
|
|
1686
|
+
base: "background/selected-hover";
|
|
1687
|
+
tablet: "background/selected-active";
|
|
1688
|
+
};
|
|
1689
|
+
};
|
|
1690
|
+
};
|
|
1691
|
+
itemIcon: {
|
|
1692
|
+
color: "icon/interactive";
|
|
1693
|
+
_groupHover: {
|
|
1694
|
+
color: "icon/interactive-hover";
|
|
1695
|
+
};
|
|
1696
|
+
};
|
|
1697
|
+
itemLabel: {
|
|
1698
|
+
textStyle: {
|
|
1699
|
+
base: "body/lg/semibold";
|
|
1700
|
+
tablet: "body/md/semibold";
|
|
1701
|
+
};
|
|
1702
|
+
};
|
|
1703
|
+
};
|
|
1704
|
+
false: {};
|
|
1705
|
+
};
|
|
1706
|
+
}>;
|
|
1422
1707
|
pagination: import('@chakra-ui/react').SlotRecipeDefinition<"text" | "root" | "itemsBlock" | "itemsSelect" | "pageBlock" | "pageSelect", {
|
|
1423
1708
|
variant: {
|
|
1424
1709
|
card: {
|
|
@@ -1755,27 +2040,6 @@ declare const slotRecipes: {
|
|
|
1755
2040
|
};
|
|
1756
2041
|
};
|
|
1757
2042
|
}>;
|
|
1758
|
-
sidebar: import('@chakra-ui/react').SlotRecipeDefinition<"footer" | "title" | "root" | "item" | "suffixIcon" | "itemLabel" | "itemIcon" | "divider" | "project" | "projectLabel" | "projectValue" | "selectionMarker" | "titleWithBack", {
|
|
1759
|
-
selected: {
|
|
1760
|
-
true: {
|
|
1761
|
-
item: {
|
|
1762
|
-
background: "background/selected";
|
|
1763
|
-
_hover: {
|
|
1764
|
-
background: "background/selected-hover";
|
|
1765
|
-
};
|
|
1766
|
-
};
|
|
1767
|
-
itemIcon: {
|
|
1768
|
-
color: "icon/interactive";
|
|
1769
|
-
};
|
|
1770
|
-
itemLabel: {
|
|
1771
|
-
textStyle: "body/lg/semibold";
|
|
1772
|
-
};
|
|
1773
|
-
selectionMarker: {
|
|
1774
|
-
display: "block";
|
|
1775
|
-
};
|
|
1776
|
-
};
|
|
1777
|
-
};
|
|
1778
|
-
}>;
|
|
1779
2043
|
select: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "label" | "checkbox" | "list" | "avatar" | "emptyState" | "root" | "item" | "itemContent" | "itemIndicator" | "trigger" | "positioner" | "indicator" | "itemGroup" | "itemGroupLabel" | "itemText" | "valueText" | "action" | "clearTrigger" | "control" | "actionContainer" | "searchInputGroup" | "searchInput" | "searchClear" | "itemList" | "itemLoading" | "itemLoadingLabel" | "itemLabel" | "itemHelperText" | "indicatorGroup" | "checkmark" | "itemBadge" | "itemIcon" | "valueIcon", {
|
|
1780
2044
|
hasStatusIcon: {
|
|
1781
2045
|
true: {
|
|
@@ -2755,7 +3019,7 @@ declare const slotRecipes: {
|
|
|
2755
3019
|
};
|
|
2756
3020
|
};
|
|
2757
3021
|
}>;
|
|
2758
|
-
tour: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "media" | "header" | "title" | "badge" | "arrow" | "arrowTip" | "positioner" | "closeTrigger" | "description" | "control" | "backdrop" | "actions" | "
|
|
3022
|
+
tour: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "media" | "header" | "title" | "badge" | "arrow" | "arrowTip" | "positioner" | "closeTrigger" | "description" | "control" | "backdrop" | "actions" | "titleRow" | "titleGroup" | "actionTrigger" | "progressText" | "spotlight", import('@chakra-ui/react').SlotRecipeVariantRecord<"content" | "media" | "header" | "title" | "badge" | "arrow" | "arrowTip" | "positioner" | "closeTrigger" | "description" | "control" | "backdrop" | "actions" | "titleRow" | "titleGroup" | "actionTrigger" | "progressText" | "spotlight">>;
|
|
2759
3023
|
treeView: import('@chakra-ui/react').SlotRecipeDefinition<"label" | "tree" | "root" | "item" | "itemIndicator" | "secondaryText" | "itemText" | "branch" | "branchContent" | "branchControl" | "branchIndentGuide" | "branchIndicator" | "branchText" | "branchTrigger" | "nodeCheckbox" | "nodeRenameInput" | "actionGroup" | "suffixGroup", {
|
|
2760
3024
|
variant: {
|
|
2761
3025
|
files: {
|
|
@@ -34,6 +34,8 @@ import nativeSelectSlotRecipe from "./NativeSelect.recipe.js";
|
|
|
34
34
|
import noteCardSlotRecipe from "./NoteCard.recipe.js";
|
|
35
35
|
import overflowContentSlotRecipe from "./OverflowContent.recipe.js";
|
|
36
36
|
import pageFooterSlotRecipe from "./PageFooter.recipe.js";
|
|
37
|
+
import pageHeaderSlotRecipe from "./PageHeader.recipe.js";
|
|
38
|
+
import pageSidebarSlotRecipe from "./PageSidebar.recipe.js";
|
|
37
39
|
import paginationSlotRecipe from "./Pagination.recipe.js";
|
|
38
40
|
import paginationLoadMoreRecipe from "./PaginationLoadMore.recipe.js";
|
|
39
41
|
import popoverSlotRecipe from "./Popover.recipe.js";
|
|
@@ -44,7 +46,6 @@ import ribbonSlotRecipe from "./Ribbon.recipe.js";
|
|
|
44
46
|
import sectionHeadingRecipe from "./SectionHeading.recipe.js";
|
|
45
47
|
import segmentGroupSlotRecipe from "./SegmentGroup.recipe.js";
|
|
46
48
|
import settingsCardSlotRecipe from "./SettingsCard.recipe.js";
|
|
47
|
-
import sidebarSlotRecipe from "./Sidebar.recipe.js";
|
|
48
49
|
import splitButtonSlotRecipe from "./SplitButton.recipe.js";
|
|
49
50
|
import statSlotRecipe from "./Stat.recipe.js";
|
|
50
51
|
import stepCardSlotRecipe from "./StepCard.recipe.js";
|
|
@@ -96,6 +97,8 @@ var slotRecipes = {
|
|
|
96
97
|
numberInput: numberInputSlotRecipe,
|
|
97
98
|
overflowContent: overflowContentSlotRecipe,
|
|
98
99
|
pageFooter: pageFooterSlotRecipe,
|
|
100
|
+
pageHeader: pageHeaderSlotRecipe,
|
|
101
|
+
pageSidebar: pageSidebarSlotRecipe,
|
|
99
102
|
pagination: paginationSlotRecipe,
|
|
100
103
|
paginationLoadMore: paginationLoadMoreRecipe,
|
|
101
104
|
popover: popoverSlotRecipe,
|
|
@@ -106,7 +109,6 @@ var slotRecipes = {
|
|
|
106
109
|
sectionHeading: sectionHeadingRecipe,
|
|
107
110
|
labeledData: labeledDataSlotRecipe,
|
|
108
111
|
segmentGroup: segmentGroupSlotRecipe,
|
|
109
|
-
sidebar: sidebarSlotRecipe,
|
|
110
112
|
select: selectSlotRecipe,
|
|
111
113
|
settingsCard: settingsCardSlotRecipe,
|
|
112
114
|
splitButton: splitButtonSlotRecipe,
|