@lssm/lib.ui-kit 0.0.0-canary-20251206160926 → 0.0.0-canary-20251207012602

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 (57) hide show
  1. package/dist/ui/accordion.d.ts +5 -5
  2. package/dist/ui/alert-dialog.d.ts +11 -11
  3. package/dist/ui/alert.d.ts +4 -4
  4. package/dist/ui/avatar.d.ts +4 -4
  5. package/dist/ui/badge.d.ts +2 -2
  6. package/dist/ui/breadcrumb.d.ts +8 -8
  7. package/dist/ui/button.d.ts +2 -2
  8. package/dist/ui/card.d.ts +7 -7
  9. package/dist/ui/context-menu.d.ts +10 -10
  10. package/dist/ui/date-picker.d.ts +2 -2
  11. package/dist/ui/date-range-picker.d.ts +2 -2
  12. package/dist/ui/datetime-picker.d.ts +2 -2
  13. package/dist/ui/dialog.d.ts +7 -7
  14. package/dist/ui/dropdown-menu.d.ts +10 -10
  15. package/dist/ui/empty-state.d.ts +4 -4
  16. package/dist/ui/empty.d.ts +9 -9
  17. package/dist/ui/fab.d.ts +3 -3
  18. package/dist/ui/field.d.ts +14 -14
  19. package/dist/ui/form.d.ts +7 -7
  20. package/dist/ui/hover-card.d.ts +6 -6
  21. package/dist/ui/input.d.ts +2 -2
  22. package/dist/ui/label.d.ts +2 -2
  23. package/dist/ui/link.d.ts +2 -2
  24. package/dist/ui/loading-button.d.ts +2 -2
  25. package/dist/ui/loading-overlay.d.ts +2 -2
  26. package/dist/ui/loading-screen.d.ts +2 -2
  27. package/dist/ui/marketing/FeatureGrid.d.ts +2 -2
  28. package/dist/ui/marketing/Hero.d.ts +2 -2
  29. package/dist/ui/marketing/PricingTable.d.ts +2 -2
  30. package/dist/ui/menubar.d.ts +17 -17
  31. package/dist/ui/molecules/SkeletonList.d.ts +2 -2
  32. package/dist/ui/navigation-menu.d.ts +12 -12
  33. package/dist/ui/organisms/ErrorBoundary/ErrorBoundary.d.ts +2 -2
  34. package/dist/ui/organisms/ListPage/ListPage.d.ts +2 -2
  35. package/dist/ui/page-header.d.ts +4 -4
  36. package/dist/ui/password-strength.d.ts +2 -2
  37. package/dist/ui/popover.d.ts +6 -6
  38. package/dist/ui/progress.d.ts +2 -2
  39. package/dist/ui/radio-group.d.ts +3 -3
  40. package/dist/ui/select.d.ts +13 -13
  41. package/dist/ui/separator.d.ts +2 -2
  42. package/dist/ui/skeleton.d.ts +2 -2
  43. package/dist/ui/stack.d.ts +17 -17
  44. package/dist/ui/stepper.d.ts +4 -4
  45. package/dist/ui/switch.d.ts +2 -2
  46. package/dist/ui/table.d.ts +8 -8
  47. package/dist/ui/tabs.d.ts +9 -9
  48. package/dist/ui/text.d.ts +2 -2
  49. package/dist/ui/time-picker.d.ts +2 -2
  50. package/dist/ui/toggle-group.d.ts +4 -4
  51. package/dist/ui/toggle.d.ts +6 -6
  52. package/dist/ui/tooltip.d.ts +6 -6
  53. package/dist/ui/typography.d.ts +12 -12
  54. package/dist/ui/useColorScheme.d.ts +2 -2
  55. package/dist/ui/usecases/UseCaseCard.d.ts +2 -2
  56. package/dist/ui/usecases/UserStoryCard.d.ts +2 -2
  57. package/package.json +1 -1
@@ -1,57 +1,57 @@
1
1
  import { Label } from "./label.js";
2
2
  import { BoxProps } from "./stack.js";
3
3
  import { TypographyProps } from "./typography.js";
4
- import * as react_jsx_runtime118 from "react/jsx-runtime";
4
+ import * as react_jsx_runtime80 from "react/jsx-runtime";
5
5
  import { VariantProps } from "class-variance-authority";
6
- import * as class_variance_authority_types11 from "class-variance-authority/types";
6
+ import * as class_variance_authority_types5 from "class-variance-authority/types";
7
7
 
8
8
  //#region ui/field.d.ts
