@lssm/lib.ui-kit 0.0.0-canary-20251217080011 → 0.0.0-canary-20251217083314

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 (60) 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/aspect-ratio.d.ts +5 -5
  5. package/dist/ui/avatar.d.ts +4 -4
  6. package/dist/ui/badge.d.ts +5 -5
  7. package/dist/ui/breadcrumb.d.ts +8 -8
  8. package/dist/ui/button.d.ts +7 -7
  9. package/dist/ui/card.d.ts +7 -7
  10. package/dist/ui/checkbox.d.ts +3 -3
  11. package/dist/ui/collapsible.d.ts +9 -9
  12. package/dist/ui/context-menu.d.ts +16 -16
  13. package/dist/ui/date-picker.d.ts +2 -2
  14. package/dist/ui/date-range-picker.d.ts +2 -2
  15. package/dist/ui/datetime-picker.d.ts +2 -2
  16. package/dist/ui/dialog.d.ts +10 -10
  17. package/dist/ui/dropdown-menu.d.ts +16 -16
  18. package/dist/ui/empty-state.d.ts +4 -4
  19. package/dist/ui/empty.d.ts +7 -7
  20. package/dist/ui/fab.d.ts +3 -3
  21. package/dist/ui/field.d.ts +13 -13
  22. package/dist/ui/form.d.ts +7 -7
  23. package/dist/ui/hover-card.d.ts +6 -6
  24. package/dist/ui/input.d.ts +2 -2
  25. package/dist/ui/label.d.ts +2 -2
  26. package/dist/ui/link.d.ts +2 -2
  27. package/dist/ui/loading-button.d.ts +2 -2
  28. package/dist/ui/loading-overlay.d.ts +2 -2
  29. package/dist/ui/loading-screen.d.ts +2 -2
  30. package/dist/ui/marketing/FeatureGrid.d.ts +2 -2
  31. package/dist/ui/marketing/Hero.d.ts +2 -2
  32. package/dist/ui/marketing/PricingTable.d.ts +2 -2
  33. package/dist/ui/menubar.d.ts +17 -17
  34. package/dist/ui/molecules/SkeletonList.d.ts +2 -2
  35. package/dist/ui/navigation-menu.d.ts +12 -12
  36. package/dist/ui/organisms/ErrorBoundary/ErrorBoundary.d.ts +2 -2
  37. package/dist/ui/organisms/ListPage/ListPage.d.ts +2 -2
  38. package/dist/ui/page-header.d.ts +5 -5
  39. package/dist/ui/password-strength.d.ts +2 -2
  40. package/dist/ui/popover.d.ts +8 -8
  41. package/dist/ui/progress.d.ts +2 -2
  42. package/dist/ui/radio-group.d.ts +3 -3
  43. package/dist/ui/select.d.ts +13 -13
  44. package/dist/ui/separator.d.ts +2 -2
  45. package/dist/ui/skeleton.d.ts +2 -2
  46. package/dist/ui/stack.d.ts +17 -17
  47. package/dist/ui/stepper.d.ts +4 -4
  48. package/dist/ui/switch.d.ts +2 -2
  49. package/dist/ui/table.d.ts +8 -8
  50. package/dist/ui/tabs.d.ts +11 -11
  51. package/dist/ui/text.d.ts +2 -2
  52. package/dist/ui/time-picker.d.ts +2 -2
  53. package/dist/ui/toggle-group.d.ts +4 -4
  54. package/dist/ui/toggle.d.ts +6 -6
  55. package/dist/ui/tooltip.d.ts +6 -6
  56. package/dist/ui/typography.d.ts +12 -12
  57. package/dist/ui/useColorScheme.d.ts +2 -2
  58. package/dist/ui/usecases/UseCaseCard.d.ts +2 -2
  59. package/dist/ui/usecases/UserStoryCard.d.ts +2 -2
  60. package/package.json +4 -4
@@ -1,19 +1,19 @@
1
1
  import * as React$1 from "react";
2
2
  import { LucideIcon } from "lucide-react-native";
3
- import * as react_jsx_runtime160 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime64 from "react/jsx-runtime";
4
4
  import { VariantProps } from "class-variance-authority";
5
5
  import * as TogglePrimitive from "@rn-primitives/toggle";
6
- import * as class_variance_authority_types12 from "class-variance-authority/types";
6
+ import * as class_variance_authority_types2 from "class-variance-authority/types";
7
7
 
8
8
  //#region ui/toggle.d.ts
