@indico-data/design-system 2.60.3 → 2.60.5
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/lib/index.css +99 -75
- package/lib/index.esm.css +99 -75
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/forms/checkbox/styles/Checkbox.scss +74 -76
- package/src/components/forms/date/datePicker/styles/DatePicker.scss +0 -4
- package/src/components/forms/form/Form.tsx +1 -0
- package/src/components/forms/form/styles/Form.scss +10 -0
- package/src/components/forms/input/styles/Input.scss +19 -25
- package/src/components/forms/numberInput/styles/NumberInput.scss +22 -24
- package/src/components/forms/passwordInput/styles/PasswordInput.scss +27 -32
- package/src/components/forms/radio/styles/Radio.scss +75 -76
- package/src/components/forms/textarea/styles/Textarea.scss +13 -18
- package/src/components/forms/toggle/styles/Toggle.scss +1 -0
- package/src/components/pagination/styles/Pagination.scss +0 -6
- package/src/styles/globals.scss +4 -4
- package/src/styles/variables/_typography.scss +1 -0
package/lib/index.js
CHANGED
|
@@ -19132,7 +19132,7 @@ const Form = (_a) => {
|
|
|
19132
19132
|
onSubmit(formObject); // Modified to pass formObject instead of e
|
|
19133
19133
|
}
|
|
19134
19134
|
};
|
|
19135
|
-
return (jsxRuntime.jsx("form", Object.assign({ onSubmit: handleSubmit, action: action, method: method, target: target, autoComplete: autocomplete, noValidate: noValidate, encType: enctype, rel: rel }, rest, { children: children })));
|
|
19135
|
+
return (jsxRuntime.jsx("form", Object.assign({ className: "form", onSubmit: handleSubmit, action: action, method: method, target: target, autoComplete: autocomplete, noValidate: noValidate, encType: enctype, rel: rel }, rest, { children: children })));
|
|
19136
19136
|
};
|
|
19137
19137
|
|
|
19138
19138
|
const Skeleton = (_a) => {
|