@rovula/ui 0.1.0 → 0.1.1

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 (70) hide show
  1. package/dist/cjs/bundle.css +65 -0
  2. package/dist/cjs/bundle.js +9261 -3
  3. package/dist/cjs/bundle.js.map +1 -1
  4. package/dist/cjs/types/components/Footer/Footer.d.ts +21 -0
  5. package/dist/cjs/types/components/Footer/Footer.stories.d.ts +45 -0
  6. package/dist/cjs/types/components/Footer/index.d.ts +2 -0
  7. package/dist/cjs/types/components/Icon/Icon.d.ts +1 -1
  8. package/dist/cjs/types/components/Icon/Icon.stories.d.ts +9 -1
  9. package/dist/cjs/types/components/Navbar/Navbar.d.ts +5 -0
  10. package/dist/cjs/types/components/Navbar/Navbar.stories.d.ts +14 -0
  11. package/dist/cjs/types/components/PasswordInput/PasswordInput.d.ts +19 -0
  12. package/dist/cjs/types/components/PasswordInput/PasswordInput.stories.d.ts +395 -0
  13. package/dist/cjs/types/components/PasswordInput/index.d.ts +2 -0
  14. package/dist/cjs/types/icons/index.d.ts +1 -0
  15. package/dist/cjs/types/icons/lucideIconNames.d.ts +9 -0
  16. package/dist/cjs/types/index.d.ts +7 -1
  17. package/dist/cjs/types/utils/colors.d.ts +330 -0
  18. package/dist/components/Footer/Footer.js +11 -0
  19. package/dist/components/Footer/Footer.stories.js +34 -0
  20. package/dist/components/Footer/index.js +2 -0
  21. package/dist/components/Icon/Icon.js +28 -11
  22. package/dist/components/Icon/Icon.stories.js +39 -0
  23. package/dist/components/Navbar/Navbar.js +18 -4
  24. package/dist/components/Navbar/Navbar.stories.js +16 -9
  25. package/dist/components/PasswordInput/PasswordInput.js +36 -0
  26. package/dist/components/PasswordInput/PasswordInput.stories.js +67 -0
  27. package/dist/components/PasswordInput/index.js +1 -0
  28. package/dist/esm/bundle.css +65 -0
  29. package/dist/esm/bundle.js +9261 -3
  30. package/dist/esm/bundle.js.map +1 -1
  31. package/dist/esm/types/components/Footer/Footer.d.ts +21 -0
  32. package/dist/esm/types/components/Footer/Footer.stories.d.ts +45 -0
  33. package/dist/esm/types/components/Footer/index.d.ts +2 -0
  34. package/dist/esm/types/components/Icon/Icon.d.ts +1 -1
  35. package/dist/esm/types/components/Icon/Icon.stories.d.ts +9 -1
  36. package/dist/esm/types/components/Navbar/Navbar.d.ts +5 -0
  37. package/dist/esm/types/components/Navbar/Navbar.stories.d.ts +14 -0
  38. package/dist/esm/types/components/PasswordInput/PasswordInput.d.ts +19 -0
  39. package/dist/esm/types/components/PasswordInput/PasswordInput.stories.d.ts +395 -0
  40. package/dist/esm/types/components/PasswordInput/index.d.ts +2 -0
  41. package/dist/esm/types/icons/index.d.ts +1 -0
  42. package/dist/esm/types/icons/lucideIconNames.d.ts +9 -0
  43. package/dist/esm/types/index.d.ts +7 -1
  44. package/dist/esm/types/utils/colors.d.ts +330 -0
  45. package/dist/icons/index.js +1 -0
  46. package/dist/icons/lucideIconNames.js +12 -0
  47. package/dist/index.d.ts +386 -2
  48. package/dist/index.js +4 -0
  49. package/dist/src/theme/global.css +117 -24
  50. package/dist/utils/colors.js +369 -0
  51. package/package.json +2 -1
  52. package/src/components/Footer/Footer.stories.tsx +119 -0
  53. package/src/components/Footer/Footer.tsx +122 -0
  54. package/src/components/Footer/index.ts +3 -0
  55. package/src/components/Icon/Icon.stories.tsx +89 -0
  56. package/src/components/Icon/Icon.tsx +44 -23
  57. package/src/components/Navbar/Navbar.stories.tsx +109 -55
  58. package/src/components/Navbar/Navbar.tsx +41 -3
  59. package/src/components/PasswordInput/PasswordInput.stories.tsx +111 -0
  60. package/src/components/PasswordInput/PasswordInput.tsx +50 -0
  61. package/src/components/PasswordInput/index.ts +2 -0
  62. package/src/icons/index.ts +1 -0
  63. package/src/icons/lucideIconNames.ts +14 -0
  64. package/src/index.ts +15 -1
  65. package/src/theme/themes/skyller/typography.css +24 -24
  66. package/src/theme/tokens/baseline.css +1 -0
  67. package/src/theme/tokens/components/footer.css +9 -0
  68. package/src/theme/tokens/components/navbar.css +2 -1
  69. package/src/types/lucide-react.d.ts +5 -0
  70. package/src/utils/colors.ts +383 -0
