@lssm/lib.ui-kit 1.11.1 → 1.41.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (244) hide show
  1. package/README.md +5 -0
  2. package/dist/-core/src/utils.js +10 -0
  3. package/dist/_virtual/rolldown_runtime.js +33 -0
  4. package/dist/node_modules/@hookform/resolvers/dist/resolvers.js +34 -0
  5. package/dist/node_modules/@hookform/resolvers/zod/dist/zod.js +118 -0
  6. package/dist/node_modules/@swc/helpers/cjs/_interop_require_default.js +14 -0
  7. package/dist/node_modules/@swc/helpers/cjs/_interop_require_wildcard.js +35 -0
  8. package/dist/node_modules/lucide-react/dist/esm/Icon.js +25 -0
  9. package/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +24 -0
  10. package/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +21 -0
  11. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-down.js +17 -0
  12. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-left.js +17 -0
  13. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-right.js +17 -0
  14. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-up.js +17 -0
  15. package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-left.js +20 -0
  16. package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-right.js +20 -0
  17. package/dist/node_modules/lucide-react/dist/esm/icons/ellipsis.js +33 -0
  18. package/dist/node_modules/lucide-react/dist/esm/icons/funnel.js +17 -0
  19. package/dist/node_modules/lucide-react/dist/esm/icons/house.js +20 -0
  20. package/dist/node_modules/lucide-react/dist/esm/icons/loader-circle.js +17 -0
  21. package/dist/node_modules/lucide-react/dist/esm/icons/plus.js +20 -0
  22. package/dist/node_modules/lucide-react/dist/esm/icons/refresh-ccw.js +31 -0
  23. package/dist/node_modules/lucide-react/dist/esm/icons/refresh-cw.js +31 -0
  24. package/dist/node_modules/lucide-react/dist/esm/icons/search.js +22 -0
  25. package/dist/node_modules/lucide-react/dist/esm/icons/triangle-alert.js +27 -0
  26. package/dist/node_modules/lucide-react/dist/esm/icons/x.js +20 -0
  27. package/dist/node_modules/lucide-react/dist/esm/shared/src/utils.js +22 -0
  28. package/dist/node_modules/next/dist/client/add-base-path.js +30 -0
  29. package/dist/node_modules/next/dist/client/add-locale.js +29 -0
  30. package/dist/node_modules/next/dist/client/detect-domain-locale.js +26 -0
  31. package/dist/node_modules/next/dist/client/get-domain-locale.js +41 -0
  32. package/dist/node_modules/next/dist/client/has-base-path.js +28 -0
  33. package/dist/node_modules/next/dist/client/link.js +311 -0
  34. package/dist/node_modules/next/dist/client/normalize-locale-path.js +30 -0
  35. package/dist/node_modules/next/dist/client/normalize-trailing-slash.js +34 -0
  36. package/dist/node_modules/next/dist/client/request-idle-callback.js +44 -0
  37. package/dist/node_modules/next/dist/client/resolve-href.js +86 -0
  38. package/dist/node_modules/next/dist/client/use-intersection.js +104 -0
  39. package/dist/node_modules/next/dist/client/use-merged-ref.js +56 -0
  40. package/dist/node_modules/next/dist/compiled/path-to-regexp/index.js +372 -0
  41. package/dist/node_modules/next/dist/lib/constants.js +316 -0
  42. package/dist/node_modules/next/dist/lib/route-pattern-normalizer.js +69 -0
  43. package/dist/node_modules/next/dist/shared/lib/escape-regexp.js +23 -0
  44. package/dist/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js +22 -0
  45. package/dist/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js +42 -0
  46. package/dist/node_modules/next/dist/shared/lib/invariant-error.js +23 -0
  47. package/dist/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js +23 -0
  48. package/dist/node_modules/next/dist/shared/lib/router/utils/add-locale.js +30 -0
  49. package/dist/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js +24 -0
  50. package/dist/node_modules/next/dist/shared/lib/router/utils/app-paths.js +41 -0
  51. package/dist/node_modules/next/dist/shared/lib/router/utils/format-url.js +78 -0
  52. package/dist/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js +151 -0
  53. package/dist/node_modules/next/dist/shared/lib/router/utils/get-segment-param.js +77 -0
  54. package/dist/node_modules/next/dist/shared/lib/router/utils/index.js +32 -0
  55. package/dist/node_modules/next/dist/shared/lib/router/utils/interception-routes.js +92 -0
  56. package/dist/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js +41 -0
  57. package/dist/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js +26 -0
  58. package/dist/node_modules/next/dist/shared/lib/router/utils/is-local-url.js +31 -0
  59. package/dist/node_modules/next/dist/shared/lib/router/utils/omit.js +24 -0
  60. package/dist/node_modules/next/dist/shared/lib/router/utils/parse-loader-tree.js +33 -0
  61. package/dist/node_modules/next/dist/shared/lib/router/utils/parse-path.js +36 -0
  62. package/dist/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js +24 -0
  63. package/dist/node_modules/next/dist/shared/lib/router/utils/querystring.js +56 -0
  64. package/dist/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js +26 -0
  65. package/dist/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js +94 -0
  66. package/dist/node_modules/next/dist/shared/lib/router/utils/route-matcher.js +46 -0
  67. package/dist/node_modules/next/dist/shared/lib/router/utils/route-regex.js +203 -0
  68. package/dist/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js +167 -0
  69. package/dist/node_modules/next/dist/shared/lib/router-context.shared-runtime.js +20 -0
  70. package/dist/node_modules/next/dist/shared/lib/segment.js +80 -0
  71. package/dist/node_modules/next/dist/shared/lib/utils/error-once.js +25 -0
  72. package/dist/node_modules/next/dist/shared/lib/utils.js +172 -0
  73. package/dist/node_modules/next/link.js +12 -0
  74. package/dist/node_modules/react-hook-form/dist/index.esm.js +2074 -0
  75. package/dist/node_modules/zod/v4/classic/errors.js +29 -0
  76. package/dist/node_modules/zod/v4/classic/iso.js +37 -0
  77. package/dist/node_modules/zod/v4/classic/parse.js +19 -0
  78. package/dist/node_modules/zod/v4/classic/schemas.js +418 -0
  79. package/dist/node_modules/zod/v4/core/api.js +404 -0
  80. package/dist/node_modules/zod/v4/core/checks.js +225 -0
  81. package/dist/node_modules/zod/v4/core/core.js +61 -0
  82. package/dist/node_modules/zod/v4/core/errors.js +62 -0
  83. package/dist/node_modules/zod/v4/core/json-schema-processors.js +148 -0
  84. package/dist/node_modules/zod/v4/core/parse.js +109 -0
  85. package/dist/node_modules/zod/v4/core/regexes.js +57 -0
  86. package/dist/node_modules/zod/v4/core/registries.js +52 -0
  87. package/dist/node_modules/zod/v4/core/schemas.js +744 -0
  88. package/dist/node_modules/zod/v4/core/to-json-schema.js +260 -0
  89. package/dist/node_modules/zod/v4/core/util.js +155 -0
  90. package/dist/node_modules/zod/v4/core/versions.js +9 -0
  91. package/dist/tsconfig.tsbuildinfo +1 -1
  92. package/dist/ui/accordion.js +1 -1
  93. package/dist/ui/alert-dialog.js +1 -1
  94. package/dist/ui/alert.js +1 -1
  95. package/dist/ui/atoms/LoadingSpinner/LoadingSpinner.js +3 -3
  96. package/dist/ui/atoms/Pagination/Pagination.js +4 -1
  97. package/dist/ui/atoms/SearchInput/SearchInput.js +2 -1
  98. package/dist/ui/avatar.js +1 -1
  99. package/dist/ui/badge.js +1 -1
  100. package/dist/ui/breadcrumb.js +4 -3
  101. package/dist/ui/button.js +1 -1
  102. package/dist/ui/card.js +1 -1
  103. package/dist/ui/checkbox.js +1 -1
  104. package/dist/ui/context-menu.js +1 -1
  105. package/dist/ui/date-picker.js +1 -1
  106. package/dist/ui/date-range-picker.js +1 -1
  107. package/dist/ui/dialog.js +1 -1
  108. package/dist/ui/dropdown-menu.js +1 -1
  109. package/dist/ui/empty-state.js +1 -1
  110. package/dist/ui/empty.js +1 -1
  111. package/dist/ui/fab.js +1 -1
  112. package/dist/ui/field.js +1 -1
  113. package/dist/ui/form.js +1 -1
  114. package/dist/ui/hover-card.js +1 -1
  115. package/dist/ui/input.js +1 -1
  116. package/dist/ui/label.js +1 -1
  117. package/dist/ui/link.js +1 -1
  118. package/dist/ui/marketing/Hero.js +1 -1
  119. package/dist/ui/marketing/PricingTable.js +1 -1
  120. package/dist/ui/menubar.js +1 -1
  121. package/dist/ui/molecules/SearchAndFilter/SearchAndFilter.js +4 -2
  122. package/dist/ui/nativewind-env.d.js +0 -0
  123. package/dist/ui/navigation-menu.js +1 -1
  124. package/dist/ui/organisms/ErrorBoundary/ErrorBoundary.js +5 -3
  125. package/dist/ui/organisms/ListPage/ListPage.js +12 -7
  126. package/dist/ui/page-header.js +1 -1
  127. package/dist/ui/popover.js +1 -1
  128. package/dist/ui/progress.js +1 -1
  129. package/dist/ui/radio-group.js +1 -1
  130. package/dist/ui/select.js +1 -1
  131. package/dist/ui/separator.js +1 -1
  132. package/dist/ui/skeleton.js +1 -1
  133. package/dist/ui/stack.js +1 -1
  134. package/dist/ui/stepper.js +1 -1
  135. package/dist/ui/switch.js +1 -1
  136. package/dist/ui/table.js +1 -1
  137. package/dist/ui/tabs.js +1 -1
  138. package/dist/ui/text.js +1 -1
  139. package/dist/ui/textarea.js +1 -1
  140. package/dist/ui/time-picker.js +1 -1
  141. package/dist/ui/toggle-group.js +1 -1
  142. package/dist/ui/toggle.js +1 -1
  143. package/dist/ui/tooltip.js +1 -1
  144. package/dist/ui/typography.js +1 -1
  145. package/package.json +204 -114
  146. package/dist/index.d.ts +0 -4
  147. package/dist/ui/accordion.d.ts +0 -35
  148. package/dist/ui/alert-dialog.d.ts +0 -71
  149. package/dist/ui/alert.d.ts +0 -36
  150. package/dist/ui/aspect-ratio.d.ts +0 -11
  151. package/dist/ui/atoms/FilterSelect/FilterSelect.d.ts +0 -7
  152. package/dist/ui/atoms/FilterSelect/index.d.ts +0 -3
  153. package/dist/ui/atoms/FilterSelect/types.d.ts +0 -18
  154. package/dist/ui/atoms/LoadingSpinner/LoadingSpinner.d.ts +0 -22
  155. package/dist/ui/atoms/LoadingSpinner/index.d.ts +0 -2
  156. package/dist/ui/atoms/Pagination/Pagination.d.ts +0 -7
  157. package/dist/ui/atoms/Pagination/index.d.ts +0 -3
  158. package/dist/ui/atoms/Pagination/types.d.ts +0 -15
  159. package/dist/ui/atoms/SearchInput/SearchInput.d.ts +0 -7
  160. package/dist/ui/atoms/SearchInput/index.d.ts +0 -3
  161. package/dist/ui/atoms/SearchInput/types.d.ts +0 -12
  162. package/dist/ui/avatar.d.ts +0 -27
  163. package/dist/ui/badge.d.ts +0 -21
  164. package/dist/ui/breadcrumb.d.ts +0 -38
  165. package/dist/ui/button.d.ts +0 -25
  166. package/dist/ui/card.d.ts +0 -43
  167. package/dist/ui/carousel.d.ts +0 -4
  168. package/dist/ui/checkbox.d.ts +0 -16
  169. package/dist/ui/collapsible.d.ts +0 -24
  170. package/dist/ui/command.d.ts +0 -4
  171. package/dist/ui/context-menu.d.ts +0 -109
  172. package/dist/ui/date-picker.d.ts +0 -23
  173. package/dist/ui/date-range-picker.d.ts +0 -30
  174. package/dist/ui/datetime-picker.d.ts +0 -27
  175. package/dist/ui/dialog.d.ts +0 -68
  176. package/dist/ui/dropdown-menu.d.ts +0 -111
  177. package/dist/ui/empty-state.d.ts +0 -28
  178. package/dist/ui/empty.d.ts +0 -36
  179. package/dist/ui/fab.d.ts +0 -35
  180. package/dist/ui/field.d.ts +0 -66
  181. package/dist/ui/form.d.ts +0 -49
  182. package/dist/ui/hover-card.d.ts +0 -29
  183. package/dist/ui/icons/Check.d.ts +0 -2
  184. package/dist/ui/icons/ChevronDown.d.ts +0 -2
  185. package/dist/ui/icons/ChevronRight.d.ts +0 -2
  186. package/dist/ui/icons/ChevronUp.d.ts +0 -2
  187. package/dist/ui/icons/CircleUser.d.ts +0 -2
  188. package/dist/ui/icons/Info.d.ts +0 -2
  189. package/dist/ui/icons/Key.d.ts +0 -2
  190. package/dist/ui/icons/MoonStar.d.ts +0 -2
  191. package/dist/ui/icons/Sun.d.ts +0 -2
  192. package/dist/ui/icons/X.d.ts +0 -2
  193. package/dist/ui/icons/iconWithClassName.d.ts +0 -6
  194. package/dist/ui/input.d.ts +0 -14
  195. package/dist/ui/label.d.ts +0 -15
  196. package/dist/ui/link.d.ts +0 -13
  197. package/dist/ui/loading-button.d.ts +0 -19
  198. package/dist/ui/loading-overlay.d.ts +0 -15
  199. package/dist/ui/loading-screen.d.ts +0 -13
  200. package/dist/ui/marketing/FeatureGrid.d.ts +0 -20
  201. package/dist/ui/marketing/Hero.d.ts +0 -27
  202. package/dist/ui/marketing/PricingTable.d.ts +0 -24
  203. package/dist/ui/marketing/index.d.ts +0 -4
  204. package/dist/ui/menubar.d.ts +0 -114
  205. package/dist/ui/molecules/Autocomplete/index.d.ts +0 -4
  206. package/dist/ui/molecules/SearchAndFilter/SearchAndFilter.d.ts +0 -7
  207. package/dist/ui/molecules/SearchAndFilter/index.d.ts +0 -3
  208. package/dist/ui/molecules/SearchAndFilter/types.d.ts +0 -24
  209. package/dist/ui/molecules/SkeletonList.d.ts +0 -15
  210. package/dist/ui/nativewind-env.d.ts +0 -1
  211. package/dist/ui/navigation-menu.d.ts +0 -67
  212. package/dist/ui/organisms/ErrorBoundary/ErrorBoundary.d.ts +0 -29
  213. package/dist/ui/organisms/ErrorBoundary/index.d.ts +0 -2
  214. package/dist/ui/organisms/ListPage/ListPage.d.ts +0 -28
  215. package/dist/ui/organisms/ListPage/index.d.ts +0 -3
  216. package/dist/ui/organisms/ListPage/types.d.ts +0 -41
  217. package/dist/ui/page-header.d.ts +0 -26
  218. package/dist/ui/password-strength.d.ts +0 -20
  219. package/dist/ui/popover.d.ts +0 -29
  220. package/dist/ui/progress.d.ts +0 -16
  221. package/dist/ui/radio-group.d.ts +0 -14
  222. package/dist/ui/select.d.ts +0 -83
  223. package/dist/ui/separator.d.ts +0 -15
  224. package/dist/ui/sheet.d.ts +0 -4
  225. package/dist/ui/sidebar.d.ts +0 -4
  226. package/dist/ui/skeleton.d.ts +0 -11
  227. package/dist/ui/stack.d.ts +0 -76
  228. package/dist/ui/stepper.d.ts +0 -22
  229. package/dist/ui/switch.d.ts +0 -14
  230. package/dist/ui/table.d.ts +0 -50
  231. package/dist/ui/tabs.d.ts +0 -32
  232. package/dist/ui/text.d.ts +0 -20
  233. package/dist/ui/textarea.d.ts +0 -9
  234. package/dist/ui/time-picker.d.ts +0 -21
  235. package/dist/ui/toggle-group.d.ts +0 -35
  236. package/dist/ui/toggle.d.ts +0 -33
  237. package/dist/ui/tooltip.d.ts +0 -31
  238. package/dist/ui/typography.d.ts +0 -64
  239. package/dist/ui/useColorScheme.d.ts +0 -11
  240. package/dist/ui/useListState.d.ts +0 -33
  241. package/dist/ui/usecases/UseCaseCard.d.ts +0 -18
  242. package/dist/ui/usecases/UserStoryCard.d.ts +0 -14
  243. package/dist/ui/usecases/index.d.ts +0 -3
  244. package/dist/ui/utils.d.ts +0 -6