9
9
  declare function FieldSet({
10
10
  className,
11
11
  ...props
12
- }: BoxProps): react_jsx_runtime118.JSX.Element;
12
+ }: BoxProps): react_jsx_runtime80.JSX.Element;
13
13
  declare function FieldLegend({
14
14
  className,
15
15
  variant,
16
16
  ...props
17
17
  }: BoxProps & {
18
18
  variant?: 'legend' | 'label';
19
- }): react_jsx_runtime118.JSX.Element;
19
+ }): react_jsx_runtime80.JSX.Element;
20
20
  declare function FieldGroup({
21
21
  className,
22
22
  ...props
23
- }: BoxProps): react_jsx_runtime118.JSX.Element;
23
+ }: BoxProps): react_jsx_runtime80.JSX.Element;
24
24
  declare const fieldVariants: (props?: ({
25
- orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
26
- } & class_variance_authority_types11.ClassProp) | undefined) => string;
25
+ orientation?: "vertical" | "horizontal" | "responsive" | null | undefined;
26
+ } & class_variance_authority_types5.ClassProp) | undefined) => string;
27
27
  declare function Field({
28
28
  className,
29
29
  orientation,
30
30
  ...props
31
- }: BoxProps & VariantProps<typeof fieldVariants>): react_jsx_runtime118.JSX.Element;
31
+ }: BoxProps & VariantProps<typeof fieldVariants>): react_jsx_runtime80.JSX.Element;
32
32
  declare function FieldContent({
33
33
  className,
34
34
  ...props
35
- }: BoxProps): react_jsx_runtime118.JSX.Element;
35
+ }: BoxProps): react_jsx_runtime80.JSX.Element;
36
36
  declare function FieldLabel({
37
37
  className,
38
38
  ...props
39
- }: React.ComponentProps<typeof Label>): react_jsx_runtime118.JSX.Element;
39
+ }: React.ComponentProps<typeof Label>): react_jsx_runtime80.JSX.Element;
40
40
  declare function FieldTitle({
41
41
  className,
42
42
  ...props
43
- }: BoxProps): react_jsx_runtime118.JSX.Element;
43
+ }: BoxProps): react_jsx_runtime80.JSX.Element;
44
44
  declare function FieldDescription({
45
45
  className,
46
46
  ...props
47
- }: TypographyProps): react_jsx_runtime118.JSX.Element;
47
+ }: TypographyProps): react_jsx_runtime80.JSX.Element;
48
48
  declare function FieldSeparator({
49
49
  children,
50
50
  className,
51
51
  ...props
52
52
  }: BoxProps & {
53
53
  children?: React.ReactNode;
54
- }): react_jsx_runtime118.JSX.Element;
54
+ }): react_jsx_runtime80.JSX.Element;
55
55
  declare function FieldError({
56
56
  className,
57
57
  children,
@@ -61,6 +61,6 @@ declare function FieldError({
61
61
  errors?: ({
62
62
  message?: string;
63
63
  } | undefined)[];
64
- }): react_jsx_runtime118.JSX.Element | null;
64
+ }): react_jsx_runtime80.JSX.Element | null;
65
65
  //#endregion
66
66
  export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle };
package/dist/ui/form.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Label } from "./label.js";
2
2
  import * as React$1 from "react";
3
3
  import { View } from "react-native";
4
- import * as react_jsx_runtime134 from "react/jsx-runtime";
4
+ import * as react_jsx_runtime90 from "react/jsx-runtime";
5
5
  import * as react_hook_form0 from "react-hook-form";
6
6
  import { ControllerProps, FieldPath, FieldValues, UseFormReturn, useFieldArray, useForm } from "react-hook-form";
7
7
  import { zodResolver } from "@hookform/resolvers/zod";
@@ -10,7 +10,7 @@ import { zodResolver } from "@hookform/resolvers/zod";
10
10
  declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form0.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
