lovelymaid 1.6.2 → 1.6.5

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,3 +1,5 @@
1
+ import type { DefineComponent } from 'vue'
2
+
1
3
  interface Props {
2
4
  /** 类型 */
3
5
  type?: 'common' | 'glass';
@@ -6,19 +8,6 @@ interface Props {
6
8
  /** 悬停提示 */
7
9
  title?: string;
8
10
  }
9
- declare var __VLS_1: {};
10
- type __VLS_Slots = {} & {
11
- default?: (props: typeof __VLS_1) => any;
12
- };
13
- declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
14
- type: "common" | "glass";
15
- title: string;
16
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
18
- declare const _default: typeof __VLS_export;
19
- export default _default;
20
- type __VLS_WithSlots<T, S> = T & {
21
- new (): {
22
- $slots: S;
23
- };
24
- };
11
+
12
+ declare const _default: DefineComponent<Props>
13
+ export default _default
@@ -1,18 +1,8 @@
1
+ import type { DefineComponent } from 'vue'
2
+
1
3
  interface Props {
2
4
  type?: 'common' | 'glass';
3
5
  }
4
- declare var __VLS_1: {};
5
- type __VLS_Slots = {} & {
6
- default?: (props: typeof __VLS_1) => any;
7
- };
8
- declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
9
- type: "common" | "glass";
10
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
- declare const _default: typeof __VLS_export;
13
- export default _default;
14
- type __VLS_WithSlots<T, S> = T & {
15
- new (): {
16
- $slots: S;
17
- };
18
- };
6
+
7
+ declare const _default: DefineComponent<Props>
8
+ export default _default
@@ -1,3 +1,5 @@
1
+ import type { DefineComponent } from 'vue'
2
+
1
3
  interface Props {
2
4
  /** 是否显示 */
3
5
  visible?: boolean;
@@ -8,21 +10,6 @@ interface Props {
8
10
  /** 标题 */
9
11
  title?: string;
10
12
  }
11
- declare var __VLS_15: {}, __VLS_17: {};
12
- type __VLS_Slots = {} & {
13
- default?: (props: typeof __VLS_15) => any;
14
- } & {
15
- tip?: (props: typeof __VLS_17) => any;
16
- };
17
- declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
18
- visible: boolean;
19
- isOpen: boolean;
20
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
22
- declare const _default: typeof __VLS_export;
23
- export default _default;
24
- type __VLS_WithSlots<T, S> = T & {
25
- new (): {
26
- $slots: S;
27
- };
28
- };
13
+
14
+ declare const _default: DefineComponent<Props>
15
+ export default _default
@@ -1,4 +1,6 @@
1
1
  import type { ListItem } from '../type';
2
+ import type { DefineComponent } from 'vue'
3
+
2
4
  interface Props {
3
5
  /** 标题 */
4
6
  title?: string;
@@ -9,33 +11,9 @@ interface Props {
9
11
  /** 列表项点击事件 */
10
12
  onItemClick?: (item: ListItem, index: number) => void;
11
13
  }
12
- type __VLS_Props = Props;
13
- type __VLS_ModelProps = {
14
- 'open': boolean;
15
- 'activeId'?: string;
16
- };
17
- type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
18
- declare var __VLS_1: {
19
- item: ListItem;
20
- index: number;
21
- };
22
- type __VLS_Slots = {} & {
23
- default?: (props: typeof __VLS_1) => any;
24
- };
25
- declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
26
- "update:open": (value: boolean) => any;
27
- "update:activeId": (value: string | undefined) => any;
28
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
29
- "onUpdate:open"?: ((value: boolean) => any) | undefined;
30
- "onUpdate:activeId"?: ((value: string | undefined) => any) | undefined;
31
- }>, {
32
- title: string;
33
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
34
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
35
- declare const _default: typeof __VLS_export;
36
- export default _default;
37
- type __VLS_WithSlots<T, S> = T & {
38
- new (): {
39
- $slots: S;
40
- };
41
- };
14
+
15
+ declare const _default: DefineComponent<Props & {
16
+ 'open': boolean;
17
+ 'activeId'?: string;
18
+ }>
19
+ export default _default
@@ -1,5 +1,7 @@
1
1
  import { type InputOption } from './Input.vue';
2
2
  import { DateItem } from '../type';
3
+ import type { DefineComponent } from 'vue'
4
+
3
5
  export type FormItem = {
4
6
  id: string;
5
7
  name: string;
@@ -18,24 +20,16 @@ export type FormItem = {
18
20
  verify?: boolean;
19
21
  /** 是否警告 */
20
22
  warning?: boolean;
21
- };
23
+ }
24
+
22
25
  interface Props {
23
26
  /** 表单项默认宽 */
24
27
  itemWidth?: string;
25
28
  /** 标单项默认高 */
26
29
  itemHeight?: string;
27
30
  }
28
- type __VLS_Props = Props;
29
- type __VLS_ModelProps = {
30
- 'items': FormItem[];
31
- };
32
- type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
33
- declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
34
- verifications: import("vue").ComputedRef<Record<string, boolean>>;
35
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
36
- "update:items": (value: FormItem[]) => any;
37
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
38
- "onUpdate:items"?: ((value: FormItem[]) => any) | undefined;
39
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
40
- declare const _default: typeof __VLS_export;
41
- export default _default;
31
+
32
+ declare const _default: DefineComponent<Props & {
33
+ 'items': FormItem[];
34
+ }>
35
+ export default _default
@@ -1,7 +1,10 @@
1
1
  import type { OptionItem, DateItem } from '../type';
2
+ import type { DefineComponent } from 'vue'
3
+
2
4
  export type InputOption = OptionItem & {
3
5
  selectable?: boolean;
4
- };
6
+ }
7
+
5
8
  interface Props {
6
9
  /** 输入框类型 */
7
10
  type?: "text" | "password" | "number" | "select" | "date";
@@ -22,40 +25,15 @@ interface Props {
22
25
  /** 回车事件 */
23
26
  onEnter?: () => void;
24
27
  }
25
- type __VLS_Props = Props;
26
- type __VLS_ModelProps = {
27
- 'value': string;
28
- 'warning'?: boolean;
29
- };
30
- type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
31
- declare var __VLS_9: {};
32
- type __VLS_Slots = {} & {
33
- default?: (props: typeof __VLS_9) => any;
34
- };
35
- declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
36
- verification: import("vue").ComputedRef<boolean>;
28
+
29
+ declare const _default: DefineComponent<Props & {
30
+ 'value': string;
31
+ 'warning'?: boolean;
32
+ }, {}, {}, {}, {}, {}, {}, {}> & {
33
+ new(): {
37
34
  focus: () => void;
38
35
  blur: () => void;
39
- select: () => void | undefined;
40
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
41
- "update:value": (value: string) => any;
42
- "update:warning": (value: boolean) => any;
43
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
44
- "onUpdate:value"?: ((value: string) => any) | undefined;
45
- "onUpdate:warning"?: ((value: boolean) => any) | undefined;
46
- }>, {
47
- filter: boolean;
48
- type: "text" | "password" | "number" | "select" | "date";
49
- verify: boolean;
50
- disabled: boolean;
51
- options: InputOption[];
52
- format: (date: DateItem) => string;
53
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
54
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
55
- declare const _default: typeof __VLS_export;
56
- export default _default;
57
- type __VLS_WithSlots<T, S> = T & {
58
- new (): {
59
- $slots: S;
60
- };
61
- };
36
+ select: () => void | undefined;;
37
+ }
38
+ }
39
+ export default _default
@@ -1,3 +1,5 @@
1
+ import type { DefineComponent } from 'vue'
2
+
1
3
  interface Props {
2
4
  /** 标题 */
3
5
  title?: string;
@@ -8,27 +10,8 @@ interface Props {
8
10
  /** 关闭事件 */
9
11
  onClose?: () => void;
10
12
  }
11
- type __VLS_Props = Props;
12
- type __VLS_ModelProps = {
13
- 'visible': boolean;
14
- };
15
- type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
16
- declare var __VLS_19: {}, __VLS_22: {};
17
- type __VLS_Slots = {} & {
18
- default?: (props: typeof __VLS_19) => any;
19
- } & {
20
- tip?: (props: typeof __VLS_22) => any;
21
- };
22
- declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23
- "update:visible": (value: boolean) => any;
24
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
25
- "onUpdate:visible"?: ((value: boolean) => any) | undefined;
26
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
27
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
28
- declare const _default: typeof __VLS_export;
29
- export default _default;
30
- type __VLS_WithSlots<T, S> = T & {
31
- new (): {
32
- $slots: S;
33
- };
34
- };
13
+
14
+ declare const _default: DefineComponent<Props & {
15
+ 'visible': boolean;
16
+ }>
17
+ export default _default
@@ -1,23 +1,12 @@
1
1
  import type { OptionItem } from '../type.js';
2
+ import type { DefineComponent } from 'vue'
3
+
2
4
  interface Props {
3
5
  /** 选项配置 */
4
6
  options: OptionItem[];
5
7
  /** 选项点击事件 */
6
8
  onOptionClick?: (item: OptionItem, index: number) => void;
7
9
  }
8
- declare var __VLS_7: {
9
- item: OptionItem;
10
- index: number;
11
- };
12
- type __VLS_Slots = {} & {
13
- default?: (props: typeof __VLS_7) => any;
14
- };
15
- declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
17
- declare const _default: typeof __VLS_export;
18
- export default _default;
19
- type __VLS_WithSlots<T, S> = T & {
20
- new (): {
21
- $slots: S;
22
- };
23
- };
10
+
11
+ declare const _default: DefineComponent<Props>
12
+ export default _default
@@ -1,30 +1,13 @@
1
+ import type { DefineComponent } from 'vue'
2
+
1
3
  interface Props {
2
4
  /** 是否显示 */
3
5
  visible?: boolean;
4
6
  /** 按钮点击事件 */
5
7
  onButtonClick?: () => void;
6
8
  }
7
- type __VLS_Props = Props;
8
- type __VLS_ModelProps = {
9
- 'open': boolean;
10
- };
11
- type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
12
- declare var __VLS_9: {};
13
- type __VLS_Slots = {} & {
14
- default?: (props: typeof __VLS_9) => any;
15
- };
16
- declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17
- "update:open": (value: boolean) => any;
18
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
19
- "onUpdate:open"?: ((value: boolean) => any) | undefined;
20
- }>, {
21
- visible: boolean;
22
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
24
- declare const _default: typeof __VLS_export;
25
- export default _default;
26
- type __VLS_WithSlots<T, S> = T & {
27
- new (): {
28
- $slots: S;
29
- };
30
- };
9
+
10
+ declare const _default: DefineComponent<Props & {
11
+ 'open': boolean;
12
+ }>
13
+ export default _default
@@ -1,8 +1,11 @@
1
+ import type { DefineComponent } from 'vue'
2
+
1
3
  export type TabItem = {
2
4
  id: string;
3
5
  name?: string;
4
6
  [key: string]: any;
5
- };
7
+ }
8
+
6
9
  interface Props {
7
10
  /** 标签 */
8
11
  tabs: TabItem[];
@@ -15,41 +18,9 @@ interface Props {
15
18
  /** 搜索事件 */
16
19
  onSearch?: () => void;
17
20
  }
18
- type __VLS_Props = Props;
19
- type __VLS_ModelProps = {
20
- 'activeIndex': number;
21
- 'value'?: string;
22
- };
23
- type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
24
- declare var __VLS_7: {
25
- item: TabItem;
26
- index: number;
27
- }, __VLS_9: {
28
- item: TabItem;
29
- index: number;
30
- }, __VLS_11: {
31
- item: TabItem;
32
- index: number;
33
- };
34
- type __VLS_Slots = {} & {
35
- default?: (props: typeof __VLS_7) => any;
36
- } & {
37
- default?: (props: typeof __VLS_9) => any;
38
- } & {
39
- default?: (props: typeof __VLS_11) => any;
40
- };
41
- declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
42
- "update:value": (value: string) => any;
43
- "update:activeIndex": (value: number) => any;
44
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
45
- "onUpdate:value"?: ((value: string) => any) | undefined;
46
- "onUpdate:activeIndex"?: ((value: number) => any) | undefined;
47
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
48
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
49
- declare const _default: typeof __VLS_export;
50
- export default _default;
51
- type __VLS_WithSlots<T, S> = T & {
52
- new (): {
53
- $slots: S;
54
- };
55
- };
21
+
22
+ declare const _default: DefineComponent<Props & {
23
+ 'activeIndex': number;
24
+ 'value'?: string;
25
+ }>
26
+ export default _default
@@ -1,34 +1,28 @@
1
1
  import type { Item } from '../type.js';
2
+ import type { DefineComponent } from 'vue'
3
+
2
4
  export type ColumnConfig = {
3
5
  id: string;
4
6
  name: string;
5
7
  prop: string;
6
8
  width: number | string;
7
- };
9
+ }
8
10
  export type SortConfig = {
9
11
  /** 列 id */
10
12
  id: string;
11
13
  /** 排序规则 */
12
14
  order: 'asc' | 'desc';
13
- };
15
+ }
16
+
14
17
  interface Props {
15
18
  /** 列 */
16
19
  columns: ColumnConfig[];
17
20
  /** 行 */
18
21
  rows: Item[];
19
22
  }
20
- type __VLS_Props = Props;
21
- type __VLS_ModelProps = {
22
- 'sort'?: SortConfig;
23
- 'activeIds'?: Set<string>;
24
- };
25
- type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
26
- declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
27
- "update:activeIds": (value: Set<string>) => any;
28
- "update:sort": (value: SortConfig | undefined) => any;
29
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
30
- "onUpdate:activeIds"?: ((value: Set<string>) => any) | undefined;
31
- "onUpdate:sort"?: ((value: SortConfig | undefined) => any) | undefined;
32
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
33
- declare const _default: typeof __VLS_export;
34
- export default _default;
23
+
24
+ declare const _default: DefineComponent<Props & {
25
+ 'sort'?: SortConfig;
26
+ 'activeIds'?: Set<string>;
27
+ }>
28
+ export default _default
@@ -1,3 +1,5 @@
1
+ import type { DefineComponent } from 'vue'
2
+
1
3
  interface Props {
2
4
  /** 最小行数 */
3
5
  minrow?: number;
@@ -10,23 +12,8 @@ interface Props {
10
12
  /** 回车事件 */
11
13
  onEnter?: () => void;
12
14
  }
13
- type __VLS_Props = Props;
14
- type __VLS_ModelProps = {
15
- 'value': string;
16
- };
17
- type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
18
- declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
19
- focus: () => void | undefined;
20
- blur: () => void | undefined;
21
- select: () => void | undefined;
22
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23
- "update:value": (value: string) => any;
24
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
25
- "onUpdate:value"?: ((value: string) => any) | undefined;
26
- }>, {
27
- disabled: boolean;
28
- placeholder: string;
29
- minrow: number;
30
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
31
- declare const _default: typeof __VLS_export;
32
- export default _default;
15
+
16
+ declare const _default: DefineComponent<Props & {
17
+ 'value': string;
18
+ }>
19
+ export default _default
@@ -1,4 +1,11 @@
1
1
  import type { DateItem } from '../type.js';
2
+ import type { DefineComponent } from 'vue'
3
+
4
+ export type DateInstance = {
5
+ root: HTMLElement | null;
6
+ props: Props;
7
+ }
8
+
2
9
  interface Props {
3
10
  /** 是否显示 */
4
11
  visible: boolean;
@@ -7,19 +14,8 @@ interface Props {
7
14
  /** 日期点击事件 */
8
15
  onDateClick?: () => void;
9
16
  }
10
- type __VLS_Props = Props;
11
- export type DateInstance = {
12
- root: HTMLElement | null;
13
- props: Props;
14
- };
15
- type __VLS_ModelProps = {
16
- 'date'?: DateItem;
17
- };
18
- type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
19
- declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, DateInstance, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
- "update:date": (value: DateItem) => any;
21
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
22
- "onUpdate:date"?: ((value: DateItem) => any) | undefined;
23
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
- declare const _default: typeof __VLS_export;
25
- export default _default;
17
+
18
+ declare const _default: DefineComponent<Props & {
19
+ 'date'?: DateItem;
20
+ }>
21
+ export default _default
@@ -1,4 +1,11 @@
1
1
  import type { OptionItem } from '../type';
2
+ import type { DefineComponent } from 'vue'
3
+
4
+ export type MenuInstance = {
5
+ root: HTMLElement | null;
6
+ props: Props;
7
+ }
8
+
2
9
  interface Props {
3
10
  /** 是否显示 */
4
11
  visible: boolean;
@@ -11,23 +18,6 @@ interface Props {
11
18
  /** 选项点击事件 */
12
19
  onOptionClick?: (option: OptionItem, index: number) => void;
13
20
  }
14
- export type MenuInstance = {
15
- root: HTMLElement | null;
16
- props: Props;
17
- };
18
- declare var __VLS_13: {
19
- item: OptionItem;
20
- index: number;
21
- };
22
- type __VLS_Slots = {} & {
23
- default?: (props: typeof __VLS_13) => any;
24
- };
25
- declare const __VLS_base: import("vue").DefineComponent<Props, MenuInstance, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
26
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
27
- declare const _default: typeof __VLS_export;
28
- export default _default;
29
- type __VLS_WithSlots<T, S> = T & {
30
- new (): {
31
- $slots: S;
32
- };
33
- };
21
+
22
+ declare const _default: DefineComponent<Props>
23
+ export default _default
@@ -1,17 +1,12 @@
1
1
  import { ListItem } from '../type';
2
+ import type { DefineComponent } from 'vue'
3
+
2
4
  interface Props {
3
5
  /** 列表 */
4
6
  lists: [ListItem[], ListItem[]];
5
7
  }
6
- type __VLS_Props = Props;
7
- type __VLS_ModelProps = {
8
- 'activeIds'?: [string, string];
9
- };
10
- type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
11
- declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
- "update:activeIds": (value: [string, string] | undefined) => any;
13
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
- "onUpdate:activeIds"?: ((value: [string, string] | undefined) => any) | undefined;
15
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
- declare const _default: typeof __VLS_export;
17
- export default _default;
8
+
9
+ declare const _default: DefineComponent<Props & {
10
+ 'activeIds'?: [string, string];
11
+ }>
12
+ export default _default
package/dist/index.d.ts CHANGED
@@ -10,8 +10,5 @@ import SideBar from './components/external/SideBar.vue';
10
10
  import TabBar, { type TabItem } from './components/external/TabBar.vue';
11
11
  import Table, { type ColumnConfig, type SortConfig } from './components/external/Table.vue';
12
12
  import TextArea from './components/external/TextArea.vue';
13
- import type { Item, ListItem, OptionItem } from './components/type';
14
- import '@/assets/styles/reset.css';
15
- import '@/assets/styles/main.css';
16
- import '@/assets/icons/iconfont.css';
17
- export { Button, Card, ContentBar, FoldList, Form, type FormItem, Input, type InputOption, Modal, Select, SideBar, TabBar, type TabItem, Table, type ColumnConfig, type SortConfig, TextArea, type Item, type ListItem, type OptionItem, };
13
+ import type { Item, ListItem, OptionItem, DateItem } from './components/type';
14
+ export { Button, Card, ContentBar, FoldList, Form, type FormItem, Input, type InputOption, Modal, Select, SideBar, TabBar, type TabItem, Table, type ColumnConfig, type SortConfig, TextArea, type Item, type ListItem, type OptionItem, type DateItem };