package/dist/ui/fab.d.ts DELETED
@@ -1,35 +0,0 @@
1
- import React from "react";
2
- import * as react_jsx_runtime116 from "react/jsx-runtime";
3
-
4
- //#region ui/fab.d.ts
5
- interface FABAction {
6
- icon: React.ReactNode;
7
- label: string;
8
- onPress: () => void;
9
- color?: string;
10
- }
11
- interface FABProps {
12
- actions: FABAction[];
13
- className?: string;
14
- mainIcon?: React.ReactNode;
15
- mainColor?: string;
16
- }
17
- declare function FAB({
18
- actions,
19
- className,
20
- mainIcon,
21
- mainColor
22
- }: FABProps): react_jsx_runtime116.JSX.Element;
23
- declare function MiniFAB({
24
- icon,
25
- onPress,
26
- className,
27
- color
28
- }: {
29
- icon: React.ReactNode;
30
- onPress: () => void;
31
- className?: string;
32
- color?: string;
33
- }): react_jsx_runtime116.JSX.Element;
34
- //#endregion
35
- export { FAB, MiniFAB };
@@ -1,66 +0,0 @@
1
- import { Label } from "./label.js";
2
- import { BoxProps } from "./stack.js";
3
- import { TypographyProps } from "./typography.js";
4
- import * as react_jsx_runtime99 from "react/jsx-runtime";
5
- import { VariantProps } from "class-variance-authority";
6
- import * as class_variance_authority_types11 from "class-variance-authority/types";
7
-
8
- //#region ui/field.d.ts
9
- declare function FieldSet({
10
- className,
11
- ...props
12
- }: BoxProps): react_jsx_runtime99.JSX.Element;
13
- declare function FieldLegend({
14
- className,
15
- variant,
16
- ...props
17
- }: BoxProps & {
18
- variant?: 'legend' | 'label';
19
- }): react_jsx_runtime99.JSX.Element;
20
- declare function FieldGroup({
21
- className,
22
- ...props
23
- }: BoxProps): react_jsx_runtime99.JSX.Element;
24
- declare const fieldVariants: (props?: ({
25
- orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
26
- } & class_variance_authority_types11.ClassProp) | undefined) => string;
27
- declare function Field({
28
- className,
29
- orientation,
30
- ...props
31
- }: BoxProps & VariantProps<typeof fieldVariants>): react_jsx_runtime99.JSX.Element;
32
- declare function FieldContent({
33
- className,
34
- ...props
35
- }: BoxProps): react_jsx_runtime99.JSX.Element;
36
- declare function FieldLabel({
37
- className,
38
- ...props
39
- }: React.ComponentProps<typeof Label>): react_jsx_runtime99.JSX.Element;
40
- declare function FieldTitle({
41
- className,
42
- ...props
43
- }: BoxProps): react_jsx_runtime99.JSX.Element;
44
- declare function FieldDescription({
45
- className,
46
- ...props
47
- }: TypographyProps): react_jsx_runtime99.JSX.Element;
48
- declare function FieldSeparator({
49
- children,
50
- className,
51
- ...props
52
- }: BoxProps & {
53
- children?: React.ReactNode;
54
- }): react_jsx_runtime99.JSX.Element;
55
- declare function FieldError({
56
- className,
57
- children,
58
- errors,
59
- ...props
60
- }: BoxProps & {
61
- errors?: ({
62
- message?: string;
63
- } | undefined)[];
64
- }): react_jsx_runtime99.JSX.Element | null;
65
- //#endregion
66
- export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle };
package/dist/ui/form.d.ts DELETED
@@ -1,49 +0,0 @@
1
- import { Label } from "./label.js";
2
- import * as React$1 from "react";
3
- import { View } from "react-native";
4
- import * as react_jsx_runtime118 from "react/jsx-runtime";
5
- import * as react_hook_form0 from "react-hook-form";
6
- import { ControllerProps, FieldPath, FieldValues, UseFormReturn, useFieldArray, useForm } from "react-hook-form";
7
- import { zodResolver } from "@hookform/resolvers/zod";
8
-
9
- //#region ui/form.d.ts
10
- declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form0.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
11
- declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({
12
- ...props
13
- }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime118.JSX.Element;
14
- declare const useFormField: () => {
15
- invalid: boolean;
16
- isDirty: boolean;
17
- isTouched: boolean;
18
- isValidating: boolean;
19
- error?: react_hook_form0.FieldError;
20
- id: string;
21
- name: string;
22
- formItemId: string;
23
- formDescriptionId: string;
24
- formMessageId: string;
25
- };
26
- declare function FormItem({
27
- className,
28
- ...props
29
- }: React$1.ComponentProps<'div'>): react_jsx_runtime118.JSX.Element;
30
- declare function FormLabel({
31
- className,
32
- ...props
33
- }: React$1.ComponentProps<typeof Label>): react_jsx_runtime118.JSX.Element;
34
- declare function FormControl({
35
- asChild,
36
- ...props
37
- }: React$1.ComponentProps<typeof View> & {
38
- asChild?: boolean;
39
- }): react_jsx_runtime118.JSX.Element;
40
- declare function FormDescription({
41
- className,
42
- ...props
43
- }: React$1.ComponentProps<'p'>): react_jsx_runtime118.JSX.Element;
44
- declare function FormMessage({
45
- className,
46
- ...props
47
- }: React$1.ComponentProps<'p'>): react_jsx_runtime118.JSX.Element | null;
48
- //#endregion
49
- export { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type UseFormReturn, useFieldArray, useForm, useFormField, zodResolver };
@@ -1,29 +0,0 @@
1
- import * as React$1 from "react";
2
- import * as react_native45 from "react-native";
3
- import * as react_jsx_runtime124 from "react/jsx-runtime";
4
- import * as _rn_primitives_hover_card0 from "@rn-primitives/hover-card";
5
-
6
- //#region ui/hover-card.d.ts
7
- declare const HoverCard: React$1.ForwardRefExoticComponent<react_native45.ViewProps & {
8
- asChild?: boolean;
9
- } & {
10
- onOpenChange?: (open: boolean) => void;
11
- openDelay?: number;
12
- closeDelay?: number;
13
- } & React$1.RefAttributes<react_native45.View>>;
14
- declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<Omit<react_native45.PressableProps & React$1.RefAttributes<react_native45.View>, "ref"> & {
15
- asChild?: boolean;
16
- } & {
17
- onKeyDown?: (ev: React$1.KeyboardEvent) => void;
18
- onKeyUp?: (ev: React$1.KeyboardEvent) => void;
19
- } & React$1.RefAttributes<_rn_primitives_hover_card0.TriggerRef>>;
20
- declare function HoverCardContent({
21
- className,
22
- align,
23
- sideOffset,
24
- ...props
25
- }: _rn_primitives_hover_card0.ContentProps & {
26
- ref?: React$1.RefObject<_rn_primitives_hover_card0.ContentRef>;
27
- }): react_jsx_runtime124.JSX.Element;
28
- //#endregion
29
- export { HoverCard, HoverCardContent, HoverCardTrigger };
@@ -1,2 +0,0 @@
1
- import { Check } from "lucide-react-native";
2
- export { Check };
@@ -1,2 +0,0 @@
1
- import { ChevronDown } from "lucide-react-native";
2
- export { ChevronDown };
@@ -1,2 +0,0 @@
1
- import { ChevronRight } from "lucide-react-native";
2
- export { ChevronRight };
@@ -1,2 +0,0 @@
1
- import { ChevronUp } from "lucide-react-native";
2
- export { ChevronUp };
@@ -1,2 +0,0 @@
1
- import { CircleUserRoundIcon } from "lucide-react-native";
2
- export { CircleUserRoundIcon };
@@ -1,2 +0,0 @@
1
- import { Info } from "lucide-react-native";
2
- export { Info };
@@ -1,2 +0,0 @@
1
- import { KeyRoundIcon } from "lucide-react-native";
2
- export { KeyRoundIcon };
@@ -1,2 +0,0 @@
1
- import { MoonStar } from "lucide-react-native";
2
- export { MoonStar };
@@ -1,2 +0,0 @@
1
- import { Sun } from "lucide-react-native";
2
- export { Sun };
@@ -1,2 +0,0 @@
1
- import { X } from "lucide-react-native";
2
- export { X };
@@ -1,6 +0,0 @@
1
- import { LucideIcon } from "lucide-react-native";
2
-
3
- //#region ui/icons/iconWithClassName.d.ts
4
- declare function iconWithClassName(icon: LucideIcon): void;
5
- //#endregion
6
- export { iconWithClassName };
@@ -1,14 +0,0 @@
1
- import * as React$1 from "react";
2
- import { TextInput, TextInputProps } from "react-native";
3
- import * as react_jsx_runtime125 from "react/jsx-runtime";
4
-
5
- //#region ui/input.d.ts
6
- declare function Input({
7
- className,
8
- placeholderClassName,
9
- ...props
10
- }: TextInputProps & {
11
- ref?: React$1.RefObject<TextInput>;
12
- }): react_jsx_runtime125.JSX.Element;
13
- //#endregion
14
- export { Input };
@@ -1,15 +0,0 @@
1
- import * as react_jsx_runtime126 from "react/jsx-runtime";
2
- import * as LabelPrimitive from "@rn-primitives/label";
3
-
4
- //#region ui/label.d.ts
5
- declare function Label({
6
- className,
7
- onPress,
8
- onLongPress,
9
- onPressIn,
10
- onPressOut,
11
- disabled,
12
- ...props
13
- }: LabelPrimitive.TextProps & React.RefAttributes<LabelPrimitive.TextRef>): react_jsx_runtime126.JSX.Element;
14
- //#endregion
15
- export { Label };
package/dist/ui/link.d.ts DELETED
@@ -1,13 +0,0 @@
1
- import * as React$1 from "react";
2
- import * as react_jsx_runtime136 from "react/jsx-runtime";
3
- import { Link as Link$1, LinkProps } from "expo-router";
4
-
5
- //#region ui/link.d.ts
6
- declare function Link({
7
- className,
8
- ...props
9
- }: LinkProps & {
10
- ref?: React$1.RefObject<typeof Link$1>;
11
- }): react_jsx_runtime136.JSX.Element;
12
- //#endregion
13
- export { Link };
@@ -1,19 +0,0 @@
1
- import { ButtonProps } from "./button.js";
2
- import React from "react";
3
- import * as react_jsx_runtime135 from "react/jsx-runtime";
4
-
5
- //#region ui/loading-button.d.ts
6
- interface LoadingButtonProps extends ButtonProps {
7
- isLoading?: boolean;
8
- loadingText?: string;
9
- children: React.ReactNode;
10
- }
11
- declare function LoadingButton({
12
- isLoading,
13
- loadingText,
14
- children,
15
- disabled,
16
- ...props
17
- }: LoadingButtonProps): react_jsx_runtime135.JSX.Element;
18
- //#endregion
19
- export { LoadingButton };
@@ -1,15 +0,0 @@
1
- import * as react_jsx_runtime115 from "react/jsx-runtime";
2
-
3
- //#region ui/loading-overlay.d.ts
4
- interface LoadingOverlayProps {
5
- isVisible: boolean;
6
- title?: string;
7
- subtitle?: string;
8
- }
9
- declare function LoadingOverlay({
10
- isVisible,
11
- title,
12
- subtitle
13
- }: LoadingOverlayProps): react_jsx_runtime115.JSX.Element | null;
14
- //#endregion
15
- export { LoadingOverlay };
@@ -1,13 +0,0 @@
1
- import * as react_jsx_runtime138 from "react/jsx-runtime";
2
-
3
- //#region ui/loading-screen.d.ts
4
- interface LoadingScreenProps {
5
- title?: string;
6
- variant?: 'default' | 'profile' | 'form' | 'list';
7
- }
8
- declare function LoadingScreen({
9
- title,
10
- variant
11
- }: LoadingScreenProps): react_jsx_runtime138.JSX.Element;
12
- //#endregion
13
- export { LoadingScreen };
@@ -1,20 +0,0 @@
1
- import * as React$1 from "react";
2
- import * as react_jsx_runtime26 from "react/jsx-runtime";
3
-
4
- //#region ui/marketing/FeatureGrid.d.ts
5
- interface FeatureItem {
6
- title: React$1.ReactNode;
7
- description?: React$1.ReactNode;
8
- icon?: React$1.ReactNode;
9
- }
10
- declare function FeatureGrid({
11
- items,
12
- columns,
13
- className
14
- }: {
15
- items: FeatureItem[];
16
- columns?: 2 | 3 | 4;
17
- className?: string;
18
- }): react_jsx_runtime26.JSX.Element;
19
- //#endregion
20
- export { FeatureGrid, FeatureItem };
@@ -1,27 +0,0 @@
1
- import * as React$1 from "react";
2
- import * as react_jsx_runtime109 from "react/jsx-runtime";
3
-
4
- //#region ui/marketing/Hero.d.ts
5
- declare function Hero({
6
- title,
7
- subtitle,
8
- primaryCta,
9
- secondaryCta,
10
- className
11
- }: {
12
- title: React$1.ReactNode;
13
- subtitle?: React$1.ReactNode;
14
- primaryCta?: {
15
- label: string;
16
- href?: string;
17
- onClick?: () => void;
18
- };
19
- secondaryCta?: {
20
- label: string;
21
- href?: string;
22
- onClick?: () => void;
23
- };
24
- className?: string;
25
- }): react_jsx_runtime109.JSX.Element;
26
- //#endregion
27
- export { Hero };
@@ -1,24 +0,0 @@
1
- import * as react_jsx_runtime114 from "react/jsx-runtime";
2
-
3
- //#region ui/marketing/PricingTable.d.ts
4
- interface PricingTier {
5
- name: string;
6
- price: string;
7
- tagline?: string;
8
- features: string[];
9
- cta?: {
10
- label: string;
11
- href?: string;
12
- onClick?: () => void;
13
- };
14
- highlighted?: boolean;
15
- }
16
- declare function PricingTable({
17
- tiers,
18
- className
19
- }: {
20
- tiers: PricingTier[];
21
- className?: string;
22
- }): react_jsx_runtime114.JSX.Element;
23
- //#endregion
24
- export { PricingTable, PricingTier };
@@ -1,4 +0,0 @@
1
- import { FeatureGrid, FeatureItem } from "./FeatureGrid.js";
2
- import { Hero } from "./Hero.js";
3
- import { PricingTable, PricingTier } from "./PricingTable.js";
4
- export { FeatureGrid, type FeatureItem, Hero, PricingTable, type PricingTier };
@@ -1,114 +0,0 @@
1
- import * as React$1 from "react";
2
- import * as react_native50 from "react-native";
3
- import { TextProps, View } from "react-native";
4
- import * as react_jsx_runtime139 from "react/jsx-runtime";
5
- import * as MenubarPrimitive from "@rn-primitives/menubar";
6
-
7
- //#region ui/menubar.d.ts
8
- declare const MenubarMenu: React$1.ForwardRefExoticComponent<react_native50.ViewProps & {
9
- asChild?: boolean;
10
- } & {
11
- value: string | undefined;
12
- } & React$1.RefAttributes<View>>;
13
- declare const MenubarGroup: React$1.ForwardRefExoticComponent<react_native50.ViewProps & {
14
- asChild?: boolean;
15
- } & React$1.RefAttributes<View>>;
16
- declare const MenubarPortal: typeof MenubarPrimitive.Portal;
17
- declare const MenubarSub: React$1.ForwardRefExoticComponent<react_native50.ViewProps & {
18
- asChild?: boolean;
19
- } & {
20
- defaultOpen?: boolean;
21
- open?: boolean;
22
- onOpenChange?: (value: boolean) => void;
23
- } & React$1.RefAttributes<View>>;
24
- declare const MenubarRadioGroup: React$1.ForwardRefExoticComponent<react_native50.ViewProps & {
25
- asChild?: boolean;
26
- } & {
27
- value: string | undefined;
28
- onValueChange: (value: string) => void;
29
- } & React$1.RefAttributes<View>>;
30
- declare function Menubar({
31
- className,
32
- ...props
33
- }: MenubarPrimitive.RootProps & {
34
- ref?: React$1.RefObject<MenubarPrimitive.RootRef>;
35
- }): react_jsx_runtime139.JSX.Element;
36
- declare function MenubarTrigger({
37
- className,
38
- ...props
39
- }: MenubarPrimitive.TriggerProps & {
40
- ref?: React$1.RefObject<MenubarPrimitive.TriggerRef>;
41
- }): react_jsx_runtime139.JSX.Element;
42
- declare function MenubarSubTrigger({
43
- className,
44
- inset,
45
- children,
46
- ...props
47
- }: MenubarPrimitive.SubTriggerProps & {
48
- ref?: React$1.RefObject<MenubarPrimitive.SubTriggerRef>;
49
- className?: string;
50
- inset?: boolean;
51
- children?: React$1.ReactNode;
52
- }): react_jsx_runtime139.JSX.Element;
53
- declare function MenubarSubContent({
54
- className,
55
- ...props
56
- }: MenubarPrimitive.SubContentProps & {
57
- ref?: React$1.RefObject<MenubarPrimitive.SubContentRef>;
58
- }): react_jsx_runtime139.JSX.Element;
59
- declare function MenubarContent({
60
- className,
61
- portalHost,
62
- ...props
63
- }: MenubarPrimitive.ContentProps & {
64
- ref?: React$1.RefObject<MenubarPrimitive.ContentRef>;
65
- className?: string;
66
- portalHost?: string;
67
- }): react_jsx_runtime139.JSX.Element;
68
- declare function MenubarItem({
69
- className,
70
- inset,
71
- ...props
72
- }: MenubarPrimitive.ItemProps & {
73
- ref?: React$1.RefObject<MenubarPrimitive.ItemRef>;
74
- className?: string;
75
- inset?: boolean;
76
- }): react_jsx_runtime139.JSX.Element;
77
- declare function MenubarCheckboxItem({
78
- className,
79
- children,
80
- checked,
81
- ...props
82
- }: MenubarPrimitive.CheckboxItemProps & {
83
- ref?: React$1.RefObject<MenubarPrimitive.CheckboxItemRef>;
84
- children?: React$1.ReactNode;
85
- }): react_jsx_runtime139.JSX.Element;
86
- declare function MenubarRadioItem({
87
- className,
88
- children,
89
- ...props
90
- }: MenubarPrimitive.RadioItemProps & {
91
- ref?: React$1.RefObject<MenubarPrimitive.RadioItemRef>;
92
- children?: React$1.ReactNode;
93
- }): react_jsx_runtime139.JSX.Element;
94
- declare function MenubarLabel({
95
- className,
96
- inset,
97
- ...props
98
- }: MenubarPrimitive.LabelProps & {
99
- ref?: React$1.RefObject<MenubarPrimitive.LabelRef>;
100
- className?: string;
101
- inset?: boolean;
102
- }): react_jsx_runtime139.JSX.Element;
103
- declare function MenubarSeparator({
104
- className,
105
- ...props
106
- }: MenubarPrimitive.SeparatorProps & {
107
- ref?: React$1.RefObject<MenubarPrimitive.SeparatorRef>;
108
- }): react_jsx_runtime139.JSX.Element;
109
- declare function MenubarShortcut({
110
- className,
111
- ...props
112
- }: TextProps): react_jsx_runtime139.JSX.Element;
113
- //#endregion
114
- export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger };
@@ -1,4 +0,0 @@
1
- //#region ui/molecules/Autocomplete/index.d.ts
2
- declare const autocomplete = "todo";
3
- //#endregion
4
- export { autocomplete };
@@ -1,7 +0,0 @@
1
- import { SearchAndFilterProps } from "./types.js";
2
- import React from "react";
3
-
4
- //#region ui/molecules/SearchAndFilter/SearchAndFilter.d.ts
5
- declare const SearchAndFilter: React.FC<SearchAndFilterProps>;
6
- //#endregion
7
- export { SearchAndFilter };
@@ -1,3 +0,0 @@
1
- import { SearchAndFilterProps } from "./types.js";
2
- import { SearchAndFilter } from "./SearchAndFilter.js";
3
- export { SearchAndFilter, type SearchAndFilterProps };
@@ -1,24 +0,0 @@
1
- import { FilterOption } from "../../atoms/FilterSelect/types.js";
2
- import "../../atoms/FilterSelect/index.js";
3
-
4
- //#region ui/molecules/SearchAndFilter/types.d.ts
5
- interface SearchAndFilterProps {
6
- searchValue: string;
7
- onSearchChange: (value: string) => void;
8
- searchPlaceholder?: string;
9
- filters?: {
10
- key: string;
11
- label: string;
12
- value: string;
13
- options: FilterOption[];
14
- onChange: (value: FilterOption | undefined) => void;
15
- showCounts?: boolean;
16
- }[];
17
- isLoading?: boolean;
18
- disabled?: boolean;
19
- className?: string;
20
- collapsible?: boolean;
21
- defaultCollapsed?: boolean;
22
- }
23
- //#endregion
24
- export { SearchAndFilterProps };
@@ -1,15 +0,0 @@
1
- import * as react_jsx_runtime111 from "react/jsx-runtime";
2
-
3
- //#region ui/molecules/SkeletonList.d.ts
4
- interface Props {
5
- count?: number;
6
- className?: string;
7
- itemClassName?: string;
8
- }
9
- declare function SkeletonList({
10
- count,
11
- className,
12
- itemClassName
13
- }: Props): react_jsx_runtime111.JSX.Element;
14
- //#endregion
15
- export { SkeletonList };
@@ -1 +0,0 @@
1
- export { };
@@ -1,67 +0,0 @@
1
- import * as React$1 from "react";
2
- import * as react_native54 from "react-native";
3
- import { View } from "react-native";
4
- import * as react_jsx_runtime150 from "react/jsx-runtime";
5
- import * as NavigationMenuPrimitive from "@rn-primitives/navigation-menu";
6
- import * as class_variance_authority_types12 from "class-variance-authority/types";
7
-
8
- //#region ui/navigation-menu.d.ts
9
- declare function NavigationMenu({
10
- className,
11
- children,
12
- ...props
13
- }: NavigationMenuPrimitive.RootProps & {
14
- ref?: React$1.RefObject<NavigationMenuPrimitive.RootRef>;
15
- }): react_jsx_runtime150.JSX.Element;
16
- declare function NavigationMenuList({
17
- className,
18
- ...props
19
- }: NavigationMenuPrimitive.ListProps & {
20
- ref?: React$1.RefObject<NavigationMenuPrimitive.ListRef>;
21
- }): react_jsx_runtime150.JSX.Element;
22
- declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<react_native54.ViewProps & {
23
- asChild?: boolean;
24
- } & {
25
- value: string | undefined;
26
- } & React$1.RefAttributes<View>>;
27
- declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types12.ClassProp | undefined) => string;
28
- declare function NavigationMenuTrigger({
29
- className,
30
- children,
31
- ...props
32
- }: Omit<NavigationMenuPrimitive.TriggerProps, 'children'> & {
33
- children?: React$1.ReactNode;
34
- ref?: React$1.RefObject<NavigationMenuPrimitive.TriggerRef>;
35
- }): react_jsx_runtime150.JSX.Element;
36
- declare function NavigationMenuContent({
37
- className,
38
- children,
39
- portalHost,
40
- ...props
41
- }: NavigationMenuPrimitive.ContentProps & {
42
- portalHost?: string;
43
- ref?: React$1.RefObject<NavigationMenuPrimitive.ContentRef>;
44
- }): react_jsx_runtime150.JSX.Element;
45
- declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<Omit<react_native54.PressableProps & React$1.RefAttributes<View>, "ref"> & {
46
- asChild?: boolean;
47
- } & {
48
- onKeyDown?: (ev: React$1.KeyboardEvent) => void;
49
- onKeyUp?: (ev: React$1.KeyboardEvent) => void;
50
- } & {
51
- active?: boolean;
52
- } & React$1.RefAttributes<View>>;
53
- declare function NavigationMenuViewport({
54
- className,
55
- ...props
56
- }: NavigationMenuPrimitive.ViewportProps & {
57
- ref?: React$1.RefObject<NavigationMenuPrimitive.ViewportRef>;
58
- }): react_jsx_runtime150.JSX.Element;
59
- declare function NavigationMenuIndicator({
60
- ref,
61
- className,
62
- ...props
63
- }: NavigationMenuPrimitive.IndicatorProps & {
64
- ref?: React$1.RefObject<NavigationMenuPrimitive.IndicatorRef>;
65
- }): react_jsx_runtime150.JSX.Element;
66
- //#endregion
67
- export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, navigationMenuTriggerStyle };