@shwfed/nuxt 0.7.10 → 0.8.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.
Files changed (40) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +2 -1
  3. package/dist/runtime/components/table.d.vue.ts +68 -2
  4. package/dist/runtime/components/table.vue +0 -1
  5. package/dist/runtime/components/table.vue.d.ts +68 -2
  6. package/dist/runtime/components/ui/dropdown-menu/DropdownMenuItem.vue +1 -1
  7. package/dist/runtime/components/ui/field/FieldLabel.vue +1 -1
  8. package/dist/runtime/components/ui/fields/Fields.vue +14 -6
  9. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +28 -14
  10. package/dist/runtime/components/ui/icon-picker/IconPicker.d.vue.ts +15 -0
  11. package/dist/runtime/components/ui/icon-picker/IconPicker.vue +178 -0
  12. package/dist/runtime/components/ui/icon-picker/IconPicker.vue.d.ts +15 -0
  13. package/dist/runtime/components/ui/icon-picker/index.d.ts +1 -0
  14. package/dist/runtime/components/ui/icon-picker/index.js +1 -0
  15. package/dist/runtime/components/ui/input-group/InputGroupComboboxInput.vue +1 -1
  16. package/dist/runtime/components/ui/input-group/InputGroupInput.vue +1 -1
  17. package/dist/runtime/components/ui/input-group/InputGroupNumberField.vue +1 -1
  18. package/dist/runtime/components/ui/input-group/InputGroupTextarea.vue +1 -1
  19. package/dist/runtime/components/ui/native-select/NativeSelect.d.vue.ts +2 -2
  20. package/dist/runtime/components/ui/native-select/NativeSelect.vue +1 -1
  21. package/dist/runtime/components/ui/native-select/NativeSelect.vue.d.ts +2 -2
  22. package/dist/runtime/components/ui/switch/Switch.vue +2 -2
  23. package/dist/runtime/components/ui/table/Table.d.vue.ts +69 -3
  24. package/dist/runtime/components/ui/table/Table.vue +201 -41
  25. package/dist/runtime/components/ui/table/Table.vue.d.ts +69 -3
  26. package/dist/runtime/components/ui/table/schema.d.ts +107 -4
  27. package/dist/runtime/components/ui/table/schema.js +106 -90
  28. package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.d.vue.ts +68 -2
  29. package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.vue +732 -257
  30. package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.vue.d.ts +68 -2
  31. package/dist/runtime/components/ui/textarea/Textarea.vue +1 -1
  32. package/dist/runtime/layouts/default.d.vue.ts +40 -0
  33. package/dist/runtime/layouts/default.vue +19 -0
  34. package/dist/runtime/layouts/default.vue.d.ts +40 -0
  35. package/dist/runtime/plugins/toast/index.d.ts +2 -2
  36. package/dist/runtime/table-renderers/builtins.js +151 -75
  37. package/dist/runtime/table-renderers/registry.d.ts +1 -1
  38. package/dist/runtime/utils/coders.d.ts +2 -0
  39. package/dist/runtime/utils/coders.js +13 -0
  40. package/package.json +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shwfed/nuxt",
3
- "version": "0.7.10",
3
+ "version": "0.8.0",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -33,6 +33,8 @@
33
33
  "release:major": "npm run lint && npm run test && npm run prepack && changelogen --major --release --push && npm publish",
34
34
  "lint": "eslint .",
35
35
  "test": "vitest run",
36
+ "test:e2e": "playwright test",
37
+ "test:e2e:ui": "playwright test --ui",
36
38
  "test:watch": "vitest watch",
37
39
  "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
38
40
  },
@@ -41,6 +43,7 @@
41
43
  "@fontsource-variable/noto-sans": "^5.2.10",
42
44
  "@fontsource-variable/noto-sans-jp": "^5.2.10",
43
45
  "@fontsource-variable/noto-sans-sc": "^5.2.10",
46
+ "@iconify-json/fluent": "^1.2.40",
44
47
  "@iconify/vue": "^5.0.0",
45
48
  "@intlify/unplugin-vue-i18n": "^11.0.3",
46
49
  "@nuxt/fonts": "^0.14.0",
@@ -77,6 +80,7 @@
77
80
  "@nuxt/module-builder": "^1.0.2",
78
81
  "@nuxt/schema": "^4.3.0",
79
82
  "@nuxt/test-utils": "^3.23.0",
83
+ "@playwright/test": "^1.58.2",
80
84
  "@types/markdown-it": "^14.1.2",
81
85
  "@types/node": "latest",
82
86
  "@vue/test-utils": "^2.4.6",
@@ -86,6 +90,7 @@
86
90
  "jsdom": "^28.1.0",
87
91
  "lint-staged": "^16.2.7",
88
92
  "nuxt": "^4.3.0",
93
+ "playwright-core": "^1.58.2",
89
94
  "simple-git-hooks": "^2.13.1",
90
95
  "typescript": "~5.9.3",
91
96
  "vitest": "^4.0.18",
@@ -99,10 +104,5 @@
99
104
  "simple-git-hooks": {
100
105
  "pre-commit": "bunx lint-staged",
101
106
  "commit-msg": "bunx commitlint --edit \"$1\""
102
- },
103
- "lint-staged": {
104
- "*.{js,jsx,ts,tsx,vue}": [
105
- "eslint --fix"
106
- ]
107
107
  }
108
108
  }