9
9
  declare const toggleVariants: (props?: ({
10
10
  variant?: "default" | "outline" | null | undefined;
11
11
  size?: "default" | "sm" | "lg" | null | undefined;
12
- } & class_variance_authority_types12.ClassProp) | undefined) => string;
12
+ } & class_variance_authority_types2.ClassProp) | undefined) => string;
13
13
  declare const toggleTextVariants: (props?: ({
14
14
  variant?: "default" | "outline" | null | undefined;
15
15
  size?: "default" | "sm" | "lg" | null | undefined;
16
- } & class_variance_authority_types12.ClassProp) | undefined) => string;
16
+ } & class_variance_authority_types2.ClassProp) | undefined) => string;
17
17
  declare function Toggle({
18
18
  className,
19
19
  variant,
@@ -21,13 +21,13 @@ declare function Toggle({
21
21
  ...props
22
22
  }: TogglePrimitive.RootProps & VariantProps<typeof toggleVariants> & VariantProps<typeof toggleVariants> & {
23
23
  ref?: React$1.RefObject<TogglePrimitive.RootRef>;
24
- }): react_jsx_runtime160.JSX.Element;
24
+ }): react_jsx_runtime64.JSX.Element;
25
25
  declare function ToggleIcon({
26
26
  className,
27
27
  icon: Icon,
28
28
  ...props
29
29
  }: React$1.ComponentPropsWithoutRef<LucideIcon> & {
30
30
  icon: LucideIcon;
31
- }): react_jsx_runtime160.JSX.Element;
31
+ }): react_jsx_runtime64.JSX.Element;
32
32
  //#endregion
33
33
  export { Toggle, ToggleIcon, toggleTextVariants, toggleVariants };
@@ -1,18 +1,18 @@
1
1
  import * as React$1 from "react";
2
- import * as react_native43 from "react-native";
3
- import * as react_jsx_runtime119 from "react/jsx-runtime";
2
+ import * as react_native17 from "react-native";
3
+ import * as react_jsx_runtime63 from "react/jsx-runtime";
4
4
  import * as _rn_primitives_tooltip0 from "@rn-primitives/tooltip";
5
5
 
6
6
  //#region ui/tooltip.d.ts
7
- declare const Tooltip: React$1.ForwardRefExoticComponent<react_native43.ViewProps & {
7
+ declare const Tooltip: React$1.ForwardRefExoticComponent<react_native17.ViewProps & {
8
8
  asChild?: boolean;
9
9
  } & {
10
10
  onOpenChange?: (open: boolean) => void;
11
11
  delayDuration?: number;
12
12
  skipDelayDuration?: number;
13
13
  disableHoverableContent?: boolean;
14
- } & React$1.RefAttributes<react_native43.View>>;
15
- declare const TooltipTrigger: React$1.ForwardRefExoticComponent<Omit<react_native43.PressableProps & React$1.RefAttributes<react_native43.View>, "ref"> & {
14
+ } & React$1.RefAttributes<react_native17.View>>;
15
+ declare const TooltipTrigger: React$1.ForwardRefExoticComponent<Omit<react_native17.PressableProps & React$1.RefAttributes<react_native17.View>, "ref"> & {
16
16
  asChild?: boolean;
17
17
  } & {
18
18
  onKeyDown?: (ev: React$1.KeyboardEvent) => void;
@@ -26,6 +26,6 @@ declare function TooltipContent({
26
26
  }: _rn_primitives_tooltip0.ContentProps & {
27
27
  ref?: React$1.RefObject<_rn_primitives_tooltip0.ContentRef>;
28
28
  portalHost?: string;
29
- }): react_jsx_runtime119.JSX.Element;
29
+ }): react_jsx_runtime63.JSX.Element;
30
30
  //#endregion
31
31
  export { Tooltip, TooltipContent, TooltipTrigger };
@@ -1,5 +1,5 @@
1
1
  import { TextProps } from "./text.js";
2
- import * as react_jsx_runtime149 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime49 from "react/jsx-runtime";
3
3
 
4
4
  //#region ui/typography.d.ts