11
11
  declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({
12
12
  ...props
13
- }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime134.JSX.Element;
13
+ }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime90.JSX.Element;
14
14
  declare const useFormField: () => {
15
15
  invalid: boolean;
16
16
  isDirty: boolean;
@@ -26,24 +26,24 @@ declare const useFormField: () => {
26
26
  declare function FormItem({
27
27
  className,
28
28
  ...props
29
- }: React$1.ComponentProps<'div'>): react_jsx_runtime134.JSX.Element;
29
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime90.JSX.Element;
30
30
  declare function FormLabel({
31
31
  className,
32
32
  ...props
33
- }: React$1.ComponentProps<typeof Label>): react_jsx_runtime134.JSX.Element;
33
+ }: React$1.ComponentProps<typeof Label>): react_jsx_runtime90.JSX.Element;
34
34
  declare function FormControl({
35
35
  asChild,
36
36
  ...props
37
37
  }: React$1.ComponentProps<typeof View> & {
38
38
  asChild?: boolean;
39
- }): react_jsx_runtime134.JSX.Element;
39
+ }): react_jsx_runtime90.JSX.Element;
40
40
  declare function FormDescription({
41
41
  className,
42
42
  ...props
43
- }: React$1.ComponentProps<'p'>): react_jsx_runtime134.JSX.Element;
43
+ }: React$1.ComponentProps<'p'>): react_jsx_runtime90.JSX.Element;
44
44
  declare function FormMessage({
45
45
  className,
46
46
  ...props
47
- }: React$1.ComponentProps<'p'>): react_jsx_runtime134.JSX.Element | null;
47
+ }: React$1.ComponentProps<'p'>): react_jsx_runtime90.JSX.Element | null;
48
48
  //#endregion
49
49
  export { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type UseFormReturn, useFieldArray, useForm, useFormField, zodResolver };
@@ -1,17 +1,17 @@
1
1
  import * as React$1 from "react";
2
- import * as react_native48 from "react-native";
3
- import * as react_jsx_runtime140 from "react/jsx-runtime";
2
+ import * as react_native25 from "react-native";
3
+ import * as react_jsx_runtime97 from "react/jsx-runtime";
4
4
  import * as _rn_primitives_hover_card0 from "@rn-primitives/hover-card";
5
5
 
6
6
  //#region ui/hover-card.d.ts
7
- declare const HoverCard: React$1.ForwardRefExoticComponent<react_native48.ViewProps & {
7
+ declare const HoverCard: React$1.ForwardRefExoticComponent<react_native25.ViewProps & {
8
8
  asChild?: boolean;
9
9
  } & {
10
10
  onOpenChange?: (open: boolean) => void;
11
11
  openDelay?: number;
12
12
  closeDelay?: number;
13
- } & React$1.RefAttributes<react_native48.View>>;
14
- declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<Omit<react_native48.PressableProps & React$1.RefAttributes<react_native48.View>, "ref"> & {
13
+ } & React$1.RefAttributes<react_native25.View>>;
14
+ declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<Omit<react_native25.PressableProps & React$1.RefAttributes<react_native25.View>, "ref"> & {
15
15
  asChild?: boolean;
16
16
  } & {
17
17
  onKeyDown?: (ev: React$1.KeyboardEvent) => void;
@@ -24,6 +24,6 @@ declare function HoverCardContent({
24
24
  ...props
25
25
  }: _rn_primitives_hover_card0.ContentProps & {
26
26
  ref?: React$1.RefObject<_rn_primitives_hover_card0.ContentRef>;
27
- }): react_jsx_runtime140.JSX.Element;
27
+ }): react_jsx_runtime97.JSX.Element;
28
28
  //#endregion
29
29
  export { HoverCard, HoverCardContent, HoverCardTrigger };
@@ -1,6 +1,6 @@
1
1
  import * as React$1 from "react";
2
2
  import { TextInput, TextInputProps } from "react-native";
3
- import * as react_jsx_runtime141 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime22 from "react/jsx-runtime";
4
4
 
5
5
  //#region ui/input.d.ts
6
6
  declare function Input({
@@ -9,6 +9,6 @@ declare function Input({
9
9
  ...props
10
10
  }: TextInputProps & {
11
11
  ref?: React$1.RefObject<TextInput>;
12
- }): react_jsx_runtime141.JSX.Element;
12
+ }): react_jsx_runtime22.JSX.Element;
13
13
  //#endregion
14
14
  export { Input };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime142 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime35 from "react/jsx-runtime";
2
2
  import * as LabelPrimitive from "@rn-primitives/label";
3
3
 
4
4
  //#region ui/label.d.ts
@@ -10,6 +10,6 @@ declare function Label({
10
10
  onPressOut,
11
11
  disabled,
12
12
  ...props
13
- }: LabelPrimitive.TextProps & React.RefAttributes<LabelPrimitive.TextRef>): react_jsx_runtime142.JSX.Element;
13
+ }: LabelPrimitive.TextProps & React.RefAttributes<LabelPrimitive.TextRef>): react_jsx_runtime35.JSX.Element;
14
14
  //#endregion
15
15
  export { Label };
