@maltjoy/core-vue 5.19.0 → 5.21.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maltjoy/core-vue",
3
- "version": "5.19.0",
3
+ "version": "5.21.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -27,9 +27,8 @@
27
27
  "dependencies": {
28
28
  "@floating-ui/dom": "1.5.3",
29
29
  "@floating-ui/vue": "1.0.2",
30
- "@maltjoy/css": "5.19.0",
31
- "@maltjoy/icons": "5.19.0",
32
- "@maltjoy/themes": "5.19.0",
30
+ "@maltjoy/icons": "5.21.0",
31
+ "@maltjoy/themes": "5.21.0",
33
32
  "@vue/runtime-core": "3.5.13",
34
33
  "@vue/runtime-dom": "3.5.13",
35
34
  "@vue/shared": "3.5.13",
@@ -45,6 +44,8 @@
45
44
  "@chromatic-com/storybook": "1.6.1",
46
45
  "@eslint/js": "9.39.4",
47
46
  "@figma/code-connect": "1.3.13",
47
+ "@maltjoy/eslint-rules": "0.2.1",
48
+ "@rushstack/eslint-patch": "1.2.0",
48
49
  "@storybook/addon-a11y": "8.6.15",
49
50
  "@storybook/addon-docs": "8.6.15",
50
51
  "@storybook/addon-essentials": "8.6.15",
@@ -72,6 +73,7 @@
72
73
  "storybook": "8.6.15",
73
74
  "typescript": "5.3.3",
74
75
  "vite": "5.4.11",
76
+ "vite-bundle-analyzer": "1.3.7",
75
77
  "vitest": "4.0.3",
76
78
  "vue-component-meta": "2.1.6",
77
79
  "vue-component-type-helpers": "2.2.0",
@@ -81,6 +83,8 @@
81
83
  "scripts": {
82
84
  "dev": "pnpm prepare && vite",
83
85
  "build:lib": "vite build",
86
+ "build:analyze": "ANALYZE=server vite build",
87
+ "build:analyze:json": "ANALYZE=json vite build",
84
88
  "build": "pnpm typecheck && vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist && pnpm test && pnpm generate:manifest",
85
89
  "preview": "vite preview",
86
90
  "test": "vitest run --dom --coverage",
@@ -99,7 +103,6 @@
99
103
  "generate:components-autoimports": "node src/tasks/generate-components-autoimports.mjs",
100
104
  "generate:components-docs": "node src/tasks/ai/optimized-metadata-generator.mjs",
101
105
  "generate:components-docs:single": "node src/tasks/ai/optimized-metadata-generator.mjs --single",
102
- "report:component-churn": "node src/tasks/generate-component-churn-report.mjs",
103
106
  "generate:manifest": "node src/tasks/generate-manifest.mjs",
104
107
  "copy:fonticon": "node src/tasks/copy-fonticon.mjs",
105
108
  "scan:figma-coverage": "node src/tasks/scan-joy-figma.mjs"
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
- export default _default;
@@ -1,15 +0,0 @@
1
- import { TJoySelectableItemOption } from '@/components/components.types';
2
- export interface BusinessResource {
3
- customId?: string;
4
- customLabel?: string;
5
- }
6
- export type ExtendedBusinessResource = BusinessResource & TJoySelectableItemOption;
7
- export declare const businessResource: ({
8
- customLabel: string;
9
- customId: string;
10
- value: string;
11
- } | {
12
- customLabel: string;
13
- customId: string;
14
- value?: undefined;
15
- })[];