cosey 0.2.19 → 0.2.20

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.
@@ -77,6 +77,8 @@ export { snugMenuContextSymbol } from './snug-menu/snug-menu.js';
77
77
  export { getFocusVisibleStyle, getLineClampStyle, getTruncateStyle } from './style/mixins.js';
78
78
  export { contrarotation, rotation, rotation45, spinner } from './style/animation.js';
79
79
  export { defaultTableConfig, elSlotsName, omittedTableProps, tableEmitEvents, tableEmitOnEvents, tableEmitOnProps, tableExposeKeys, tableProps } from './table/table.js';
80
+ export { tableColumnProps } from './table/table-column/table-column.js';
81
+ export { createScheme, omittedTableQueryProps, tableQueryExposeKeys, tableQueryProps } from './table/table-query/table-query.js';
80
82
  export { useTable } from './table/useTable.js';
81
83
  export { defaultTableActionProps } from './table-action/table-action.js';
82
84
  export { StyleCache, StyleProvider } from './theme/StyleContext.js';
@@ -1,4 +1,6 @@
1
1
  export * from './table';
2
+ export * from './table-column/table-column';
3
+ export * from './table-query/table-query';
2
4
  export * from './useTable';
3
5
  declare const _Table: {
4
6
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
@@ -10,11 +12,11 @@ declare const _Table: {
10
12
  default: boolean;
11
13
  };
12
14
  columns: {
13
- type: import("vue").PropType<import("./table-column/table-column").TableColumnProps[]>;
15
+ type: import("vue").PropType<import(".").TableColumnProps[]>;
14
16
  default: () => never[];
15
17
  };
16
18
  actionColumn: {
17
- type: import("vue").PropType<import("./table-column/table-column").TableColumnProps>;
19
+ type: import("vue").PropType<import(".").TableColumnProps>;
18
20
  };
19
21
  pagination: {
20
22
  type: import("vue").PropType<boolean | import("element-plus").PaginationProps>;
@@ -296,7 +298,7 @@ declare const _Table: {
296
298
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
297
299
  tableLayout: "auto" | "fixed";
298
300
  border: boolean;
299
- columns: import("./table-column/table-column").TableColumnProps[];
301
+ columns: import(".").TableColumnProps[];
300
302
  data: any[];
301
303
  immediate: boolean;
302
304
  className: string;
@@ -333,11 +335,11 @@ declare const _Table: {
333
335
  default: boolean;
334
336
  };
335
337
  columns: {
336
- type: import("vue").PropType<import("./table-column/table-column").TableColumnProps[]>;
338
+ type: import("vue").PropType<import(".").TableColumnProps[]>;
337
339
  default: () => never[];
338
340
  };
339
341
  actionColumn: {
340
- type: import("vue").PropType<import("./table-column/table-column").TableColumnProps>;
342
+ type: import("vue").PropType<import(".").TableColumnProps>;
341
343
  };
342
344
  pagination: {
343
345
  type: import("vue").PropType<boolean | import("element-plus").PaginationProps>;
@@ -619,7 +621,7 @@ declare const _Table: {
619
621
  }, {}, {}, {}, {
620
622
  tableLayout: "auto" | "fixed";
621
623
  border: boolean;
622
- columns: import("./table-column/table-column").TableColumnProps[];
624
+ columns: import(".").TableColumnProps[];
623
625
  data: any[];
624
626
  immediate: boolean;
625
627
  className: string;
@@ -653,11 +655,11 @@ declare const _Table: {
653
655
  default: boolean;
654
656
  };
655
657
  columns: {
656
- type: import("vue").PropType<import("./table-column/table-column").TableColumnProps[]>;
658
+ type: import("vue").PropType<import(".").TableColumnProps[]>;
657
659
  default: () => never[];
658
660
  };
659
661
  actionColumn: {
660
- type: import("vue").PropType<import("./table-column/table-column").TableColumnProps>;
662
+ type: import("vue").PropType<import(".").TableColumnProps>;
661
663
  };
662
664
  pagination: {
663
665
  type: import("vue").PropType<boolean | import("element-plus").PaginationProps>;
@@ -667,7 +669,7 @@ declare const _Table: {
667
669
  type: import("vue").PropType<(expose: import("./table").TableExpose) => void>;
668
670
  };
669
671
  formProps: {
670
- type: import("vue").PropType<import("./table-query/table-query").TableQueryProps>;
672
+ type: import("vue").PropType<import(".").TableQueryProps>;
671
673
  };
672
674
  beforeFetch: {
673
675
  type: import("vue").PropType<(params: Record<string, any>) => any>;
@@ -800,7 +802,7 @@ declare const _Table: {
800
802
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
801
803
  tableLayout: "auto" | "fixed";
802
804
  border: boolean;
803
- columns: import("./table-column/table-column").TableColumnProps[];
805
+ columns: import(".").TableColumnProps[];
804
806
  data: any[];
805
807
  immediate: boolean;
806
808
  className: string;
@@ -1,6 +1,8 @@
1
1
  import { withInstall } from '../utils.js';
2
2
  import stdin_default$1 from './table.vue.js';
3
3
  export { defaultTableConfig, elSlotsName, omittedTableProps, tableEmitEvents, tableEmitOnEvents, tableEmitOnProps, tableExposeKeys, tableProps } from './table.js';
4
+ export { tableColumnProps } from './table-column/table-column.js';
5
+ export { createScheme, omittedTableQueryProps, tableQueryExposeKeys, tableQueryProps } from './table-query/table-query.js';
4
6
  export { useTable } from './useTable.js';
5
7
 
6
8
  const _Table = withInstall(stdin_default$1);
@@ -25,7 +25,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
25
25
  type: import("vue").PropType<(expose: TableExpose) => void>;
26
26
  };
27
27
  formProps: {
28
- type: import("vue").PropType<import("./table-query/table-query").TableQueryProps>;
28
+ type: import("vue").PropType<import(".").TableQueryProps>;
29
29
  };
30
30
  beforeFetch: {
31
31
  type: import("vue").PropType<(params: Record<string, any>) => any>;
@@ -178,7 +178,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
178
178
  type: import("vue").PropType<(expose: TableExpose) => void>;
179
179
  };
180
180
  formProps: {
181
- type: import("vue").PropType<import("./table-query/table-query").TableQueryProps>;
181
+ type: import("vue").PropType<import(".").TableQueryProps>;
182
182
  };
183
183
  beforeFetch: {
184
184
  type: import("vue").PropType<(params: Record<string, any>) => any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cosey",
3
- "version": "0.2.19",
3
+ "version": "0.2.20",
4
4
  "description": "基于 Vue3 + vite 的后台管理系统框架",
5
5
  "type": "module",
6
6
  "main": "index.js",