package/dist/ui/link.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime143 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime21 from "react/jsx-runtime";
3
3
  import { Link as Link$1, LinkProps } from "expo-router";
4
4
 
5
5
  //#region ui/link.d.ts
@@ -8,6 +8,6 @@ declare function Link({
8
8
  ...props
9
9
  }: LinkProps & {
10
10
  ref?: React$1.RefObject<typeof Link$1>;
11
- }): react_jsx_runtime143.JSX.Element;
11
+ }): react_jsx_runtime21.JSX.Element;
12
12
  //#endregion
13
13
  export { Link };
@@ -1,6 +1,6 @@
1
1
  import { ButtonProps } from "./button.js";
2
2
  import React from "react";
3
- import * as react_jsx_runtime144 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime53 from "react/jsx-runtime";
4
4
 
5
5
  //#region ui/loading-button.d.ts
6
6
  interface LoadingButtonProps extends ButtonProps {
@@ -14,6 +14,6 @@ declare function LoadingButton({
14
14
  children,
15
15
  disabled,
16
16
  ...props
17
- }: LoadingButtonProps): react_jsx_runtime144.JSX.Element;
17
+ }: LoadingButtonProps): react_jsx_runtime53.JSX.Element;
18
18
  //#endregion
19
19
  export { LoadingButton };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime110 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime71 from "react/jsx-runtime";
2
2
 
3
3
  //#region ui/loading-overlay.d.ts
4
4
  interface LoadingOverlayProps {
@@ -10,6 +10,6 @@ declare function LoadingOverlay({
10
10
  isVisible,
11
11
  title,
12
12
  subtitle
13
- }: LoadingOverlayProps): react_jsx_runtime110.JSX.Element | null;
13
+ }: LoadingOverlayProps): react_jsx_runtime71.JSX.Element | null;
14
14
  //#endregion
15
15
  export { LoadingOverlay };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime145 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime96 from "react/jsx-runtime";
2
2
 
3
3
  //#region ui/loading-screen.d.ts
4
4
  interface LoadingScreenProps {
@@ -8,6 +8,6 @@ interface LoadingScreenProps {
8
8
  declare function LoadingScreen({
9
9
  title,
10
10
  variant
11
- }: LoadingScreenProps): react_jsx_runtime145.JSX.Element;
11
+ }: LoadingScreenProps): react_jsx_runtime96.JSX.Element;
12
12
  //#endregion
13
13
  export { LoadingScreen };
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime51 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime154 from "react/jsx-runtime";
3
3
 
4
4
  //#region ui/marketing/FeatureGrid.d.ts
5
5
  interface FeatureItem {
@@ -15,6 +15,6 @@ declare function FeatureGrid({
15
15
  items: FeatureItem[];
16
16
  columns?: 2 | 3 | 4;
17
17
  className?: string;
18
- }): react_jsx_runtime51.JSX.Element;
18
+ }): react_jsx_runtime154.JSX.Element;
19
19
  //#endregion
20
20
  export { FeatureGrid, FeatureItem };
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime52 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime155 from "react/jsx-runtime";
3
3
 
4
4
  //#region ui/marketing/Hero.d.ts
5
5
  declare function Hero({
@@ -22,6 +22,6 @@ declare function Hero({
22
22
  onClick?: () => void;
23
23
  };
24
24
  className?: string;
25
- }): react_jsx_runtime52.JSX.Element;
25
+ }): react_jsx_runtime155.JSX.Element;
26
26
  //#endregion
27
27
  export { Hero };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime18 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime156 from "react/jsx-runtime";
2
2
 
3
3
  //#region ui/marketing/PricingTable.d.ts
4
4
  interface PricingTier {
@@ -19,6 +19,6 @@ declare function PricingTable({
19
19
  }: {
20
20
  tiers: PricingTier[];
21
21
  className?: string;
22
- }): react_jsx_runtime18.JSX.Element;
22
+ }): react_jsx_runtime156.JSX.Element;
23
23
  //#endregion
24
24
  export { PricingTable, PricingTier };
@@ -1,27 +1,27 @@
1
1
  import * as React$1 from "react";
2
- import * as react_native52 from "react-native";
2
+ import * as react_native29 from "react-native";
3
3
  import { TextProps, View } from "react-native";
4
- import * as react_jsx_runtime146 from "react/jsx-runtime";
4
+ import * as react_jsx_runtime98 from "react/jsx-runtime";
5
5
  import * as MenubarPrimitive from "@rn-primitives/menubar";
6
6
 
