@kalink-ui/seedly 0.8.1 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +26 -18
  3. package/src/components/box/box.css.ts +6 -15
  4. package/src/components/box/box.tsx +2 -2
  5. package/src/components/box/index.ts +1 -1
  6. package/src/components/button/button.css.ts +45 -48
  7. package/src/components/button/button.tsx +11 -8
  8. package/src/components/button/index.ts +1 -1
  9. package/src/components/button-icon/button-icon.css.ts +90 -0
  10. package/src/components/button-icon/button-icon.tsx +23 -0
  11. package/src/components/button-icon/index.ts +1 -0
  12. package/src/components/card/card.css.ts +42 -0
  13. package/src/components/card/card.tsx +76 -0
  14. package/src/components/card/index.ts +1 -0
  15. package/src/components/center/center.css.ts +1 -1
  16. package/src/components/center/center.tsx +2 -2
  17. package/src/components/center/index.ts +1 -1
  18. package/src/components/cluster/cluster.css.ts +18 -1
  19. package/src/components/cluster/cluster.tsx +2 -2
  20. package/src/components/cluster/index.ts +1 -1
  21. package/src/components/cover/cover.css.ts +1 -1
  22. package/src/components/divider/divider.css.ts +11 -0
  23. package/src/components/divider/divider.tsx +11 -0
  24. package/src/components/divider/index.ts +1 -0
  25. package/src/components/form-field/form-field-context.ts +18 -0
  26. package/src/components/form-field/form-field-control.tsx +34 -0
  27. package/src/components/form-field/form-field-description.tsx +16 -0
  28. package/src/components/form-field/form-field-error.tsx +22 -0
  29. package/src/components/form-field/form-field-item-context.ts +6 -0
  30. package/src/components/form-field/form-field-item.tsx +28 -0
  31. package/src/components/form-field/form-field-label.tsx +27 -0
  32. package/src/components/form-field/form-field-message.tsx +33 -0
  33. package/src/components/form-field/form-field.css.ts +97 -0
  34. package/src/components/form-field/form-field.tsx +56 -0
  35. package/src/components/form-field/index.ts +9 -0
  36. package/src/components/frame/frame.css.ts +8 -8
  37. package/src/components/frame/frame.tsx +2 -6
  38. package/src/components/frame/index.ts +1 -1
  39. package/src/components/grid/grid.css.ts +1 -1
  40. package/src/components/heading/heading.css.ts +49 -2
  41. package/src/components/heading/heading.tsx +123 -69
  42. package/src/components/heading/index.ts +2 -1
  43. package/src/components/index.ts +27 -14
  44. package/src/components/input/index.ts +2 -0
  45. package/src/components/input/input-wrapper.tsx +58 -0
  46. package/src/components/input/input.css.ts +250 -0
  47. package/src/components/input/input.tsx +56 -0
  48. package/src/components/label/index.ts +1 -0
  49. package/src/components/label/label.css.ts +37 -0
  50. package/src/components/label/label.tsx +23 -0
  51. package/src/components/loader/index.ts +1 -0
  52. package/src/components/loader/loader.css.ts +109 -0
  53. package/src/components/loader/moon-loader.tsx +43 -0
  54. package/src/components/loader-overlay/index.ts +1 -0
  55. package/src/components/loader-overlay/loader-overlay.css.ts +35 -0
  56. package/src/components/loader-overlay/loader-overlay.tsx +28 -0
  57. package/src/components/menu/index.ts +2 -0
  58. package/src/components/menu/menu-item.css.ts +79 -0
  59. package/src/components/menu/menu-separator.css.ts +53 -0
  60. package/src/components/popover/index.ts +3 -0
  61. package/src/components/popover/popover-content.css.ts +107 -0
  62. package/src/components/popover/popover-content.tsx +78 -0
  63. package/src/components/popover/popover.tsx +6 -0
  64. package/src/components/scroll-area/index.ts +1 -0
  65. package/src/components/scroll-area/scroll-area.css.ts +72 -0
  66. package/src/components/scroll-area/scroll-area.tsx +39 -0
  67. package/src/components/scroll-area/scroll-bar.tsx +37 -0
  68. package/src/components/seed/index.ts +1 -1
  69. package/src/components/seed/seed.tsx +39 -2
  70. package/src/components/select/index.ts +5 -0
  71. package/src/components/select/select-content.css.ts +22 -0
  72. package/src/components/select/select-content.tsx +51 -0
  73. package/src/components/select/select-item.css.ts +24 -0
  74. package/src/components/select/select-item.tsx +24 -0
  75. package/src/components/select/select-root.tsx +14 -0
  76. package/src/components/select/select-trigger.css.ts +75 -0
  77. package/src/components/select/select-trigger.tsx +47 -0
  78. package/src/components/select/select.tsx +85 -0
  79. package/src/components/sheet/index.ts +5 -0
  80. package/src/components/sheet/sheet-content.css.ts +143 -0
  81. package/src/components/sheet/sheet-content.tsx +43 -0
  82. package/src/components/sheet/sheet-description.tsx +21 -0
  83. package/src/components/sheet/sheet-footer.tsx +15 -0
  84. package/src/components/sheet/sheet-header.css.ts +35 -0
  85. package/src/components/sheet/sheet-header.tsx +32 -0
  86. package/src/components/sheet/sheet-overlay.css.ts +43 -0
  87. package/src/components/sheet/sheet-overlay.tsx +14 -0
  88. package/src/components/sheet/sheet-title.tsx +31 -0
  89. package/src/components/sheet/sheet.tsx +8 -0
  90. package/src/components/stack/index.ts +1 -1
  91. package/src/components/stack/stack.tsx +2 -2
  92. package/src/components/text/index.ts +6 -0
  93. package/src/components/text/text.css.ts +173 -7
  94. package/src/components/text/text.tsx +19 -27
  95. package/src/components/text-field/index.ts +1 -0
  96. package/src/components/text-field/text-field.css.ts +3 -0
  97. package/src/components/text-field/text-field.tsx +64 -0
  98. package/src/components/textarea/index.ts +1 -0
  99. package/src/components/textarea/textarea-input.tsx +20 -0
  100. package/src/components/textarea/textarea.css.ts +10 -0
  101. package/src/components/textarea/textarea.tsx +69 -0
  102. package/src/styles/define-responsive-properties.ts +242 -0
  103. package/src/styles/extract-sprinkles-props.ts +29 -35
  104. package/src/styles/index.ts +9 -0
  105. package/src/styles/reset.css.ts +1 -0
  106. package/src/styles/system-contract.css.ts +0 -2
  107. package/src/styles/typography.css.ts +10 -5
  108. package/src/styles/visually-hidden.css.ts +21 -0
  109. package/build-storybook.log +0 -67
