@xn-lib/component 0.1.7 → 0.1.8

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,6 +1,6 @@
1
- export * from '../cascader/props';
2
- export * from '../tag/props';
3
- export * from '../transfer/props';
4
- export * from '../virtual-list/props';
1
+ export * from './cascader';
2
+ export * from './tag';
3
+ export * from './transfer';
4
+ export * from './virtual-list';
5
5
  export type DefaultType = 'success' | 'info' | 'warning' | 'danger' | 'primary' | 'default';
6
6
  export type DefaultSize = 'small' | 'default' | 'large';
@@ -21,7 +21,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
21
21
  readonly required: true;
22
22
  };
23
23
  readonly mode: {
24
- readonly type: import("vue").PropType<import("../types/virtual-list").VirtualListMode>;
24
+ readonly type: import("vue").PropType<import("..").VirtualListMode>;
25
25
  readonly default: "fixed";
26
26
  };
27
27
  readonly itemSize: {
@@ -72,7 +72,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
72
72
  readonly required: true;
73
73
  };
74
74
  readonly mode: {
75
- readonly type: import("vue").PropType<import("../types/virtual-list").VirtualListMode>;
75
+ readonly type: import("vue").PropType<import("..").VirtualListMode>;
76
76
  readonly default: "fixed";
77
77
  };
78
78
  readonly itemSize: {
@@ -112,7 +112,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
112
112
  "onReach-bottom"?: ((event: Event) => any) | undefined;
113
113
  }>, {
114
114
  readonly itemSize: number | ((item: any) => number);
115
- readonly mode: import("../types/virtual-list").VirtualListMode;
115
+ readonly mode: import("..").VirtualListMode;
116
116
  readonly minItemSize: number;
117
117
  readonly itemKey: string;
118
118
  readonly pageMode: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "@xn-lib/component",
4
- "version": "0.1.7",
4
+ "version": "0.1.8",
5
5
  "description": "",
6
6
  "main": "./dist/index.umd.js",
7
7
  "module": "./dist/index.mjs",