7
7
  //#region ui/menubar.d.ts
8
- declare const MenubarMenu: React$1.ForwardRefExoticComponent<react_native52.ViewProps & {
8
+ declare const MenubarMenu: React$1.ForwardRefExoticComponent<react_native29.ViewProps & {
9
9
  asChild?: boolean;
10
10
  } & {
11
11
  value: string | undefined;
12
12
  } & React$1.RefAttributes<View>>;
13
- declare const MenubarGroup: React$1.ForwardRefExoticComponent<react_native52.ViewProps & {
13
+ declare const MenubarGroup: React$1.ForwardRefExoticComponent<react_native29.ViewProps & {
14
14
  asChild?: boolean;
15
15
  } & React$1.RefAttributes<View>>;
16
16
  declare const MenubarPortal: typeof MenubarPrimitive.Portal;
17
- declare const MenubarSub: React$1.ForwardRefExoticComponent<react_native52.ViewProps & {
17
+ declare const MenubarSub: React$1.ForwardRefExoticComponent<react_native29.ViewProps & {
18
18
  asChild?: boolean;
19
19
  } & {
20
20
  defaultOpen?: boolean;
21
21
  open?: boolean;
22
22
  onOpenChange?: (value: boolean) => void;
23
23
  } & React$1.RefAttributes<View>>;
24
- declare const MenubarRadioGroup: React$1.ForwardRefExoticComponent<react_native52.ViewProps & {
24
+ declare const MenubarRadioGroup: React$1.ForwardRefExoticComponent<react_native29.ViewProps & {
25
25
  asChild?: boolean;
26
26
  } & {
27
27
  value: string | undefined;
@@ -32,13 +32,13 @@ declare function Menubar({
32
32
  ...props
33
33
  }: MenubarPrimitive.RootProps & {
34
34
  ref?: React$1.RefObject<MenubarPrimitive.RootRef>;
35
- }): react_jsx_runtime146.JSX.Element;
35
+ }): react_jsx_runtime98.JSX.Element;
36
36
  declare function MenubarTrigger({
37
37
  className,
38
38
  ...props
39
39
  }: MenubarPrimitive.TriggerProps & {
40
40
  ref?: React$1.RefObject<MenubarPrimitive.TriggerRef>;
41
- }): react_jsx_runtime146.JSX.Element;
41
+ }): react_jsx_runtime98.JSX.Element;
42
42
  declare function MenubarSubTrigger({
43
43
  className,
44
44
  inset,
@@ -49,13 +49,13 @@ declare function MenubarSubTrigger({
49
49
  className?: string;
50
50
  inset?: boolean;
51
51
  children?: React$1.ReactNode;
52
- }): react_jsx_runtime146.JSX.Element;
52
+ }): react_jsx_runtime98.JSX.Element;
53
53
  declare function MenubarSubContent({
54
54
  className,
55
55
  ...props
56
56
  }: MenubarPrimitive.SubContentProps & {
57
57
  ref?: React$1.RefObject<MenubarPrimitive.SubContentRef>;
58
- }): react_jsx_runtime146.JSX.Element;
58
+ }): react_jsx_runtime98.JSX.Element;
59
59
  declare function MenubarContent({
60
60
  className,
61
61
  portalHost,
@@ -64,7 +64,7 @@ declare function MenubarContent({
64
64
  ref?: React$1.RefObject<MenubarPrimitive.ContentRef>;
65
65
  className?: string;
66
66
  portalHost?: string;
67
- }): react_jsx_runtime146.JSX.Element;
67
+ }): react_jsx_runtime98.JSX.Element;
68
68
  declare function MenubarItem({
69
69
  className,
70
70
  inset,
@@ -73,7 +73,7 @@ declare function MenubarItem({
73
73
  ref?: React$1.RefObject<MenubarPrimitive.ItemRef>;
74
74
  className?: string;
75
75
  inset?: boolean;
76
- }): react_jsx_runtime146.JSX.Element;
76
+ }): react_jsx_runtime98.JSX.Element;
77
77
  declare function MenubarCheckboxItem({
78
78
  className,
79
79
  children,
@@ -82,7 +82,7 @@ declare function MenubarCheckboxItem({
82
82
  }: MenubarPrimitive.CheckboxItemProps & {
83
83
  ref?: React$1.RefObject<MenubarPrimitive.CheckboxItemRef>;
84
84
  children?: React$1.ReactNode;
85
- }): react_jsx_runtime146.JSX.Element;
85
+ }): react_jsx_runtime98.JSX.Element;
86
86
  declare function MenubarRadioItem({
87
87
  className,
88
88
  children,
@@ -90,7 +90,7 @@ declare function MenubarRadioItem({
90
90
  }: MenubarPrimitive.RadioItemProps & {
91
91
  ref?: React$1.RefObject<MenubarPrimitive.RadioItemRef>;
92
92
  children?: React$1.ReactNode;
93
- }): react_jsx_runtime146.JSX.Element;
93
+ }): react_jsx_runtime98.JSX.Element;
94
94
  declare function MenubarLabel({
95
95
  className,
96
96
  inset,
@@ -99,16 +99,16 @@ declare function MenubarLabel({
99
99
  ref?: React$1.RefObject<MenubarPrimitive.LabelRef>;
100
100
  className?: string;
101
101
  inset?: boolean;
102
- }): react_jsx_runtime146.JSX.Element;
102
+ }): react_jsx_runtime98.JSX.Element;
103
103
  declare function MenubarSeparator({
104
104
  className,
105
105
  ...props
106
106
  }: MenubarPrimitive.SeparatorProps & {
107
107
  ref?: React$1.RefObject<MenubarPrimitive.SeparatorRef>;
108
- }): react_jsx_runtime146.JSX.Element;
108
+ }): react_jsx_runtime98.JSX.Element;
109
109
  declare function MenubarShortcut({
110
110
  className,
111
111
  ...props
112
- }: TextProps): react_jsx_runtime146.JSX.Element;
112
+ }: TextProps): react_jsx_runtime98.JSX.Element;
113
113
  //#endregion