@@ -0,0 +1,242 @@
1
+ import {
2
+ type ConditionalValue,
3
+ defineProperties,
4
+ } from '@vanilla-extract/sprinkles';
5
+
6
+ import { utilities } from './layers.css';
7
+ import { sys } from './system-contract.css';
8
+
9
+ interface ScreenMediaQueries {
10
+ sm: `screen and (min-width: ${string}px)`;
11
+ md: `screen and (min-width: ${string}px)`;
12
+ lg: `screen and (min-width: ${string}px)`;
13
+ xl: `screen and (min-width: ${string}px)`;
14
+ }
15
+
16
+ interface DefineResponsivePropertiesArgs {
17
+ screen: ScreenMediaQueries;
18
+ }
19
+
20
+ export const defineResponsiveProperties = ({
21
+ screen,
22
+ }: DefineResponsivePropertiesArgs) =>
23
+ defineProperties({
24
+ '@layer': utilities,
25
+
26
+ conditions: {
27
+ xs: {},
28
+ sm: { '@media': screen.sm },
29
+ md: { '@media': screen.md },
30
+ lg: { '@media': screen.lg },
31
+ xl: { '@media': screen.xl },
32
+ },
33
+
34
+ defaultCondition: 'xs',
35
+ responsiveArray: ['xs', 'sm', 'md', 'lg', 'xl'],
36
+
37
+ properties: {
38
+ display: [
39
+ 'none',
40
+ 'block',
41
+ 'inline',
42
+ 'inline-block',
43
+ 'flex',
44
+ 'inline-flex',
45
+ 'grid',
46
+ 'list-item',
47
+ ],
48
+ paddingBlockStart: sys.spacing,
49
+ paddingBlockEnd: sys.spacing,
50
+ paddingInlineStart: sys.spacing,
51
+ paddingInlineEnd: sys.spacing,
52
+
53
+ marginBlockStart: sys.spacing,
54
+ marginBlockEnd: sys.spacing,
55
+ marginInlineStart: sys.spacing,
56
+ marginInlineEnd: sys.spacing,
57
+
58
+ columnGap: sys.spacing,
59
+ rowGap: sys.spacing,
60
+
61
+ flexDirection: ['row', 'row-reverse', 'column', 'column-reverse'],
62
+
63
+ justifyContent: [
64
+ 'flex-start',
65
+ 'flex-end',
66
+ 'center',
67
+ 'space-between',
68
+ 'space-around',
69
+ ],
70
+ alignItems: ['flex-start', 'flex-end', 'center', 'baseline', 'stretch'],
71
+ alignSelf: ['flex-start', 'flex-end', 'center', 'baseline', 'stretch'],
72
+
73
+ position: [
74
+ 'absolute',
75
+ 'relative',
76
+ 'fixed',
77
+ 'sticky',
78
+ 'static',
79
+ 'inherit',
80
+ ],
81
+ insetBlockStart: sys.spacing,
82
+ insetBlockEnd: sys.spacing,
83
+ insetInlineStart: sys.spacing,
84
+ insetInlineEnd: sys.spacing,
85
+
86
+ textAlign: ['start', 'end', 'center', 'justify'],
87
+ },
88
+
89
+ shorthands: {
90
+ padding: [
91
+ 'paddingBlockStart',
92
+ 'paddingInlineEnd',
93
+ 'paddingBlockEnd',
94
+ 'paddingInlineStart',
95
+ ],
96
+ paddingBlock: ['paddingBlockStart', 'paddingBlockEnd'],
97
+ paddingInline: ['paddingInlineEnd', 'paddingInlineStart'],
98
+
99
+ margin: [
100
+ 'marginBlockStart',
101
+ 'marginInlineEnd',
102
+ 'marginBlockEnd',
103
+ 'marginInlineStart',
104
+ ],
105
+ marginBlock: ['marginBlockStart', 'marginBlockEnd'],
106
+ marginInline: ['marginInlineEnd', 'marginInlineStart'],
107
+
108
+ gap: ['rowGap', 'columnGap'],
109
+
110
+ inset: [
111
+ 'insetBlockStart',
112
+ 'insetInlineEnd',
113
+ 'insetBlockEnd',
114
+ 'insetInlineStart',
115
+ ],
116
+ insetBlock: ['insetBlockStart', 'insetBlockEnd'],
117
+ insetInline: ['insetInlineEnd', 'insetInlineStart'],
118
+ },
119
+ });
120
+
121
+ type DefineResponsiveProperties = ReturnType<typeof defineResponsiveProperties>;
122
+
123
+ export type ResponsiveValue<Value extends string | number> = ConditionalValue<
124
+ DefineResponsiveProperties,
125
+ Value
126
+ >;
127
+
128
+ export type DisplayValues =
129
+ keyof DefineResponsiveProperties['styles']['display']['values'];
130
+ export type JustifyContentValues =
131
+ keyof DefineResponsiveProperties['styles']['justifyContent']['values'];
132
+ export type AlignItemsValues =
133
+ keyof DefineResponsiveProperties['styles']['alignItems']['values'];
134
+ export type AlignSelfValues =
135
+ keyof DefineResponsiveProperties['styles']['alignSelf']['values'];
136
+ export type FlexDirectionValues =
137
+ keyof DefineResponsiveProperties['styles']['flexDirection']['values'];
138
+ export type ColumnGapValues =
139
+ keyof DefineResponsiveProperties['styles']['columnGap']['values'];
140
+ export type RowGapValues =
141
+ keyof DefineResponsiveProperties['styles']['rowGap']['values'];
142
+
143
+ export type PaddingBlockStartValues =
144
+ keyof DefineResponsiveProperties['styles']['paddingBlockStart']['values'];
145
+ export type PaddingBlockEndValues =
146
+ keyof DefineResponsiveProperties['styles']['paddingBlockEnd']['values'];
147
+ export type PaddingInlineStartValues =
148
+ keyof DefineResponsiveProperties['styles']['paddingInlineStart']['values'];
149
+ export type PaddingInlineEndValues =
150
+ keyof DefineResponsiveProperties['styles']['paddingInlineEnd']['values'];
151
+ export type MarginBlockStartValues =
152
+ keyof DefineResponsiveProperties['styles']['marginBlockStart']['values'];
153
+ export type MarginBlockEndValues =
154
+ keyof DefineResponsiveProperties['styles']['marginBlockEnd']['values'];
155
+ export type MarginInlineStartValues =
156
+ keyof DefineResponsiveProperties['styles']['marginInlineStart']['values'];
157
+ export type MarginInlineEndValues =
158
+ keyof DefineResponsiveProperties['styles']['marginInlineEnd']['values'];
159
+
160
+ export type PositionValues =
161
+ keyof DefineResponsiveProperties['styles']['position']['values'];
162
+ export type InsetBlockStartValues =
163
+ keyof DefineResponsiveProperties['styles']['insetBlockStart']['values'];
164
+ export type InsetBlockEndValues =
165
+ keyof DefineResponsiveProperties['styles']['insetBlockEnd']['values'];
166
+ export type InsetInlineStartValues =
167
+ keyof DefineResponsiveProperties['styles']['insetInlineStart']['values'];
168
+ export type InsetInlineEndValues =
169
+ keyof DefineResponsiveProperties['styles']['insetInlineEnd']['values'];
170
+
171
+ export type TextAlignValues =
172
+ keyof DefineResponsiveProperties['styles']['textAlign']['values'];
173
+
174
+ export interface ResponsiveProperties {
175
+ /** Mapped to `display` css property */
176
+ display?: ResponsiveValue<DisplayValues>;
177
+ /** Mapped to `flex-direction` css property */
178
+ flexDirection?: ResponsiveValue<FlexDirectionValues>;
179
+ /** Mapped to `justify-content` css property */
180
+ justifyContent?: ResponsiveValue<JustifyContentValues>;
181
+ /** Mapped to `align-items` css property */
182
+ alignItems?: ResponsiveValue<AlignItemsValues>;
183
+ /** Mapped to `align-self` css property */
184
+ alignSelf?: ResponsiveValue<AlignSelfValues>;
185
+ /** Mapped to `column-gap` css property */
186
+ columnGap?: ResponsiveValue<ColumnGapValues>;
187
+ /** Mapped to `row-gap` css property */
188
+ rowGap?: ResponsiveValue<RowGapValues>;
189
+ /** Mapped to `gap` css property */
190
+ gap?: ResponsiveValue<ColumnGapValues | RowGapValues>;
191
+
192
+ /** Mapped to `padding-block-start` css property */
193
+ paddingBlockStart?: ResponsiveValue<PaddingBlockStartValues>;
194
+ /** Mapped to `padding-block-end` css property */
195
+ paddingBlockEnd?: ResponsiveValue<PaddingBlockEndValues>;
196
+ /** Mapped to `padding-inline-start` css property */
197
+ paddingInlineStart?: ResponsiveValue<PaddingInlineStartValues>;
198
+ /** Mapped to `padding-inline-end` css property */
199
+ paddingInlineEnd?: ResponsiveValue<PaddingInlineEndValues>;
200
+ /** Mapped to `padding` css property */
201
+ padding?: ResponsiveValue<PaddingBlockStartValues | PaddingInlineStartValues>;
202
+ /** Mapped to `padding-block` css property */
203
+ paddingBlock?: ResponsiveValue<
204
+ PaddingBlockStartValues | PaddingBlockEndValues
205
+ >;
206
+ /** Mapped to `padding-inline` css property */
207
+ paddingInline?: ResponsiveValue<
208
+ PaddingInlineStartValues | PaddingInlineEndValues
209
+ >;
210
+
211
+ /** Mapped to `margin-block-start` css property */
212
+ marginBlockStart?: ResponsiveValue<MarginBlockStartValues>;
213
+ /** Mapped to `margin-block-end` css property */
214
+ marginBlockEnd?: ResponsiveValue<MarginBlockEndValues>;
215
+ /** Mapped to `margin-inline-start` css property */
216
+ marginInlineStart?: ResponsiveValue<MarginInlineStartValues>;
217
+ /** Mapped to `margin-inline-end` css property */
218
+ marginInlineEnd?: ResponsiveValue<MarginInlineEndValues>;
219
+ /** Mapped to `margin` css property */
220
+ margin?: ResponsiveValue<MarginBlockStartValues | MarginInlineStartValues>;
221
+ /** Mapped to `margin-block` css property */
222
+ marginBlock?: ResponsiveValue<MarginBlockStartValues | MarginBlockEndValues>;
223
+ /** Mapped to `margin-inline` css property */
224
+ marginInline?: ResponsiveValue<
225
+ MarginInlineStartValues | MarginInlineEndValues
226
+ >;
227
+
228
+ /** Mapped to `position` css property */
229
+ position?: ResponsiveValue<PositionValues>;
230
+
231
+ /** Mapped to `inset-block-start` css property */
232
+ insetBlockStart?: ResponsiveValue<InsetBlockStartValues>;
233
+ /** Mapped to `inset-block-end` css property */
234
+ insetBlockEnd?: ResponsiveValue<InsetBlockEndValues>;
235
+ /** Mapped to `inset-inline-start` css property */
236
+ insetInlineStart?: ResponsiveValue<InsetInlineStartValues>;
237
+ /** Mapped to `inset-inline-end` css property */
238
+ insetInlineEnd?: ResponsiveValue<InsetInlineEndValues>;
239
+
240
+ /** Mapped to `text-align` css property */
241
+ textAlign?: ResponsiveValue<TextAlignValues>;
242
+ }
@@ -1,46 +1,40 @@
1
- import type { SprinklesProperties } from '@vanilla-extract/sprinkles';
2
- import type { UnknownRecord } from 'type-fest';
1
+ import { UnknownRecord } from 'type-fest';
3
2
 
