@alfadocs/ui-kit 0.21.0 → 0.24.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/{autocomplete-BxfabhZ8.js → autocomplete-C7xq06bP.js} +40 -40
- package/dist/_chunks/editable-currency-cell-renderer-DJB5MxAI.js +2349 -0
- package/dist/_chunks/locale-picker-CYBhgSHR.js +575 -0
- package/dist/_chunks/{patient-shell-DavGODt9.js → patient-shell-B164drIa.js} +40 -55
- package/dist/_chunks/settings-ca2Yi9R8.js +21 -0
- package/dist/_chunks/sun-Eweh5fvi.js +50 -0
- package/dist/_chunks/{theme-toggle-BswYl0Yp.js → theme-toggle-FrotC2VI.js} +85 -127
- package/dist/_chunks/use-locale-BkCIHujH.js +20 -0
- package/dist/_chunks/use-scroll-to-first-error-BrK7dKB_.js +55 -0
- package/dist/_chunks/{whatsapp-button-CtlLwM3M.js → whatsapp-button-DUjlWGKf.js} +26 -25
- package/dist/agent-catalog.json +59 -1
- package/dist/components/autocomplete/index.js +1 -1
- package/dist/components/data-table/filters/number-filter.d.ts +56 -0
- package/dist/components/data-table/filters/text-filter.d.ts +49 -0
- package/dist/components/data-table/index.d.ts +4 -0
- package/dist/components/data-table/index.js +25 -21
- package/dist/components/header-settings/index.js +205 -0
- package/dist/components/locale-picker/index.js +7 -0
- package/dist/components/theme-toggle/index.js +1 -1
- package/dist/components/whatsapp-button/index.js +1 -1
- package/dist/components/whatsapp-button/whatsapp-button.d.ts +14 -1
- package/dist/fonts/Lexend-VF-latin-ext.woff2 +0 -0
- package/dist/fonts/Lexend-VF-latin.woff2 +0 -0
- package/dist/fonts/Lexend-VF-vietnamese.woff2 +0 -0
- package/dist/fonts/NotoSansArabic-VF-arabic.woff2 +0 -0
- package/dist/fonts/NotoSansDevanagari-VF-devanagari.woff2 +0 -0
- package/dist/hooks/index.js +29 -28
- package/dist/i18n/config.d.ts +1 -1
- package/dist/i18n/config.js +20944 -2110
- package/dist/i18n/locales/ar.d.ts +1225 -0
- package/dist/i18n/locales/de.d.ts +1225 -0
- package/dist/i18n/locales/el.d.ts +1222 -0
- package/dist/i18n/locales/es.d.ts +1222 -0
- package/dist/i18n/locales/fr.d.ts +1222 -0
- package/dist/i18n/locales/hi.d.ts +1222 -0
- package/dist/i18n/locales/ja.d.ts +1222 -0
- package/dist/i18n/locales/nl.d.ts +1222 -0
- package/dist/i18n/locales/pl.d.ts +1222 -0
- package/dist/i18n/locales/pt.d.ts +1223 -0
- package/dist/i18n/locales/ro.d.ts +1222 -0
- package/dist/i18n/locales/ru.d.ts +1222 -0
- package/dist/i18n/locales/sq.d.ts +1222 -0
- package/dist/i18n/locales/sv.d.ts +1222 -0
- package/dist/i18n/locales/tr.d.ts +1222 -0
- package/dist/i18n/locales/zh.d.ts +1222 -0
- package/dist/i18n/resources.d.ts +342 -1040
- package/dist/index.js +512 -507
- package/dist/locales/ar.json +1217 -1
- package/dist/locales/de.json +207 -13
- package/dist/locales/el.json +1217 -0
- package/dist/locales/en.json +147 -3
- package/dist/locales/es.json +1217 -0
- package/dist/locales/fr.json +1217 -0
- package/dist/locales/hi.json +1217 -0
- package/dist/locales/it.json +178 -3
- package/dist/locales/ja.json +1217 -0
- package/dist/locales/nl.json +1217 -0
- package/dist/locales/pl.json +1217 -0
- package/dist/locales/pt.json +1217 -0
- package/dist/locales/ro.json +1217 -0
- package/dist/locales/ru.json +1217 -0
- package/dist/locales/sq.json +1217 -0
- package/dist/locales/sv.json +1217 -0
- package/dist/locales/tr.json +1217 -0
- package/dist/locales/zh.json +1217 -0
- package/dist/patterns/patient-shell/index.js +1 -1
- package/dist/tokens.css +2 -2
- package/package.json +13 -1
- package/dist/_chunks/editable-currency-cell-renderer-1t42gENX.js +0 -1972
- package/dist/_chunks/use-locale-C5rS3Xon.js +0 -71
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfadocs/ui-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.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",
|
|
@@ -219,6 +219,10 @@
|
|
|
219
219
|
"types": "./dist/components/header/index.d.ts",
|
|
220
220
|
"import": "./dist/components/header/index.js"
|
|
221
221
|
},
|
|
222
|
+
"./header-settings": {
|
|
223
|
+
"types": "./dist/components/header-settings/index.d.ts",
|
|
224
|
+
"import": "./dist/components/header-settings/index.js"
|
|
225
|
+
},
|
|
222
226
|
"./icon-button-group": {
|
|
223
227
|
"types": "./dist/components/icon-button-group/index.d.ts",
|
|
224
228
|
"import": "./dist/components/icon-button-group/index.js"
|
|
@@ -235,6 +239,10 @@
|
|
|
235
239
|
"types": "./dist/components/link/index.d.ts",
|
|
236
240
|
"import": "./dist/components/link/index.js"
|
|
237
241
|
},
|
|
242
|
+
"./locale-picker": {
|
|
243
|
+
"types": "./dist/components/locale-picker/index.d.ts",
|
|
244
|
+
"import": "./dist/components/locale-picker/index.js"
|
|
245
|
+
},
|
|
238
246
|
"./list": {
|
|
239
247
|
"types": "./dist/components/list/index.d.ts",
|
|
240
248
|
"import": "./dist/components/list/index.js"
|
|
@@ -522,6 +530,10 @@
|
|
|
522
530
|
"stylelint": "stylelint \"src/**/*.css\"",
|
|
523
531
|
"check:data-component": "node scripts/check-data-component-coverage.mjs",
|
|
524
532
|
"check:i18n": "node scripts/check-no-namespaced-i18n.mjs",
|
|
533
|
+
"check:i18n-parity": "node --experimental-strip-types scripts/check-i18n-parity.ts",
|
|
534
|
+
"check:i18n-plurals": "node --experimental-strip-types scripts/check-i18n-plurals.ts",
|
|
535
|
+
"check:i18n-coverage": "node --experimental-strip-types scripts/check-i18n-coverage.ts",
|
|
536
|
+
"seed:i18n-coverage": "node --experimental-strip-types scripts/seed-i18n-coverage.ts",
|
|
525
537
|
"chromatic": "chromatic --exit-zero-on-changes"
|
|
526
538
|
},
|
|
527
539
|
"peerDependencies": {
|