@greghowe79/the-lib 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -131,6 +131,7 @@ const Input = qwik.component$(({ id, type, placeholder, value, error, onValidate
|
|
|
131
131
|
}),
|
|
132
132
|
/* @__PURE__ */ jsxRuntime.jsx("input", {
|
|
133
133
|
id,
|
|
134
|
+
name: id,
|
|
134
135
|
type,
|
|
135
136
|
inputMode: "tel",
|
|
136
137
|
pattern: "[0-9]*",
|
|
@@ -183,6 +184,7 @@ const Input = qwik.component$(({ id, type, placeholder, value, error, onValidate
|
|
|
183
184
|
}),
|
|
184
185
|
/* @__PURE__ */ jsxRuntime.jsx("input", {
|
|
185
186
|
id,
|
|
187
|
+
name: id,
|
|
186
188
|
type: effectiveType,
|
|
187
189
|
class: `input ${showError.value ? "error" : ""}`,
|
|
188
190
|
placeholder,
|
|
@@ -220,6 +222,7 @@ const Input = qwik.component$(({ id, type, placeholder, value, error, onValidate
|
|
|
220
222
|
}),
|
|
221
223
|
/* @__PURE__ */ jsxRuntime.jsx("input", {
|
|
222
224
|
id,
|
|
225
|
+
name: id,
|
|
223
226
|
type,
|
|
224
227
|
class: `input ${showError.value ? "error" : ""}`,
|
|
225
228
|
placeholder,
|
|
@@ -129,6 +129,7 @@ const Input = component$(({ id, type, placeholder, value, error, onValidate$, on
|
|
|
129
129
|
}),
|
|
130
130
|
/* @__PURE__ */ jsx("input", {
|
|
131
131
|
id,
|
|
132
|
+
name: id,
|
|
132
133
|
type,
|
|
133
134
|
inputMode: "tel",
|
|
134
135
|
pattern: "[0-9]*",
|
|
@@ -181,6 +182,7 @@ const Input = component$(({ id, type, placeholder, value, error, onValidate$, on
|
|
|
181
182
|
}),
|
|
182
183
|
/* @__PURE__ */ jsx("input", {
|
|
183
184
|
id,
|
|
185
|
+
name: id,
|
|
184
186
|
type: effectiveType,
|
|
185
187
|
class: `input ${showError.value ? "error" : ""}`,
|
|
186
188
|
placeholder,
|
|
@@ -218,6 +220,7 @@ const Input = component$(({ id, type, placeholder, value, error, onValidate$, on
|
|
|
218
220
|
}),
|
|
219
221
|
/* @__PURE__ */ jsx("input", {
|
|
220
222
|
id,
|
|
223
|
+
name: id,
|
|
221
224
|
type,
|
|
222
225
|
class: `input ${showError.value ? "error" : ""}`,
|
|
223
226
|
placeholder,
|
|
@@ -10,3 +10,6 @@ export declare const PhoneInput: Story;
|
|
|
10
10
|
export declare const FileUpload: Story;
|
|
11
11
|
export declare const InputNumber: Story;
|
|
12
12
|
export declare const PasswordWithToggle: Story;
|
|
13
|
+
export declare const EmailAutocomplete: Story;
|
|
14
|
+
export declare const PasswordAutocomplete: Story;
|
|
15
|
+
export declare const LoginFormComplete: Story;
|