4
- /* eslint-disable-next-line @typescript-eslint/consistent-type-definitions */
5
- export interface SprinklesFnBase {
6
- /* eslint-disable-next-line @typescript-eslint/no-explicit-any */
7
- (...args: any): string;
8
- properties: Set<string>;
3
+ export interface SprinklesFnBase<TSprinklesProps = Record<string, unknown>> {
4
+ (props: TSprinklesProps): string;
5
+ properties: Set<Extract<keyof TSprinklesProps, string>>;
9
6
  }
10
7
 
11
- export type GetSprinkles<T extends SprinklesFnBase> = Parameters<T>[0];
8
+ export type GetSprinkles<T extends SprinklesFnBase> =
9
+ T extends SprinklesFnBase<infer TSprinklesProps> ? TSprinklesProps : never;
12
10
 
13
- export type SprinklesProps<TSprinklesFnBase extends SprinklesFnBase> =
14
- TSprinklesFnBase['properties'] extends Set<infer T>
15
- ? {
16
- [KeyType in keyof T]: T[KeyType] extends SprinklesProperties
17
- ? KeyType
18
- : never;
19
- }
20
- : never;
21
-
22
- /**
23
- * Extracts the sprinkles properties from the given component props,
24
- * returning an array containing the extracted sprinkle props and
25
- * the remaining component props.
26
- */
27
11
  export const extractSprinklesProps = <
28
- ComponentProps extends UnknownRecord,
29
- SprinklesFn extends SprinklesFnBase,
12
+ TProps extends UnknownRecord,
13
+ TSprinkles extends SprinklesFnBase,
30
14
  >(
31
- props: ComponentProps,
32
- sprinkles: SprinklesFn,
33
- ) => {
34
- const sprinkleProps: Record<string, unknown> = {};
35
- const componentProps: Record<string, unknown> = {};
15
+ props: TProps,
16
+ sprinkles: TSprinkles,
17
+ ): [
18
+ Pick<TProps, Extract<keyof TProps, keyof GetSprinkles<TSprinkles>>>,
19
+ Omit<TProps, Extract<keyof TProps, keyof GetSprinkles<TSprinkles>>>,
20
+ ] => {
21
+ const sprinkleProps = {} as Pick<
22
+ TProps,
23
+ Extract<keyof TProps, keyof GetSprinkles<TSprinkles>>
24
+ >;
25
+ const componentProps = {} as Omit<
26
+ TProps,
27
+ Extract<keyof TProps, keyof GetSprinkles<TSprinkles>>
28
+ >;
36
29
 
37
- for (const prop of Object.keys(props)) {
38
- if (sprinkles.properties.has(prop)) {
39
- sprinkleProps[prop] = props[prop];
40
- continue;
30
+ for (const key of Object.keys(props) as (keyof TProps)[]) {
31
+ if (sprinkles.properties.has(key as string)) {
32
+ /* eslint-disable-next-line @typescript-eslint/no-explicit-any */
33
+ (sprinkleProps as any)[key] = props[key];
34
+ } else {
35
+ /* eslint-disable-next-line @typescript-eslint/no-explicit-any */
36
+ (componentProps as any)[key] = props[key];
41
37
  }
42
-
43
- componentProps[prop] = props[prop];
44
38
  }
45
39
 
46
40
  return [sprinkleProps, componentProps];
@@ -13,3 +13,12 @@ export {
13
13
  } from './extract-sprinkles-props';
14
14
 
15
15
  export { mapContractVars } from './map-contract-vars';
16
+
17
+ export {
18
+ defineResponsiveProperties,
19
+ type ResponsiveProperties,
20
+ } from './define-responsive-properties';
21
+
22
+ export { transition, type CreateTransitionFn } from './transition';
23
+
24
+ export { visuallyHidden } from './visually-hidden.css';
@@ -85,6 +85,7 @@ globalStyle('button', {
85
85
  globalStyle('a', {
86
86
  '@layer': {
87
87
  [base]: {
88
+ color: 'currentColor',
88
89
  textDecoration: 'none',
89
90
  },
90
91
  },
@@ -28,8 +28,6 @@ export const sys = createThemeContract({
28
28
  color: {
29
29
  background: null,
30
30
  foreground: null,
31
- muted: null,
32
- outline: null,
33
31
  },
34
32
 
35
33
  state: {
@@ -1,5 +1,6 @@
1
1
  import { styleVariants } from '@vanilla-extract/css';
2
2
 
3
+ import { base } from './layers.css';
3
4
  import { sys, TypographySize, TypographyVariant } from './system-contract.css';
4
5
 
5
6
  export const typography = Object.entries(sys.typography).reduce(
@@ -8,11 +9,15 @@ export const typography = Object.entries(sys.typography).reduce(
8
9
  ...acc,
9
10
  [key]: styleVariants(value, (variant) => {
10
11
  return {
11
- fontFamily: variant.font,
12
- fontWeight: variant.weight,
13
- lineHeight: variant.lineHeight,
14
- letterSpacing: variant.tracking,
15
- fontSize: variant.size,
12
+ '@layer': {
13
+ [base]: {
14
+ fontFamily: variant.font,
15
+ fontWeight: variant.weight,
16
+ lineHeight: variant.lineHeight,
17
+ letterSpacing: variant.tracking,
18
+ fontSize: variant.size,
19
+ },
20
+ },
16
21
  };
17
22
  }),
18
23
  };
@@ -0,0 +1,21 @@
1
+ import { recipe } from '@vanilla-extract/recipes';
2
+
3
+ // See: https://github.com/twbs/bootstrap/blob/main/scss/mixins/_visually-hidden.scss
4
+ export const visuallyHidden = recipe({
5
+ variants: {
6
+ hidden: {
7
+ true: {
8
+ position: 'absolute',
9
+ border: 0,
10
+ width: 1,
11
+ height: 1,
12
+ padding: 0,
13
+ margin: -1,
14
+ overflow: 'hidden',
15
+ clip: 'rect(0, 0, 0, 0)',
16
+ whiteSpace: 'nowrap',
17
+ wordWrap: 'normal',
18
+ },
19
+ },
20
+ },
21
+ });
@@ -1,67 +0,0 @@
1
-
2
- > @kalink-ui/seedly@0.8.0 build-storybook /Users/louis/dev/kalink-ui/packages/seedly
3
- > storybook build --output-dir\=/tmp/chromatic--31226-9S6bTYf09Tsv --webpack-stats-json\=/tmp/chromatic--31226-9S6bTYf09Tsv
4
-
5
- @storybook/core v8.6.4
6
- 
7
- info => Cleaning outputDir: ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv
8
- info => Loading presets
9
- info => Building manager..
10
- info => Manager built (106 ms)
11
- info => Building preview..
12
- vite v6.2.1 building for production...
13
- transforming...
14
- ✓ 172 modules transformed.
15
- rendering chunks...
16
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/iframe.html  17.54 kB
17
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/layers.css.ts-C66eHa0l.css  0.07 kB
18
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/text-or75WcbY.css  0.11 kB
19
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/frame-wUsZLpNa.css  0.38 kB
20
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/grid-svOAN5eX.css  0.84 kB
21
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/seed-BSZyHzsv.css  0.86 kB
22
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/stack-fHq0j-Mf.css  0.94 kB
23
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/sidebar-BfSQAuXb.css  0.95 kB
24
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/center-DXS2n_JN.css  1.03 kB
25
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/cover-ClXyrnXr.css  1.03 kB
26
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/cluster-BYRTQ7OR.css  1.04 kB
27
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/switcher-CaEmo08Z.css  1.15 kB
28
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/box-C2bbsHZY.css  1.38 kB
29
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/typography.css.ts-SSimWp8t.css  2.25 kB
30
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/button-Bz5cKKrj.css  2.70 kB
31
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/preview-CT6mYyLc.js  0.16 kB
32
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/preview-BtThajRf.js  0.17 kB
33
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/preview-DoMOH9fu.js  0.23 kB
34
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/vanilla-extract-dynamic.esm-BUlnp6I2.js  0.31 kB
35
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/preview-caVMbCIR.js  0.69 kB
36
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/typography.css-DQ-nfkim.js  0.75 kB
37
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/index-ogSvIofg.js  0.77 kB
38
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/stack-CyXomRKS.js  0.78 kB
39
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/cluster.stories-CPq7agrP.js  0.82 kB
40
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/cluster-Dy3GR3gU.js  0.94 kB
41
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/frame.stories-5pt_eAa4.js  0.98 kB
42
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/clsx-yWx7DIeZ.js  1.09 kB
43
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/common-args-BxOi7vI0.js  1.16 kB
44
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/heading.stories-DnTp5v4g.js  1.18 kB
45
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/center.stories-DVx4loHB.js  1.24 kB
46
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/box.stories-D4I0_iYq.js  1.31 kB
47
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/text.stories-B94F4zrO.js  1.38 kB
48
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/cover.stories-D5Tpwx4p.js  1.44 kB
49
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/switcher.stories-vZpJAqZC.js  1.62 kB
50
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/grid.stories-Cg2miXZJ.js  1.66 kB
51
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/sidebar.stories-BsY8S9Y-.js  1.87 kB
52
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/createRuntimeFn-62c9670f.esm-BmIeg6ni.js  2.04 kB
53
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/stack.stories-B3r3rUis.js  2.14 kB
54
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/preview-A6H2BGQG.js  3.40 kB
55
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/preview-xOAuwTm5.js  4.87 kB
56
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/seed.stories-OnvavYFI.js  5.10 kB
57
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/preview-DY_pW_WS.js  7.62 kB
58
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/button.stories-CoUSjtPq.js  7.87 kB
59
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/preview-CuLlOZat.js  8.08 kB
60
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/entry-preview-B0dZ39Bz.js  38.10 kB
61
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/react-18-Uoay0tNS.js 177.34 kB
62
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/iframe-2U23pR0X.js 210.78 kB
63
- ../../../../../../tmp/chromatic--31226-9S6bTYf09Tsv/assets/index-0CFqCGht.js 658.80 kB
64
- ✓ built in 1.79s
65
- info => Preview built (2.14 s)
66
- info => preview stats written to /tmp/chromatic--31226-9S6bTYf09Tsv/preview-stats.json
67
- info => Output directory: /tmp/chromatic--31226-9S6bTYf09Tsv