@getmicdrop/svelte-components 5.5.5 → 5.6.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 (266) hide show
  1. package/dist/calendar/AboutShow/AboutShow.svelte +172 -172
  2. package/dist/calendar/Calendar/MiniMonthCalendar.svelte +782 -782
  3. package/dist/calendar/FAQs/FAQs.svelte +75 -75
  4. package/dist/calendar/MonthSwitcher/MonthSwitcher.svelte +126 -126
  5. package/dist/calendar/OrderSummary/OrderSummary.svelte +367 -367
  6. package/dist/calendar/PublicCard/PublicCard.svelte +134 -134
  7. package/dist/calendar/ShowCard/ShowCard.svelte +157 -157
  8. package/dist/calendar/ShowTimeCard/ShowTimeCard.svelte +61 -61
  9. package/dist/components/Layout/AppShell.svelte +104 -0
  10. package/dist/components/Layout/AppShell.svelte.d.ts +26 -0
  11. package/dist/components/Layout/AppShell.svelte.d.ts.map +1 -0
  12. package/dist/components/Layout/ContentSection.svelte +80 -0
  13. package/dist/components/Layout/ContentSection.svelte.d.ts +23 -0
  14. package/dist/components/Layout/ContentSection.svelte.d.ts.map +1 -0
  15. package/dist/components/Layout/Grid.svelte +4 -4
  16. package/dist/components/Layout/Heading.svelte +81 -0
  17. package/dist/components/Layout/Heading.svelte.d.ts +24 -0
  18. package/dist/components/Layout/Heading.svelte.d.ts.map +1 -0
  19. package/dist/components/Layout/PageContainer.svelte +69 -0
  20. package/dist/components/Layout/PageContainer.svelte.d.ts +23 -0
  21. package/dist/components/Layout/PageContainer.svelte.d.ts.map +1 -0
  22. package/dist/components/Layout/Responsive.svelte +75 -0
  23. package/dist/components/Layout/Responsive.svelte.d.ts +19 -0
  24. package/dist/components/Layout/Responsive.svelte.d.ts.map +1 -0
  25. package/dist/components/Layout/Section.svelte +80 -80
  26. package/dist/components/Layout/ShowOnDesktop.svelte +37 -0
  27. package/dist/components/Layout/ShowOnDesktop.svelte.d.ts +16 -0
  28. package/dist/components/Layout/ShowOnDesktop.svelte.d.ts.map +1 -0
  29. package/dist/components/Layout/ShowOnMobile.svelte +37 -0
  30. package/dist/components/Layout/ShowOnMobile.svelte.d.ts +16 -0
  31. package/dist/components/Layout/ShowOnMobile.svelte.d.ts.map +1 -0
  32. package/dist/components/Layout/Sidebar.svelte +108 -108
  33. package/dist/components/Layout/Stack.spec.js +1 -1
  34. package/dist/components/Layout/Stack.svelte +6 -6
  35. package/dist/components/Layout/Text.svelte +87 -0
  36. package/dist/components/Layout/Text.svelte.d.ts +28 -0
  37. package/dist/components/Layout/Text.svelte.d.ts.map +1 -0
  38. package/dist/components/Layout/TwoColumn.svelte +108 -0
  39. package/dist/components/Layout/TwoColumn.svelte.d.ts +28 -0
  40. package/dist/components/Layout/TwoColumn.svelte.d.ts.map +1 -0
  41. package/dist/components/Layout/__tests__/Heading.test.d.ts +2 -0
  42. package/dist/components/Layout/__tests__/Heading.test.d.ts.map +1 -0
  43. package/dist/components/Layout/__tests__/Heading.test.js +123 -0
  44. package/dist/components/Layout/__tests__/ShowOnDesktop.test.d.ts +2 -0
  45. package/dist/components/Layout/__tests__/ShowOnDesktop.test.d.ts.map +1 -0
  46. package/dist/components/Layout/__tests__/ShowOnDesktop.test.js +84 -0
  47. package/dist/components/Layout/__tests__/ShowOnMobile.test.d.ts +2 -0
  48. package/dist/components/Layout/__tests__/ShowOnMobile.test.d.ts.map +1 -0
  49. package/dist/components/Layout/__tests__/ShowOnMobile.test.js +80 -0
  50. package/dist/components/Layout/__tests__/Text.test.d.ts +2 -0
  51. package/dist/components/Layout/__tests__/Text.test.d.ts.map +1 -0
  52. package/dist/components/Layout/__tests__/Text.test.js +146 -0
  53. package/dist/components/Layout/__tests__/TwoColumn.test.d.ts +2 -0
  54. package/dist/components/Layout/__tests__/TwoColumn.test.d.ts.map +1 -0
  55. package/dist/components/Layout/__tests__/TwoColumn.test.js +129 -0
  56. package/dist/constants/validation.js +91 -91
  57. package/dist/constants/validation.spec.js +64 -64
  58. package/dist/datetime/__tests__/format.test.js +1 -1
  59. package/dist/datetime/__tests__/parse.test.js +1 -1
  60. package/dist/datetime/__tests__/timezone.test.js +1 -1
  61. package/dist/datetime/parse.js +1 -1
  62. package/dist/forms/createFormStore.svelte.js +1 -0
  63. package/dist/index.js +40 -40
  64. package/dist/patterns/data/DataGrid.svelte +45 -45
  65. package/dist/patterns/data/DataList.svelte +24 -24
  66. package/dist/patterns/data/DataTable.svelte +36 -36
  67. package/dist/patterns/forms/FormActions.spec.js +95 -95
  68. package/dist/patterns/forms/FormActions.stories.svelte +97 -97
  69. package/dist/patterns/forms/FormActions.svelte +46 -46
  70. package/dist/patterns/forms/FormGrid.svelte +33 -33
  71. package/dist/patterns/forms/FormSection.svelte +32 -32
  72. package/dist/patterns/forms/FormValidationSummary.stories.svelte +83 -83
  73. package/dist/patterns/forms/FormValidationSummary.svelte +74 -74
  74. package/dist/patterns/layout/Sidebar.svelte +39 -39
  75. package/dist/patterns/layout/index.d.ts +9 -0
  76. package/dist/patterns/layout/index.js +22 -0
  77. package/dist/patterns/navigation/BottomNav.stories.svelte +117 -117
  78. package/dist/patterns/navigation/BottomNav.svelte +64 -64
  79. package/dist/patterns/navigation/Header.stories.svelte +77 -77
  80. package/dist/patterns/navigation/Header.svelte +193 -193
  81. package/dist/patterns/page/PageHeader.svelte +18 -18
  82. package/dist/patterns/page/PageLayout.svelte +40 -40
  83. package/dist/patterns/page/PageLoader.spec.js +57 -57
  84. package/dist/patterns/page/PageLoader.stories.svelte +137 -137
  85. package/dist/patterns/page/PageLoader.svelte +24 -24
  86. package/dist/patterns/page/SectionHeader.svelte +29 -29
  87. package/dist/presets/badges.js +112 -112
  88. package/dist/presets/buttons.js +76 -76
  89. package/dist/presets/index.js +9 -9
  90. package/dist/primitives/Accordion/Accordion.stories.svelte +75 -75
  91. package/dist/primitives/Accordion/Accordion.svelte +42 -42
  92. package/dist/primitives/Accordion/AccordionItem.svelte +95 -95
  93. package/dist/primitives/Alert/Alert.spec.js +173 -173
  94. package/dist/primitives/Alert/Alert.stories.svelte +88 -88
  95. package/dist/primitives/Alert/Alert.svelte +27 -27
  96. package/dist/primitives/Avatar/Avatar.stories.svelte +94 -94
  97. package/dist/primitives/Avatar/Avatar.svelte +66 -66
  98. package/dist/primitives/Badges/Badge.spec.js +144 -144
  99. package/dist/primitives/Badges/Badge.stories.svelte +86 -86
  100. package/dist/primitives/Badges/Badge.svelte +79 -79
  101. package/dist/primitives/BottomSheet/BottomSheet.spec.js +136 -136
  102. package/dist/primitives/BottomSheet/BottomSheet.stories.svelte +83 -83
  103. package/dist/primitives/BottomSheet/BottomSheet.svelte +100 -100
  104. package/dist/primitives/Breadcrumb/Breadcrumb.spec.js +122 -122
  105. package/dist/primitives/Breadcrumb/Breadcrumb.stories.svelte +23 -23
  106. package/dist/primitives/Breadcrumb/Breadcrumb.svelte +89 -89
  107. package/dist/primitives/Button/Button.spec.js +223 -223
  108. package/dist/primitives/Button/Button.stories.svelte +76 -76
  109. package/dist/primitives/Button/Button.svelte +270 -270
  110. package/dist/primitives/Button/ButtonSaveDemo.spec.js +146 -146
  111. package/dist/primitives/Button/ButtonSaveDemo.svelte +25 -25
  112. package/dist/primitives/Button/ButtonVariantShowcase.svelte +129 -129
  113. package/dist/primitives/Card.spec.js +49 -49
  114. package/dist/primitives/Card.stories.svelte +22 -22
  115. package/dist/primitives/Card.svelte +28 -28
  116. package/dist/primitives/Checkbox/Checkbox.stories.svelte +84 -84
  117. package/dist/primitives/Checkbox/Checkbox.svelte +88 -88
  118. package/dist/primitives/DarkModeToggle.spec.js +390 -390
  119. package/dist/primitives/DarkModeToggle.stories.svelte +57 -57
  120. package/dist/primitives/DarkModeToggle.svelte +136 -136
  121. package/dist/primitives/Drawer/Drawer.stories.svelte +80 -80
  122. package/dist/primitives/Drawer/Drawer.svelte +120 -120
  123. package/dist/primitives/Dropdown/Dropdown.stories.svelte +137 -137
  124. package/dist/primitives/Dropdown/Dropdown.svelte +14 -14
  125. package/dist/primitives/Dropdown/DropdownItem.svelte +80 -80
  126. package/dist/primitives/Icons/ArrowLeft.svelte +8 -8
  127. package/dist/primitives/Icons/ArrowRight.svelte +8 -8
  128. package/dist/primitives/Icons/Availability.svelte +14 -14
  129. package/dist/primitives/Icons/Back.svelte +14 -14
  130. package/dist/primitives/Icons/CheckCircle.svelte +6 -6
  131. package/dist/primitives/Icons/CheckCircleOutline.svelte +15 -15
  132. package/dist/primitives/Icons/ChevronLeft.svelte +4 -4
  133. package/dist/primitives/Icons/ChevronRight.svelte +4 -4
  134. package/dist/primitives/Icons/Copy.svelte +15 -15
  135. package/dist/primitives/Icons/Cross.svelte +5 -5
  136. package/dist/primitives/Icons/DownArrow.svelte +8 -8
  137. package/dist/primitives/Icons/ErrorCircle.svelte +6 -6
  138. package/dist/primitives/Icons/FacebookIcon.svelte +2 -2
  139. package/dist/primitives/Icons/Home.svelte +15 -15
  140. package/dist/primitives/Icons/Icon.spec.js +169 -169
  141. package/dist/primitives/Icons/Icon.stories.svelte +100 -100
  142. package/dist/primitives/Icons/Icon.svelte +52 -52
  143. package/dist/primitives/Icons/IconGallery.stories.svelte +235 -235
  144. package/dist/primitives/Icons/Info.svelte +7 -7
  145. package/dist/primitives/Icons/InstagramIcon.svelte +4 -4
  146. package/dist/primitives/Icons/LogoInstagram.svelte +2 -2
  147. package/dist/primitives/Icons/Message.svelte +15 -15
  148. package/dist/primitives/Icons/MoonIcon.svelte +5 -5
  149. package/dist/primitives/Icons/More.svelte +21 -21
  150. package/dist/primitives/Icons/MoreHori.spec.js +61 -61
  151. package/dist/primitives/Icons/MoreHori.svelte +22 -22
  152. package/dist/primitives/Icons/Notification.svelte +14 -14
  153. package/dist/primitives/Icons/Payment.svelte +14 -14
  154. package/dist/primitives/Icons/Profile.svelte +21 -21
  155. package/dist/primitives/Icons/Reload.svelte +29 -29
  156. package/dist/primitives/Icons/Shows.svelte +21 -21
  157. package/dist/primitives/Icons/Signout.svelte +21 -21
  158. package/dist/primitives/Icons/SunIcon.svelte +8 -8
  159. package/dist/primitives/Icons/TiktokIcon.svelte +2 -2
  160. package/dist/primitives/Icons/TwitterIcon.svelte +2 -2
  161. package/dist/primitives/Icons/WarningIcon.spec.js +18 -18
  162. package/dist/primitives/Icons/WarningIcon.svelte +5 -5
  163. package/dist/primitives/Input/Input.spec.js +573 -573
  164. package/dist/primitives/Input/Input.stories.svelte +139 -139
  165. package/dist/primitives/Input/Input.svelte +417 -417
  166. package/dist/primitives/Input/Select.spec.js +212 -212
  167. package/dist/primitives/Input/Select.stories.svelte +112 -112
  168. package/dist/primitives/Input/Select.svelte +128 -128
  169. package/dist/primitives/Input/Textarea.stories.svelte +137 -137
  170. package/dist/primitives/Input/Textarea.svelte +35 -35
  171. package/dist/primitives/Label/Label.svelte +37 -37
  172. package/dist/primitives/Modal/Modal.spec.js +99 -99
  173. package/dist/primitives/Modal/Modal.stories.svelte +86 -86
  174. package/dist/primitives/Modal/Modal.svelte +158 -158
  175. package/dist/primitives/NumberInput/NumberInput.svelte +106 -106
  176. package/dist/primitives/Pagination/Pagination.stories.svelte +76 -76
  177. package/dist/primitives/Pagination/Pagination.svelte +261 -261
  178. package/dist/primitives/Radio/Radio.stories.svelte +80 -80
  179. package/dist/primitives/Radio/Radio.svelte +67 -67
  180. package/dist/primitives/Skeleton/CardPlaceholder.svelte +87 -87
  181. package/dist/primitives/Skeleton/ImagePlaceholder.svelte +59 -59
  182. package/dist/primitives/Skeleton/ListPlaceholder.svelte +76 -76
  183. package/dist/primitives/Skeleton/Skeleton.stories.svelte +151 -151
  184. package/dist/primitives/Skeleton/Skeleton.svelte +26 -26
  185. package/dist/primitives/Spinner/Spinner.spec.js +71 -71
  186. package/dist/primitives/Spinner/Spinner.stories.svelte +29 -29
  187. package/dist/primitives/Spinner/Spinner.svelte +20 -20
  188. package/dist/primitives/Tabs/TabItem.svelte +49 -49
  189. package/dist/primitives/Tabs/Tabs.stories.svelte +112 -112
  190. package/dist/primitives/Tabs/Tabs.svelte +123 -123
  191. package/dist/primitives/Toggle.spec.js +143 -143
  192. package/dist/primitives/Toggle.stories.svelte +92 -92
  193. package/dist/primitives/Toggle.svelte +71 -71
  194. package/dist/primitives/Typography/Typography.svelte +53 -53
  195. package/dist/primitives/ValidationError.spec.js +103 -103
  196. package/dist/primitives/ValidationError.stories.svelte +69 -69
  197. package/dist/primitives/ValidationError.svelte +29 -29
  198. package/dist/primitives/index.js +84 -84
  199. package/dist/recipes/CropImage/CropImage.spec.js +208 -208
  200. package/dist/recipes/CropImage/CropImage.stories.svelte +104 -104
  201. package/dist/recipes/CropImage/CropImage.svelte +238 -238
  202. package/dist/recipes/ImageUploader/ImageUploader.stories.svelte +125 -125
  203. package/dist/recipes/ImageUploader/ImageUploader.svelte +804 -804
  204. package/dist/recipes/SuperLogin/SuperLogin.spec.js +17 -17
  205. package/dist/recipes/Toaster/Toaster.stories.svelte +62 -62
  206. package/dist/recipes/feedback/EmptyState/EmptyState.svelte +1 -1
  207. package/dist/recipes/feedback/ErrorDisplay.spec.js +69 -69
  208. package/dist/recipes/feedback/ErrorDisplay.stories.svelte +101 -101
  209. package/dist/recipes/feedback/ErrorDisplay.svelte +1 -1
  210. package/dist/recipes/feedback/StatusIndicator/StatusIndicator.spec.js +133 -133
  211. package/dist/recipes/feedback/StatusIndicator/StatusIndicator.svelte +157 -157
  212. package/dist/recipes/fields/CheckboxField.svelte +85 -85
  213. package/dist/recipes/fields/FormField.svelte +58 -58
  214. package/dist/recipes/fields/RadioGroup.svelte +95 -95
  215. package/dist/recipes/fields/SelectField.svelte +80 -80
  216. package/dist/recipes/fields/TextareaField.svelte +97 -97
  217. package/dist/recipes/fields/ToggleField.svelte +60 -60
  218. package/dist/recipes/fields/index.js +7 -7
  219. package/dist/recipes/inputs/MultiSelect.spec.js +258 -258
  220. package/dist/recipes/inputs/MultiSelect.stories.svelte +133 -133
  221. package/dist/recipes/inputs/MultiSelect.svelte +256 -256
  222. package/dist/recipes/inputs/OTPInput.spec.js +251 -251
  223. package/dist/recipes/inputs/OTPInput.stories.svelte +162 -162
  224. package/dist/recipes/inputs/OTPInput.svelte +29 -29
  225. package/dist/recipes/inputs/PasswordInput.svelte +22 -22
  226. package/dist/recipes/inputs/PasswordStrengthIndicator/PasswordStrengthIndicator.svelte +117 -117
  227. package/dist/recipes/inputs/PlaceAutocomplete/PlaceAutocomplete.stories.svelte +123 -123
  228. package/dist/recipes/inputs/PlaceAutocomplete/PlaceAutocomplete.svelte +326 -326
  229. package/dist/recipes/inputs/Search.svelte +37 -37
  230. package/dist/recipes/inputs/SelectDropdown.svelte +57 -57
  231. package/dist/recipes/modals/AlertModal.svelte +130 -130
  232. package/dist/recipes/modals/ConfirmationModal.spec.js +206 -206
  233. package/dist/recipes/modals/ConfirmationModal.stories.svelte +119 -119
  234. package/dist/recipes/modals/ConfirmationModal.svelte +152 -152
  235. package/dist/recipes/modals/InputModal.svelte +182 -182
  236. package/dist/recipes/modals/ModalStateManager.spec.js +100 -100
  237. package/dist/recipes/modals/ModalStateManager.svelte +77 -77
  238. package/dist/recipes/modals/ModalTestWrapper.svelte +65 -65
  239. package/dist/recipes/modals/StatusModal.svelte +206 -206
  240. package/dist/services/EventService.js +75 -75
  241. package/dist/services/EventService.spec.js +217 -217
  242. package/dist/services/ShowService.spec.js +345 -345
  243. package/dist/stores/auth.js +36 -36
  244. package/dist/stores/auth.spec.js +139 -139
  245. package/dist/stores/toaster.js +13 -13
  246. package/dist/stories/ButtonAuditReview.stories.svelte +14 -14
  247. package/dist/stories/ButtonAuditReview.svelte +427 -427
  248. package/dist/stories/PatternsGallery.stories.svelte +19 -19
  249. package/dist/stories/PatternsGallery.svelte +206 -206
  250. package/dist/stories/PrimitivesGallery.stories.svelte +19 -19
  251. package/dist/stories/PrimitivesGallery.svelte +725 -725
  252. package/dist/stories/RecipesGallery.stories.svelte +19 -19
  253. package/dist/stories/RecipesGallery.svelte +271 -271
  254. package/dist/stories/button-audit-manifest.json +11186 -11186
  255. package/dist/tailwind/preset.cjs +82 -82
  256. package/dist/telemetry.js +405 -405
  257. package/dist/telemetry.spec.js +1144 -1144
  258. package/dist/tokens/__tests__/typography-base.test.d.ts +2 -0
  259. package/dist/tokens/__tests__/typography-base.test.d.ts.map +1 -0
  260. package/dist/tokens/__tests__/typography-base.test.js +138 -0
  261. package/dist/tokens/tokens.css +87 -87
  262. package/dist/tokens/typography-base.css +163 -0
  263. package/dist/utils/apiConfig.spec.js +219 -219
  264. package/dist/utils/transitions.js +62 -62
  265. package/dist/utils/utils.js +354 -354
  266. package/package.json +292 -291