@@ -0,0 +1,21 @@
1
+ import { FC, ReactNode } from "react";
2
+ export type FooterVariant = "default" | "simple" | "transparent";
3
+ export type FooterProps = {
4
+ /** Layout variant: default (3-column) | simple (centered) | transparent (no bg) */
5
+ variant?: FooterVariant;
6
+ /** Copyright text - renders in left (default) or center (simple) */
7
+ copyright?: ReactNode;
8
+ position?: "static" | "sticky";
9
+ children?: ReactNode;
10
+ leftNav?: ReactNode;
11
+ rightNav?: ReactNode;
12
+ center?: ReactNode;
13
+ container?: boolean;
14
+ className?: string;
15
+ containerClassName?: string;
16
+ leftNavClassName?: string;
17
+ centerClassName?: string;
18
+ rightNavClassName?: string;
19
+ };
20
+ declare const Footer: FC<FooterProps>;
21
+ export default Footer;
@@ -0,0 +1,45 @@
1
+ import React from "react";
2
+ declare const meta: {
3
+ title: string;
4
+ component: React.FC<import("./Footer").FooterProps>;
5
+ tags: string[];
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
10
+ variant?: import("./Footer").FooterVariant | undefined;
11
+ copyright?: React.ReactNode;
12
+ position?: "static" | "sticky" | undefined;
13
+ children?: React.ReactNode;
14
+ leftNav?: React.ReactNode;
15
+ rightNav?: React.ReactNode;
16
+ center?: React.ReactNode;
17
+ container?: boolean | undefined;
18
+ className?: string | undefined;
19
+ containerClassName?: string | undefined;
20
+ leftNavClassName?: string | undefined;
21
+ centerClassName?: string | undefined;
22
+ rightNavClassName?: string | undefined;
23
+ }>) => import("react/jsx-runtime").JSX.Element)[];
24
+ };
25
+ export default meta;
26
+ export declare const Default: {
27
+ args: {};
28
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
29
+ };
30
+ export declare const WithCopyright: {
31
+ args: {};
32
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
33
+ };
34
+ export declare const Simple: {
35
+ args: {};
36
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
37
+ };
38
+ export declare const Transparent: {
39
+ args: {};
40
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
41
+ };
42
+ export declare const Custom: {
43
+ args: {};
44
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
45
+ };
@@ -0,0 +1,2 @@
1
+ import Footer from "./Footer";
2
+ export { Footer };
@@ -1,7 +1,7 @@
1
1
  import React from "react";
