@alfadocs/ui-kit 0.98.1 → 1.0.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/README.md +13 -5
- package/dist/_chunks/{address-fields-7k59FnJ6.js → address-fields-pHsfkXGk.js} +2 -2
- package/dist/_chunks/{booking-Bhbvef95.js → booking-DSOK-bnR.js} +2 -2
- package/dist/_chunks/{clinical-note-card-C7F_24IC.js → clinical-note-card-D63x_AkK.js} +5 -2
- package/dist/_chunks/{country-select-BN9nedAp.js → country-select-UEF9BEeQ.js} +2 -2
- package/dist/_chunks/flag-DVBE6DnB.js +576 -0
- package/dist/_chunks/flag-view-udarpAot.js +131 -0
- package/dist/_chunks/{header-settings-CLwFqMHI.js → header-settings--pjYOe6g.js} +2 -2
- package/dist/_chunks/{locale-picker-EyvPrwDc.js → locale-picker-BfBUdT1m.js} +310 -239
- package/dist/_chunks/{marketplace-app-shell-Bv1ZO4XO.js → marketplace-app-shell-pCHBp8bo.js} +2 -2
- package/dist/_chunks/{notes-panel-BKwd-bOV.js → notes-panel-CTcOLLVo.js} +3 -3
- package/dist/_chunks/{patient-details-DrhlTrLf.js → patient-details-UmNcxL0c.js} +3 -3
- package/dist/_chunks/{phone-input-D00ZBAm-.js → phone-input-BsZIoE36.js} +2 -2
- package/dist/_chunks/{rich-text-editor-DHpV2q6d.js → rich-text-editor-CfeXPPWs.js} +10 -2
- package/dist/agent-catalog.json +1 -1
- package/dist/components/address-fields/index.js +1 -1
- package/dist/components/booking/index.js +1 -1
- package/dist/components/clinical-note-card/index.js +1 -1
- package/dist/components/country-select/index.js +1 -1
- package/dist/components/flag/flag-core.d.ts +12 -0
- package/dist/components/flag/flag-view.d.ts +38 -0
- package/dist/components/flag/flag.d.ts +3 -10
- package/dist/components/flag/index.js +1 -1
- package/dist/components/header-settings/index.js +1 -1
- package/dist/components/locale-picker/index.js +1 -1
- package/dist/components/notes-panel/index.js +1 -1
- package/dist/components/patient-details/index.js +1 -1
- package/dist/components/phone-input/index.js +1 -1
- package/dist/components/rich-text-editor/index.js +1 -1
- package/dist/components/workflow/workflow-types.d.ts +4 -5
- package/dist/index.js +10 -10
- package/dist/patterns/marketplace-app-shell/index.js +1 -1
- package/dist/tokens.css +1 -1
- package/package.json +4 -2
- package/dist/_chunks/flag-Cnmivlrl.js +0 -641
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfadocs/ui-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.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",
|
|
@@ -863,11 +863,12 @@
|
|
|
863
863
|
},
|
|
864
864
|
"scripts": {
|
|
865
865
|
"dev": "vite",
|
|
866
|
-
"build": "vite build && npm run build:host-compat && npm run build:types && npm run build:locales && npm run build:agent-catalog && npm run verify:build && npm run check:exports",
|
|
866
|
+
"build": "vite build && npm run build:host-compat && npm run build:types && npm run build:locales && npm run build:agent-catalog && npm run verify:build && npm run check:preflight-bleed && npm run check:exports",
|
|
867
867
|
"verify:build": "node scripts/verify-build.mjs",
|
|
868
868
|
"check:exports": "node scripts/check-exports-coverage.mjs",
|
|
869
869
|
"build:host-compat": "node scripts/build-host-compat.mjs",
|
|
870
870
|
"check:host-compat": "node scripts/build-host-compat.mjs --check",
|
|
871
|
+
"check:preflight-bleed": "node scripts/check-preflight-bleed.mjs",
|
|
871
872
|
"build:types": "tsc -p tsconfig.build.json",
|
|
872
873
|
"build:locales": "node scripts/build-locales.mjs dist/locales",
|
|
873
874
|
"build:agent-catalog": "node --experimental-strip-types scripts/build-agent-catalog.mjs dist/agent-catalog.json",
|
|
@@ -888,6 +889,7 @@
|
|
|
888
889
|
"stylelint": "stylelint \"src/**/*.css\"",
|
|
889
890
|
"check:data-component": "node scripts/check-data-component-coverage.mjs",
|
|
890
891
|
"check:arbitrary-classes": "node scripts/check-arbitrary-classes.mjs",
|
|
892
|
+
"check:prefix-position": "node scripts/check-prefix-position.mjs",
|
|
891
893
|
"check:mdx-expressions": "node scripts/check-mdx-expressions.mjs",
|
|
892
894
|
"check:prop-runtime-coverage": "node scripts/check-prop-runtime-coverage.mjs",
|
|
893
895
|
"check:story-locale-thrash": "node scripts/check-story-locale-thrash.mjs",
|