@antsoo-lib/core 2.0.5 → 3.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.
@@ -1,10 +1,10 @@
1
1
 
2
2
  
3
- > @antsoo-lib/core@2.0.3 build /Users/weishaodaren/databank/antsoo-lib/packages/core
3
+ > @antsoo-lib/core@2.0.5 build /Users/weishaodaren/databank/antsoo-lib/packages/core
4
4
  > vite build
5
5
 
6
6
  vite v7.3.1 building client environment for production...
7
- transforming (1) src/index.tstransforming (2) src/render/index.tstransforming (17) src/render/InputNumber.tsxtransforming (40) ../icons/dist/index.jstransforming (49) ../../node_modules/.pnpm/@ant-design+icons-vue@7.0.1_vue@3.5.27_typescript@5.9.3_/node_modules/@ant-design/icons-vue/es/icons/AccountBookTwoTone.jstransforming (833) ../../node_modules/.pnpm/@ant-design+icons-vue@7.0.1_vue@3.5.27_typescript@5.9.3_/node_modules/@ant-design/icons-vue/es/icons/WifiOutlined.jstransforming (842) ../../node_modules/.pnpm/@ant-design+colors@6.0.0/node_modules/@ant-design/colors/dist/index.esm.js✓ 855 modules transformed.
7
+ transforming (1) src/index.tstransforming (2) src/render/registry.tstransforming (21) src/render/Tree.tsxtransforming (41) ../icons/dist/index.jstransforming (49) ../../node_modules/.pnpm/@ant-design+icons-vue@7.0.1_vue@3.5.27_typescript@5.9.3_/node_modules/@ant-design/icons-vue/es/icons/AccountBookFilled.jstransforming (842) ../../node_modules/.pnpm/@ant-design+colors@6.0.0/node_modules/@ant-design/colors/dist/index.esm.js✓ 855 modules transformed.
8
8
  rendering chunks (1)...
9
9
  [vite:dts] Start generate declaration files...
10
10
  src/Form/CoreForm.vue:1440:10 - error TS2742: The inferred type of '__VLS_template' cannot be named without a reference to '@/packages/components/node_modules/vue-types/dist'. This is likely not portable. A type annotation is necessary.
@@ -26,15 +26,15 @@
26
26
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27
27
  1354 });
28
28
    ~~~
29
- src/BaseTable/index.vue:820:26 - error TS7022: 'slotName' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer.
29
+ src/BaseTable/index.vue:819:26 - error TS7022: 'slotName' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer.
30
30
 
31
- 820 <template v-for="(_, slotName) in $slots" #[slotName]="slotProps">
31
+ 819 <template v-for="(_, slotName) in $slots" #[slotName]="slotProps">
32
32
     ~~~~~~~~
33
33
 
34
34
  computing gzip size (0)...computing gzip size (1)...computing gzip size (2)...dist/core.css  4.50 kB │ gzip: 1.05 kB
35
- dist/index.js 148.59 kB │ gzip: 31.92 kB
36
- [vite:dts] Declaration files built in 11307ms.
35
+ dist/index.js 148.56 kB │ gzip: 31.92 kB
36
+ [vite:dts] Declaration files built in 3244ms.
37
37
  
38
38
  rendering chunks (1)...computing gzip size (1)...computing gzip size (2)...dist/core.css  4.50 kB │ gzip: 1.05 kB
39
- dist/index.cjs 118.95 kB │ gzip: 27.04 kB
40
- ✓ built in 13.59s
39
+ dist/index.cjs 118.94 kB │ gzip: 27.04 kB
40
+ ✓ built in 4.63s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @antsoo-lib/core
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @antsoo-lib/icons@0.3.0
9
+ - @antsoo-lib/shared@0.2.0
10
+ - @antsoo-lib/utils@0.3.0
11
+ - @antsoo-lib/components@2.0.0
12
+
3
13
  ## 2.0.5
4
14
 
5
15
  ### Patch Changes
@@ -38,8 +38,8 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
38
38
  onSearch?: ((values: AnyObject) => any) | undefined;
39
39
  onReset?: ((values: AnyObject) => any) | undefined;
40
40
  }>, {
41
- padding: boolean;
42
41
  gutter: number;
42
+ padding: boolean;
43
43
  labelWidth: number;
44
44
  actionsSpan: number;
45
45
  searchFields: FormField[];
@@ -78,10 +78,7 @@ declare function __VLS_template(): {
78
78
  attrs: Partial<{}>;
79
79
  slots: any;
80
80
  refs: {
81
- basetable: (import('vxe-table').VxeGridMethods<any> & {
82
- $props: VxeGridProps<any> & import('vxe-table').VxeGridEventProps<any>;
83
- $slots: import('vxe-table').VxeGridSlots<any>;
84
- }) | null;
81
+ basetable: unknown;
85
82
  paginationRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
86
83
  total: NumberConstructor;
87
84
  defaultCurrent: NumberConstructor;
@@ -407,16 +404,16 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
407
404
  }) => any) | undefined;
408
405
  onSortChange?: ((params: VxeGridDefines.SortChangeEventParams<any>) => any) | undefined;
409
406
  }>, {
407
+ loading: boolean;
410
408
  checkbox: boolean;
411
409
  radio: boolean;
412
- drag: boolean;
413
410
  height: string;
414
- loading: boolean;
411
+ tree: boolean;
412
+ drag: boolean;
415
413
  pager: boolean;
416
414
  seq: boolean;
417
415
  showFooter: boolean;
418
416
  total: number;
419
- tree: boolean;
420
417
  lToolBarCount: number | (() => number);
421
418
  rToolBarCount: number | (() => number);
422
419
  permissions: string[];
@@ -426,10 +423,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
426
423
  }>;
427
424
  hoverColor: string | null;
428
425
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
429
- basetable: (import('vxe-table').VxeGridMethods<any> & {
430
- $props: VxeGridProps<any> & import('vxe-table').VxeGridEventProps<any>;
431
- $slots: import('vxe-table').VxeGridSlots<any>;
432
- }) | null;
426
+ basetable: unknown;
433
427
  paginationRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
434
428
  total: NumberConstructor;
435
429
  defaultCurrent: NumberConstructor;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@antsoo-lib/core",
3
3
  "type": "module",
4
- "version": "2.0.5",
4
+ "version": "3.0.0",
5
5
  "private": false,
6
6
  "license": "MIT",
7
7
  "exports": {
@@ -30,10 +30,10 @@
30
30
  "vxe-pc-ui": "^4.12.31",
31
31
  "vxe-table": "^4.17.48",
32
32
  "xe-utils": "^4.0.0",
33
- "@antsoo-lib/shared": "0.1.0",
34
- "@antsoo-lib/components": "1.0.1",
35
- "@antsoo-lib/icons": "0.2.0",
36
- "@antsoo-lib/utils": "0.2.0"
33
+ "@antsoo-lib/components": "2.0.0",
34
+ "@antsoo-lib/shared": "0.2.0",
35
+ "@antsoo-lib/utils": "0.3.0",
36
+ "@antsoo-lib/icons": "0.3.0"
37
37
  },
38
38
  "scripts": {
39
39
  "dev": "vite build --watch",