2
2
  export type IconProps = {
3
3
  name: string;
4
- type?: "heroicons" | "material" | "custom";
4
+ type?: "heroicons" | "material" | "lucide" | "custom";
5
5
  color?: "primary" | "secondary" | "success" | "tertiary" | "info" | "warning" | "error" | "inherit";
6
6
  variant?: "solid" | "outline";
7
7
  size?: "sm" | "md" | "lg" | "inherit";
@@ -8,7 +8,7 @@ declare const meta: {
8
8
  };
9
9
  decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
10
10
  name: string;
11
- type?: "heroicons" | "material" | "custom" | undefined;
11
+ type?: "heroicons" | "material" | "lucide" | "custom" | undefined;
12
12
  color?: "primary" | "secondary" | "success" | "tertiary" | "info" | "warning" | "error" | "inherit" | undefined;
13
13
  variant?: "solid" | "outline" | undefined;
14
14
  size?: "sm" | "md" | "lg" | "inherit" | undefined;
@@ -502,6 +502,14 @@ export declare const PreviewHeroIcon: {
502
502
  args: {};
503
503
  render: (args: {}) => import("react/jsx-runtime").JSX.Element;
504
504
  };
505
+ export declare const PreviewLucideIcon: {
506
+ args: {};
507
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
508
+ };
509
+ export declare const LucideIconBrowser: {
510
+ args: {};
511
+ render: () => import("react/jsx-runtime").JSX.Element;
512
+ };
505
513
  export declare const PreviewMaterialIcon: {
506
514
  args: {};
507
515
  render: (args: {}) => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,10 @@
1
1
  import { FC, ReactNode } from "react";
2
+ export type NavbarVariant = "default" | "transparent";
2
3
  export type NavbarProps = {
4
+ /** Appearance: default (solid bg) | transparent */
5
+ variant?: NavbarVariant;
6
+ /** Show shadow when page is scrolled (works with position="sticky") */
7
+ scrollShadow?: boolean;
3
8
  position?: "static" | "sticky";
4
9
  children?: ReactNode;
5
10
  leftNav?: ReactNode;
@@ -7,6 +7,8 @@ declare const meta: {
7
7
  layout: string;
8
8
  };
9
9
  decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
10
+ variant?: import("./Navbar").NavbarVariant | undefined;
11
+ scrollShadow?: boolean | undefined;
10
12
  position?: "static" | "sticky" | undefined;
11
13
  children?: React.ReactNode;
12
14
  leftNav?: React.ReactNode;
@@ -25,6 +27,18 @@ export declare const Default: {
25
27
  args: {};
26
28
  render: (args: {}) => import("react/jsx-runtime").JSX.Element;
27
29
  };
30
+ export declare const Transparent: {
31
+ args: {};
32
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
33
+ };
34
+ export declare const WithScrollShadow: {
35
+ args: {};
36
+ parameters: {
37
+ layout: string;
38
+ };
39
+ decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {}>) => import("react/jsx-runtime").JSX.Element)[];
40
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
41
+ };
28
42
  export declare const Custom: {
29
43
  args: {};
30
44
  render: (args: {}) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import { InputProps } from "../TextInput/TextInput";
3
+ export type PasswordInputProps = Omit<InputProps, "type"> & {
4
+ /** Show toggle visibility button. Default: true */
5
+ showToggle?: boolean;
6
+ /** Icon when password is hidden (click to reveal). Default: Icon eye (lucide) */
7
+ hideIcon?: React.ReactNode;
8
+ /** Icon when password is visible (click to hide). Default: Icon eye-off (lucide) */
9
+ showIcon?: React.ReactNode;
10
+ };
11
+ export declare const PasswordInput: React.ForwardRefExoticComponent<Omit<InputProps, "type"> & {
12
+ /** Show toggle visibility button. Default: true */
13
+ showToggle?: boolean;
14
+ /** Icon when password is hidden (click to reveal). Default: Icon eye (lucide) */
15
+ hideIcon?: React.ReactNode;
16
+ /** Icon when password is visible (click to hide). Default: Icon eye-off (lucide) */
17
+ showIcon?: React.ReactNode;
18
+ } & React.RefAttributes<HTMLInputElement>>;
19
+ export default PasswordInput;
@@ -0,0 +1,395 @@
1
+ import React from "react";
2
+ declare const meta: {
3
+ title: string;
4
+ component: React.ForwardRefExoticComponent<Omit<import("../..").InputProps, "type"> & {
5
+ showToggle?: boolean;
6
+ hideIcon?: React.ReactNode;
7
+ showIcon?: React.ReactNode;
8
+ } & React.RefAttributes<HTMLInputElement>>;
9
+ tags: string[];
10
+ parameters: {
11
+ layout: string;
12
+ };
13
+ decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
14
+ variant?: "flat" | "outline" | "underline" | undefined;
15
+ suppressHydrationWarning?: boolean | undefined | undefined;
16
+ className?: string | undefined;
17
+ color?: string | undefined | undefined;
18
+ height?: number | string | undefined | undefined;
19
+ id?: string | undefined;
20
+ lang?: string | undefined | undefined;
21
+ max?: number | string | undefined | undefined;
22
+ min?: number | string | undefined | undefined;
23
+ name?: string | undefined | undefined;
24
+ style?: React.CSSProperties | undefined;
25
+ width?: number | string | undefined | undefined;
26
+ role?: React.AriaRole | undefined;
27
+ tabIndex?: number | undefined | undefined;
28
+ "aria-activedescendant"?: string | undefined | undefined;
29
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
30
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
31
+ "aria-braillelabel"?: string | undefined | undefined;
32
+ "aria-brailleroledescription"?: string | undefined | undefined;
33
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
34
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
35
+ "aria-colcount"?: number | undefined | undefined;
36
+ "aria-colindex"?: number | undefined | undefined;
37
+ "aria-colindextext"?: string | undefined | undefined;
38
+ "aria-colspan"?: number | undefined | undefined;
39
+ "aria-controls"?: string | undefined | undefined;
40
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
41
+ "aria-describedby"?: string | undefined | undefined;
42
+ "aria-description"?: string | undefined | undefined;
43
+ "aria-details"?: string | undefined | undefined;
44
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
45
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
46
+ "aria-errormessage"?: string | undefined | undefined;
47
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
48
+ "aria-flowto"?: string | undefined | undefined;
49
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
50
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
51
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
52
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
53
+ "aria-keyshortcuts"?: string | undefined | undefined;
54
+ "aria-label"?: string | undefined | undefined;
55
+ "aria-labelledby"?: string | undefined | undefined;
56
+ "aria-level"?: number | undefined | undefined;
57
+ "aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
58
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
59
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
60
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
61
+ "aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
62
+ "aria-owns"?: string | undefined | undefined;
63
+ "aria-placeholder"?: string | undefined | undefined;
64
+ "aria-posinset"?: number | undefined | undefined;
65
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
66
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
67
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
68
+ "aria-required"?: (boolean | "true" | "false") | undefined;
69
+ "aria-roledescription"?: string | undefined | undefined;
70
+ "aria-rowcount"?: number | undefined | undefined;
71
+ "aria-rowindex"?: number | undefined | undefined;
72
+ "aria-rowindextext"?: string | undefined | undefined;
73
+ "aria-rowspan"?: number | undefined | undefined;
74
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
75
+ "aria-setsize"?: number | undefined | undefined;
76
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
77
+ "aria-valuemax"?: number | undefined | undefined;
78
+ "aria-valuemin"?: number | undefined | undefined;
79
+ "aria-valuenow"?: number | undefined | undefined;
80
+ "aria-valuetext"?: string | undefined | undefined;
81
+ children?: React.ReactNode;
82
+ dangerouslySetInnerHTML?: {
83
+ __html: string | TrustedHTML;
84
+ } | undefined | undefined;
85
+ onCopy?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
86
+ onCopyCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
87
+ onCut?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
88
+ onCutCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
89
+ onPaste?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
90
+ onPasteCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
91
+ onCompositionEnd?: React.CompositionEventHandler<HTMLInputElement> | undefined;
92
+ onCompositionEndCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
93
+ onCompositionStart?: React.CompositionEventHandler<HTMLInputElement> | undefined;
94
+ onCompositionStartCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
95
+ onCompositionUpdate?: React.CompositionEventHandler<HTMLInputElement> | undefined;
96
+ onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
97
+ onFocus?: React.FocusEventHandler<HTMLInputElement> | undefined;
98
+ onFocusCapture?: React.FocusEventHandler<HTMLInputElement> | undefined;
99
+ onBlur?: React.FocusEventHandler<HTMLInputElement> | undefined;
100
+ onBlurCapture?: React.FocusEventHandler<HTMLInputElement> | undefined;
101
+ onChange?: React.ChangeEventHandler<HTMLInputElement> | undefined;
102
+ onChangeCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
103
+ onBeforeInput?: React.FormEventHandler<HTMLInputElement> | undefined;
104
+ onBeforeInputCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
105
+ onInput?: React.FormEventHandler<HTMLInputElement> | undefined;
106
+ onInputCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
107
+ onReset?: React.FormEventHandler<HTMLInputElement> | undefined;
108
+ onResetCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
109
+ onSubmit?: React.FormEventHandler<HTMLInputElement> | undefined;
110
+ onSubmitCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
111
+ onInvalid?: React.FormEventHandler<HTMLInputElement> | undefined;
112
+ onInvalidCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
113
+ onLoad?: React.ReactEventHandler<HTMLInputElement> | undefined;
114
+ onLoadCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
115
+ onError?: React.ReactEventHandler<HTMLInputElement> | undefined;
116
+ onErrorCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
117
+ onKeyDown?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
118
+ onKeyDownCapture?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
119
+ onKeyPress?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
120
+ onKeyPressCapture?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
121
+ onKeyUp?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
122
+ onKeyUpCapture?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
123
+ onAbort?: React.ReactEventHandler<HTMLInputElement> | undefined;
124
+ onAbortCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
125
+ onCanPlay?: React.ReactEventHandler<HTMLInputElement> | undefined;
126
+ onCanPlayCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
127
+ onCanPlayThrough?: React.ReactEventHandler<HTMLInputElement> | undefined;
128
+ onCanPlayThroughCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
129
+ onDurationChange?: React.ReactEventHandler<HTMLInputElement> | undefined;
130
+ onDurationChangeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
131
+ onEmptied?: React.ReactEventHandler<HTMLInputElement> | undefined;
132
+ onEmptiedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
133
+ onEncrypted?: React.ReactEventHandler<HTMLInputElement> | undefined;
134
+ onEncryptedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
135
+ onEnded?: React.ReactEventHandler<HTMLInputElement> | undefined;
136
+ onEndedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
137
+ onLoadedData?: React.ReactEventHandler<HTMLInputElement> | undefined;
138
+ onLoadedDataCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
139
+ onLoadedMetadata?: React.ReactEventHandler<HTMLInputElement> | undefined;
140
+ onLoadedMetadataCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
141
+ onLoadStart?: React.ReactEventHandler<HTMLInputElement> | undefined;
142
+ onLoadStartCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
143
+ onPause?: React.ReactEventHandler<HTMLInputElement> | undefined;
144
+ onPauseCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
145
+ onPlay?: React.ReactEventHandler<HTMLInputElement> | undefined;
146
+ onPlayCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
147
+ onPlaying?: React.ReactEventHandler<HTMLInputElement> | undefined;
148
+ onPlayingCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
149
+ onProgress?: React.ReactEventHandler<HTMLInputElement> | undefined;
150
+ onProgressCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
151
+ onRateChange?: React.ReactEventHandler<HTMLInputElement> | undefined;
152
+ onRateChangeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
153
+ onResize?: React.ReactEventHandler<HTMLInputElement> | undefined;
154
+ onResizeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
155
+ onSeeked?: React.ReactEventHandler<HTMLInputElement> | undefined;
156
+ onSeekedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
157
+ onSeeking?: React.ReactEventHandler<HTMLInputElement> | undefined;
158
+ onSeekingCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
159
+ onStalled?: React.ReactEventHandler<HTMLInputElement> | undefined;
160
+ onStalledCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
161
+ onSuspend?: React.ReactEventHandler<HTMLInputElement> | undefined;
162
+ onSuspendCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
163
+ onTimeUpdate?: React.ReactEventHandler<HTMLInputElement> | undefined;
164
+ onTimeUpdateCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
165
+ onVolumeChange?: React.ReactEventHandler<HTMLInputElement> | undefined;
166
+ onVolumeChangeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
167
+ onWaiting?: React.ReactEventHandler<HTMLInputElement> | undefined;
168
+ onWaitingCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
169
+ onAuxClick?: React.MouseEventHandler<HTMLInputElement> | undefined;
170
+ onAuxClickCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
171
+ onClick?: React.MouseEventHandler<HTMLInputElement> | undefined;
172
+ onClickCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
173
+ onContextMenu?: React.MouseEventHandler<HTMLInputElement> | undefined;
174
+ onContextMenuCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
175
+ onDoubleClick?: React.MouseEventHandler<HTMLInputElement> | undefined;
176
+ onDoubleClickCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
177
+ onDrag?: React.DragEventHandler<HTMLInputElement> | undefined;
178
+ onDragCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
179
+ onDragEnd?: React.DragEventHandler<HTMLInputElement> | undefined;
180
+ onDragEndCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
181
+ onDragEnter?: React.DragEventHandler<HTMLInputElement> | undefined;
182
+ onDragEnterCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
183
+ onDragExit?: React.DragEventHandler<HTMLInputElement> | undefined;
184
+ onDragExitCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
185
+ onDragLeave?: React.DragEventHandler<HTMLInputElement> | undefined;
186
+ onDragLeaveCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
187
+ onDragOver?: React.DragEventHandler<HTMLInputElement> | undefined;
188
+ onDragOverCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
189
+ onDragStart?: React.DragEventHandler<HTMLInputElement> | undefined;
190
+ onDragStartCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
191
+ onDrop?: React.DragEventHandler<HTMLInputElement> | undefined;
192
+ onDropCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
193
+ onMouseDown?: React.MouseEventHandler<HTMLInputElement> | undefined;
194
+ onMouseDownCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
195
+ onMouseEnter?: React.MouseEventHandler<HTMLInputElement> | undefined;
196
+ onMouseLeave?: React.MouseEventHandler<HTMLInputElement> | undefined;
197
+ onMouseMove?: React.MouseEventHandler<HTMLInputElement> | undefined;
198
+ onMouseMoveCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
199
+ onMouseOut?: React.MouseEventHandler<HTMLInputElement> | undefined;
200
+ onMouseOutCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
201
+ onMouseOver?: React.MouseEventHandler<HTMLInputElement> | undefined;
202
+ onMouseOverCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
203
+ onMouseUp?: React.MouseEventHandler<HTMLInputElement> | undefined;
204
+ onMouseUpCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
205
+ onSelect?: React.ReactEventHandler<HTMLInputElement> | undefined;
206
+ onSelectCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
207
+ onTouchCancel?: React.TouchEventHandler<HTMLInputElement> | undefined;
208
+ onTouchCancelCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
209
+ onTouchEnd?: React.TouchEventHandler<HTMLInputElement> | undefined;
210
+ onTouchEndCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
211
+ onTouchMove?: React.TouchEventHandler<HTMLInputElement> | undefined;
212
+ onTouchMoveCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
213
+ onTouchStart?: React.TouchEventHandler<HTMLInputElement> | undefined;
214
+ onTouchStartCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
215
+ onPointerDown?: React.PointerEventHandler<HTMLInputElement> | undefined;
216
+ onPointerDownCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
217
+ onPointerMove?: React.PointerEventHandler<HTMLInputElement> | undefined;
218
+ onPointerMoveCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
219
+ onPointerUp?: React.PointerEventHandler<HTMLInputElement> | undefined;
220
+ onPointerUpCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
221
+ onPointerCancel?: React.PointerEventHandler<HTMLInputElement> | undefined;
222
+ onPointerCancelCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
223
+ onPointerEnter?: React.PointerEventHandler<HTMLInputElement> | undefined;
224
+ onPointerLeave?: React.PointerEventHandler<HTMLInputElement> | undefined;
225
+ onPointerOver?: React.PointerEventHandler<HTMLInputElement> | undefined;
226
+ onPointerOverCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
227
+ onPointerOut?: React.PointerEventHandler<HTMLInputElement> | undefined;
228
+ onPointerOutCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
229
+ onGotPointerCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
230
+ onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
231
+ onLostPointerCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
232
+ onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
233
+ onScroll?: React.UIEventHandler<HTMLInputElement> | undefined;
234
+ onScrollCapture?: React.UIEventHandler<HTMLInputElement> | undefined;
235
+ onWheel?: React.WheelEventHandler<HTMLInputElement> | undefined;
236
+ onWheelCapture?: React.WheelEventHandler<HTMLInputElement> | undefined;
237
+ onAnimationStart?: React.AnimationEventHandler<HTMLInputElement> | undefined;
238
+ onAnimationStartCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
239
+ onAnimationEnd?: React.AnimationEventHandler<HTMLInputElement> | undefined;
240
+ onAnimationEndCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
241
+ onAnimationIteration?: React.AnimationEventHandler<HTMLInputElement> | undefined;
242
+ onAnimationIterationCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
243
+ onTransitionEnd?: React.TransitionEventHandler<HTMLInputElement> | undefined;
244
+ onTransitionEndCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
245
+ form?: string | undefined | undefined;
246
+ list?: string | undefined | undefined;
247
+ step?: number | string | undefined | undefined;
248
+ error?: boolean | undefined;
249
+ size?: "sm" | "md" | "lg" | undefined;
250
+ disabled?: boolean | undefined;
251
+ fullwidth?: boolean | undefined;
252
+ title?: string | undefined | undefined;
253
+ startIcon?: React.ReactNode;
254
+ endIcon?: React.ReactNode;
255
+ formAction?: string | undefined;
256
+ formEncType?: string | undefined | undefined;
257
+ formMethod?: string | undefined | undefined;
258
+ formNoValidate?: boolean | undefined | undefined;
259
+ formTarget?: string | undefined | undefined;
260
+ value?: string | number | readonly string[] | undefined;
261
+ defaultChecked?: boolean | undefined | undefined;
262
+ defaultValue?: string | number | readonly string[] | undefined;
263
+ suppressContentEditableWarning?: boolean | undefined | undefined;
264
+ accessKey?: string | undefined | undefined;
265
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
266
+ autoFocus?: boolean | undefined | undefined;
267
+ contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
268
+ contextMenu?: string | undefined | undefined;
269
+ dir?: string | undefined | undefined;
270
+ draggable?: (boolean | "true" | "false") | undefined;
271
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
272
+ hidden?: boolean | undefined | undefined;
273
+ nonce?: string | undefined | undefined;
274
+ slot?: string | undefined | undefined;
275
+ spellCheck?: (boolean | "true" | "false") | undefined;
276
+ translate?: "yes" | "no" | undefined | undefined;
277
+ radioGroup?: string | undefined | undefined;
278
+ about?: string | undefined | undefined;
279
+ content?: string | undefined | undefined;
280
+ datatype?: string | undefined | undefined;
281
+ inlist?: any;
282
+ prefix?: string | undefined | undefined;
283
+ property?: string | undefined | undefined;
284
+ rel?: string | undefined | undefined;
285
+ resource?: string | undefined | undefined;
286
+ rev?: string | undefined | undefined;
287
+ typeof?: string | undefined | undefined;
288
+ vocab?: string | undefined | undefined;
289
+ autoCorrect?: string | undefined | undefined;
290
+ autoSave?: string | undefined | undefined;
291
+ itemProp?: string | undefined | undefined;
292
+ itemScope?: boolean | undefined | undefined;
293
+ itemType?: string | undefined | undefined;
294
+ itemID?: string | undefined | undefined;
295
+ itemRef?: string | undefined | undefined;
296
+ results?: number | undefined | undefined;
297
+ security?: string | undefined | undefined;
298
+ unselectable?: "on" | "off" | undefined | undefined;
299
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
300
+ is?: string | undefined | undefined;
301
+ rounded?: "none" | "normal" | "full" | undefined;
302
+ hasClearIcon?: boolean | undefined;
303
+ hasSearchIcon?: boolean | undefined;
304
+ isFloatingLabel?: boolean | undefined;
305
+ accept?: string | undefined | undefined;
306
+ alt?: string | undefined | undefined;
307
+ autoComplete?: React.HTMLInputAutoCompleteAttribute | undefined;
308
+ capture?: boolean | "user" | "environment" | undefined | undefined;
309
+ checked?: boolean | undefined | undefined;
310
+ maxLength?: number | undefined | undefined;
311
+ minLength?: number | undefined | undefined;
312
+ multiple?: boolean | undefined | undefined;
313
+ pattern?: string | undefined | undefined;
314
+ placeholder?: string | undefined | undefined;
315
+ readOnly?: boolean | undefined | undefined;
316
+ required?: boolean | undefined;
317
+ src?: string | undefined | undefined;
318
+ label?: string | undefined;
319
+ iconMode?: "flat" | "solid" | undefined;
320
+ helperText?: string | undefined;
321
+ errorMessage?: string | undefined;
322
+ keepCloseIconOnValue?: boolean | undefined;
323
+ labelClassName?: string | undefined;
324
+ classes?: {
325
+ iconWrapper?: string;
326
+ iconSearchWrapper?: string;
327
+ icon?: string;
328
+ startIconWrapper?: string;
329
+ endIconWrapper?: string;
330
+ } | undefined;
331
+ onClickStartIcon?: (() => void) | undefined;
332
+ onClickEndIcon?: (() => void) | undefined;
333
+ renderStartIcon?: (() => React.ReactNode) | undefined;
334
+ renderEndIcon?: (() => React.ReactNode) | undefined;
335
+ showToggle?: boolean | undefined;
336
+ hideIcon?: React.ReactNode;
337
+ showIcon?: React.ReactNode;
338
+ ref?: React.LegacyRef<HTMLInputElement> | undefined;
339
+ key?: React.Key | null | undefined;
340
+ }>) => import("react/jsx-runtime").JSX.Element)[];
341
+ };
342
+ export default meta;
343
+ export declare const Default: {
344
+ args: {
345
+ label: string;
346
+ placeholder: string;
347
+ fullwidth: boolean;
348
+ };
349
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
350
+ };
351
+ export declare const WithHelperText: {
352
+ args: {
353
+ label: string;
354
+ placeholder: string;
355
+ helperText: string;
356
+ fullwidth: boolean;
357
+ };
358
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
359
+ };
360
+ export declare const WithError: {
361
+ args: {
362
+ label: string;
363
+ placeholder: string;
364
+ error: boolean;
365
+ errorMessage: string;
366
+ fullwidth: boolean;
367
+ };
368
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
369
+ };
370
+ export declare const Disabled: {
371
+ args: {
372
+ label: string;
373
+ value: string;
374
+ disabled: boolean;
375
+ fullwidth: boolean;
376
+ };
377
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
378
+ };
379
+ export declare const CustomIcons: {
380
+ args: {
381
+ label: string;
382
+ placeholder: string;
383
+ fullwidth: boolean;
384
+ };
385
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
386
+ };
387
+ export declare const WithoutToggle: {
388
+ args: {
389
+ label: string;
390
+ placeholder: string;
391
+ showToggle: boolean;
392
+ fullwidth: boolean;
393
+ };
394
+ render: (args: {}) => import("react/jsx-runtime").JSX.Element;
395
+ };
@@ -0,0 +1,2 @@
1
+ export { default } from "./PasswordInput";
2
+ export type { PasswordInputProps } from "./PasswordInput";
@@ -1 +1,2 @@
1
1
  export * from "./iconRegistry";