114
114
  export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime53 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime157 from "react/jsx-runtime";
2
2
 
3
3
  //#region ui/molecules/SkeletonList.d.ts
4
4
  interface Props {
@@ -10,6 +10,6 @@ declare function SkeletonList({
10
10
  count,
11
11
  className,
12
12
  itemClassName
13
- }: Props): react_jsx_runtime53.JSX.Element;
13
+ }: Props): react_jsx_runtime157.JSX.Element;
14
14
  //#endregion
15
15
  export { SkeletonList };
@@ -1,9 +1,9 @@
1
1
  import * as React$1 from "react";
2
- import * as react_native46 from "react-native";
2
+ import * as react_native33 from "react-native";
3
3
  import { View } from "react-native";
4
- import * as react_jsx_runtime128 from "react/jsx-runtime";
4
+ import * as react_jsx_runtime109 from "react/jsx-runtime";
5
5
  import * as NavigationMenuPrimitive from "@rn-primitives/navigation-menu";
6
- import * as class_variance_authority_types12 from "class-variance-authority/types";
6
+ import * as class_variance_authority_types6 from "class-variance-authority/types";
7
7
 
8
8
  //#region ui/navigation-menu.d.ts
9
9
  declare function NavigationMenu({
@@ -12,19 +12,19 @@ declare function NavigationMenu({
12
12
  ...props
13
13
  }: NavigationMenuPrimitive.RootProps & {
14
14
  ref?: React$1.RefObject<NavigationMenuPrimitive.RootRef>;
15
- }): react_jsx_runtime128.JSX.Element;
15
+ }): react_jsx_runtime109.JSX.Element;
16
16
  declare function NavigationMenuList({
17
17
  className,
18
18
  ...props
19
19
  }: NavigationMenuPrimitive.ListProps & {
20
20
  ref?: React$1.RefObject<NavigationMenuPrimitive.ListRef>;
21
- }): react_jsx_runtime128.JSX.Element;
22
- declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<react_native46.ViewProps & {
21
+ }): react_jsx_runtime109.JSX.Element;
22
+ declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<react_native33.ViewProps & {
23
23
  asChild?: boolean;
24
24
  } & {
25
25
  value: string | undefined;
26
26
  } & React$1.RefAttributes<View>>;