5
5
  type TypographyProps = TextProps & {
@@ -9,56 +9,56 @@ declare function H1({
9
9
  className,
10
10
  asChild,
11
11
  ...props
12
- }: TypographyProps): react_jsx_runtime149.JSX.Element;
12
+ }: TypographyProps): react_jsx_runtime49.JSX.Element;
13
13
  declare function H2({
14
14
  className,
15
15
  asChild,
16
16
  ...props
17
- }: TypographyProps): react_jsx_runtime149.JSX.Element;
17
+ }: TypographyProps): react_jsx_runtime49.JSX.Element;
18
18
  declare function H3({
19
19
  className,
20
20
  asChild,
21
21
  ...props
22
- }: TypographyProps): react_jsx_runtime149.JSX.Element;
22
+ }: TypographyProps): react_jsx_runtime49.JSX.Element;
23
23
  declare function H4({
24
24
  className,
25
25
  asChild,
26
26
  ...props
27
- }: TypographyProps): react_jsx_runtime149.JSX.Element;
27
+ }: TypographyProps): react_jsx_runtime49.JSX.Element;
28
28
  declare function P({
29
29
  className,
30
30
  asChild,
31
31
  ...props
32
- }: TypographyProps): react_jsx_runtime149.JSX.Element;
32
+ }: TypographyProps): react_jsx_runtime49.JSX.Element;
33
33
  declare function BlockQuote({
34
34
  className,
35
35
  asChild,
36
36
  ...props
37
- }: TypographyProps): react_jsx_runtime149.JSX.Element;
37
+ }: TypographyProps): react_jsx_runtime49.JSX.Element;
38
38
  declare function Code({
39
39
  className,
40
40
  asChild,
41
41
  ...props
42
- }: TypographyProps): react_jsx_runtime149.JSX.Element;
42
+ }: TypographyProps): react_jsx_runtime49.JSX.Element;
43
43
  declare function Lead({
44
44
  className,
45
45
  asChild,
46
46
  ...props
47
- }: TypographyProps): react_jsx_runtime149.JSX.Element;
47
+ }: TypographyProps): react_jsx_runtime49.JSX.Element;
48
48
  declare function Large({
49
49
  className,
50
50
  asChild,
51
51
  ...props
52
- }: TypographyProps): react_jsx_runtime149.JSX.Element;
52
+ }: TypographyProps): react_jsx_runtime49.JSX.Element;
53
53
  declare function Small({
54
54
  className,
55
55
  asChild,
56
56
  ...props
57
- }: TypographyProps): react_jsx_runtime149.JSX.Element;
57
+ }: TypographyProps): react_jsx_runtime49.JSX.Element;
58
58
  declare function Muted({
59
59
  className,
60
60
  asChild,
61
61
  ...props
62
- }: TypographyProps): react_jsx_runtime149.JSX.Element;
62
+ }: TypographyProps): react_jsx_runtime49.JSX.Element;
63
63
  //#endregion
64
64
  export { BlockQuote, Code, H1, H2, H3, H4, Large, Lead, Muted, P, Small, TypographyProps };
@@ -1,10 +1,10 @@
1
- import * as react_native59 from "react-native";
1
+ import * as react_native16 from "react-native";
2
2
 
3
3
  //#region ui/useColorScheme.d.ts
4
4
  declare function useColorScheme(): {
5
5
  colorScheme: "light" | "dark";
6
6
  isDarkColorScheme: boolean;
7
- setColorScheme: (scheme: react_native59.ColorSchemeName) => void;
7
+ setColorScheme: (scheme: react_native16.ColorSchemeName) => void;
8
8
  toggleColorScheme: () => void;
9
9
  };
10
10
  //#endregion
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime89 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime69 from "react/jsx-runtime";
2
2
 
3
3
  //#region ui/usecases/UseCaseCard.d.ts
4
4
  declare function UseCaseCard({
@@ -13,6 +13,6 @@ declare function UseCaseCard({
13
13
  ctaHref?: string;
14
14
  ctaLabel?: string;
15
15
  onCtaClick?: () => void;
16
- }): react_jsx_runtime89.JSX.Element;
16
+ }): react_jsx_runtime69.JSX.Element;
17
17
  //#endregion
18
18
  export { UseCaseCard };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime99 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime79 from "react/jsx-runtime";
2
2
 
3
3
  //#region ui/usecases/UserStoryCard.d.ts
4
4
  declare function UserStoryCard({
@@ -9,6 +9,6 @@ declare function UserStoryCard({
9
9
  title: string;
10
10
  body?: string;
11
11
  outcome?: string;
12
- }): react_jsx_runtime99.JSX.Element;
12
+ }): react_jsx_runtime79.JSX.Element;
13
13
  //#endregion
14
14
  export { UserStoryCard };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lssm/lib.ui-kit",
3
- "version": "0.0.0-canary-20251217080011",
3
+ "version": "0.0.0-canary-20251217083314",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -19,7 +19,7 @@
19
19
  "lint:check": "eslint ui"
20
20
  },
21
21
  "dependencies": {
22
- "@lssm/lib.ui-kit-core": "0.0.0-canary-20251217080011",
22
+ "@lssm/lib.ui-kit-core": "0.0.0-canary-20251217083314",
23
23
  "@react-native-community/datetimepicker": "^8.4.5",
24
24
  "@react-native-async-storage/async-storage": "^2.1.2",
25
25
  "@react-navigation/native": "^7.1.25",
@@ -89,8 +89,8 @@
89
89
  },
90
90
  "devDependencies": {
91
91
  "@babel/core": "^7.28.4",
92
- "@lssm/tool.typescript": "0.0.0-canary-20251217080011",
93
- "@lssm/tool.tsdown": "0.0.0-canary-20251217080011",
92
+ "@lssm/tool.typescript": "0.0.0-canary-20251217083314",
93
+ "@lssm/tool.tsdown": "0.0.0-canary-20251217083314",
94
94
  "tsdown": "^0.17.4",
95
95
  "typescript": "^5.9.3"
96
96
  },