@vireo-ai/trellis-ui 0.1.1 → 0.1.2

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 (46) hide show
  1. package/package.json +1 -1
  2. package/src/components/button/styles.css +47 -26
  3. package/src/components/date-picker/styles.css +23 -1
  4. package/src/components/file-upload/styles.css +28 -0
  5. package/src/components/radio/styles.css +33 -21
  6. package/src/components/select/styles.css +44 -3
  7. package/src/components.css +1 -2
  8. package/src/theme.css +332 -46
  9. package/trellis_ui/static/trellis_ui/css/styles.css +955 -214
  10. package/trellis_ui/static/trellis_ui/js/esm/index.js +1149 -910
  11. package/trellis_ui/static/trellis_ui/js/esm/index.js.map +1 -1
  12. package/trellis_ui/static/trellis_ui/js/index.js +7 -7
  13. package/types/components/app/contract.d.ts +7 -2
  14. package/types/components/badge/contract.d.ts +8 -6
  15. package/types/components/box/contract.d.ts +29 -21
  16. package/types/components/box/index.d.ts +1 -1
  17. package/types/components/button/contract.d.ts +10 -7
  18. package/types/components/card/contract.d.ts +25 -11
  19. package/types/components/combobox/contract.d.ts +6 -3
  20. package/types/components/common.d.ts +239 -2
  21. package/types/components/date-picker/contract.d.ts +7 -4
  22. package/types/components/file-upload/index.d.ts +1 -0
  23. package/types/components/frame/contract.d.ts +43 -18
  24. package/types/components/frame/index.d.ts +2 -2
  25. package/types/components/heading/contract.d.ts +3 -2
  26. package/types/components/input/contract.d.ts +7 -3
  27. package/types/components/menu/contract.d.ts +1 -1
  28. package/types/components/modal/contract.d.ts +12 -6
  29. package/types/components/select/contract.d.ts +10 -7
  30. package/types/components/sidebar/contract.d.ts +1 -1
  31. package/types/components/table/contract.d.ts +1 -1
  32. package/types/components/tabs/index.d.ts +1 -0
  33. package/types/components/text/contract.d.ts +3 -2
  34. package/types/components/textarea/contract.d.ts +1 -0
  35. package/types/components/toast/contract.d.ts +11 -5
  36. package/types/components/toast/index.d.ts +2 -1
  37. package/types/index.d.ts +4 -4
  38. package/types/motion/animate.d.ts +4 -0
  39. package/types/motion/presence.d.ts +1 -1
  40. package/types/runtime/index.d.ts +4 -4
  41. package/types/runtime/manifest.d.ts +5 -1
  42. package/types/runtime/merge-bindings.d.ts +9 -0
  43. package/types/runtime/theme.d.ts +8 -3
  44. package/src/components/image/styles.css +0 -10
  45. package/src/components/theme/styles.css +0 -13
  46. package/types/runtime/props.d.ts +0 -9
@@ -1,7 +1,9 @@
1
1
  import { type PropState } from '../../runtime';
2
+ import { type Surface } from '../common';
2
3
  declare const APP_HEIGHTS: readonly ["screen", "min"];
3
4
  declare const APP_SIDEBARS: readonly ["left", "right", "both", "none"];
4
5
  declare const APP_MAIN_SCROLLS: readonly ["auto", "none"];