@@ -1,418 +1,418 @@
1
- <script>
2
- /**
3
- * Input Component - Flowbite Native
4
- * Migrated to Svelte 5 runes
5
- *
6
- * NOTE: This component does NOT perform any validation.
7
- * All validation should be handled externally (e.g., via Zod schemas).
8
- * Use the `errorText` prop to display validation errors.
9
- * Use the `color` prop ('red' | 'base') to style the border.
10
- */
11
- import { safeSlide } from "../../utils/transitions.js";
12
- import { cubicOut } from "svelte/easing";
13
- import { onDestroy } from "svelte";
14
- import { EyeOutline, EyeSlashOutline, CloseCircleOutline, ExclamationCircleOutline } from "../Icons";
15
- import { typography } from "../../tokens/typography";
16
- import { formInputSizes } from "../../tokens/sizing";
17
- import { formatCreditCardNumber, formatPhoneNumber } from "../../utils/formatters";
18
-
19
- /** @type {{
20
- required?: boolean,
21
- disabled?: boolean,
22
- optional?: boolean,
23
- icon?: string | null,
24
- buttonIcon?: string | null,
25
- buttonText?: string | null,
26
- maxlength?: number | null,
27
- minlength?: number | null,
28
- type?: string,
29
- placeholder?: string,
30
- label?: string,
31
- id?: string,
32
- name?: string,
33
- className?: string,
34
- size?: 'sm' | 'md' | 'lg',
35
- textareaSize?: string,
36
- errorText?: string,
37
- color?: 'base' | 'red',
38
- helperText?: string,
39
- helperIcon?: string,
40
- hintText?: string,
41
- hintIcon?: string,
42
- contentFloat?: string,
43
- readonly?: boolean,
44
- controlled?: boolean,
45
- onButtonClick?: ((value: string) => void) | null,
46
- value?: string | number | null,
47
- autocomplete?: string | null,
48
- autofocus?: boolean,
49
- showPasswordToggle?: boolean,
50
- animateFocus?: boolean,
51
- statusText?: string,
52
- statusType?: string,
53
- buttonDisabled?: boolean,
54
- inputmode?: string | null,
55
- instantSearch?: boolean,
56
- debounceMs?: number,
57
- minSearchChars?: number,
58
- showClearButton?: boolean,
59
- onsearch?: (detail: { query: string }) => void,
60
- onfocus?: () => void,
61
- onblur?: () => void,
62
- oninputchange?: (value: string) => void,
63
- leftIcon?: any,
64
- [key: string]: any
65
- }} */
66
- let {
67
- required = false,
68
- disabled = false,
69
- optional = false,
70
- icon = null,
71
- buttonIcon = null,
72
- buttonText = null,
73
- maxlength = null,
74
- minlength = null,
75
- type = "text",
76
- placeholder = "",
77
- label = "",
78
- id = "",
79
- name = "",
80
- className = "",
81
- size = "md",
82
- textareaSize = "",
83
- errorText = "",
84
- color = "base",
85
- helperText = "",
86
- helperIcon = "",
87
- hintText = "",
88
- hintIcon = "",
89
- contentFloat = "left",
90
- readonly = false,
91
- controlled = false,
92
- onButtonClick = null,
93
- value = $bindable(""),
94
- autocomplete = null,
95
- autofocus = false,
96
- showPasswordToggle = true,
97
- animateFocus = true,
98
- statusText = "",
99
- statusType = "",
100
- buttonDisabled = false,
101
- inputmode = null,
102
- instantSearch = false,
103
- debounceMs = 250,
104
- minSearchChars = 2,
105
- showClearButton = false,
106
- onsearch,
107
- onfocus,
108
- onblur,
109
- oninputchange,
110
- leftIcon,
111
- ...restProps
112
- } = $props();
113
-
114
- let inputValue = $state(value);
115
- let inputElement = $state(null);
116
- let debounceTimer;
117
-
118
- let computedInputmode = $derived(inputmode || getInputmodeFromType(type));
119
-
120
- function getInputmodeFromType(inputType) {
121
- switch (inputType) {
122
- case 'phoneNumber':
123
- case 'creditCardNumber':
124
- return 'tel';
125
- case 'email':
126
- return 'email';
127
- default:
128
- return null;
129
- }
130
- }
131
-
132
- $effect(() => {
133
- if (value !== inputValue) {
134
- inputValue = value;
135
- }
136
- });
137
-
138
- function checkForAutofill() {
139
- if (inputElement && inputElement.value !== inputValue) {
140
- inputValue = inputElement.value;
141
- value = inputValue;
142
- }
143
- }
144
-
145
- let isPasswordVisible = $state(false);
146
-
147
- // Error state derived from color prop or errorText
148
- let hasError = $derived(color === 'red' || Boolean(errorText));
149
-
150
- let inputType = $derived(showPasswordToggle && isPasswordVisible ? "text" : type);
151
- let shouldAnimate = $derived(animateFocus && !disabled && !readonly);
152
-
153
- let sizeClass = $derived(formInputSizes[size] || formInputSizes.md);
154
-
155
- const togglePasswordVisibility = () => {
156
- isPasswordVisible = !isPasswordVisible;
157
- };
158
-
159
- const handleInput = (event) => {
160
- inputValue = event.target.value;
161
-
162
- // Format special input types
163
- if (type === "creditCardNumber") {
164
- const rawInput = inputValue.replace(/\D/g, "");
165
- inputValue = formatCreditCardNumber(rawInput);
166
- event.target.value = inputValue;
167
- }
168
-
169
- if (type === "phoneNumber") {
170
- const rawInput = inputValue.replace(/\D/g, "");
171
- inputValue = formatPhoneNumber(rawInput);
172
- event.target.value = inputValue;
173
- }
174
-
175
- if (type === "username") {
176
- let sanitized = inputValue.trim();
177
- const urlPattern = /(?:https?:\/\/)?(?:www\.)?(?:instagram\.com|twitter\.com|x\.com|facebook\.com|fb\.com|tiktok\.com|linkedin\.com)\/(?:@)?([A-Za-z0-9._]+)\/?/i;
178
- const urlMatch = sanitized.match(urlPattern);
179
- if (urlMatch) {
180
- sanitized = urlMatch[1];
181
- }
182
- sanitized = sanitized.replace(/^@+/, "");
183
- sanitized = sanitized.replace(/[^A-Za-z0-9._]/g, "");
184
- inputValue = sanitized;
185
- event.target.value = inputValue;
186
- }
187
-
188
- value = inputValue;
189
-
190
- // Call oninputchange callback if provided
191
- oninputchange?.(inputValue);
192
-
193
- // Handle instant search
194
- if (instantSearch) {
195
- const inputValueStr = inputValue ?? '';
196
- clearTimeout(debounceTimer);
197
- if (inputValueStr.length === 0) {
198
- onsearch?.({ query: '' });
199
- return;
200
- }
201
- if (inputValueStr.length >= minSearchChars) {
202
- debounceTimer = setTimeout(() => {
203
- onsearch?.({ query: inputValue });
204
- }, debounceMs);
205
- }
206
- }
207
- };
208
-
209
- function clearInput() {
210
- inputValue = '';
211
- value = '';
212
- clearTimeout(debounceTimer);
213
- if (instantSearch) {
214
- onsearch?.({ query: '' });
215
- }
216
- if (inputElement) {
217
- inputElement.focus();
218
- }
219
- }
220
-
221
- function handleSearchKeyDown(event) {
222
- if (instantSearch) {
223
- if (event.key === 'Enter') {
224
- clearTimeout(debounceTimer);
225
- onsearch?.({ query: inputValue });
226
- }
227
- if (event.key === 'Escape') {
228
- clearInput();
229
- }
230
- }
231
- }
232
-
233
- onDestroy(() => {
234
- clearTimeout(debounceTimer);
235
- });
236
-
237
- const handleBlur = () => {
238
- onblur?.();
239
- };
240
-
241
- const handleFocus = () => {
242
- onfocus?.();
243
- };
244
-
245
- const getContentFloatClass = () => {
246
- switch (contentFloat) {
247
- case "center": return "text-center";
248
- case "right": return "text-right";
249
- default: return "text-left";
250
- }
251
- };
252
-
253
- const getTextareaSizeClass = () => {
254
- switch (textareaSize) {
255
- case "sm": return "h-24";
256
- case "md": return "h-36";
257
- case "lg": return "h-44";
258
- default: return "";
259
- }
260
- };
261
-
262
- const handleButtonClick = () => {
263
- if (typeof onButtonClick === "function") {
264
- onButtonClick(inputValue);
265
- }
266
- };
267
- </script>
268
-
269
- <div class="flex flex-col gap-2 {className}" {...restProps}>
270
- {#if label}
271
- <div class="flex justify-start items-center gap-1">
272
- <label for={id} class={`${typography.label} leading-tight sm:leading-none`}>
273
- {label}{#if required}<span class="text-red-500 font-medium text-sm ml-0.5">*</span>{/if}
274
- </label>
275
- {#if statusText}
276
- <span class="text-sm font-medium {statusType === 'success' ? 'text-green-600' : statusType === 'error' ? 'text-red-500' : ''}">({statusText})</span>
277
- {/if}
278
- {#if optional}
279
- <span class={typography.smMuted}>(optional)</span>
280
- {/if}
281
- </div>
282
- {/if}
283
- <div class="relative w-full">
284
- {#if type === "textarea"}
285
- <textarea
286
- {id}
287
- {name}
288
- {placeholder}
289
- value={inputValue}
290
- oninput={handleInput}
291
- onblur={handleBlur}
292
- onfocus={handleFocus}
293
- {maxlength}
294
- {minlength}
295
- class="{typography.sm} w-full px-3 py-2 bg-gray-50 dark:bg-gray-800 border rounded-lg font-medium placeholder-gray-500 dark:placeholder-gray-400 transition-all focus:outline-none focus:ring-4 focus:ring-blue-300 dark:focus:ring-blue-800 resize-y {hasError ? 'border-red-500' : 'border-gray-300 dark:border-gray-600 hover:border-blue-500 focus:border-blue-500'} {getContentFloatClass()} {getTextareaSizeClass()} {shouldAnimate ? 'focus:scale-[1.01]' : ''}"
296
- required={false}
297
- {disabled}
298
- {readonly}
299
- rows="4"
300
- aria-required={required}
301
- ></textarea>
302
- {:else if type === "password" && showPasswordToggle}
303
- <div class="flex items-center w-full bg-gray-50 dark:bg-gray-800 border rounded-lg transition-all outline-none focus-within:ring-4 focus-within:ring-blue-300 dark:focus-within:ring-blue-800 {hasError ? 'border-red-500' : 'border-gray-300 dark:border-gray-600 hover:border-blue-500 focus-within:border-blue-500'} {shouldAnimate ? 'focus-within:scale-[1.01]' : ''}">
304
- <!-- svelte-ignore a11y_autofocus -->
305
- <input
306
- bind:this={inputElement}
307
- {id}
308
- type={inputType}
309
- {name}
310
- {placeholder}
311
- value={inputValue}
312
- oninput={handleInput}
313
- onchange={checkForAutofill}
314
- onblur={handleBlur}
315
- onfocus={handleFocus}
316
- {maxlength}
317
- {minlength}
318
- class="{typography.sm} flex-1 w-full {sizeClass} bg-transparent border-none font-medium placeholder-gray-500 dark:placeholder-gray-400 focus:outline-none focus:ring-0 {getContentFloatClass()}"
319
- required={false}
320
- {disabled}
321
- {readonly}
322
- aria-required={required}
323
- {autocomplete}
324
- {autofocus}
325
- inputmode={computedInputmode}
326
- />
327
- <button
328
- type="button"
329
- onclick={togglePasswordVisibility}
330
- class="flex items-center justify-center px-3 text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200 focus:outline-none"
331
- tabindex="-1"
332
- aria-label={isPasswordVisible ? "Hide password" : "Show password"}
333
- >
334
- {#if isPasswordVisible}
335
- <EyeSlashOutline class="w-5 h-5" />
336
- {:else}
337
- <EyeOutline class="w-5 h-5" />
338
- {/if}
339
- </button>
340
- </div>
341
- {:else}
342
- <div class="relative flex items-center w-full">
343
- {#if leftIcon}
344
- <div class="absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-400 z-10 pointer-events-none">
345
- {@render leftIcon()}
346
- </div>
347
- {/if}
348
- <!-- svelte-ignore a11y_autofocus -->
349
- <input
350
- bind:this={inputElement}
351
- {id}
352
- type={inputType}
353
- {name}
354
- {placeholder}
355
- value={inputValue}
356
- oninput={handleInput}
357
- onchange={checkForAutofill}
358
- onblur={handleBlur}
359
- onfocus={handleFocus}
360
- onkeydown={handleSearchKeyDown}
361
- {maxlength}
362
- {minlength}
363
- class="{typography.body} w-full {sizeClass} bg-gray-50 dark:bg-gray-800 border rounded-lg font-medium placeholder-gray-500 dark:placeholder-gray-400 transition-all focus:outline-none focus:ring-4 focus:ring-blue-300 dark:focus:ring-blue-800 {hasError ? 'border-red-500' : 'border-gray-300 dark:border-gray-600 hover:border-blue-500 focus:border-blue-500'} {icon || (showClearButton && inputValue) ? 'pr-10' : ''} {leftIcon ? 'pl-10' : ''} {getContentFloatClass()} {shouldAnimate ? 'focus:scale-[1.01]' : ''} {disabled ? 'opacity-50 cursor-not-allowed' : ''}"
364
- required={false}
365
- {disabled}
366
- {readonly}
367
- aria-required={required}
368
- {autocomplete}
369
- {autofocus}
370
- inputmode={computedInputmode}
371
- />
372
- {#if showClearButton && inputValue}
373
- <button
374
- type="button"
375
- onclick={clearInput}
376
- class="absolute right-2 top-1/2 -translate-y-1/2 flex items-center justify-center p-1 text-gray-400 hover:text-gray-600 dark:hover:text-gray-200"
377
- aria-label="Clear input"
378
- tabindex="-1"
379
- >
380
- <CloseCircleOutline class="w-4 h-4" />
381
- </button>
382
- {:else if controlled && (buttonIcon || buttonText)}
383
- <button
384
- type="button"
385
- onclick={handleButtonClick}
386
- disabled={buttonDisabled}
387
- class="absolute inset-y-0 right-0 gap-1 flex items-center justify-center px-4 text-blue-600 hover:text-blue-800 dark:text-blue-400 dark:hover:text-blue-300 disabled:opacity-50 disabled:cursor-not-allowed {helperText || hintText || errorText ? 'mb-7' : ''}"
388
- >
389
- {#if buttonIcon}
390
- <img src={buttonIcon} alt="Button Icon" class="w-5 h-5" />
391
- {/if}
392
- {#if buttonText}
393
- <span class="text-sm font-medium">{buttonText}</span>
394
- {/if}
395
- </button>
396
- {/if}
397
- {#if icon && type !== "textarea" && !(showClearButton && inputValue)}
398
- <img src={icon} alt="Input icon" class="absolute inset-y-0 right-0 w-5 h-5 mr-3 top-1/2 transform -translate-y-1/2" />
399
- {/if}
400
- </div>
401
- {/if}
402
-
403
- {#if errorText}
404
- <div transition:safeSlide={{ duration: 300, easing: cubicOut }} class="flex items-start gap-1.5 mt-2" role="alert" aria-live="assertive">
405
- <ExclamationCircleOutline class="w-4 h-4 shrink-0 text-red-500 mt-0.5" />
406
- <p class={typography.error}>{errorText}</p>
407
- </div>
408
- {:else if helperText || hintText}
409
- <div class={`mt-2 flex items-center ${typography.xsMuted} opacity-65`}>
410
- {#if helperIcon || hintIcon}
411
- <img src={helperIcon || hintIcon} alt="Helper icon" class="w-4 h-4 mr-2" />
412
- {/if}
1
+ <script>
2
+ /**
3
+ * Input Component - Flowbite Native
4
+ * Migrated to Svelte 5 runes
5
+ *
6
+ * NOTE: This component does NOT perform any validation.
7
+ * All validation should be handled externally (e.g., via Zod schemas).
8
+ * Use the `errorText` prop to display validation errors.
9
+ * Use the `color` prop ('red' | 'base') to style the border.
10
+ */
11
+ import { safeSlide } from "../../utils/transitions.js";
12
+ import { cubicOut } from "svelte/easing";
13
+ import { onDestroy } from "svelte";
14
+ import { EyeOutline, EyeSlashOutline, CloseCircleOutline, ExclamationCircleOutline } from "../Icons";
15
+ import { typography } from "../../tokens/typography";
16
+ import { formInputSizes } from "../../tokens/sizing";
17
+ import { formatCreditCardNumber, formatPhoneNumber } from "../../utils/formatters";
18
+
19
+ /** @type {{
20
+ required?: boolean,
21
+ disabled?: boolean,
22
+ optional?: boolean,
23
+ icon?: string | null,
24
+ buttonIcon?: string | null,
25
+ buttonText?: string | null,
26
+ maxlength?: number | null,
27
+ minlength?: number | null,
28
+ type?: string,
29
+ placeholder?: string,
30
+ label?: string,
31
+ id?: string,
32
+ name?: string,
33
+ className?: string,
34
+ size?: 'sm' | 'md' | 'lg',
35
+ textareaSize?: string,
36
+ errorText?: string,
37
+ color?: 'base' | 'red',
38
+ helperText?: string,
39
+ helperIcon?: string,
40
+ hintText?: string,
41
+ hintIcon?: string,
42
+ contentFloat?: string,
43
+ readonly?: boolean,
44
+ controlled?: boolean,
45
+ onButtonClick?: ((value: string) => void) | null,
46
+ value?: string | number | null,
47
+ autocomplete?: string | null,
48
+ autofocus?: boolean,
49
+ showPasswordToggle?: boolean,
50
+ animateFocus?: boolean,
51
+ statusText?: string,
52
+ statusType?: string,
53
+ buttonDisabled?: boolean,
54
+ inputmode?: string | null,
55
+ instantSearch?: boolean,
56
+ debounceMs?: number,
57
+ minSearchChars?: number,
58
+ showClearButton?: boolean,
59
+ onsearch?: (detail: { query: string }) => void,
60
+ onfocus?: () => void,
61
+ onblur?: () => void,
62
+ oninputchange?: (value: string) => void,
63
+ leftIcon?: any,
64
+ [key: string]: any
65
+ }} */
66
+ let {
67
+ required = false,
68
+ disabled = false,
69
+ optional = false,
70
+ icon = null,
71
+ buttonIcon = null,
72
+ buttonText = null,
73
+ maxlength = null,
74
+ minlength = null,
75
+ type = "text",
76
+ placeholder = "",
77
+ label = "",
78
+ id = "",
79
+ name = "",
80
+ className = "",
81
+ size = "md",
82
+ textareaSize = "",
83
+ errorText = "",
84
+ color = "base",
85
+ helperText = "",
86
+ helperIcon = "",
87
+ hintText = "",
88
+ hintIcon = "",
89
+ contentFloat = "left",
90
+ readonly = false,
91
+ controlled = false,
92
+ onButtonClick = null,
93
+ value = $bindable(""),
94
+ autocomplete = null,
95
+ autofocus = false,
96
+ showPasswordToggle = true,
97
+ animateFocus = true,
98
+ statusText = "",
99
+ statusType = "",
100
+ buttonDisabled = false,
101
+ inputmode = null,
102
+ instantSearch = false,
103
+ debounceMs = 250,
104
+ minSearchChars = 2,
105
+ showClearButton = false,
106
+ onsearch,
107
+ onfocus,
108
+ onblur,
109
+ oninputchange,
110
+ leftIcon,
111
+ ...restProps
112
+ } = $props();
113
+
114
+ let inputValue = $state(value);
115
+ let inputElement = $state(null);
116
+ let debounceTimer;
117
+
118
+ let computedInputmode = $derived(inputmode || getInputmodeFromType(type));
119
+
120
+ function getInputmodeFromType(inputType) {
121
+ switch (inputType) {
122
+ case 'phoneNumber':
123
+ case 'creditCardNumber':
124
+ return 'tel';
125
+ case 'email':
126
+ return 'email';
127
+ default:
128
+ return null;
129
+ }
130
+ }
131
+
132
+ $effect(() => {
133
+ if (value !== inputValue) {
134
+ inputValue = value;
135
+ }
136
+ });
137
+
138
+ function checkForAutofill() {
139
+ if (inputElement && inputElement.value !== inputValue) {
140
+ inputValue = inputElement.value;
141
+ value = inputValue;
142
+ }
143
+ }
144
+
145
+ let isPasswordVisible = $state(false);
146
+
147
+ // Error state derived from color prop or errorText
148
+ let hasError = $derived(color === 'red' || Boolean(errorText));
149
+
150
+ let inputType = $derived(showPasswordToggle && isPasswordVisible ? "text" : type);
151
+ let shouldAnimate = $derived(animateFocus && !disabled && !readonly);
152
+
153
+ let sizeClass = $derived(formInputSizes[size] || formInputSizes.md);
154
+
155
+ const togglePasswordVisibility = () => {
156
+ isPasswordVisible = !isPasswordVisible;
157
+ };
158
+
159
+ const handleInput = (event) => {
160
+ inputValue = event.target.value;
161
+
162
+ // Format special input types
163
+ if (type === "creditCardNumber") {
164
+ const rawInput = inputValue.replace(/\D/g, "");
165
+ inputValue = formatCreditCardNumber(rawInput);
166
+ event.target.value = inputValue;
167
+ }
168
+
169
+ if (type === "phoneNumber") {
170
+ const rawInput = inputValue.replace(/\D/g, "");
171
+ inputValue = formatPhoneNumber(rawInput);
172
+ event.target.value = inputValue;
173
+ }
174
+
175
+ if (type === "username") {
176
+ let sanitized = inputValue.trim();
177
+ const urlPattern = /(?:https?:\/\/)?(?:www\.)?(?:instagram\.com|twitter\.com|x\.com|facebook\.com|fb\.com|tiktok\.com|linkedin\.com)\/(?:@)?([A-Za-z0-9._]+)\/?/i;
178
+ const urlMatch = sanitized.match(urlPattern);
179
+ if (urlMatch) {
180
+ sanitized = urlMatch[1];
181
+ }
182
+ sanitized = sanitized.replace(/^@+/, "");
183
+ sanitized = sanitized.replace(/[^A-Za-z0-9._]/g, "");
184
+ inputValue = sanitized;
185
+ event.target.value = inputValue;
186
+ }
187
+
188
+ value = inputValue;
189
+
190
+ // Call oninputchange callback if provided
191
+ oninputchange?.(inputValue);
192
+
193
+ // Handle instant search
194
+ if (instantSearch) {
195
+ const inputValueStr = inputValue ?? '';
196
+ clearTimeout(debounceTimer);
197
+ if (inputValueStr.length === 0) {
198
+ onsearch?.({ query: '' });
199
+ return;
200
+ }
201
+ if (inputValueStr.length >= minSearchChars) {
202
+ debounceTimer = setTimeout(() => {
203
+ onsearch?.({ query: inputValue });
204
+ }, debounceMs);
205
+ }
206
+ }
207
+ };
208
+
209
+ function clearInput() {
210
+ inputValue = '';
211
+ value = '';
212
+ clearTimeout(debounceTimer);
213
+ if (instantSearch) {
214
+ onsearch?.({ query: '' });
215
+ }
216
+ if (inputElement) {
217
+ inputElement.focus();
218
+ }
219
+ }
220
+
221
+ function handleSearchKeyDown(event) {
222
+ if (instantSearch) {
223
+ if (event.key === 'Enter') {
224
+ clearTimeout(debounceTimer);
225
+ onsearch?.({ query: inputValue });
226
+ }
227
+ if (event.key === 'Escape') {
228
+ clearInput();
229
+ }
230
+ }
231
+ }
232
+
233
+ onDestroy(() => {
234
+ clearTimeout(debounceTimer);
235
+ });
236
+
237
+ const handleBlur = () => {
238
+ onblur?.();
239
+ };
240
+
241
+ const handleFocus = () => {
242
+ onfocus?.();
243
+ };
244
+
245
+ const getContentFloatClass = () => {
246
+ switch (contentFloat) {
247
+ case "center": return "text-center";
248
+ case "right": return "text-right";
249
+ default: return "text-left";
250
+ }
251
+ };
252
+
253
+ const getTextareaSizeClass = () => {
254
+ switch (textareaSize) {
255
+ case "sm": return "h-24";
256
+ case "md": return "h-36";
257
+ case "lg": return "h-44";
258
+ default: return "";
259
+ }
260
+ };
261
+
262
+ const handleButtonClick = () => {
263
+ if (typeof onButtonClick === "function") {
264
+ onButtonClick(inputValue);
265
+ }
266
+ };
267
+ </script>
268
+
269
+ <div class="flex flex-col gap-2 {className}" {...restProps}>
270
+ {#if label}
271
+ <div class="flex justify-start items-center gap-1">
272
+ <label for={id} class={`${typography.label} leading-tight sm:leading-none`}>
273
+ {label}{#if required}<span class="text-red-500 font-medium text-sm ml-0.5">*</span>{/if}
274
+ </label>
275
+ {#if statusText}
276
+ <span class="text-sm font-medium {statusType === 'success' ? 'text-green-600' : statusType === 'error' ? 'text-red-500' : ''}">({statusText})</span>
277
+ {/if}
278
+ {#if optional}
279
+ <span class={typography.smMuted}>(optional)</span>
280
+ {/if}
281
+ </div>
282
+ {/if}
283
+ <div class="relative w-full">
284
+ {#if type === "textarea"}
285
+ <textarea
286
+ {id}
287
+ {name}
288
+ {placeholder}
289
+ value={inputValue}
290
+ oninput={handleInput}
291
+ onblur={handleBlur}
292
+ onfocus={handleFocus}
293
+ {maxlength}
294
+ {minlength}
295
+ class="{typography.sm} w-full px-3 py-2 bg-gray-50 dark:bg-gray-800 border rounded-lg font-medium placeholder-gray-500 dark:placeholder-gray-400 transition-all focus:outline-none focus:ring-4 focus:ring-blue-300 dark:focus:ring-blue-800 resize-y {hasError ? 'border-red-500' : 'border-gray-300 dark:border-gray-600 hover:border-blue-500 focus:border-blue-500'} {getContentFloatClass()} {getTextareaSizeClass()} {shouldAnimate ? 'focus:scale-[1.01]' : ''}"
296
+ required={false}
297
+ {disabled}
298
+ {readonly}
299
+ rows="4"
300
+ aria-required={required}
301
+ ></textarea>
302
+ {:else if type === "password" && showPasswordToggle}
303
+ <div class="flex items-center w-full bg-gray-50 dark:bg-gray-800 border rounded-lg transition-all outline-none focus-within:ring-4 focus-within:ring-blue-300 dark:focus-within:ring-blue-800 {hasError ? 'border-red-500' : 'border-gray-300 dark:border-gray-600 hover:border-blue-500 focus-within:border-blue-500'} {shouldAnimate ? 'focus-within:scale-[1.01]' : ''}">
304
+ <!-- svelte-ignore a11y_autofocus -->
305
+ <input
306
+ bind:this={inputElement}
307
+ {id}
308
+ type={inputType}
309
+ {name}
310
+ {placeholder}
311
+ value={inputValue}
312
+ oninput={handleInput}
313
+ onchange={checkForAutofill}
314
+ onblur={handleBlur}
315
+ onfocus={handleFocus}
316
+ {maxlength}
317
+ {minlength}
318
+ class="{typography.sm} flex-1 w-full {sizeClass} bg-transparent border-none font-medium placeholder-gray-500 dark:placeholder-gray-400 focus:outline-none focus:ring-0 {getContentFloatClass()}"
319
+ required={false}
320
+ {disabled}
321
+ {readonly}
322
+ aria-required={required}
323
+ {autocomplete}
324
+ {autofocus}
325
+ inputmode={computedInputmode}
326
+ />
327
+ <button
328
+ type="button"
329
+ onclick={togglePasswordVisibility}
330
+ class="flex items-center justify-center px-3 text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200 focus:outline-none"
331
+ tabindex="-1"
332
+ aria-label={isPasswordVisible ? "Hide password" : "Show password"}
333
+ >
334
+ {#if isPasswordVisible}
335
+ <EyeSlashOutline class="w-5 h-5" />
336
+ {:else}
337
+ <EyeOutline class="w-5 h-5" />
338
+ {/if}
339
+ </button>
340
+ </div>
341
+ {:else}
342
+ <div class="relative flex items-center w-full">
343
+ {#if leftIcon}
344
+ <div class="absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-400 z-10 pointer-events-none">
345
+ {@render leftIcon()}
346
+ </div>
347
+ {/if}
348
+ <!-- svelte-ignore a11y_autofocus -->
349
+ <input
350
+ bind:this={inputElement}
351
+ {id}
352
+ type={inputType}
353
+ {name}
354
+ {placeholder}
355
+ value={inputValue}
356
+ oninput={handleInput}
357
+ onchange={checkForAutofill}
358
+ onblur={handleBlur}
359
+ onfocus={handleFocus}
360
+ onkeydown={handleSearchKeyDown}
361
+ {maxlength}
362
+ {minlength}
363
+ class="{typography.body} w-full {sizeClass} bg-gray-50 dark:bg-gray-800 border rounded-lg font-medium placeholder-gray-500 dark:placeholder-gray-400 transition-all focus:outline-none focus:ring-4 focus:ring-blue-300 dark:focus:ring-blue-800 {hasError ? 'border-red-500' : 'border-gray-300 dark:border-gray-600 hover:border-blue-500 focus:border-blue-500'} {icon || (showClearButton && inputValue) ? 'pr-10' : ''} {leftIcon ? 'pl-10' : ''} {getContentFloatClass()} {shouldAnimate ? 'focus:scale-[1.01]' : ''} {disabled ? 'opacity-50 cursor-not-allowed' : ''}"
364
+ required={false}
365
+ {disabled}
366
+ {readonly}
367
+ aria-required={required}
368
+ {autocomplete}
369
+ {autofocus}
370
+ inputmode={computedInputmode}
371
+ />
372
+ {#if showClearButton && inputValue}
373
+ <button
374
+ type="button"
375
+ onclick={clearInput}
376
+ class="absolute right-2 top-1/2 -translate-y-1/2 flex items-center justify-center p-1 text-gray-400 hover:text-gray-600 dark:hover:text-gray-200"
377
+ aria-label="Clear input"
378
+ tabindex="-1"
379
+ >
380
+ <CloseCircleOutline class="w-4 h-4" />
381
+ </button>
382
+ {:else if controlled && (buttonIcon || buttonText)}
383
+ <button
384
+ type="button"
385
+ onclick={handleButtonClick}
386
+ disabled={buttonDisabled}
387
+ class="absolute inset-y-0 right-0 gap-1 flex items-center justify-center px-4 text-blue-600 hover:text-blue-800 dark:text-blue-400 dark:hover:text-blue-300 disabled:opacity-50 disabled:cursor-not-allowed {helperText || hintText || errorText ? 'mb-7' : ''}"
388
+ >
389
+ {#if buttonIcon}
390
+ <img src={buttonIcon} alt="Button Icon" class="w-5 h-5" />
391
+ {/if}
392
+ {#if buttonText}
393
+ <span class="text-sm font-medium">{buttonText}</span>
394
+ {/if}
395
+ </button>
396
+ {/if}
397
+ {#if icon && type !== "textarea" && !(showClearButton && inputValue)}
398
+ <img src={icon} alt="Input icon" class="absolute inset-y-0 right-0 w-5 h-5 mr-3 top-1/2 transform -translate-y-1/2" />
399
+ {/if}
400
+ </div>
401
+ {/if}
402
+
403
+ {#if errorText}
404
+ <div transition:safeSlide={{ duration: 300, easing: cubicOut }} class="flex items-start gap-1.5 mt-2" role="alert" aria-live="assertive">
405
+ <ExclamationCircleOutline class="w-4 h-4 shrink-0 text-red-500 mt-0.5" />
406
+ <p class={typography.error}>{errorText}</p>
407
+ </div>
408
+ {:else if helperText || hintText}
409
+ <div class={`mt-2 flex items-center ${typography.xsMuted} opacity-65`}>
410
+ {#if helperIcon || hintIcon}
411
+ <img src={helperIcon || hintIcon} alt="Helper icon" class="w-4 h-4 mr-2" />
412
+ {/if}
413
413
  <!-- eslint-disable-next-line svelte/no-at-html-tags -->
414
- <span>{@html helperText || hintText}</span>
415
- </div>
416
- {/if}
417
- </div>
418
- </div>
414
+ <span>{@html helperText || hintText}</span>
415
+ </div>
416
+ {/if}
417
+ </div>
418
+ </div>