27
- declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types12.ClassProp | undefined) => string;
27
+ declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types6.ClassProp | undefined) => string;
28
28
  declare function NavigationMenuTrigger({
29
29
  className,
30
30
  children,
@@ -32,7 +32,7 @@ declare function NavigationMenuTrigger({
32
32
  }: Omit<NavigationMenuPrimitive.TriggerProps, 'children'> & {
33
33
  children?: React$1.ReactNode;
34
34
  ref?: React$1.RefObject<NavigationMenuPrimitive.TriggerRef>;
35
- }): react_jsx_runtime128.JSX.Element;
35
+ }): react_jsx_runtime109.JSX.Element;
36
36
  declare function NavigationMenuContent({
37
37
  className,
38
38
  children,
@@ -41,8 +41,8 @@ declare function NavigationMenuContent({
41
41
  }: NavigationMenuPrimitive.ContentProps & {
42
42
  portalHost?: string;
43
43
  ref?: React$1.RefObject<NavigationMenuPrimitive.ContentRef>;
44
- }): react_jsx_runtime128.JSX.Element;
45
- declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<Omit<react_native46.PressableProps & React$1.RefAttributes<View>, "ref"> & {
44
+ }): react_jsx_runtime109.JSX.Element;
45
+ declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<Omit<react_native33.PressableProps & React$1.RefAttributes<View>, "ref"> & {
46
46
  asChild?: boolean;
47
47
  } & {
48
48
  onKeyDown?: (ev: React$1.KeyboardEvent) => void;
@@ -55,13 +55,13 @@ declare function NavigationMenuViewport({
55
55
  ...props
56
56
  }: NavigationMenuPrimitive.ViewportProps & {
57
57
  ref?: React$1.RefObject<NavigationMenuPrimitive.ViewportRef>;
58
- }): react_jsx_runtime128.JSX.Element;
58
+ }): react_jsx_runtime109.JSX.Element;
59
59
  declare function NavigationMenuIndicator({
60
60
  ref,
61
61
  className,
62
62
  ...props
63
63
  }: NavigationMenuPrimitive.IndicatorProps & {
64
64
  ref?: React$1.RefObject<NavigationMenuPrimitive.IndicatorRef>;
65
- }): react_jsx_runtime128.JSX.Element;
65
+ }): react_jsx_runtime109.JSX.Element;
66
66
  //#endregion
67
67
  export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, navigationMenuTriggerStyle };
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import * as react_jsx_runtime56 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime160 from "react/jsx-runtime";
3
3
 
4
4
  //#region ui/organisms/ErrorBoundary/ErrorBoundary.d.ts
5
5
  interface ErrorBoundaryState {
@@ -22,7 +22,7 @@ declare class ErrorBoundary extends React.Component<ErrorBoundaryProps, ErrorBou
22
22
  static getDerivedStateFromError(error: Error): Partial<ErrorBoundaryState>;
23
23
  componentDidCatch(error: Error, errorInfo: React.ErrorInfo): void;
24
24
  resetError: () => void;
25
- render(): string | number | bigint | boolean | react_jsx_runtime56.JSX.Element | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> | null | undefined;
25
+ render(): string | number | bigint | boolean | react_jsx_runtime160.JSX.Element | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> | null | undefined;
26
26
  }
27
27
  declare const useErrorHandler: () => (error: Error) => never;
28
28
  //#endregion
@@ -1,5 +1,5 @@
1
1
  import { ListPageProps } from "./types.js";
2
- import * as react_jsx_runtime57 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime161 from "react/jsx-runtime";
3
3
 
4
4
  //#region ui/organisms/ListPage/ListPage.d.ts
5
5
  declare function ListPage<T>({
@@ -23,6 +23,6 @@ declare function ListPage<T>({
23
23
  renderStats,
24
24
  className,
25
25
  itemClassName
26
- }: ListPageProps<T>): react_jsx_runtime57.JSX.Element;
26
+ }: ListPageProps<T>): react_jsx_runtime161.JSX.Element;
27
27
  //#endregion
28
28
  export { ListPage };
@@ -1,12 +1,12 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime158 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime115 from "react/jsx-runtime";
3
3
  import { VariantProps } from "class-variance-authority";
4
- import * as class_variance_authority_types13 from "class-variance-authority/types";
4
+ import * as class_variance_authority_types7 from "class-variance-authority/types";
5
5
 
6
6
  //#region ui/page-header.d.ts
7
7
  declare const headerVariants: (props?: ({
8
8
  spacing?: "sm" | "lg" | "md" | null | undefined;
9
- } & class_variance_authority_types13.ClassProp) | undefined) => string;
9
+ } & class_variance_authority_types7.ClassProp) | undefined) => string;
10
10
  interface PageHeaderProps extends VariantProps<typeof headerVariants> {
11
11
  breadcrumb?: React$1.ReactNode;
12
12
  title: React$1.ReactNode;
@@ -21,6 +21,6 @@ declare function PageHeader({
21
21
  actions,
22
22
  spacing,
23
23
  className
24
- }: PageHeaderProps): react_jsx_runtime158.JSX.Element;
24
+ }: PageHeaderProps): react_jsx_runtime115.JSX.Element;
25
25
  //#endregion