6
+ declare const APP_HEADER_SURFACES: readonly ["none", "app", "chrome", "subtle", "panel", "raised", "overlay", "accent", "inverse"];
5
7
  declare const appSchema: {
6
8
  id: import("../../runtime/codecs").StringCodec;
7
9
  height: import("../../runtime/codecs").OneOfCodec<"min" | "screen">;
@@ -10,6 +12,8 @@ declare const appSchema: {
10
12
  };
11
13
  declare const appHeaderSchema: {
12
14
  sticky: import("../../runtime/codecs").BoolCodec;
15
+ surface: import("../../runtime/codecs").OneOfCodec<"none" | "subtle" | "accent" | "app" | "chrome" | "panel" | "raised" | "overlay" | "inverse">;
16
+ divider: import("../../runtime/codecs").BoolCodec;
13
17
  class: import("../../runtime/codecs").StringCodec;
14
18
  };
15
19
  declare const appMainSchema: {
@@ -22,8 +26,9 @@ declare const appPanelSchema: {
22
26
  class: import("../../runtime/codecs").StringCodec;
23
27
  };
24
28
  type AppHeight = typeof APP_HEIGHTS[number];
29
+ type AppHeaderSurface = Surface;
25
30
  type AppMainScroll = typeof APP_MAIN_SCROLLS[number];
26
31
  type AppSidebar = typeof APP_SIDEBARS[number];
27
32
  type AppProps = PropState<typeof appSchema>;
28
- export { APP_HEIGHTS, APP_MAIN_SCROLLS, APP_SIDEBARS, appHeaderSchema, appMainSchema, appPanelSchema, appSchema, };
29
- export type { AppHeight, AppMainScroll, AppProps, AppSidebar };
33
+ export { APP_HEADER_SURFACES, APP_HEIGHTS, APP_MAIN_SCROLLS, APP_SIDEBARS, appHeaderSchema, appMainSchema, appPanelSchema, appSchema, };
34
+ export type { AppHeaderSurface, AppHeight, AppMainScroll, AppProps, AppSidebar };
@@ -1,16 +1,17 @@
1
1
  import { type PropState } from '../../runtime';
2
- import { type CommonButtonType, type ControlSize, type IconVariant } from '../common';
2
+ import { type CommonButtonType, type ComponentRadius, type ControlSize, type IconVariant } from '../common';
3
3
  declare const BADGE_VARIANTS: readonly ["soft", "surface", "outline", "solid"];
4
4
  declare const BADGE_COLORS: readonly ["neutral", "accent", "success", "warning", "danger"];
5
5
  declare const BADGE_SIZES: readonly ["xs", "sm", "md", "lg", "xlg"];
6
6
  declare const BADGE_AS_VALUES: readonly ["span", "button"];
7
7
  declare const BADGE_TYPES: readonly ["button", "submit", "reset"];
8
8
  declare const BADGE_ICON_VARIANTS: readonly ["outline", "solid", "mini", "micro"];
9
+ declare const BADGE_RADII: readonly ["none", "xs", "sm", "md", "lg", "full"];
9
10
  declare const badgeSchema: {
10
- variant: import("../../runtime/codecs").OneOfCodec<"outline" | "solid" | "surface" | "soft">;
11
- color: import("../../runtime/codecs").OneOfCodec<"neutral" | "accent" | "success" | "warning" | "danger">;
11
+ variant: import("../../runtime/codecs").OneOfCodec<"outline" | "solid" | "soft" | "surface">;
12
+ color: import("../../runtime/codecs").OneOfCodec<"accent" | "danger" | "neutral" | "success" | "warning">;
12
13
  size: import("../../runtime/codecs").OneOfCodec<"xs" | "sm" | "md" | "lg" | "xlg">;
13
- rounded: import("../../runtime/codecs").BoolCodec;
14
+ radius: import("../../runtime/codecs").OneOfCodec<"none" | "xs" | "sm" | "md" | "lg" | "full">;
14
15
  href: import("../../runtime/codecs").StringCodec;
15
16
  as: import("../../runtime/codecs").OneOfCodec<"button" | "span">;
16
17
  type: import("../../runtime/codecs").OneOfCodec<"reset" | "submit" | "button">;
@@ -33,10 +34,11 @@ declare const badgeCloseSchema: {
33
34
  type BadgeVariant = typeof BADGE_VARIANTS[number];
34
35
  type BadgeColor = typeof BADGE_COLORS[number];
35
36
  type BadgeSize = ControlSize;
37
+ type BadgeRadius = ComponentRadius;
36
38
  type BadgeAs = typeof BADGE_AS_VALUES[number];
37
39
  type BadgeType = CommonButtonType;
38
40
  type BadgeIconVariant = IconVariant;
39
41
  type BadgeProps = PropState<typeof badgeSchema>;
40
42
  type BadgeCloseProps = PropState<typeof badgeCloseSchema>;
41
- export { BADGE_AS_VALUES, BADGE_COLORS, BADGE_ICON_VARIANTS, BADGE_SIZES, BADGE_TYPES, BADGE_VARIANTS, badgeCloseSchema, badgeSchema, };
42
- export type { BadgeAs, BadgeCloseProps, BadgeColor, BadgeIconVariant, BadgeProps, BadgeSize, BadgeType, BadgeVariant, };
43
+ export { BADGE_AS_VALUES, BADGE_COLORS, BADGE_ICON_VARIANTS, BADGE_RADII, BADGE_SIZES, BADGE_TYPES, BADGE_VARIANTS, badgeCloseSchema, badgeSchema, };
44
+ export type { BadgeAs, BadgeCloseProps, BadgeColor, BadgeIconVariant, BadgeProps, BadgeRadius, BadgeSize, BadgeType, BadgeVariant, };
@@ -1,44 +1,52 @@
1
1
  import { type PropState } from '../../runtime';
2
+ import { type ComponentRadius, type Elevation, type LayoutSpace, type Surface, type SurfaceTone } from '../common';
2
3
  declare const BOX_AS_VALUES: readonly ["div", "section", "article", "aside", "header", "footer", "main", "nav", "form", "ul", "ol", "li", "span"];
3
4
  declare const BOX_LAYOUTS: readonly ["block", "stack", "row", "cluster", "grid", "center"];
4
- declare const BOX_SPACES: readonly ["0", "1", "2", "3", "4", "5", "6"];
5
+ declare const BOX_SPACES: readonly ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
5
6
  declare const BOX_COLUMNS: readonly ["none", "1", "2", "3", "4", "5", "6"];
6
- declare const BOX_SURFACES: readonly ["none", "app", "subtle", "surface", "raised"];
7
- declare const BOX_BORDERS: readonly ["none", "default"];
8
- declare const BOX_RADII: readonly ["none", "sm", "md", "lg", "full"];
9
- declare const BOX_SHADOWS: readonly ["none", "border", "sm", "md", "lg"];
7
+ declare const BOX_SURFACES: readonly ["none", "app", "chrome", "subtle", "panel", "raised", "overlay", "accent", "inverse"];
8
+ declare const BOX_TONES: readonly ["solid", "alpha"];
9
+ declare const BOX_RADII: readonly ["none", "xs", "sm", "md", "lg", "full"];
10
+ declare const BOX_ELEVATIONS: readonly ["none", "1", "2", "3", "4", "5", "6"];
10
11
  declare const BOX_WIDTHS: readonly ["auto", "full", "xs", "sm", "md", "lg", "xl", "prose"];
11
- declare const BOX_HEIGHTS: readonly ["auto", "full", "xs", "sm", "md", "lg", "xl", "prose"];
12
+ declare const BOX_HEIGHTS: ("xs" | "sm" | "md" | "lg" | "full" | "auto" | "xl")[];
12
13
  declare const BOX_ALIGNS: readonly ["start", "center", "end", "stretch"];
13
14
  declare const BOX_JUSTIFIES: readonly ["start", "center", "end", "between"];
14
15
  declare const boxSchema: {
15
16
  as: import("../../runtime/codecs").OneOfCodec<"article" | "aside" | "div" | "footer" | "form" | "header" | "li" | "main" | "nav" | "ol" | "section" | "span" | "ul">;
16
17
  layout: import("../../runtime/codecs").OneOfCodec<"grid" | "center" | "stack" | "block" | "row" | "cluster">;
17
- gap: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6">;
18
+ gap: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
19
+ gapX: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
20
+ gapY: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
18
21
  columns: import("../../runtime/codecs").OneOfCodec<"1" | "none" | "2" | "3" | "4" | "5" | "6">;
19
- padding: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6">;
20
- surface: import("../../runtime/codecs").OneOfCodec<"none" | "subtle" | "surface" | "app" | "raised">;
21
- border: import("../../runtime/codecs").OneOfCodec<"default" | "none">;
22
- radius: import("../../runtime/codecs").OneOfCodec<"none" | "sm" | "md" | "lg" | "full">;
23
- shadow: import("../../runtime/codecs").OneOfCodec<"border" | "none" | "sm" | "md" | "lg">;
24
- width: import("../../runtime/codecs").OneOfCodec<"xs" | "sm" | "md" | "lg" | "auto" | "xl" | "full" | "prose">;
25
- height: import("../../runtime/codecs").OneOfCodec<"xs" | "sm" | "md" | "lg" | "auto" | "xl" | "full" | "prose">;
22
+ padding: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
23
+ paddingX: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
24
+ paddingY: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
25
+ margin: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
26
+ marginX: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
27
+ marginY: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
28
+ surface: import("../../runtime/codecs").OneOfCodec<"none" | "subtle" | "accent" | "app" | "chrome" | "panel" | "raised" | "overlay" | "inverse">;
29
+ tone: import("../../runtime/codecs").OneOfCodec<"solid" | "alpha">;
30
+ radius: import("../../runtime/codecs").OneOfCodec<"none" | "xs" | "sm" | "md" | "lg" | "full">;
31
+ elevation: import("../../runtime/codecs").OneOfCodec<"1" | "none" | "2" | "3" | "4" | "5" | "6">;
32
+ width: import("../../runtime/codecs").OneOfCodec<"xs" | "sm" | "md" | "lg" | "full" | "auto" | "xl" | "prose">;
33
+ height: import("../../runtime/codecs").OneOfCodec<"xs" | "sm" | "md" | "lg" | "full" | "auto" | "xl">;
26
34
  align: import("../../runtime/codecs").OneOfCodec<"end" | "center" | "start" | "stretch">;
27
35
  justify: import("../../runtime/codecs").OneOfCodec<"end" | "center" | "start" | "between">;
28
36
  class: import("../../runtime/codecs").StringCodec;
29
37
  };
30
38
  type BoxAs = typeof BOX_AS_VALUES[number];
31
39
  type BoxLayout = typeof BOX_LAYOUTS[number];
32
- type BoxSpace = typeof BOX_SPACES[number];
40
+ type BoxSpace = LayoutSpace;
33
41
  type BoxColumns = typeof BOX_COLUMNS[number];
34
- type BoxSurface = typeof BOX_SURFACES[number];
35
- type BoxBorder = typeof BOX_BORDERS[number];
36
- type BoxRadius = typeof BOX_RADII[number];
37
- type BoxShadow = typeof BOX_SHADOWS[number];
42
+ type BoxSurface = Surface;
43
+ type BoxTone = SurfaceTone;
44
+ type BoxRadius = ComponentRadius;
45
+ type BoxElevation = Elevation;
38
46
  type BoxWidth = typeof BOX_WIDTHS[number];
39
47
  type BoxHeight = typeof BOX_HEIGHTS[number];
40
48
  type BoxAlign = typeof BOX_ALIGNS[number];
41
49
  type BoxJustify = typeof BOX_JUSTIFIES[number];
42
50
  type BoxProps = PropState<typeof boxSchema>;
43
- export { BOX_ALIGNS, BOX_AS_VALUES, BOX_BORDERS, BOX_COLUMNS, BOX_HEIGHTS, BOX_JUSTIFIES, BOX_LAYOUTS, BOX_RADII, BOX_SHADOWS, BOX_SPACES, BOX_SURFACES, BOX_WIDTHS, boxSchema, };
44
- export type { BoxAlign, BoxAs, BoxBorder, BoxColumns, BoxHeight, BoxJustify, BoxLayout, BoxProps, BoxRadius, BoxShadow, BoxSpace, BoxSurface, BoxWidth, };
51
+ export { BOX_ALIGNS, BOX_AS_VALUES, BOX_COLUMNS, BOX_ELEVATIONS, BOX_HEIGHTS, BOX_JUSTIFIES, BOX_LAYOUTS, BOX_RADII, BOX_SPACES, BOX_SURFACES, BOX_TONES, BOX_WIDTHS, boxSchema, };
52
+ export type { BoxAlign, BoxAs, BoxColumns, BoxElevation, BoxHeight, BoxJustify, BoxLayout, BoxProps, BoxRadius, BoxSpace, BoxSurface, BoxTone, BoxWidth, };
@@ -1,2 +1,2 @@
1
1
  export { boxSchema } from './contract';
2
- export type { BoxAlign, BoxAs, BoxBorder, BoxColumns, BoxHeight, BoxJustify, BoxLayout, BoxProps, BoxRadius, BoxShadow, BoxSpace, BoxSurface, BoxWidth, } from './contract';
2
+ export type { BoxAlign, BoxAs, BoxColumns, BoxElevation, BoxHeight, BoxJustify, BoxLayout, BoxProps, BoxRadius, BoxSpace, BoxSurface, BoxWidth, } from './contract';
@@ -1,15 +1,17 @@
1
1
  import { type PropState } from '../../runtime';
2
- import { BUTTON_TYPES, type Alignment, type CommonButtonType, type ControlSize, type IconVariant } from '../common';
3
- declare const BUTTON_VARIANTS: readonly ["default", "outline", "subtle", "filled", "ghost", "link"];
4
- declare const BUTTON_COLORS: readonly ["neutral", "accent", "success", "warning", "danger"];
2
+ import { BUTTON_TYPES, type Alignment, type CommonButtonType, type ComponentRadius, type ControlSize, type IconVariant } from '../common';
3
+ declare const BUTTON_VARIANTS: readonly ["ghost", "soft", "surface", "outline", "solid", "link"];
4
+ declare const BUTTON_COLORS: readonly ["neutral", "accent", "danger"];
5
5
  declare const BUTTON_SIZES: readonly ["xs", "sm", "md", "lg", "xlg"];
6
6
  declare const BUTTON_ICON_VARIANTS: readonly ["outline", "solid", "mini", "micro"];
7
7
  declare const BUTTON_ALIGNS: readonly ["start", "center", "end"];
8
+ declare const BUTTON_RADII: readonly ["none", "xs", "sm", "md", "lg", "full"];
8
9
  declare const BUTTON_LOADING_MODES: readonly ["auto", "true", "false"];
9
10
  declare const buttonSchema: {
10
- variant: import("../../runtime/codecs").OneOfCodec<"outline" | "link" | "default" | "filled" | "subtle" | "ghost">;
11
- color: import("../../runtime/codecs").OneOfCodec<"neutral" | "accent" | "success" | "warning" | "danger">;
11
+ variant: import("../../runtime/codecs").OneOfCodec<"outline" | "link" | "solid" | "ghost" | "soft" | "surface">;
12
+ color: import("../../runtime/codecs").OneOfCodec<"accent" | "danger" | "neutral">;
12
13
  size: import("../../runtime/codecs").OneOfCodec<"xs" | "sm" | "md" | "lg" | "xlg">;
14
+ radius: import("../../runtime/codecs").OneOfCodec<"none" | "xs" | "sm" | "md" | "lg" | "full">;
13
15
  type: import("../../runtime/codecs").OneOfCodec<"reset" | "submit" | "button">;
14
16
  href: import("../../runtime/codecs").StringCodec;
15
17
  disabled: import("../../runtime/codecs").BoolCodec;
@@ -25,10 +27,11 @@ declare const buttonSchema: {
25
27
  type ButtonVariant = typeof BUTTON_VARIANTS[number];
26
28
  type ButtonColor = typeof BUTTON_COLORS[number];
27
29
  type ButtonSize = ControlSize;
30
+ type ButtonRadius = ComponentRadius;
28
31
  type ButtonType = CommonButtonType;
29
32
  type ButtonIconVariant = IconVariant;
30
33
  type ButtonAlign = Alignment;
31
34
  type ButtonLoadingMode = typeof BUTTON_LOADING_MODES[number];
32
35
  type ButtonProps = PropState<typeof buttonSchema>;
33
- export { BUTTON_ALIGNS, BUTTON_COLORS, BUTTON_ICON_VARIANTS, BUTTON_LOADING_MODES, BUTTON_SIZES, BUTTON_TYPES, BUTTON_VARIANTS, buttonSchema, };
34
- export type { ButtonAlign, ButtonColor, ButtonIconVariant, ButtonLoadingMode, ButtonProps, ButtonSize, ButtonType, ButtonVariant, };
36
+ export { BUTTON_ALIGNS, BUTTON_COLORS, BUTTON_ICON_VARIANTS, BUTTON_LOADING_MODES, BUTTON_RADII, BUTTON_SIZES, BUTTON_TYPES, BUTTON_VARIANTS, buttonSchema, };
37
+ export type { ButtonAlign, ButtonColor, ButtonIconVariant, ButtonLoadingMode, ButtonProps, ButtonRadius, ButtonSize, ButtonType, ButtonVariant, };
@@ -1,20 +1,32 @@
1
1
  import { type PropState } from '../../runtime';
2
- declare const CARD_AS_VALUES: readonly ["div", "section", "article", "aside"];
3
- declare const CARD_VARIANTS: readonly ["surface", "outline", "none"];
2
+ import { type Elevation, type LayoutSpace, type Surface, type SurfaceTone } from '../common';
3
+ declare const CARD_AS_VALUES: readonly ["div", "section", "article", "aside", "label"];
4
+ declare const CARD_SURFACES: readonly ["none", "app", "chrome", "subtle", "panel", "raised", "overlay", "accent", "inverse"];
5
+ declare const CARD_TONES: readonly ["solid", "alpha"];
6
+ declare const CARD_ELEVATIONS: readonly ["none", "1", "2", "3", "4", "5", "6"];
4
7
  declare const CARD_SIZES: readonly ["sm", "md"];
5
- declare const CARD_SPACES: readonly ["0", "1", "2", "3", "4", "5", "6"];
8
+ declare const CARD_SPACES: readonly ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
6
9
  declare const CARD_TITLE_AS_VALUES: readonly ["h2", "h3", "h4", "div"];
7
10
  declare const CARD_FOOTER_LAYOUTS: readonly ["row", "stack"];
8
11
  declare const CARD_FOOTER_ALIGNS: readonly ["start", "end", "between", "stretch"];
9
12
  declare const cardSchema: {
10
- as: import("../../runtime/codecs").OneOfCodec<"article" | "aside" | "div" | "section">;
13
+ as: import("../../runtime/codecs").OneOfCodec<"article" | "aside" | "div" | "label" | "section">;
11
14
  href: import("../../runtime/codecs").StringCodec;
12
15
  label: import("../../runtime/codecs").StringCodec;
13
16
  interactive: import("../../runtime/codecs").BoolCodec;
14
- variant: import("../../runtime/codecs").OneOfCodec<"outline" | "none" | "surface">;
17
+ surface: import("../../runtime/codecs").OneOfCodec<"none" | "subtle" | "accent" | "app" | "chrome" | "panel" | "raised" | "overlay" | "inverse">;
18
+ tone: import("../../runtime/codecs").OneOfCodec<"solid" | "alpha">;
19
+ elevation: import("../../runtime/codecs").OneOfCodec<"1" | "none" | "2" | "3" | "4" | "5" | "6">;
15
20
  size: import("../../runtime/codecs").OneOfCodec<"sm" | "md">;
16
- padding: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6">;
17
- gap: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6">;
21
+ padding: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
22
+ paddingX: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
23
+ paddingY: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
24
+ gap: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
25
+ gapX: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
26
+ gapY: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
27
+ margin: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
28
+ marginX: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
29
+ marginY: import("../../runtime/codecs").OneOfCodec<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9">;
18
30
  class: import("../../runtime/codecs").StringCodec;
19
31
  };
20
32
  declare const cardHeaderSchema: {
@@ -39,9 +51,11 @@ declare const cardFooterSchema: {
39
51
  class: import("../../runtime/codecs").StringCodec;
40
52
  };
41
53
  type CardAs = typeof CARD_AS_VALUES[number];
42
- type CardVariant = typeof CARD_VARIANTS[number];
54
+ type CardSurface = Surface;
55
+ type CardTone = SurfaceTone;
56
+ type CardElevation = Elevation;
43
57
  type CardSize = typeof CARD_SIZES[number];
44
- type CardSpace = typeof CARD_SPACES[number];
58
+ type CardSpace = LayoutSpace;
45
59
  type CardTitleAs = typeof CARD_TITLE_AS_VALUES[number];
46
60
  type CardFooterLayout = typeof CARD_FOOTER_LAYOUTS[number];
47
61
  type CardFooterAlign = typeof CARD_FOOTER_ALIGNS[number];
@@ -52,5 +66,5 @@ type CardDescriptionProps = PropState<typeof cardDescriptionSchema>;
52
66
  type CardActionProps = PropState<typeof cardActionSchema>;
53
67
  type CardContentProps = PropState<typeof cardContentSchema>;
54
68
  type CardFooterProps = PropState<typeof cardFooterSchema>;
55
- export { CARD_AS_VALUES, CARD_FOOTER_ALIGNS, CARD_FOOTER_LAYOUTS, CARD_SIZES, CARD_SPACES, CARD_TITLE_AS_VALUES, CARD_VARIANTS, cardActionSchema, cardContentSchema, cardDescriptionSchema, cardFooterSchema, cardHeaderSchema, cardSchema, cardTitleSchema, };
56
- export type { CardActionProps, CardAs, CardContentProps, CardDescriptionProps, CardFooterAlign, CardFooterLayout, CardFooterProps, CardHeaderProps, CardProps, CardSize, CardSpace, CardTitleAs, CardTitleProps, CardVariant, };
69
+ export { CARD_AS_VALUES, CARD_ELEVATIONS, CARD_FOOTER_ALIGNS, CARD_FOOTER_LAYOUTS, CARD_SIZES, CARD_SPACES, CARD_SURFACES, CARD_TONES, CARD_TITLE_AS_VALUES, cardActionSchema, cardContentSchema, cardDescriptionSchema, cardFooterSchema, cardHeaderSchema, cardSchema, cardTitleSchema, };
70
+ export type { CardActionProps, CardAs, CardContentProps, CardDescriptionProps, CardElevation, CardFooterAlign, CardFooterLayout, CardFooterProps, CardHeaderProps, CardProps, CardSize, CardSpace, CardSurface, CardTitleAs, CardTitleProps, CardTone, };
@@ -1,12 +1,14 @@
1
1
  import { type PropState } from '../../runtime';
2
- import { type Alignment, type ControlSize, type ControlVariant, type IconVariant, type Position } from '../common';
2
+ import { type Alignment, type ComponentRadius, type ControlSize, type ControlVariant, type IconVariant, type Position } from '../common';
3
3
  declare const COMBOBOX_SIZES: readonly ["xs", "sm", "md", "lg", "xlg"];
4
4
  declare const COMBOBOX_VARIANTS: readonly ["outline", "filled"];
5
+ declare const COMBOBOX_RADII: readonly ["none", "xs", "sm", "md", "lg", "full"];
5
6
  declare const COMBOBOX_SIDES: readonly ["bottom", "top", "left", "right"];
6
7
  declare const COMBOBOX_ALIGNS: readonly ["start", "center", "end"];
7
8
  declare const COMBOBOX_ICON_VARIANTS: readonly ["outline", "solid", "mini", "micro"];
8
9
  type ComboboxSize = ControlSize;
9
10
  type ComboboxVariant = ControlVariant;
11
+ type ComboboxRadius = ComponentRadius;
10
12
  type ComboboxSide = Position;
11
13
  type ComboboxAlign = Alignment;
12
14
  type ComboboxIconVariant = IconVariant;
@@ -28,6 +30,7 @@ declare const comboboxSchema: {
28
30
  loop: import("../../runtime/codecs").BoolCodec;
29
31
  size: import("../../runtime/codecs").OneOfCodec<"xs" | "sm" | "md" | "lg" | "xlg">;
30
32
  variant: import("../../runtime/codecs").OneOfCodec<"outline" | "filled">;
33
+ radius: import("../../runtime/codecs").OneOfCodec<"none" | "xs" | "sm" | "md" | "lg" | "full">;
31
34
  side: import("../../runtime/codecs").OneOfCodec<"bottom" | "left" | "right" | "top">;
32
35
  align: import("../../runtime/codecs").OneOfCodec<"end" | "center" | "start">;
33
36
  offset: import("../../runtime/codecs").NumberCodec;
@@ -53,5 +56,5 @@ declare const comboboxOptionSchema: {
53
56
  };
54
57
  type ComboboxProps = PropState<typeof comboboxSchema>;
55
58
  type ComboboxOptionProps = PropState<typeof comboboxOptionSchema>;
56
- export { COMBOBOX_ALIGNS, COMBOBOX_ICON_VARIANTS, COMBOBOX_SIDES, COMBOBOX_SIZES, COMBOBOX_VARIANTS, comboboxOptionSchema, comboboxSchema, };
57
- export type { ComboboxAlign, ComboboxIconVariant, ComboboxOptionProps, ComboboxSide, ComboboxProps, ComboboxSize, ComboboxVariant, };
59
+ export { COMBOBOX_ALIGNS, COMBOBOX_ICON_VARIANTS, COMBOBOX_RADII, COMBOBOX_SIDES, COMBOBOX_SIZES, COMBOBOX_VARIANTS, comboboxOptionSchema, comboboxSchema, };
60
+ export type { ComboboxAlign, ComboboxIconVariant, ComboboxOptionProps, ComboboxRadius, ComboboxSide, ComboboxProps, ComboboxSize, ComboboxVariant, };
@@ -9,6 +9,242 @@ declare const ORIENTATIONS: readonly ["vertical", "horizontal"];
9
9
  declare const INDICATOR_PLACEMENTS: readonly ["leading", "trailing", "center", "top-leading", "top-trailing", "bottom-leading", "bottom-trailing"];
10
10
  declare const DEFAULT_VARIANTS: readonly ["default"];
11
11
  declare const HEADING_LEVELS: readonly ["h1", "h2", "h3", "h4", "h5", "h6"];
12
+ declare const TYPOGRAPHY_COLORS: readonly ["inherit", "muted", "subtle", "accent", "danger"];
13
+ declare const ICON_COLORS: readonly ["inherit", "muted", "subtle", "accent", "danger"];
14
+ type TypographyColor = typeof TYPOGRAPHY_COLORS[number];
15
+ type IconColor = typeof ICON_COLORS[number];
16
+ declare const TYPOGRAPHY_COLOR_CLASSES: {
17
+ readonly inherit: "text-inherit";
18
+ readonly muted: "text-foreground-muted";
19
+ readonly subtle: "text-foreground-subtle";
20
+ readonly accent: "text-accent-text";
21
+ readonly danger: "text-danger-text";
22
+ };
23
+ declare const ICON_COLOR_CLASSES: {
24
+ readonly inherit: "text-current";
25
+ readonly muted: "text-foreground-muted";
26
+ readonly subtle: "text-foreground-subtle";
27
+ readonly accent: "text-accent-text";
28
+ readonly danger: "text-danger-text";
29
+ };
30
+ declare const LAYOUT_SPACES: readonly ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
31
+ type LayoutSpace = typeof LAYOUT_SPACES[number];
32
+ declare const LAYOUT_GAP_CLASSES: {
33
+ readonly '0': "";
34
+ readonly '1': "gap-1";
35
+ readonly '2': "gap-2";
36
+ readonly '3': "gap-3";
37
+ readonly '4': "gap-4";
38
+ readonly '5': "gap-5";
39
+ readonly '6': "gap-6";
40
+ readonly '7': "gap-7";
41
+ readonly '8': "gap-8";
42
+ readonly '9': "gap-9";
43
+ };
44
+ declare const LAYOUT_GAP_X_CLASSES: {
45
+ readonly '0': "";
46
+ readonly '1': "gap-x-1";
47
+ readonly '2': "gap-x-2";
48
+ readonly '3': "gap-x-3";
49
+ readonly '4': "gap-x-4";
50
+ readonly '5': "gap-x-5";
51
+ readonly '6': "gap-x-6";
52
+ readonly '7': "gap-x-7";
53
+ readonly '8': "gap-x-8";
54
+ readonly '9': "gap-x-9";
55
+ };
56
+ declare const LAYOUT_GAP_Y_CLASSES: {
57
+ readonly '0': "";
58
+ readonly '1': "gap-y-1";
59
+ readonly '2': "gap-y-2";
60
+ readonly '3': "gap-y-3";
61
+ readonly '4': "gap-y-4";
62
+ readonly '5': "gap-y-5";
63
+ readonly '6': "gap-y-6";
64
+ readonly '7': "gap-y-7";
65
+ readonly '8': "gap-y-8";
66
+ readonly '9': "gap-y-9";
67
+ };
68
+ declare const LAYOUT_PADDING_CLASSES: {
69
+ readonly '0': "";
70
+ readonly '1': "p-1";
71
+ readonly '2': "p-2";
72
+ readonly '3': "p-3";
73
+ readonly '4': "p-4";
74
+ readonly '5': "p-5";
75
+ readonly '6': "p-6";
76
+ readonly '7': "p-7";
77
+ readonly '8': "p-8";
78
+ readonly '9': "p-9";
79
+ };
80
+ declare const LAYOUT_PADDING_X_CLASSES: {
81
+ readonly '0': "";
82
+ readonly '1': "px-1";
83
+ readonly '2': "px-2";
84
+ readonly '3': "px-3";
85
+ readonly '4': "px-4";
86
+ readonly '5': "px-5";
87
+ readonly '6': "px-6";
88
+ readonly '7': "px-7";
89
+ readonly '8': "px-8";
90
+ readonly '9': "px-9";
91
+ };
92
+ declare const LAYOUT_PADDING_Y_CLASSES: {
93
+ readonly '0': "";
94
+ readonly '1': "py-1";
95
+ readonly '2': "py-2";
96
+ readonly '3': "py-3";
97
+ readonly '4': "py-4";
98
+ readonly '5': "py-5";
99
+ readonly '6': "py-6";
100
+ readonly '7': "py-7";
101
+ readonly '8': "py-8";
102
+ readonly '9': "py-9";
103
+ };
104
+ declare const LAYOUT_MARGIN_CLASSES: {
105
+ readonly '0': "";
106
+ readonly '1': "m-1";
107
+ readonly '2': "m-2";
108
+ readonly '3': "m-3";
109
+ readonly '4': "m-4";
110
+ readonly '5': "m-5";
111
+ readonly '6': "m-6";
112
+ readonly '7': "m-7";
113
+ readonly '8': "m-8";
114
+ readonly '9': "m-9";
115
+ };
116
+ declare const LAYOUT_MARGIN_X_CLASSES: {
117
+ readonly '0': "";
118
+ readonly '1': "mx-1";
119
+ readonly '2': "mx-2";
120
+ readonly '3': "mx-3";
121
+ readonly '4': "mx-4";
122
+ readonly '5': "mx-5";
123
+ readonly '6': "mx-6";
124
+ readonly '7': "mx-7";
125
+ readonly '8': "mx-8";
126
+ readonly '9': "mx-9";
127
+ };
128
+ declare const LAYOUT_MARGIN_Y_CLASSES: {
129
+ readonly '0': "";
130
+ readonly '1': "my-1";
131
+ readonly '2': "my-2";
132
+ readonly '3': "my-3";
133
+ readonly '4': "my-4";
134
+ readonly '5': "my-5";
135
+ readonly '6': "my-6";
136
+ readonly '7': "my-7";
137
+ readonly '8': "my-8";
138
+ readonly '9': "my-9";
139
+ };
140
+ declare const COMPONENT_RADII: readonly ["none", "xs", "sm", "md", "lg", "full"];
141
+ declare const SURFACES: readonly ["none", "app", "chrome", "subtle", "panel", "raised", "overlay", "accent", "inverse"];
142
+ declare const SURFACE_TONES: readonly ["solid", "alpha"];
143
+ declare const ELEVATIONS: readonly ["none", "1", "2", "3", "4", "5", "6"];
144
+ type Surface = typeof SURFACES[number];
145
+ type SurfaceTone = typeof SURFACE_TONES[number];
146
+ type Elevation = typeof ELEVATIONS[number];
147
+ declare const SURFACE_CLASSES: {
148
+ readonly none: "bg-transparent text-inherit";
149
+ readonly app: "bg-app text-foreground";
150
+ readonly chrome: "bg-chrome text-foreground";
151
+ readonly subtle: "bg-surface-subtle text-foreground";
152
+ readonly panel: "bg-surface-panel text-foreground";
153
+ readonly raised: "bg-surface-raised text-foreground";
154
+ readonly overlay: "bg-surface-overlay text-foreground";
155
+ readonly accent: "bg-surface-accent text-surface-accent-fg";
156
+ readonly inverse: "bg-surface-inverse text-surface-inverse-fg";
157
+ };
158
+ declare const SURFACE_TONE_CLASSES: {
159
+ readonly solid: "";
160
+ readonly alpha: "";
161
+ };
162
+ declare const SURFACE_ALPHA_COMPOUNDS: readonly [{
163
+ readonly when: {
164
+ readonly surface: "chrome";
165
+ readonly tone: "alpha";
166
+ };
167
+ readonly class: "bg-chrome-alpha";
168
+ }, {
169
+ readonly when: {
170
+ readonly surface: "panel";
171
+ readonly tone: "alpha";
172
+ };
173
+ readonly class: "bg-surface-panel-alpha";
174
+ }, {
175
+ readonly when: {
176
+ readonly surface: "overlay";
177
+ readonly tone: "alpha";
178
+ };
179
+ readonly class: "bg-surface-overlay-alpha";
180
+ }];
181
+ declare const SURFACE_RADIUS_CLASSES: {
182
+ readonly none: "";
183
+ readonly xs: "rounded-1";
184
+ readonly sm: "rounded-2";
185
+ readonly md: "rounded-3";
186
+ readonly lg: "rounded-4";
187
+ readonly full: "rounded-6";
188
+ };
189
+ declare const ELEVATION_CLASSES: {
190
+ readonly none: "shadow-none";
191
+ readonly '1': "shadow-1";
192
+ readonly '2': "shadow-2";
193
+ readonly '3': "shadow-3";
194
+ readonly '4': "shadow-4";
195
+ readonly '5': "shadow-5";
196
+ readonly '6': "shadow-6";
197
+ };
198
+ declare const CONTROL_RADIUS_BY_SIZE: {
199
+ readonly xs: {
200
+ readonly none: "";
201
+ readonly xs: "rounded-1";
202
+ readonly sm: "rounded-1";
203
+ readonly md: "rounded-2";
204
+ readonly lg: "rounded-3";
205
+ readonly full: "rounded-full";
206
+ };
207
+ readonly sm: {
208
+ readonly none: "";
209
+ readonly xs: "rounded-1";
210
+ readonly sm: "rounded-2";
211
+ readonly md: "rounded-2";
212
+ readonly lg: "rounded-3";
213
+ readonly full: "rounded-full";
214
+ };
215
+ readonly md: {
216
+ readonly none: "";
217
+ readonly xs: "rounded-1";
218
+ readonly sm: "rounded-2";
219
+ readonly md: "rounded-3";
220
+ readonly lg: "rounded-4";
221
+ readonly full: "rounded-full";
222
+ };
223
+ readonly lg: {
224
+ readonly none: "";
225
+ readonly xs: "rounded-2";
226
+ readonly sm: "rounded-3";
227
+ readonly md: "rounded-4";
228
+ readonly lg: "rounded-5";
229
+ readonly full: "rounded-full";
230
+ };
231
+ readonly xlg: {
232
+ readonly none: "";
233
+ readonly xs: "rounded-2";
234
+ readonly sm: "rounded-3";
235
+ readonly md: "rounded-4";
236
+ readonly lg: "rounded-5";
237
+ readonly full: "rounded-full";
238
+ };
239
+ };
240
+ type ControlRadiusCompound = {
241
+ when: {
242
+ size: typeof CONTROL_SIZES[number];
243
+ radius: typeof COMPONENT_RADII[number];
244
+ };
245
+ class: string;
246
+ };
247
+ declare const CONTROL_RADIUS_COMPOUNDS: ControlRadiusCompound[];
12
248
  declare const CONTROL_ROOT_CLASSES: string[];
13
249
  declare const CONTROL_MULTILINE_ROOT_CLASSES: string[];
14
250
  declare const CONTROL_OPEN_CLASSES: string[];
@@ -57,5 +293,6 @@ type Orientation = typeof ORIENTATIONS[number];
57
293
  type IndicatorPlacement = typeof INDICATOR_PLACEMENTS[number];
58
294
  type DefaultVariant = typeof DEFAULT_VARIANTS[number];
59
295
  type HeadingLevel = typeof HEADING_LEVELS[number];
60
- export { ALIGNMENTS, BUTTON_TYPES, CONTROL_ACTION_CLASSES, CONTROL_INPUT_CLASSES, CONTROL_MIN_SIZE_CLASSES, CONTROL_MULTILINE_ROOT_CLASSES, CONTROL_MULTILINE_SIZE_CLASSES, CONTROL_NATIVE_CLASSES, CONTROL_OPEN_CLASSES, CONTROL_ROOT_CLASSES, CONTROL_SIZES, CONTROL_SIZE_CLASSES, CONTROL_VARIANT_CLASSES, CONTROL_VARIANTS, DEFAULT_VARIANTS, EDGE_POSITIONS, HEADING_LEVELS, ICON_VARIANTS, INDICATOR_PLACEMENTS, INTERACTIVE_ITEM_CLASSES, INTERACTIVE_SURFACE_CLASSES, OPTION_ICON_CLASSES, OPTION_INDICATOR_CLASSES, OPTION_ITEM_CLASSES, ORIENTATIONS, POPOVER_SURFACE_CLASSES, POSITIONS, };
61
- export type { Alignment, CommonButtonType, ControlSize, ControlVariant, DefaultVariant, EdgePosition, HeadingLevel, IconVariant, IndicatorPlacement, Orientation, Position, };
296
+ type ComponentRadius = typeof COMPONENT_RADII[number];
297
+ export { ALIGNMENTS, BUTTON_TYPES, COMPONENT_RADII, CONTROL_RADIUS_BY_SIZE, CONTROL_RADIUS_COMPOUNDS, CONTROL_ACTION_CLASSES, CONTROL_INPUT_CLASSES, CONTROL_MIN_SIZE_CLASSES, CONTROL_MULTILINE_ROOT_CLASSES, CONTROL_MULTILINE_SIZE_CLASSES, CONTROL_NATIVE_CLASSES, CONTROL_OPEN_CLASSES, CONTROL_ROOT_CLASSES, CONTROL_SIZES, CONTROL_SIZE_CLASSES, CONTROL_VARIANT_CLASSES, CONTROL_VARIANTS, DEFAULT_VARIANTS, EDGE_POSITIONS, ELEVATION_CLASSES, ELEVATIONS, HEADING_LEVELS, ICON_COLORS, ICON_COLOR_CLASSES, ICON_VARIANTS, INDICATOR_PLACEMENTS, INTERACTIVE_ITEM_CLASSES, INTERACTIVE_SURFACE_CLASSES, LAYOUT_GAP_CLASSES, LAYOUT_GAP_X_CLASSES, LAYOUT_GAP_Y_CLASSES, LAYOUT_MARGIN_CLASSES, LAYOUT_MARGIN_X_CLASSES, LAYOUT_MARGIN_Y_CLASSES, LAYOUT_PADDING_CLASSES, LAYOUT_PADDING_X_CLASSES, LAYOUT_PADDING_Y_CLASSES, LAYOUT_SPACES, OPTION_ICON_CLASSES, OPTION_INDICATOR_CLASSES, OPTION_ITEM_CLASSES, ORIENTATIONS, POPOVER_SURFACE_CLASSES, POSITIONS, SURFACE_ALPHA_COMPOUNDS, SURFACE_CLASSES, SURFACE_RADIUS_CLASSES, SURFACE_TONE_CLASSES, SURFACE_TONES, SURFACES, TYPOGRAPHY_COLOR_CLASSES, TYPOGRAPHY_COLORS, };
298
+ export type { Alignment, CommonButtonType, ComponentRadius, ControlSize, ControlVariant, DefaultVariant, EdgePosition, HeadingLevel, IconColor, IconVariant, IndicatorPlacement, LayoutSpace, Orientation, Position, Surface, SurfaceTone, Elevation, TypographyColor, };
@@ -1,16 +1,18 @@
1
1
  import { type PropState } from '../../runtime';
2
- import { type Alignment, type Position } from '../common';
2
+ import { type Alignment, type ComponentRadius, type Position } from '../common';
3
3
  declare const DATE_PICKER_MODES: readonly ["single", "range"];
4
4
  declare const DATE_PICKER_VARIANTS: readonly ["enhanced", "native"];
5
5
  declare const DATE_PICKER_MOBILE: readonly ["popover", "modal", "native"];
6
6
  declare const DATE_PICKER_CLOSE: readonly ["select", "confirm"];
7
7
  declare const DATE_PICKER_COLORS: readonly ["neutral", "accent"];
8
+ declare const DATE_PICKER_RADII: readonly ["none", "xs", "sm", "md", "lg", "full"];
8
9
  declare const DATE_PICKER_PRESETS_POSITIONS: readonly ["left", "right", "top", "bottom"];
9
10
  type DatePickerMode = typeof DATE_PICKER_MODES[number];
10
11
  type DatePickerVariant = typeof DATE_PICKER_VARIANTS[number];
11
12
  type DatePickerMobile = typeof DATE_PICKER_MOBILE[number];
12
13
  type DatePickerClose = typeof DATE_PICKER_CLOSE[number];
13
14
  type DatePickerColor = typeof DATE_PICKER_COLORS[number];
15
+ type DatePickerRadius = ComponentRadius;
14
16
  type DatePickerPresetsPosition = typeof DATE_PICKER_PRESETS_POSITIONS[number];
15
17
  type DatePickerSide = Position;
16
18
  type DatePickerAlign = Alignment;
@@ -52,7 +54,8 @@ declare const datePickerSchema: {
52
54
  gap: import("../../runtime/codecs").NumberCodec;
53
55
  mobile: import("../../runtime/codecs").OneOfCodec<"popover" | "modal" | "native">;
54
56
  variant: import("../../runtime/codecs").OneOfCodec<"enhanced" | "native">;
55
- color: import("../../runtime/codecs").OneOfCodec<"neutral" | "accent">;
57
+ color: import("../../runtime/codecs").OneOfCodec<"accent" | "neutral">;
58
+ radius: import("../../runtime/codecs").OneOfCodec<"none" | "xs" | "sm" | "md" | "lg" | "full">;
56
59
  close: import("../../runtime/codecs").OneOfCodec<"select" | "confirm">;
57
60
  presets: import("../../runtime/codecs").JsonCodec<DatePickerPreset[]>;
58
61
  presetsPosition: import("../../runtime/codecs").OneOfCodec<"bottom" | "left" | "right" | "top">;
@@ -82,5 +85,5 @@ declare const datePickerPresetsSchema: {
82
85
  type DatePickerProps = PropState<typeof datePickerSchema>;
83
86
  type DatePickerPresetProps = PropState<typeof datePickerPresetSchema>;
84
87
  type DatePickerPresetsProps = PropState<typeof datePickerPresetsSchema>;
85
- export { DATE_PICKER_CLOSE, DATE_PICKER_COLORS, DATE_PICKER_MOBILE, DATE_PICKER_MODES, DATE_PICKER_PRESETS_POSITIONS, DATE_PICKER_VARIANTS, datePickerPresetSchema, datePickerPresetsSchema, datePickerSchema, };
86
- export type { DatePickerAlign, DatePickerClose, DatePickerColor, DatePickerMobile, DatePickerMode, DatePickerPreset, DatePickerPresetProps, DatePickerPresetsPosition, DatePickerPresetsProps, DatePickerProps, DatePickerSide, DatePickerVariant, };
88
+ export { DATE_PICKER_CLOSE, DATE_PICKER_COLORS, DATE_PICKER_MOBILE, DATE_PICKER_MODES, DATE_PICKER_PRESETS_POSITIONS, DATE_PICKER_RADII, DATE_PICKER_VARIANTS, datePickerPresetSchema, datePickerPresetsSchema, datePickerSchema, };
89
+ export type { DatePickerAlign, DatePickerClose, DatePickerColor, DatePickerMobile, DatePickerMode, DatePickerPreset, DatePickerPresetProps, DatePickerPresetsPosition, DatePickerPresetsProps, DatePickerProps, DatePickerRadius, DatePickerSide, DatePickerVariant, };
@@ -14,6 +14,7 @@ type FileUploadData = {
14
14
  listeners: CleanupStack;
15
15
  files: PendingFile[];
16
16
  limitReached: boolean;
17
+ emptyInputChangeClears: boolean;
17
18
  root(): HTMLElement;
18
19
  input(): HTMLInputElement;
19
20
  dropzone(): HTMLElement | null;