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