@wyfex/ivue 0.21.1 → 0.22.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.
@@ -9,6 +9,7 @@ export declare const useSelection: ({ mergedProps, emits, attrs, etRef }: {
9
9
  }) => {
10
10
  radioComputed: import('vue').WritableComputedRef<string, string>;
11
11
  selectionContent: ComputedRef<string>;
12
+ crossPageSelectedData: ComputedRef<unknown[]>;
12
13
  handleSelectAll: (selection: any) => void;
13
14
  handleSelect: (selection: any, row: any) => void;
14
15
  handleRowClick: (row: Record<string, any>) => void;
@@ -48,6 +48,7 @@ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPro
48
48
  default: () => {};
49
49
  };
50
50
  }>, {
51
+ crossPageSelectedData: import('vue').ComputedRef<unknown[]>;
51
52
  validateRequired: (row: Record<string, any>) => boolean;
52
53
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
53
54
  onDictKeys: (value?: string[] | undefined) => any;
@@ -0,0 +1,19 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ modelValue: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ "update:modelValue": (...args: any[]) => void;
8
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
9
+ modelValue: {
10
+ type: StringConstructor;
11
+ default: string;
12
+ };
13
+ }>> & Readonly<{
14
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
15
+ }>, {
16
+ modelValue: string;
17
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
18
+ declare const _default: typeof __VLS_export;
19
+ export default _default;
@@ -17,5 +17,6 @@ export { default as UseElTooltip } from './UseElTooltip/index.vue';
17
17
  export { default as UseElUpload } from './UseElUpload/index.vue';
18
18
  export { default as UseIconfont } from './UseIconfont/index.vue';
19
19
  export { default as UseLineTitle } from './UseLineTitle/index.vue';
20
+ export { default as UseProtocolInput } from './UseProtocolInput/index.vue';
20
21
  export { default as UseRender } from './UseRender/index.vue';
21
22
  export { default as UseSvgIcon } from './UseSvgIcon/index.vue';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wyfex/ivue",
3
- "version": "0.21.1",
3
+ "version": "0.22.0",
4
4
  "description": "万有前端 X 体系下基于 Vite8 + Vue3 + Typescript6 + ElementPlus2 构建的以配置驱动视图组件库",
5
5
  "homepage": "https://wyfex.top/idocs/ivue",
6
6
  "type": "module",