2
+ export { getLucideIconNames } from "./lucideIconNames";
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Get all available Lucide icon names (kebab-case).
3
+ * Use for autocomplete, validation, or browsing.
4
+ *
5
+ * @example
6
+ * const names = await getLucideIconNames();
7
+ * names.includes("eye-closed"); // true
8
+ */
9
+ export declare function getLucideIconNames(): Promise<string[]>;
@@ -3,6 +3,7 @@ import "./icons/iconConfig";
3
3
  export { default as Button } from "./components/Button/Button";
4
4
  export { default as TextInput } from "./components/TextInput/TextInput";
5
5
  export { default as MaskedTextInput } from "./components/MaskedTextInput";
6
+ export { default as PasswordInput } from "./components/PasswordInput";
6
7
  export { NumberInput } from "./components/NumberInput/NumberInput";
7
8
  export { default as TextArea } from "./components/TextArea/TextArea";
8
9
  export { default as Text } from "./components/Text/Text";
@@ -12,6 +13,7 @@ export { Checkbox } from "./components/Checkbox/Checkbox";
12
13
  export { Label } from "./components/Label/Label";
13
14
  export { Input } from "./components/Input/Input";
14
15
  export { Navbar } from "./components/Navbar";
16
+ export { Footer } from "./components/Footer";
15
17
  export { default as ActionButton } from "./components/ActionButton/ActionButton";
