@alfadocs/ui-kit 0.18.1 → 0.19.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.
- package/dist/_chunks/email-input-DKN5JERd.js +396 -0
- package/dist/_chunks/{public-header.agent-BIBQzkeV.js → public-header.agent-BQ3r6Hgq.js} +6 -4
- package/dist/_chunks/{use-password-requirements-BOgFsoIe.js → use-password-requirements-C9vKBSVn.js} +92 -81
- package/dist/agent-catalog.json +31 -1
- package/dist/components/email-input/email-input.agent.d.ts +13 -0
- package/dist/components/email-input/email-input.d.ts +28 -0
- package/dist/components/email-input/index.d.ts +5 -0
- package/dist/components/email-input/index.js +6 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/password-input/index.js +1 -1
- package/dist/components/password-input/use-password-requirements.d.ts +9 -1
- package/dist/components/public-header/index.js +1 -1
- package/dist/i18n/config.js +12 -0
- package/dist/i18n/resources.d.ts +12 -0
- package/dist/index.js +448 -445
- package/dist/locales/de.json +4 -0
- package/dist/locales/en.json +4 -0
- package/dist/locales/it.json +4 -0
- package/dist/tokens.css +1 -1
- package/package.json +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfadocs/ui-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "AlfaDocs shared design system — tokens, components, patterns, and translations for platform, booking, and alfascribe.",
|
|
6
6
|
"license": "BUSL-1.1",
|
|
@@ -187,6 +187,10 @@
|
|
|
187
187
|
"types": "./dist/components/dropdown-menu/index.d.ts",
|
|
188
188
|
"import": "./dist/components/dropdown-menu/index.js"
|
|
189
189
|
},
|
|
190
|
+
"./email-input": {
|
|
191
|
+
"types": "./dist/components/email-input/index.d.ts",
|
|
192
|
+
"import": "./dist/components/email-input/index.js"
|
|
193
|
+
},
|
|
190
194
|
"./empty-state": {
|
|
191
195
|
"types": "./dist/components/empty-state/index.d.ts",
|
|
192
196
|
"import": "./dist/components/empty-state/index.js"
|
|
@@ -690,7 +694,8 @@
|
|
|
690
694
|
"react-day-picker": "^9.7.0",
|
|
691
695
|
"react-dropzone": "^15.0.0",
|
|
692
696
|
"sonner": "^2.0.7",
|
|
693
|
-
"tw-animate-css": "^1.4.0"
|
|
697
|
+
"tw-animate-css": "^1.4.0",
|
|
698
|
+
"validator": "^13.15.35"
|
|
694
699
|
},
|
|
695
700
|
"devDependencies": {
|
|
696
701
|
"@chromatic-com/storybook": "^5.1.2",
|
|
@@ -727,6 +732,7 @@
|
|
|
727
732
|
"@types/google.maps": "^3.58.1",
|
|
728
733
|
"@types/react": "^18.3.28",
|
|
729
734
|
"@types/react-dom": "^18.3.7",
|
|
735
|
+
"@types/validator": "^13.15.10",
|
|
730
736
|
"@vis.gl/react-google-maps": "^1.5.5",
|
|
731
737
|
"@vitejs/plugin-react": "^4.7.0",
|
|
732
738
|
"@vitest/browser-playwright": "^4.1.4",
|