26
26
  export { PageHeader, PageHeaderProps };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime157 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime116 from "react/jsx-runtime";
2
2
  import { z } from "zod";
3
3
 
4
4
  //#region ui/password-strength.d.ts
@@ -15,6 +15,6 @@ interface PasswordStrengthProps {
15
15
  declare function PasswordStrength({
16
16
  password,
17
17
  showFeedback
18
- }: PasswordStrengthProps): react_jsx_runtime157.JSX.Element | null;
18
+ }: PasswordStrengthProps): react_jsx_runtime116.JSX.Element | null;
19
19
  //#endregion
20
20
  export { PasswordStrength, getPasswordStrength, passwordSchema };
@@ -1,15 +1,15 @@
1
1
  import * as react8 from "react";
2
- import * as react_native56 from "react-native";
3
- import * as react_jsx_runtime159 from "react/jsx-runtime";
2
+ import * as react_native47 from "react-native";
3
+ import * as react_jsx_runtime117 from "react/jsx-runtime";
4
4
  import * as _rn_primitives_popover0 from "@rn-primitives/popover";
5
5
 
6
6
  //#region ui/popover.d.ts
7
- declare const Popover: react8.ForwardRefExoticComponent<react_native56.ViewProps & {
7
+ declare const Popover: react8.ForwardRefExoticComponent<react_native47.ViewProps & {
8
8
  asChild?: boolean;
9
9
  } & {
10
10
  onOpenChange?: (open: boolean) => void;
11
- } & react8.RefAttributes<react_native56.View>>;
12
- declare const PopoverTrigger: react8.ForwardRefExoticComponent<Omit<react_native56.PressableProps & react8.RefAttributes<react_native56.View>, "ref"> & {
11
+ } & react8.RefAttributes<react_native47.View>>;
12
+ declare const PopoverTrigger: react8.ForwardRefExoticComponent<Omit<react_native47.PressableProps & react8.RefAttributes<react_native47.View>, "ref"> & {
13
13
  asChild?: boolean;
14
14
  } & {
15
15
  onKeyDown?: (ev: React.KeyboardEvent) => void;
@@ -24,6 +24,6 @@ declare function PopoverContent({
24
24
  }: _rn_primitives_popover0.ContentProps & {
25
25
  ref?: React.RefObject<_rn_primitives_popover0.ContentRef>;
26
26
  portalHost?: string;
27
- }): react_jsx_runtime159.JSX.Element;
27
+ }): react_jsx_runtime117.JSX.Element;
28
28
  //#endregion
29
29
  export { Popover, PopoverContent, PopoverTrigger };
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime58 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime118 from "react/jsx-runtime";
3
3
  import * as ProgressPrimitive from "@rn-primitives/progress";
4
4
 
5
5
  //#region ui/progress.d.ts
@@ -11,6 +11,6 @@ declare function Progress({
11
11
  }: ProgressPrimitive.RootProps & {
12
12
  ref?: React$1.RefObject<ProgressPrimitive.RootRef>;
13
13
  indicatorClassName?: string;
14
- }): react_jsx_runtime58.JSX.Element;
14
+ }): react_jsx_runtime118.JSX.Element;
15
15
  //#endregion
16
16
  export { Progress };
@@ -1,14 +1,14 @@
1
- import * as react_jsx_runtime86 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime119 from "react/jsx-runtime";
2
2
  import * as RadioGroupPrimitive from "@rn-primitives/radio-group";
3
3
 
4
4
  //#region ui/radio-group.d.ts
5
5
  declare function RadioGroup({
6
6
  className,
7
7
  ...props
8
- }: RadioGroupPrimitive.RootProps & React.RefAttributes<RadioGroupPrimitive.RootRef>): react_jsx_runtime86.JSX.Element;
8
+ }: RadioGroupPrimitive.RootProps & React.RefAttributes<RadioGroupPrimitive.RootRef>): react_jsx_runtime119.JSX.Element;
9
9
  declare function RadioGroupItem({
10
10
  className,
11
11
  ...props
12
- }: RadioGroupPrimitive.ItemProps & React.RefAttributes<RadioGroupPrimitive.ItemRef>): react_jsx_runtime86.JSX.Element;
12
+ }: RadioGroupPrimitive.ItemProps & React.RefAttributes<RadioGroupPrimitive.ItemRef>): react_jsx_runtime119.JSX.Element;
13
13
  //#endregion
14
14
  export { RadioGroup, RadioGroupItem };