@aurodesignsystem-dev/auro-formkit 0.0.0-pr1443.0 → 0.0.0-pr1444.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/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 +3 -3
- package/components/combobox/demo/index.min.js +3 -3
- 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.md +2 -1
- package/components/datepicker/demo/api.min.js +13 -10
- package/components/datepicker/demo/index.min.js +13 -10
- package/components/datepicker/dist/index.js +13 -10
- package/components/datepicker/dist/registered.js +13 -10
- 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 +23 -20
- package/components/form/demo/index.min.js +23 -20
- 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/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 +2 -2
- package/components/select/demo/index.min.js +2 -2
- package/components/select/dist/index.js +2 -2
- package/components/select/dist/registered.js +2 -2
- package/custom-elements.json +1441 -1432
- package/package.json +23 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurodesignsystem-dev/auro-formkit",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-pr1444.0",
|
|
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": {
|
|
@@ -36,39 +36,42 @@
|
|
|
36
36
|
"custom-elements.json"
|
|
37
37
|
],
|
|
38
38
|
"scripts": {
|
|
39
|
+
"analyze": "custom-elements-manifest analyze --config ./packages/config/src/custom-elements-manifest.config.mjs",
|
|
39
40
|
"build": "npm run analyze && npm run build:docs:kit && turbo run build",
|
|
41
|
+
"build-storybook": "npm run build && npm run analyze && storybook build",
|
|
42
|
+
"build:docs": "turbo run build:docs",
|
|
43
|
+
"build:docs:kit": "node ./packages/build-tools/src/kitDocProcessor.mjs",
|
|
40
44
|
"build:force": "npm run analyze && turbo run build --force",
|
|
41
|
-
"sass": "turbo run sass",
|
|
42
|
-
"build:version": "turbo run build:version",
|
|
43
45
|
"build:formkit-version": "turbo run build:formkit-version",
|
|
46
|
+
"build:version": "turbo run build:version",
|
|
47
|
+
"clean": "turbo run clean && rm -rf node_modules",
|
|
48
|
+
"deploy-demo": "npm run build && sh ./deploy-components.sh",
|
|
44
49
|
"dev": "turbo run dev --parallel",
|
|
45
50
|
"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
51
|
"dev:react": "concurrently \"npx turbo run build:watch --concurrency=20\" \"npm run dev:app:open --workspace=apps/react-framework\"",
|
|
48
|
-
"
|
|
49
|
-
"test": "turbo run test && npm run test:frameworks",
|
|
50
|
-
"test:force": "turbo run test --force",
|
|
51
|
-
"test:watch": "turbo run test:watch",
|
|
52
|
-
"clean": "turbo run clean && rm -rf node_modules",
|
|
52
|
+
"dev:svelte": "concurrently \"npx turbo run build:watch --concurrency=20\" \"npm run dev:app:open --workspace=apps/svelte-framework\"",
|
|
53
53
|
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
|
|
54
|
-
"
|
|
55
|
-
"build:docs:kit": "node ./packages/build-tools/src/kitDocProcessor.mjs",
|
|
56
|
-
"sweep": "find ./components ./packages -type d -name 'dist' -exec rm -rf {} + && find ./ -type d -name '.turbo' -exec rm -rf {} + && find ./components ./packages -not -path '*/node_modules/*' -type f \\( -name '*.css' -o -name '*-css.js' \\) -delete",
|
|
57
|
-
"preCommit": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/pre-commit.mjs",
|
|
58
|
-
"prepare": "husky",
|
|
59
|
-
"deploy-demo": "npm run build && sh ./deploy-components.sh",
|
|
54
|
+
"lint": "turbo run lint",
|
|
60
55
|
"local-demo": "sh ./local-demo.sh",
|
|
61
56
|
"local-demo:build": "npm run build && npm run local-demo",
|
|
62
57
|
"local-demo:zip": "npm run local-demo:build -- --zip",
|
|
63
|
-
"
|
|
64
|
-
"
|
|
58
|
+
"preCommit": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/pre-commit.mjs",
|
|
59
|
+
"prepare": "husky",
|
|
60
|
+
"sass": "turbo run sass",
|
|
65
61
|
"storybook": "npm run analyze && storybook dev -p 6006",
|
|
66
|
-
"
|
|
62
|
+
"sweep": "find ./components ./packages -type d -name 'dist' -exec rm -rf {} + && find ./ -type d -name '.turbo' -exec rm -rf {} + && find ./components ./packages -not -path '*/node_modules/*' -type f \\( -name '*.css' -o -name '*-css.js' \\) -delete",
|
|
63
|
+
"test": "npm run test:wtr && npm run test:frameworks",
|
|
64
|
+
"test:local": "npm run test:wtr; npm run test:frameworks; npm run test:dashboard",
|
|
65
|
+
"test:dashboard": "node test/coverage/generate-dashboard.mjs",
|
|
66
|
+
"test:force": "turbo run test --force",
|
|
67
67
|
"test:framework:react": "turbo run test:framework --filter=@aurodesignsystem/react-framework",
|
|
68
|
+
"test:framework:report:react": "npm run test:framework:report -w apps/react-framework",
|
|
69
|
+
"test:framework:report:svelte": "npm run test:framework:report -w apps/svelte-framework",
|
|
68
70
|
"test:framework:svelte": "turbo run test:framework --filter=@aurodesignsystem/svelte-framework",
|
|
69
71
|
"test:frameworks": "turbo run test:framework --filter=@aurodesignsystem/react-framework --filter=@aurodesignsystem/svelte-framework",
|
|
70
|
-
"test:
|
|
71
|
-
"test:
|
|
72
|
+
"test:watch": "turbo run test:watch",
|
|
73
|
+
"test:wtr": "turbo run test",
|
|
74
|
+
"update-stories": "node ./packages/utils/update-stories.js"
|
|
72
75
|
},
|
|
73
76
|
"dependencies": {
|
|
74
77
|
"@lit/context": "^1.1.6",
|