@aurodesignsystem-dev/auro-formkit 0.0.0-pr1395.0 → 0.0.0-pr1395.2
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/components/checkbox/demo/api.min.js +1 -1
- package/components/checkbox/demo/index.min.js +1 -1
- package/components/checkbox/dist/index.js +1 -1
- package/components/checkbox/dist/registered.js +1 -1
- package/components/combobox/demo/api.min.js +151 -40
- package/components/combobox/demo/index.min.js +151 -40
- package/components/combobox/dist/index.js +3 -3
- package/components/combobox/dist/registered.js +3 -3
- package/components/counter/demo/api.min.js +2 -2
- package/components/counter/demo/index.min.js +2 -2
- package/components/counter/dist/index.js +2 -2
- package/components/counter/dist/registered.js +2 -2
- package/components/datepicker/demo/api.min.js +74 -13
- package/components/datepicker/demo/index.min.js +74 -13
- package/components/datepicker/dist/datepickerKeyboardStrategy.d.ts +4 -0
- package/components/datepicker/dist/index.js +74 -13
- package/components/datepicker/dist/registered.js +74 -13
- package/components/dropdown/demo/api.min.js +1 -1
- package/components/dropdown/demo/index.min.js +1 -1
- package/components/dropdown/dist/index.js +1 -1
- package/components/dropdown/dist/registered.js +1 -1
- package/components/form/demo/api.min.js +240 -63
- package/components/form/demo/index.min.js +240 -63
- package/components/input/demo/api.min.js +1 -1
- package/components/input/demo/index.min.js +1 -1
- package/components/input/dist/index.js +1 -1
- package/components/input/dist/registered.js +1 -1
- package/components/menu/demo/api.md +1 -1
- package/components/menu/demo/api.min.js +148 -37
- package/components/menu/demo/index.min.js +148 -37
- package/components/menu/dist/auro-menu.context.d.ts +15 -3
- package/components/menu/dist/auro-menu.d.ts +1 -1
- package/components/menu/dist/index.js +148 -37
- package/components/menu/dist/registered.js +148 -37
- package/components/radio/demo/api.min.js +1 -1
- package/components/radio/demo/index.min.js +1 -1
- package/components/radio/dist/index.js +1 -1
- package/components/radio/dist/registered.js +1 -1
- package/components/select/demo/api.min.js +158 -42
- package/components/select/demo/index.min.js +158 -42
- package/components/select/dist/index.js +10 -5
- package/components/select/dist/registered.js +10 -5
- package/custom-elements.json +1514 -1429
- package/package.json +11 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurodesignsystem-dev/auro-formkit",
|
|
3
|
-
"version": "0.0.0-pr1395.
|
|
3
|
+
"version": "0.0.0-pr1395.2",
|
|
4
4
|
"description": "A collection of web components used to build forms.",
|
|
5
5
|
"homepage": "https://github.com/AlaskaAirlines/auro-formkit#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"provenance": true
|
|
22
22
|
},
|
|
23
23
|
"workspaces": [
|
|
24
|
+
"apps/*",
|
|
24
25
|
"components/*",
|
|
25
26
|
"packages/*"
|
|
26
27
|
],
|
|
@@ -42,8 +43,10 @@
|
|
|
42
43
|
"build:formkit-version": "turbo run build:formkit-version",
|
|
43
44
|
"dev": "turbo run dev --parallel",
|
|
44
45
|
"dev:closed": "turbo run dev:closed --parallel",
|
|
46
|
+
"dev:svelte": "concurrently \"npx turbo run build:watch --concurrency=20\" \"npm run dev:app:open --workspace=apps/svelte-framework\"",
|
|
47
|
+
"dev:react": "concurrently \"npx turbo run build:watch --concurrency=20\" \"npm run dev:app:open --workspace=apps/react-framework\"",
|
|
45
48
|
"lint": "turbo run lint",
|
|
46
|
-
"test": "turbo run test",
|
|
49
|
+
"test": "turbo run test && npm run test:frameworks",
|
|
47
50
|
"test:watch": "turbo run test:watch",
|
|
48
51
|
"clean": "turbo run clean && rm -rf node_modules",
|
|
49
52
|
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
|
|
@@ -59,7 +62,10 @@
|
|
|
59
62
|
"analyze": "custom-elements-manifest analyze --config ./packages/config/src/custom-elements-manifest.config.mjs",
|
|
60
63
|
"update-stories": "node ./packages/utils/update-stories.js",
|
|
61
64
|
"storybook": "npm run analyze && storybook dev -p 6006",
|
|
62
|
-
"build-storybook": "npm run build && npm run analyze && storybook build"
|
|
65
|
+
"build-storybook": "npm run build && npm run analyze && storybook build",
|
|
66
|
+
"test:framework:react": "turbo run test:framework --filter=@aurodesignsystem/react-framework",
|
|
67
|
+
"test:framework:svelte": "turbo run test:framework --filter=@aurodesignsystem/svelte-framework",
|
|
68
|
+
"test:frameworks": "turbo run test:framework --filter=@aurodesignsystem/react-framework --filter=@aurodesignsystem/svelte-framework"
|
|
63
69
|
},
|
|
64
70
|
"dependencies": {
|
|
65
71
|
"@lit/context": "^1.1.6",
|
|
@@ -67,7 +73,8 @@
|
|
|
67
73
|
"lit": "^3.3.1"
|
|
68
74
|
},
|
|
69
75
|
"optionalDependencies": {
|
|
70
|
-
"@rollup/rollup-linux-x64-gnu": "*"
|
|
76
|
+
"@rollup/rollup-linux-x64-gnu": "*",
|
|
77
|
+
"@rolldown/binding-linux-x64-gnu": "*"
|
|
71
78
|
},
|
|
72
79
|
"devDependencies": {
|
|
73
80
|
"@aurodesignsystem/auro-accordion": "^6.1.1",
|