16
18
  export { Avatar, AvatarGroup } from "./components/Avatar";
17
19
  export { Collapsible } from "./components/Collapsible";
@@ -41,13 +43,17 @@ export * from "./components/FocusedScrollView/FocusedScrollView";
41
43
  export * from "./components/RadioGroup/RadioGroup";
42
44
  export type { ButtonProps } from "./components/Button/Button";
43
45
  export type { InputProps } from "./components/TextInput/TextInput";
46
+ export type { PasswordInputProps } from "./components/PasswordInput/PasswordInput";
44
47
  export type { MaskedTextInputProps, MaskRule, } from "./components/MaskedTextInput";
45
48
  export type { NumberInputProps } from "./components/NumberInput/NumberInput";
46
49
  export type { TextAreaProps } from "./components/TextArea/TextArea";
47
50
  export type { DropdownProps, Options } from "./components/Dropdown/Dropdown";
48
- export type { NavbarProps } from "./components/Navbar/Navbar";
51
+ export type { NavbarProps, NavbarVariant } from "./components/Navbar/Navbar";
52
+ export type { FooterProps, FooterVariant } from "./components/Footer/Footer";
49
53
  export type { AvatarProps } from "./components/Avatar/Avatar";
50
54
  export type { AvatarGroupProps } from "./components/Avatar/AvatarGroup";
51
55
  export { resloveTimestamp, getStartDateOfDay, getEndDateOfDay, getStartEndTimestampOfDay, getTimestampUTC, } from "./utils/datetime";
52
56
  export * from "./hooks";
53
57
  export { cn } from "./utils/cn";
58
+ export { srgbToHex, getThemeColor, getThemeColors, THEME_COLOR_KEYS, type ThemeColorKey, } from "./utils/colors";
59
+ export { getLucideIconNames } from "./icons/lucideIconNames";