@marigold/system 6.2.3 → 6.2.5

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 (2) hide show
  1. package/dist/index.d.mts +694 -0
  2. package/package.json +3 -3
@@ -0,0 +1,694 @@
1
+ import * as React from 'react';
2
+ import React__default, { ReactNode } from 'react';
3
+ import { HtmlProps, KebabCase } from '@marigold/types';
4
+ import { StringToBoolean, ClassProp } from 'class-variance-authority/dist/types';
5
+ export { VariantProps } from 'class-variance-authority';
6
+
7
+ interface SVGProps extends Omit<HtmlProps<'svg'>, 'fill'> {
8
+ size?: number | string | number[] | string[];
9
+ className?: string;
10
+ }
11
+ declare const SVG: React__default.ForwardRefExoticComponent<SVGProps & React__default.RefAttributes<SVGSVGElement>>;
12
+
13
+ type ConfigSchema = Record<string, Record<string, ClassValue>>;
14
+ type ConfigVariants<T extends ConfigSchema> = {
15
+ [Variant in keyof T]?: StringToBoolean<keyof T[Variant]> | null | undefined;
16
+ };
17
+ type ConfigVariantsMulti<T extends ConfigSchema> = {
18
+ [Variant in keyof T]?: StringToBoolean<keyof T[Variant]> | StringToBoolean<keyof T[Variant]>[] | undefined;
19
+ };
20
+ type Config<T> = T extends ConfigSchema ? {
21
+ variants?: T;
22
+ defaultVariants?: ConfigVariants<T>;
23
+ compoundVariants?: (T extends ConfigSchema ? (ConfigVariants<T> | ConfigVariantsMulti<T>) & ClassProp : ClassProp)[];
24
+ } : never;
25
+ type Props<T> = T extends ConfigSchema ? ConfigVariants<T> & ClassProp : ClassProp;
26
+ declare const cva: <T>(base?: ClassValue, config?: Config<T> | undefined) => {
27
+ (props?: Props<T> | undefined): string;
28
+ variants: T | undefined;
29
+ };
30
+ type ClassDictionary = Record<string, any>;
31
+ type ClassArray = ClassValue[];
32
+ type ClassValue = ClassArray | ClassDictionary | string | number | null | boolean | undefined;
33
+ declare const cn: (...inputs: ClassValue[]) => string;
34
+ declare const createVar: (o: {
35
+ [key: string]: string | number | undefined;
36
+ }) => React.CSSProperties;
37
+ /**
38
+ * Safely get a dot-notated path within a nested object, with ability
39
+ * to return a default if the full key path does not exist or
40
+ * the value is undefined
41
+ *
42
+ * Based on: https://github.com/developit/dlv
43
+ */
44
+ declare const get: (obj: object, path: string, fallback?: any) => any;
45
+
46
+ interface NestedStringObject {
47
+ [key: string]: NestedStringObject | string;
48
+ }
49
+ interface ComponentStyleFunction<Variants extends string = never, Sizes extends string = never, Additional extends {
50
+ [name: string]: any;
51
+ } = {}> {
52
+ (props?: {
53
+ variant?: Variants | null;
54
+ size?: Sizes | null;
55
+ className?: ClassValue;
56
+ } & Partial<Additional>): string;
57
+ variants: ConfigSchema | undefined;
58
+ }
59
+ type Theme = {
60
+ name: string;
61
+ screens?: {
62
+ [key: string]: string;
63
+ };
64
+ colors?: NestedStringObject;
65
+ root?: ComponentStyleFunction;
66
+ components: {
67
+ Accordion?: Record<'button' | 'item', ComponentStyleFunction<string, string>>;
68
+ Badge?: ComponentStyleFunction<string, string>;
69
+ Body?: ComponentStyleFunction<string, string>;
70
+ Button?: ComponentStyleFunction<string, string>;
71
+ Card?: ComponentStyleFunction<string, string>;
72
+ DateField?: Record<'segment' | 'field' | 'action', ComponentStyleFunction<string, string>>;
73
+ Dialog?: Record<'closeButton' | 'container', ComponentStyleFunction<string, string>>;
74
+ Divider?: ComponentStyleFunction<string, string>;
75
+ Field?: ComponentStyleFunction<string, string>;
76
+ Footer?: ComponentStyleFunction<string, string>;
77
+ Header?: ComponentStyleFunction<string, string>;
78
+ Headline?: ComponentStyleFunction<string, string>;
79
+ Popover?: ComponentStyleFunction<string, string>;
80
+ HelpText?: Record<'container' | 'icon', ComponentStyleFunction<string, string>>;
81
+ Image?: ComponentStyleFunction<string, string>;
82
+ Checkbox?: Record<'container' | 'label' | 'checkbox', ComponentStyleFunction<string, string>>;
83
+ Switch?: Record<'container' | 'track' | 'thumb', ComponentStyleFunction<string, string>>;
84
+ Input?: Record<'input' | 'icon' | 'action', ComponentStyleFunction<string, string>>;
85
+ Label?: Record<'container' | 'indicator', ComponentStyleFunction<string, string>>;
86
+ List?: Record<'ol' | 'ul' | 'item', ComponentStyleFunction<string, string>>;
87
+ Link?: ComponentStyleFunction<string, string>;
88
+ ListBox?: Record<'container' | 'list' | 'option' | 'section' | 'sectionTitle', ComponentStyleFunction<string, string>>;
89
+ Menu?: Record<'container' | 'section' | 'item', ComponentStyleFunction<string, string>>;
90
+ Radio?: Record<'container' | 'label' | 'radio', ComponentStyleFunction<string, string>>;
91
+ Slider?: Record<'track' | 'thumb' | 'label' | 'output', ComponentStyleFunction<string, string>>;
92
+ Select?: Record<'select' | 'icon', ComponentStyleFunction<string, string>>;
93
+ NumberField?: Record<'group' | 'stepper', ComponentStyleFunction<string, string>>;
94
+ Message?: Record<'container' | 'icon' | 'title' | 'content', ComponentStyleFunction<string, string>>;
95
+ Table?: Record<'table' | 'header' | 'row' | 'cell', ComponentStyleFunction<string, string>>;
96
+ Tag?: Record<'tag' | 'gridCell' | 'closeButton', ComponentStyleFunction<string, string>>;
97
+ Text?: ComponentStyleFunction<string, string>;
98
+ TextArea?: ComponentStyleFunction<string, string>;
99
+ Tooltip?: Record<'container' | 'arrow', ComponentStyleFunction<string, string>>;
100
+ Tabs?: Record<'tabs' | 'container' | 'tabpanel' | 'tab', ComponentStyleFunction<string, string>>;
101
+ Underlay?: ComponentStyleFunction<string, string>;
102
+ Calendar?: Record<'calendar' | 'calendarCell' | 'calendarControllers', ComponentStyleFunction<string, string>>;
103
+ DatePicker?: Record<'container' | 'button', ComponentStyleFunction<string, string>>;
104
+ };
105
+ };
106
+ type ComponentNames = keyof Theme['components'];
107
+ type ThemeComponent<C extends ComponentNames> = NonNullable<Theme['components'][C]>;
108
+
109
+ interface UseClassNamesProps<C extends ComponentNames> {
110
+ component: C;
111
+ variant?: string;
112
+ size?: string;
113
+ className?: ThemeComponent<C> extends (...args: any) => any ? string : {
114
+ [slot in keyof ThemeComponent<C>]?: string;
115
+ };
116
+ }
117
+ type ComponentClassNames<C extends ComponentNames> = ThemeComponent<C> extends (...args: any) => any ? string : {
118
+ [slot in keyof ThemeComponent<C>]: string;
119
+ };
120
+ declare const useClassNames: <C extends "Accordion" | "Badge" | "Body" | "Button" | "Card" | "DateField" | "Dialog" | "Divider" | "Field" | "Footer" | "Header" | "Headline" | "Popover" | "HelpText" | "Image" | "Checkbox" | "Switch" | "Input" | "Label" | "List" | "Link" | "ListBox" | "Menu" | "Radio" | "Slider" | "Select" | "NumberField" | "Message" | "Table" | "Tag" | "Text" | "TextArea" | "Tooltip" | "Tabs" | "Underlay" | "Calendar" | "DatePicker">({ component, className, variant, size, }: UseClassNamesProps<C>) => ComponentClassNames<C>;
121
+
122
+ /**
123
+ * Hook that can be used to return values based on the current screen size,
124
+ * using breakpoints from the theme (`theme.breakpoints`). Note that this
125
+ * hook is client.side only.
126
+ */
127
+ declare const useResponsiveValue: <T>(values: T[], defaultIndex?: number) => T;
128
+
129
+ type ComponentState = 'active' | 'checked' | 'disabled' | 'error' | 'expanded' | 'focus' | 'focusVisible' | 'hasIcon' | 'hover' | 'indeterminate' | 'readOnly' | 'required' | 'selected' | 'visited';
130
+ type StateAttrKeyProps = `data-${KebabCase<ComponentState>}`;
131
+ type StateAttrProps = {
132
+ [key in StateAttrKeyProps]?: '';
133
+ };
134
+ type UseStateProps = {
135
+ [key in ComponentState]?: boolean;
136
+ };
137
+ /**
138
+ * Given a map of states (e.g. `{ hover: true, focus: false }`) returns an
139
+ * object that can be used to set state props on a component
140
+ * (e.g. `[data-hover]` and `[data-focus]`).
141
+ */
142
+ declare const useStateProps: (states: UseStateProps) => StateAttrProps;
143
+
144
+ declare const useTheme: () => Theme;
145
+ interface ThemeProviderProps<T extends Theme> {
146
+ theme: T;
147
+ children: ReactNode;
148
+ }
149
+ declare function ThemeProvider<T extends Theme>({ theme, children, }: ThemeProviderProps<T>): React__default.JSX.Element;
150
+
151
+ declare const useSmallScreen: () => boolean;
152
+
153
+ declare const defaultTheme: {
154
+ name: string;
155
+ screens: {
156
+ sm: string;
157
+ md: string;
158
+ lg: string;
159
+ xl: string;
160
+ '2xl': string;
161
+ };
162
+ components: {};
163
+ };
164
+
165
+ declare const width: {
166
+ full: string;
167
+ auto: string;
168
+ px: string;
169
+ 0: string;
170
+ '0.5': string;
171
+ 1: string;
172
+ '1.5': string;
173
+ 2: string;
174
+ '2.5': string;
175
+ 3: string;
176
+ '3.5': string;
177
+ 4: string;
178
+ 5: string;
179
+ 6: string;
180
+ 7: string;
181
+ 8: string;
182
+ 9: string;
183
+ 10: string;
184
+ 11: string;
185
+ 12: string;
186
+ 14: string;
187
+ 16: string;
188
+ 20: string;
189
+ 24: string;
190
+ 28: string;
191
+ 32: string;
192
+ 36: string;
193
+ 40: string;
194
+ 44: string;
195
+ 48: string;
196
+ 52: string;
197
+ 56: string;
198
+ 60: string;
199
+ 64: string;
200
+ 72: string;
201
+ 80: string;
202
+ 96: string;
203
+ '1/2': string;
204
+ '1/3': string;
205
+ '2/3': string;
206
+ '1/4': string;
207
+ '2/4': string;
208
+ '3/4': string;
209
+ '1/5': string;
210
+ '2/5': string;
211
+ '3/5': string;
212
+ '1/6': string;
213
+ '2/6': string;
214
+ '3/6': string;
215
+ '4/6': string;
216
+ '5/6': string;
217
+ '1/12': string;
218
+ '2/12': string;
219
+ '3/12': string;
220
+ '4/12': string;
221
+ '5/12': string;
222
+ '6/12': string;
223
+ '7/12': string;
224
+ '8/12': string;
225
+ '9/12': string;
226
+ '10/12': string;
227
+ '11/12': string;
228
+ };
229
+ declare const fontWeight: {
230
+ thin: string;
231
+ extralight: string;
232
+ light: string;
233
+ regular: string;
234
+ medium: string;
235
+ semibold: string;
236
+ bold: string;
237
+ extrabold: string;
238
+ black: string;
239
+ };
240
+ declare const textSize: {
241
+ xs: string;
242
+ sm: string;
243
+ base: string;
244
+ lg: string;
245
+ xl: string;
246
+ '2xl': string;
247
+ '3xl': string;
248
+ '4xl': string;
249
+ '5xl': string;
250
+ '6xl': string;
251
+ '7xl': string;
252
+ '8xl': string;
253
+ '9xl': string;
254
+ };
255
+ declare const textStyle: {
256
+ italic: string;
257
+ normal: string;
258
+ };
259
+ declare const gapSpace: {
260
+ 0: string;
261
+ 1: string;
262
+ 2: string;
263
+ 3: string;
264
+ 4: string;
265
+ 5: string;
266
+ 6: string;
267
+ 7: string;
268
+ 8: string;
269
+ 9: string;
270
+ 10: string;
271
+ 11: string;
272
+ 12: string;
273
+ 14: string;
274
+ 16: string;
275
+ 20: string;
276
+ 24: string;
277
+ 28: string;
278
+ 32: string;
279
+ 36: string;
280
+ 40: string;
281
+ 44: string;
282
+ 48: string;
283
+ 52: string;
284
+ 56: string;
285
+ 60: string;
286
+ 64: string;
287
+ 72: string;
288
+ 80: string;
289
+ 96: string;
290
+ };
291
+ declare const paddingSpace: {
292
+ 0: string;
293
+ 1: string;
294
+ 2: string;
295
+ 3: string;
296
+ 4: string;
297
+ 5: string;
298
+ 6: string;
299
+ 7: string;
300
+ 8: string;
301
+ 9: string;
302
+ 10: string;
303
+ 11: string;
304
+ 12: string;
305
+ 14: string;
306
+ 16: string;
307
+ 20: string;
308
+ 24: string;
309
+ 28: string;
310
+ 32: string;
311
+ 36: string;
312
+ 40: string;
313
+ 44: string;
314
+ 48: string;
315
+ 52: string;
316
+ 56: string;
317
+ 60: string;
318
+ 64: string;
319
+ 72: string;
320
+ 80: string;
321
+ 96: string;
322
+ };
323
+ declare const paddingSpaceX: {
324
+ 0: string;
325
+ 1: string;
326
+ 2: string;
327
+ 3: string;
328
+ 4: string;
329
+ 5: string;
330
+ 6: string;
331
+ 7: string;
332
+ 8: string;
333
+ 9: string;
334
+ 10: string;
335
+ 11: string;
336
+ 12: string;
337
+ 14: string;
338
+ 16: string;
339
+ 20: string;
340
+ 24: string;
341
+ 28: string;
342
+ 32: string;
343
+ 36: string;
344
+ 40: string;
345
+ 44: string;
346
+ 48: string;
347
+ 52: string;
348
+ 56: string;
349
+ 60: string;
350
+ 64: string;
351
+ 72: string;
352
+ 80: string;
353
+ 96: string;
354
+ };
355
+ declare const paddingSpaceY: {
356
+ 0: string;
357
+ 1: string;
358
+ 2: string;
359
+ 3: string;
360
+ 4: string;
361
+ 5: string;
362
+ 6: string;
363
+ 7: string;
364
+ 8: string;
365
+ 9: string;
366
+ 10: string;
367
+ 11: string;
368
+ 12: string;
369
+ 14: string;
370
+ 16: string;
371
+ 20: string;
372
+ 24: string;
373
+ 28: string;
374
+ 32: string;
375
+ 36: string;
376
+ 40: string;
377
+ 44: string;
378
+ 48: string;
379
+ 52: string;
380
+ 56: string;
381
+ 60: string;
382
+ 64: string;
383
+ 72: string;
384
+ 80: string;
385
+ 96: string;
386
+ };
387
+ declare const paddingRight: {
388
+ 0: string;
389
+ 1: string;
390
+ 2: string;
391
+ 3: string;
392
+ 4: string;
393
+ 5: string;
394
+ 6: string;
395
+ 7: string;
396
+ 8: string;
397
+ 9: string;
398
+ 10: string;
399
+ 11: string;
400
+ 12: string;
401
+ 14: string;
402
+ 16: string;
403
+ 20: string;
404
+ 24: string;
405
+ 28: string;
406
+ 32: string;
407
+ 36: string;
408
+ 40: string;
409
+ 44: string;
410
+ 48: string;
411
+ 52: string;
412
+ 56: string;
413
+ 60: string;
414
+ 64: string;
415
+ 72: string;
416
+ 80: string;
417
+ 96: string;
418
+ };
419
+ declare const paddingLeft: {
420
+ 0: string;
421
+ 1: string;
422
+ 2: string;
423
+ 3: string;
424
+ 4: string;
425
+ 5: string;
426
+ 6: string;
427
+ 7: string;
428
+ 8: string;
429
+ 9: string;
430
+ 10: string;
431
+ 11: string;
432
+ 12: string;
433
+ 14: string;
434
+ 16: string;
435
+ 20: string;
436
+ 24: string;
437
+ 28: string;
438
+ 32: string;
439
+ 36: string;
440
+ 40: string;
441
+ 44: string;
442
+ 48: string;
443
+ 52: string;
444
+ 56: string;
445
+ 60: string;
446
+ 64: string;
447
+ 72: string;
448
+ 80: string;
449
+ 96: string;
450
+ };
451
+ declare const paddingTop: {
452
+ 0: string;
453
+ 1: string;
454
+ 2: string;
455
+ 3: string;
456
+ 4: string;
457
+ 5: string;
458
+ 6: string;
459
+ 7: string;
460
+ 8: string;
461
+ 9: string;
462
+ 10: string;
463
+ 11: string;
464
+ 12: string;
465
+ 14: string;
466
+ 16: string;
467
+ 20: string;
468
+ 24: string;
469
+ 28: string;
470
+ 32: string;
471
+ 36: string;
472
+ 40: string;
473
+ 44: string;
474
+ 48: string;
475
+ 52: string;
476
+ 56: string;
477
+ 60: string;
478
+ 64: string;
479
+ 72: string;
480
+ 80: string;
481
+ 96: string;
482
+ };
483
+ declare const paddingBottom: {
484
+ 0: string;
485
+ 1: string;
486
+ 2: string;
487
+ 3: string;
488
+ 4: string;
489
+ 5: string;
490
+ 6: string;
491
+ 7: string;
492
+ 8: string;
493
+ 9: string;
494
+ 10: string;
495
+ 11: string;
496
+ 12: string;
497
+ 14: string;
498
+ 16: string;
499
+ 20: string;
500
+ 24: string;
501
+ 28: string;
502
+ 32: string;
503
+ 36: string;
504
+ 40: string;
505
+ 44: string;
506
+ 48: string;
507
+ 52: string;
508
+ 56: string;
509
+ 60: string;
510
+ 64: string;
511
+ 72: string;
512
+ 80: string;
513
+ 96: string;
514
+ };
515
+ declare const alignment: {
516
+ vertical: {
517
+ alignmentX: {
518
+ none: undefined;
519
+ left: string;
520
+ center: string;
521
+ right: string;
522
+ };
523
+ alignmentY: {
524
+ none: undefined;
525
+ top: string;
526
+ center: string;
527
+ bottom: string;
528
+ };
529
+ };
530
+ horizontal: {
531
+ alignmentY: {
532
+ none: undefined;
533
+ top: string;
534
+ center: string;
535
+ bottom: string;
536
+ };
537
+ alignmentX: {
538
+ none: undefined;
539
+ left: string;
540
+ center: string;
541
+ right: string;
542
+ };
543
+ };
544
+ };
545
+ declare const placeItems: {
546
+ none: undefined;
547
+ left: string;
548
+ center: string;
549
+ right: string;
550
+ };
551
+ declare const textAlign: {
552
+ none: undefined;
553
+ left: string;
554
+ center: string;
555
+ right: string;
556
+ };
557
+ declare const gridColsAlign: {
558
+ left: string;
559
+ center: string;
560
+ right: string;
561
+ };
562
+ declare const gridColumn: {
563
+ left: string;
564
+ center: string;
565
+ right: string;
566
+ };
567
+ declare const aspect: {
568
+ square: string;
569
+ landscape: string;
570
+ portrait: string;
571
+ widescreen: string;
572
+ ultrawide: string;
573
+ golden: string;
574
+ };
575
+ declare const objectFit: {
576
+ contain: string;
577
+ cover: string;
578
+ fill: string;
579
+ none: string;
580
+ scaleDown: string;
581
+ };
582
+ declare const objectPosition: {
583
+ none: undefined;
584
+ bottom: string;
585
+ center: string;
586
+ left: string;
587
+ leftBottom: string;
588
+ leftTop: string;
589
+ right: string;
590
+ rightBottom: string;
591
+ rightTop: string;
592
+ top: string;
593
+ };
594
+ declare const cursorStyle: {
595
+ auto: string;
596
+ default: string;
597
+ pointer: string;
598
+ wait: string;
599
+ text: string;
600
+ move: string;
601
+ help: string;
602
+ notAllowed: string;
603
+ none: string;
604
+ progress: string;
605
+ cell: string;
606
+ crosshair: string;
607
+ vertical: string;
608
+ alias: string;
609
+ copy: string;
610
+ noDrop: string;
611
+ grap: string;
612
+ grapping: string;
613
+ scroll: string;
614
+ colResize: string;
615
+ rowResize: string;
616
+ ewResize: string;
617
+ nsResize: string;
618
+ zoomIn: string;
619
+ zoomOut: string;
620
+ };
621
+ type AspectProp = {
622
+ ratio?: keyof typeof aspect;
623
+ };
624
+ type AlignmentProp = {
625
+ orientation?: {
626
+ vertical?: {
627
+ alignY?: keyof typeof alignment.vertical.alignmentY;
628
+ alignX?: keyof typeof alignment.vertical.alignmentX;
629
+ };
630
+ horizontal?: {
631
+ alignX?: keyof typeof alignment.horizontal.alignmentX;
632
+ alignY?: keyof typeof alignment.horizontal.alignmentY;
633
+ };
634
+ };
635
+ };
636
+ type CursorProp = {
637
+ cursor?: keyof typeof cursorStyle;
638
+ };
639
+ type FontStyleProp = {
640
+ fontStyle?: keyof typeof textStyle;
641
+ };
642
+ type FontWeightProp = {
643
+ weight?: keyof typeof fontWeight;
644
+ };
645
+ type FontSizeProp = {
646
+ fontSize?: keyof typeof textSize;
647
+ };
648
+ type GridColsAlignProp = {
649
+ align?: keyof typeof gridColsAlign;
650
+ };
651
+ type GridColumn = {
652
+ align?: keyof typeof gridColumn;
653
+ };
654
+ type GapSpaceProp = {
655
+ space?: keyof typeof gapSpace;
656
+ };
657
+ type ObjectFitProp = {
658
+ fit?: keyof typeof objectFit;
659
+ };
660
+ type ObjectPositionProp = {
661
+ position?: keyof typeof objectPosition;
662
+ };
663
+ type PaddingSpaceProp = {
664
+ space?: keyof typeof paddingSpace;
665
+ };
666
+ type PaddingSpacePropX = {
667
+ spaceX?: keyof typeof paddingSpaceX;
668
+ };
669
+ type PaddingSpacePropY = {
670
+ spaceY?: keyof typeof paddingSpaceY;
671
+ };
672
+ type PaddingRightProp = {
673
+ pr?: keyof typeof paddingRight;
674
+ };
675
+ type PaddingLeftProp = {
676
+ pl?: keyof typeof paddingLeft;
677
+ };
678
+ type PaddingTopProp = {
679
+ pt?: keyof typeof paddingTop;
680
+ };
681
+ type PaddingBottomProp = {
682
+ pb?: keyof typeof paddingBottom;
683
+ };
684
+ type PlaceItemsProp = {
685
+ align?: keyof typeof placeItems;
686
+ };
687
+ type TextAlignProp = {
688
+ align?: keyof typeof textAlign;
689
+ };
690
+ type WidthProp = {
691
+ width?: keyof typeof width;
692
+ };
693
+
694
+ export { AlignmentProp, AspectProp, ClassArray, ClassDictionary, ClassValue, ComponentClassNames, ComponentNames, ComponentState, ComponentStyleFunction, Config, ConfigSchema, ConfigVariants, ConfigVariantsMulti, CursorProp, FontSizeProp, FontStyleProp, FontWeightProp, GapSpaceProp, GridColsAlignProp, GridColumn, NestedStringObject, ObjectFitProp, ObjectPositionProp, PaddingBottomProp, PaddingLeftProp, PaddingRightProp, PaddingSpaceProp, PaddingSpacePropX, PaddingSpacePropY, PaddingTopProp, PlaceItemsProp, Props, SVG, SVGProps, StateAttrKeyProps, StateAttrProps, TextAlignProp, Theme, ThemeComponent, ThemeProvider, ThemeProviderProps, UseClassNamesProps, UseStateProps, WidthProp, alignment, aspect, cn, createVar, cursorStyle, cva, defaultTheme, fontWeight, gapSpace, get, gridColsAlign, gridColumn, objectFit, objectPosition, paddingBottom, paddingLeft, paddingRight, paddingSpace, paddingSpaceX, paddingSpaceY, paddingTop, placeItems, textAlign, textSize, textStyle, useClassNames, useResponsiveValue, useSmallScreen, useStateProps, useTheme, width };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marigold/system",
3
- "version": "6.2.3",
3
+ "version": "6.2.5",
4
4
  "description": "Marigold System Library",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -36,10 +36,10 @@
36
36
  },
37
37
  "devDependencies": {
38
38
  "@babel/core": "7.21.8",
39
- "postcss": "8.4.28",
39
+ "postcss": "8.4.29",
40
40
  "react": "18.2.0",
41
41
  "tailwindcss": "3.3.3",
42
- "tsup": "6.7.0",
42
+ "tsup": "7.2.0",
43
43
  "@marigold/tsconfig": "0.4.0"
44
44
  },
45
45
  "scripts": {