lovelymaid 1.6.2 → 1.6.3

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
@@ -11,7 +11,4 @@ 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
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
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, };
@@ -1,2 +1,2 @@
1
- ._Button_6dl3h_2{border-radius:var(--Button-border-radius);width:30px;height:30px;font-size:var(--Button-font-size);color:var(--color-gray-500);cursor:pointer;touch-action:none;-webkit-user-select:none;user-select:none;--background-color:var(--color-blue-200);justify-content:center;align-items:center;font-weight:500;transition:transform .2s;display:flex}._Button_6dl3h_2._common_6dl3h_20{background-color:var(--background-color)}._Button_6dl3h_2._lovelymai-glass-container_6dl3h_24:active{background-color:#fff}._Button_6dl3h_2:active{transform:scale(1.2)}._ContentBar_2z6ee_2{transform:translateX(var(--ContentBar-translateX)) scale(var(--ContentBar-scale));transition:var(--ContentBar-transition);scrollbar-width:thin;border-radius:20px;overflow:auto}._header_2z6ee_10{z-index:1;height:0;box-shadow:0 0px 20px 35px var(--color-gray-100);justify-content:space-between;gap:5px;margin-bottom:50px;padding:0 10px;display:flex;position:sticky;top:0}._title_2z6ee_23{text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;height:30px;margin-top:10px;font-size:16px;font-weight:500;line-height:30px;overflow:hidden}._Button_2z6ee_36{margin-top:10px;font-size:20px}._content_2z6ee_41{z-index:0;display:flow-root;position:relative}._tip_2z6ee_47{z-index:2;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._FoldList_jczh8_2{--header-height:30px;--header-font-size:12px;--header-color:var(--color-gray-300);--list-font-size:14px;--list-line-height:30px;--list-color:inherit}._header_jczh8_11{height:var(--header-height);cursor:pointer;justify-content:space-between;align-items:center;display:flex}._header_jczh8_11 ._title_jczh8_19{font-size:var(--header-font-size);color:var(--header-color);font-weight:500}._container_jczh8_25{height:var(--container-height);transition:height .5s;overflow:hidden}._list_jczh8_31{transition:transform .5s;transform:translateY(0)}._list_jczh8_31._close_jczh8_36{transform:translateY(-100%)}._list_jczh8_31 ._item_jczh8_40{font-size:var(--list-font-size);line-height:var(--list-line-height);color:var(--list-color);white-space:nowrap;text-overflow:ellipsis;border-radius:6px;padding:0 10px;transition:all .2s;position:relative;overflow:hidden}._list_jczh8_31 ._item_jczh8_40._active_jczh8_53{background-color:var(--color-gray-200);color:var(--color-blue-200)}@keyframes _slideAnimation_jczh8_68{0%{transform:translateY(var(--translateY))}to{transform:translateY(0)}}._slideAnimation_jczh8_68{animation:.5s _slideAnimation_jczh8_68}.lovely-right-arrow[data-v-e63f43e3]{color:var(--header-color);cursor:pointer;font-size:16px;font-weight:700;transition:transform .3s}._Menu_134fj_2{z-index:0;background-color:var(--color-gray-150);outline:.5px solid var(--color-gray-250);-webkit-user-select:none;user-select:none;border:1px solid #fff;border-radius:10px;padding:4px;position:absolute;box-shadow:0 0 10px #0000004d}._Menu_134fj_2 ._item_134fj_15{z-index:0;color:#000;cursor:pointer;border-radius:8px;justify-content:center;align-items:center;gap:5px;min-width:50px;height:28px;padding:5px;display:flex;position:relative}._Menu_134fj_2._sub_134fj_30 ._item_134fj_15{justify-content:space-between}@media (hover:hover){._Menu_134fj_2 ._item_134fj_15:hover{background-color:var(--color-blue-200);color:#fff}}._Menu_134fj_2 ._item_134fj_15 ._left_134fj_41{gap:5px;display:flex}._Menu_134fj_2 ._item_134fj_15 ._left_134fj_41 ._text_134fj_46{white-space:nowrap;font-size:12px;font-weight:450;line-height:18px}.lovely-right-arrow[data-v-2e8c8854]{font-weight:600;transform:translateY(1px)}._Scroll_9f8uf_2{z-index:0;justify-content:center;align-items:center;height:200px;padding:16px 0;display:flex;position:relative}._selected_9f8uf_12{z-index:0;background-color:var(--color-gray-150);border-radius:12px;width:100%;height:24px;position:absolute;top:calc(50% - 12px);left:0}._list_9f8uf_23{z-index:1;overscroll-behavior:contain;scrollbar-width:none;scroll-snap-type:y mandatory;width:50%;height:168px;position:relative;overflow-y:auto}._list_9f8uf_23._left_9f8uf_34{padding-left:5px}._list_9f8uf_23._right_9f8uf_38{padding:0 5px 0 10px}._list_9f8uf_23 ._item_9f8uf_42{scroll-snap-align:start;height:24px;font-size:16px;line-height:24px;display:flex}._list_9f8uf_23._left_9f8uf_34 ._item_9f8uf_42{justify-content:flex-end}._list_9f8uf_23._right_9f8uf_38 ._item_9f8uf_42{justify-content:flex-start}._Date_8ydqn_2{z-index:0;-webkit-user-select:none;user-select:none;border-radius:16px;width:250px;padding:14px;position:absolute}._header_8ydqn_12{justify-content:space-between;height:24px;margin-bottom:14px;display:flex}._header_8ydqn_12 ._date_8ydqn_19{cursor:pointer;align-items:center;gap:2px;font-size:16px;font-weight:500;display:flex}._header_8ydqn_12 ._date_8ydqn_19 ._arrow_8ydqn_28{font-size:14px;transition:transform .5s}._header_8ydqn_12 ._button_8ydqn_33{align-items:center;gap:10px;display:flex}._header_8ydqn_12 ._button_8ydqn_33 ._arrow_8ydqn_28{font-size:20px}._days_8ydqn_43 ._weekdays_8ydqn_43{color:var(--color-gray-300);justify-content:space-between;font-size:12px;display:flex}._days_8ydqn_43 ._monthDays_8ydqn_50{flex-wrap:wrap;margin-top:10px;display:flex}._days_8ydqn_43 ._dayCell_8ydqn_56{justify-content:center;align-items:center;width:14.2857%;height:32px;display:flex}._days_8ydqn_43 ._day_8ydqn_43{cursor:pointer;border-radius:50%;justify-content:center;align-items:center;width:28px;height:28px;font-size:14px;font-weight:450;transition:background-color .2s;display:flex}._days_8ydqn_43 ._day_8ydqn_43._today_8ydqn_77{color:var(--color-blue-200)}._days_8ydqn_43 ._day_8ydqn_43._active_8ydqn_81{background-color:var(--color-blue-200);color:#fff}.lovelymai[data-v-825c0fe9]{color:var(--color-blue-300);cursor:pointer;font-weight:600;transform:translateY(1px)}._Input_1h70u_2{border-radius:calc(var(--Input-height) * .5px);--font-size:14px;--font-weight:400;--line-height:18px;--clear-color:var(--color-gray-300);--placeholder-color:var(--color-gray-400);height:35px;display:flex;position:relative}._icon_1h70u_14{width:calc(var(--input-height) * 1px);height:100%;font-size:calc(var(--input-height) * .5px);color:var(--color-gray-500);pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute}._icon_1h70u_14._custom_1h70u_26{left:0}._icon_1h70u_14._clear_1h70u_30{right:0}._input_1h70u_34{min-width:0;padding-left:calc(var(--input-paddingLeft) * 1px);padding-right:calc(var(--input-height) * 1px);border-radius:calc(var(--input-height) * .5px);font-size:var(--font-size);font-weight:var(--font-weight);line-height:var(--line-height);caret-color:var(--color-blue-200);background-color:#0000;border:none;outline:0 solid #0000;flex:1;transition:outline .2s}._input_1h70u_34::placeholder{color:var(--placeholder-color)}._input_1h70u_34:focus{outline:3px solid var(--color-blue-100)}._input_1h70u_34[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}.lovely-clear[data-v-4e6a6678]{font-size:calc(var(--input-height) * .5px);color:var(--clear-color);cursor:pointer;pointer-events:auto}._TextArea_c2sbx_2{border-radius:var(--border-radius);--max-height:auto;--border-radius:20px;--font-size:14px;--font-weight:400;--line-height:18px;--placeholder-color:var(--color-gray-400)}textarea[data-v-50941587]{width:100%;max-height:var(--max-height);border-radius:calc(var(--border-radius) - 1px);font-size:var(--font-size);font-weight:var(--font-weight);line-height:var(--line-height);caret-color:var(--color-blue-200);resize:none;scrollbar-width:thin;background-color:#0000;border:none;outline:0 solid #0000;padding:12px;transition:outline .2s;display:block;overflow-y:auto}textarea[data-v-50941587]::placeholder{color:var(--placeholder-color)}textarea[data-v-50941587]:focus{outline:3px solid var(--color-blue-100)}._Form_1yqvr_2{flex-wrap:wrap;align-items:flex-start;gap:10px;display:flex}._FormItem_1yqvr_9{align-items:flex-start;gap:10px;display:flex}._FormItem_1yqvr_9 ._Input_1yqvr_15,._FormItem_1yqvr_9 ._TextArea_1yqvr_16{flex:1;min-width:0}._FormItem_1yqvr_9 ._Input_1yqvr_15{height:100%}._Modal_xb86c_2{z-index:0;position:relative}._mask_xb86c_7{background-color:#0000001a;width:100dvw;height:100dvh;position:fixed;top:0;left:0}._ContentBar_xb86c_16{left:var(--ContentBar-left);top:var(--ContentBar-top);width:var(--ContentBar-width);height:var(--ContentBar-height);position:fixed}._Select_fr749_2{cursor:pointer;justify-content:center;align-items:center;width:20px;height:20px;display:flex}._SideBar_1en9s_2{transform:translateX(var(--SideBar-translateX)) scale(var(--SideBar-scale));transition:var(--SideBar-transition);border-radius:20px}._header_1en9s_8{height:50px;position:relative}._button_1en9s_13{width:35px;height:30px;transform:translateX(var(--button-translateX));cursor:pointer;border:none;border-radius:15px;justify-content:center;align-items:center;transition:transform .5s,box-shadow .5s;display:flex;position:absolute;top:10px;right:10px}._button_1en9s_13._close_1en9s_29{box-shadow:var(--box-shadow-200);background-color:#ffffffe6;border:1px solid #fff}@media (hover:hover){._button_1en9s_13:hover{background-color:var(--color-gray-200)}}.lovely-left-sidebar[data-v-6c93f3f3]{color:var(--color-gray-500);font-size:20px}._TabBar_o3o84_2{-webkit-user-select:none;user-select:none;--font-size:10px;--top-color:var(--color-blue-300);gap:5px;height:50px;display:flex}._Bar_o3o84_12{width:calc(var(--Bar-height) * .8px);border-radius:calc(var(--Bar-border-radius) * 1px);cursor:pointer;height:80%;transition:var(--Bar-transition);padding:2px;overflow:hidden;background-color:var(--Bar-background-color)!important}._Bar_o3o84_12._active_o3o84_23{width:calc(var(--Bar-width) * 1px);height:100%;transform:scale(var(--Bar-scale));overflow:visible}._Bar_o3o84_12:not(._active_o3o84_23):active{transform:scale(1.2)}._search_o3o84_34{width:calc(var(--Bar-height) * 1px);height:100%;transition:var(--Bar-transition)}._search_o3o84_34._active_o3o84_23{width:calc(var(--search-width) * 1px);height:80%}._content_o3o84_45{touch-action:none;width:100%;height:100%;display:flex;position:relative}._content_o3o84_45._top_o3o84_53{z-index:1;clip-path:inset(0 calc(100% - var(--content-top-clipRight) * 1px) 0 calc(var(--content-top-clipLeft) * 1px) round calc((var(--Bar-border-radius) - 3) * 1px));transform:translateZ(0) scale(var(--content-top-scale));transform-origin:calc(var(--slide-center) * 1px) center;backface-visibility:hidden;transition:transform .2s;position:absolute;top:0;left:0}._tab_o3o84_65{width:calc(var(--slide-width) * 1px);flex-direction:column;flex-shrink:0;justify-content:center;align-items:center;height:100%;display:flex}._tab_o3o84_65 :nth-child(2){font-size:var(--font-size)}._tab_o3o84_65._small_o3o84_79{aspect-ratio:1;flex-shrink:1;height:100%}._tab_o3o84_65._top_o3o84_53{color:var(--top-color)}._search_o3o84_34 ._Button_o3o84_89{width:100%;height:100%}._search_o3o84_34 ._Input_o3o84_94{--font-size:18px;height:100%}._slide_o3o84_99{z-index:0;width:calc(var(--slide-width) * 1px);background:var(--slide-background);border:var(--slide-border);border-radius:calc((var(--Bar-border-radius) - 3) * 1px);height:100%;box-shadow:var(--slide-box-shadow);transform:translateX(calc(var(--slide-translateX) * 1px)) scale(var(--slide-scale));transition:var(--slide-transition);position:absolute;top:0;left:0}._header_1ndfk_2{border-bottom:.5px solid var(--color-gray-300);-webkit-user-select:none;user-select:none;height:28px;margin-bottom:4px;display:flex}._header_1ndfk_2 ._column_1ndfk_11{cursor:pointer;padding:6px 0}._header_1ndfk_2 ._column_1ndfk_11 ._container_1ndfk_16{justify-content:space-between;align-items:center;padding:0 8px;display:flex}._header_1ndfk_2 ._column_1ndfk_11:not(:last-child) ._container_1ndfk_16{border-right:.5px solid var(--color-gray-300)}._header_1ndfk_2 ._column_1ndfk_11 ._container_1ndfk_16 ._text_1ndfk_27{white-space:nowrap;text-overflow:ellipsis;font-size:12px;font-weight:500;line-height:16px;overflow:hidden}._list_1ndfk_36 ._row_1ndfk_36{height:35px;display:flex}._list_1ndfk_36 ._row_1ndfk_36:nth-child(2n){background-color:var(--color-gray-150)}._list_1ndfk_36 ._row_1ndfk_36 ._text_1ndfk_27{white-space:nowrap;text-overflow:ellipsis;padding:0 8px;font-size:16px;line-height:35px;overflow:hidden}.lovely-down-arrow[data-v-e4a726dd]{color:var(--color-gray-300);font-size:12px;font-weight:700}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent;margin:0;padding:0}input,textarea{font-family:inherit}ul{list-style:none}@media (pointer:coarse){input,textarea{font-size:16px!important}}:root{--color-blue-100:#94bbf0;--color-blue-200:#3b86f7;--color-blue-300:#0067ec;--color-blue-450:#2962d9;--color-gray-100:#fafafae6;--color-gray-150:#f5f5f5e6;--color-gray-200:#e4e4e4;--color-gray-250:#b3b3b3;--color-gray-300:#767676;--color-gray-400:#544957;--color-gray-500:#19191a;--color-red-200:#ef6b6bcc;--box-shadow-100:0 0 20px 0 #0000001a;--box-shadow-200:0 0 10px 2px #0000001a}.lovelymai-common-container{box-shadow:var(--box-shadow-100);background-color:#f8f8f8;border:1px solid #fff}.lovelymai-glass-container{-webkit-backdrop-filter:blur(10px)saturate(1.5);backdrop-filter:blur(10px)saturate(1.5);box-shadow:var(--box-shadow-100);background-color:#ffffffe6;border:1px solid #fff}.lovelymai-fade-enter-from,.lovelymai-fade-leave-to{opacity:0}.lovelymai-fade-enter-active,.lovelymai-fade-leave-active{transition:opacity .2s}.lovelymai-fade-leave-leave-to{opacity:0}.lovelymai-fade-leave-leave-active{transition:opacity .2s}@font-face{font-family:lovelymai;src:url(data:font/ttf;base64,AAEAAAALAIAAAwAwR1NVQiCLJXoAAAE4AAAAVE9TLzI8FUtqAAABjAAAAGBjbWFwQpk4ogAAAhgAAAImZ2x5ZgsyGS4AAARYAAAEhGhlYWQwAKn7AAAA4AAAADZoaGVhB94DjAAAALwAAAAkaG10eCwAAAAAAAHsAAAALGxvY2EGOgdoAAAEQAAAABhtYXhwARsAVgAAARgAAAAgbmFtZXqBcSwAAAjcAAACc3Bvc3SRbSeJAAALUAAAAJEAAQAAA4D/gABcBAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAsAAQAAAAEAABsoBR1fDzz1AAsEAAAAAADmcLL/AAAAAOZwsv8AAP+ABAADgAAAAAgAAgAAAAAAAAABAAAACwBKAAYAAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKADAAPgACREZMVAAObGF0bgAaAAQAAAAAAAAAAQAAAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAQEAAGQAAUAAAKJAswAAACPAokCzAAAAesAMgEIAAACAAUDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBmRWQAwOYA6JoDgP+AAAAD3ACAAAAAAQAAAAAAAAAAAAAAAAACBAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAFAAAAAwAAACwAAAAEAAABngABAAAAAACYAAMAAQAAACwAAwAKAAABngAEAGwAAAASABAAAwAC5gDmCOYp5i3mMOZO5t7omv//AADmAOYI5inmLeYw5k7m3uiY//8AAAAAAAAAAAAAAAAAAAAAAAEAEgASABIAEgASABIAEgASAAAABgABAAUACgAJAAIAAwAEAAgABwAAAQYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAiAAAAAAAAAAKAADmAAAA5gAAAAAGAADmCAAA5ggAAAABAADmKQAA5ikAAAAFAADmLQAA5i0AAAAKAADmMAAA5jAAAAAJAADmTgAA5k4AAAACAADm3gAA5t4AAAADAADomAAA6JgAAAAEAADomQAA6JkAAAAIAADomgAA6JoAAAAHAAAAAAAAAC4AagDWATgBYAGaAcIB6gIUAkIAAwAAAAADUQG5AAgAEQAaAAATFBYyNjQmIgYFFBYyNjQmIgYFFBYyNjQmIgawIS4hIS4hARghLiEhLiEBGCEuISEuIQGBFyEhLiEhFxchIS4hIRcXISEuISEAAAACAAD/yQOhAusAFgAjAAABMh4BBgcXHgEOAS8CDgEuAz4CFyIOARQeATI+ATQuAQHAXZxQFzrfCAIQGQoF3zWGh3RIEihbfUZGdUVFdYx1RUV1AutjqLhI3wgZEwQHBN8sIxZOdYiFaDlARXaLdUVFdYt2RQAAAAAEAAAAAANMAtEAFAApADkASQAAJTI3Njc2NCcmJyYiBwYHBhQXFhcWFyInJicmNDc2NzYyFxYXFhQHBgcGAzMyFh0BFAYrASImPQE0NjczMhYdARQGKwEiJj0BNDYB/k5CQSYnJyZBQpxCQSYnJyZBQk5bTkssLi4sS062TUwsLi4sTE1eEAcJCQcQBgoKBhAHCQkHEAYKCmQnJkFCnEJBJicnJkFCnEJBJicwLixMTbZOSywuLixLTrZNTCwuAZEKBsoGCgoGygYKZAkHGAYKCgYYBwkAAAAGAAD/9QP6AwsADAAWACAALAA4AEQAABchMjURNCMhBhURFDM3IiY1ETQ2OwERATIWFREUBiMhEQcyNjQmKwEiBhQWMxcyNjQmKwEiBhQWMxcyNjQmKwEiBhQWM40C5oeH/RqHhwEgIiIgvwIlICIiIP4elQkPDwlcCg4OClwJDw4KXAoODgpcCg4PCVwKDg4KCoQCDIUBhP30hUUjIQIEISL9dQKMIyH9/CEiAougDxMODhMPbw8TDw4UD24OEw8PEw4AAQAAAAACmALGABMAAAkBJiIOARcBFhQHAQYUFjI3ATY0Aon+2gkXEQEIARgFBf7oCBEXCQEmDwGhARwIDxcI/vIFDgX+8wgWEAgBHA8pAAACAAD/gAQAA4AAFAAgAAAFIicmJyYQNzY3NiAXFhcWEAcGBwYTJwcnBxcHFzcXNycB/4p3dERGRkR0dwEWd3RERkZEdHc/NJqcM5qaM5yaNJuARkR0dwEWd3RERkZEdHf+6nd0REYCoDOamjOcmjSbmzSaAAEAAAAAA0YCJQATAAAlATY0JiIHAQYiJwEmIgYUFwEeAQIhARwIDxcI/vIFDgX+8wgWEAgBHA8pzQElCRgRCP7oBQUBGAgQGAn+2w8BAAAAAQAAAAAC0ALKABMAAAkBFjI+AScBJjQ3ATY0JiIHAQYUAXcBJgkXEQEI/ugFBQEYCBEXCf7aDwFf/uQIDxcIAQ4FDgUBDQgWEAj+5A8pAAACAAAAAAOzAogAFAAVAAABJiIHCQEmIgYUFwEWMzI2NwE2NCcxA6sHFgf+Iv7PBxYPCAFDBwsFCQQB8AgIAoAHB/3ZATEIDxUI/r0HAwQCOAgVCAABAAAAAAM/ArYAGwAAATc2NCYiDwEnJiIGFB8BBwYUFjI/ARcWMjY0JwI4/QkSGgr9/QkaEwr9/QoTGgn9/gkaEgkBgv0KGhIJ/f0JEhoK/f0JGhMK/f0KExoJAAAAEgDeAAEAAAAAAAAAEwAAAAEAAAAAAAEACQATAAEAAAAAAAIABwAcAAEAAAAAAAMACQAjAAEAAAAAAAQACQAsAAEAAAAAAAUACwA1AAEAAAAAAAYACQBAAAEAAAAAAAoAKwBJAAEAAAAAAAsAEwB0AAMAAQQJAAAAJgCHAAMAAQQJAAEAEgCtAAMAAQQJAAIADgC/AAMAAQQJAAMAEgDNAAMAAQQJAAQAEgDfAAMAAQQJAAUAFgDxAAMAAQQJAAYAEgEHAAMAAQQJAAoAVgEZAAMAAQQJAAsAJgFvQ3JlYXRlZCBieSBpY29uZm9udGxvdmVseW1haVJlZ3VsYXJsb3ZlbHltYWlsb3ZlbHltYWlWZXJzaW9uIDEuMGxvdmVseW1haUdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAEMAcgBlAGEAdABlAGQAIABiAHkAIABpAGMAbwBuAGYAbwBuAHQAbABvAHYAZQBsAHkAbQBhAGkAUgBlAGcAdQBsAGEAcgBsAG8AdgBlAGwAeQBtAGEAaQBsAG8AdgBlAGwAeQBtAGEAaQBWAGUAcgBzAGkAbwBuACAAMQAuADAAbABvAHYAZQBsAHkAbQBhAGkARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAACAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsBAgEDAQQBBQEGAQcBCAEJAQoBCwEMAAhlbGxpcHNpcwZzZWFyY2gEaW5mbwxsZWZ0LXNpZGViYXILcmlnaHQtYXJyb3cFY2xlYXIKZG93bi1hcnJvdwpsZWZ0LWFycm93BWNoZWNrBWNsb3NlAAAAAAA=)format("truetype")}.lovelymai{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-style:normal;font-family:lovelymai!important}.lovely-ellipsis:before{content:""}.lovely-search:before{content:""}.lovely-info:before{content:""}.lovely-left-sidebar:before{content:""}.lovely-right-arrow:before{content:""}.lovely-clear:before{content:""}.lovely-down-arrow:before{content:""}.lovely-left-arrow:before{content:""}.lovely-check:before{content:""}.lovely-close:before{content:""}
1
+ ._Button_6dl3h_2{border-radius:var(--Button-border-radius);width:30px;height:30px;font-size:var(--Button-font-size);color:var(--color-gray-500);cursor:pointer;touch-action:none;-webkit-user-select:none;user-select:none;--background-color:var(--color-blue-200);justify-content:center;align-items:center;font-weight:500;transition:transform .2s;display:flex}._Button_6dl3h_2._common_6dl3h_20{background-color:var(--background-color)}._Button_6dl3h_2._lovelymai-glass-container_6dl3h_24:active{background-color:#fff}._Button_6dl3h_2:active{transform:scale(1.2)}._ContentBar_2z6ee_2{transform:translateX(var(--ContentBar-translateX)) scale(var(--ContentBar-scale));transition:var(--ContentBar-transition);scrollbar-width:thin;border-radius:20px;overflow:auto}._header_2z6ee_10{z-index:1;height:0;box-shadow:0 0px 20px 35px var(--color-gray-100);justify-content:space-between;gap:5px;margin-bottom:50px;padding:0 10px;display:flex;position:sticky;top:0}._title_2z6ee_23{text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;height:30px;margin-top:10px;font-size:16px;font-weight:500;line-height:30px;overflow:hidden}._Button_2z6ee_36{margin-top:10px;font-size:20px}._content_2z6ee_41{z-index:0;display:flow-root;position:relative}._tip_2z6ee_47{z-index:2;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._FoldList_jczh8_2{--header-height:30px;--header-font-size:12px;--header-color:var(--color-gray-300);--list-font-size:14px;--list-line-height:30px;--list-color:inherit}._header_jczh8_11{height:var(--header-height);cursor:pointer;justify-content:space-between;align-items:center;display:flex}._header_jczh8_11 ._title_jczh8_19{font-size:var(--header-font-size);color:var(--header-color);font-weight:500}._container_jczh8_25{height:var(--container-height);transition:height .5s;overflow:hidden}._list_jczh8_31{transition:transform .5s;transform:translateY(0)}._list_jczh8_31._close_jczh8_36{transform:translateY(-100%)}._list_jczh8_31 ._item_jczh8_40{font-size:var(--list-font-size);line-height:var(--list-line-height);color:var(--list-color);white-space:nowrap;text-overflow:ellipsis;border-radius:6px;padding:0 10px;transition:all .2s;position:relative;overflow:hidden}._list_jczh8_31 ._item_jczh8_40._active_jczh8_53{background-color:var(--color-gray-200);color:var(--color-blue-200)}@keyframes _slideAnimation_jczh8_68{0%{transform:translateY(var(--translateY))}to{transform:translateY(0)}}._slideAnimation_jczh8_68{animation:.5s _slideAnimation_jczh8_68}.lovely-right-arrow[data-v-6b0e5948]{color:var(--header-color);cursor:pointer;font-size:16px;font-weight:700;transition:transform .3s}._Menu_134fj_2{z-index:0;background-color:var(--color-gray-150);outline:.5px solid var(--color-gray-250);-webkit-user-select:none;user-select:none;border:1px solid #fff;border-radius:10px;padding:4px;position:absolute;box-shadow:0 0 10px #0000004d}._Menu_134fj_2 ._item_134fj_15{z-index:0;color:#000;cursor:pointer;border-radius:8px;justify-content:center;align-items:center;gap:5px;min-width:50px;height:28px;padding:5px;display:flex;position:relative}._Menu_134fj_2._sub_134fj_30 ._item_134fj_15{justify-content:space-between}@media (hover:hover){._Menu_134fj_2 ._item_134fj_15:hover{background-color:var(--color-blue-200);color:#fff}}._Menu_134fj_2 ._item_134fj_15 ._left_134fj_41{gap:5px;display:flex}._Menu_134fj_2 ._item_134fj_15 ._left_134fj_41 ._text_134fj_46{white-space:nowrap;font-size:12px;font-weight:450;line-height:18px}.lovely-right-arrow[data-v-2e8c8854]{font-weight:600;transform:translateY(1px)}._Scroll_9f8uf_2{z-index:0;justify-content:center;align-items:center;height:200px;padding:16px 0;display:flex;position:relative}._selected_9f8uf_12{z-index:0;background-color:var(--color-gray-150);border-radius:12px;width:100%;height:24px;position:absolute;top:calc(50% - 12px);left:0}._list_9f8uf_23{z-index:1;overscroll-behavior:contain;scrollbar-width:none;scroll-snap-type:y mandatory;width:50%;height:168px;position:relative;overflow-y:auto}._list_9f8uf_23._left_9f8uf_34{padding-left:5px}._list_9f8uf_23._right_9f8uf_38{padding:0 5px 0 10px}._list_9f8uf_23 ._item_9f8uf_42{scroll-snap-align:start;height:24px;font-size:16px;line-height:24px;display:flex}._list_9f8uf_23._left_9f8uf_34 ._item_9f8uf_42{justify-content:flex-end}._list_9f8uf_23._right_9f8uf_38 ._item_9f8uf_42{justify-content:flex-start}._Date_8ydqn_2{z-index:0;-webkit-user-select:none;user-select:none;border-radius:16px;width:250px;padding:14px;position:absolute}._header_8ydqn_12{justify-content:space-between;height:24px;margin-bottom:14px;display:flex}._header_8ydqn_12 ._date_8ydqn_19{cursor:pointer;align-items:center;gap:2px;font-size:16px;font-weight:500;display:flex}._header_8ydqn_12 ._date_8ydqn_19 ._arrow_8ydqn_28{font-size:14px;transition:transform .5s}._header_8ydqn_12 ._button_8ydqn_33{align-items:center;gap:10px;display:flex}._header_8ydqn_12 ._button_8ydqn_33 ._arrow_8ydqn_28{font-size:20px}._days_8ydqn_43 ._weekdays_8ydqn_43{color:var(--color-gray-300);justify-content:space-between;font-size:12px;display:flex}._days_8ydqn_43 ._monthDays_8ydqn_50{flex-wrap:wrap;margin-top:10px;display:flex}._days_8ydqn_43 ._dayCell_8ydqn_56{justify-content:center;align-items:center;width:14.2857%;height:32px;display:flex}._days_8ydqn_43 ._day_8ydqn_43{cursor:pointer;border-radius:50%;justify-content:center;align-items:center;width:28px;height:28px;font-size:14px;font-weight:450;transition:background-color .2s;display:flex}._days_8ydqn_43 ._day_8ydqn_43._today_8ydqn_77{color:var(--color-blue-200)}._days_8ydqn_43 ._day_8ydqn_43._active_8ydqn_81{background-color:var(--color-blue-200);color:#fff}.lovelymai[data-v-825c0fe9]{color:var(--color-blue-300);cursor:pointer;font-weight:600;transform:translateY(1px)}._Input_1h70u_2{border-radius:calc(var(--Input-height) * .5px);--font-size:14px;--font-weight:400;--line-height:18px;--clear-color:var(--color-gray-300);--placeholder-color:var(--color-gray-400);height:35px;display:flex;position:relative}._icon_1h70u_14{width:calc(var(--input-height) * 1px);height:100%;font-size:calc(var(--input-height) * .5px);color:var(--color-gray-500);pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute}._icon_1h70u_14._custom_1h70u_26{left:0}._icon_1h70u_14._clear_1h70u_30{right:0}._input_1h70u_34{min-width:0;padding-left:calc(var(--input-paddingLeft) * 1px);padding-right:calc(var(--input-height) * 1px);border-radius:calc(var(--input-height) * .5px);font-size:var(--font-size);font-weight:var(--font-weight);line-height:var(--line-height);caret-color:var(--color-blue-200);background-color:#0000;border:none;outline:0 solid #0000;flex:1;transition:outline .2s}._input_1h70u_34::placeholder{color:var(--placeholder-color)}._input_1h70u_34:focus{outline:3px solid var(--color-blue-100)}._input_1h70u_34[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}.lovely-clear[data-v-45260164]{font-size:calc(var(--input-height) * .5px);color:var(--clear-color);cursor:pointer;pointer-events:auto}._TextArea_c2sbx_2{border-radius:var(--border-radius);--max-height:auto;--border-radius:20px;--font-size:14px;--font-weight:400;--line-height:18px;--placeholder-color:var(--color-gray-400)}textarea[data-v-50941587]{width:100%;max-height:var(--max-height);border-radius:calc(var(--border-radius) - 1px);font-size:var(--font-size);font-weight:var(--font-weight);line-height:var(--line-height);caret-color:var(--color-blue-200);resize:none;scrollbar-width:thin;background-color:#0000;border:none;outline:0 solid #0000;padding:12px;transition:outline .2s;display:block;overflow-y:auto}textarea[data-v-50941587]::placeholder{color:var(--placeholder-color)}textarea[data-v-50941587]:focus{outline:3px solid var(--color-blue-100)}._Form_1yqvr_2{flex-wrap:wrap;align-items:flex-start;gap:10px;display:flex}._FormItem_1yqvr_9{align-items:flex-start;gap:10px;display:flex}._FormItem_1yqvr_9 ._Input_1yqvr_15,._FormItem_1yqvr_9 ._TextArea_1yqvr_16{flex:1;min-width:0}._FormItem_1yqvr_9 ._Input_1yqvr_15{height:100%}._Modal_xb86c_2{z-index:0;position:relative}._mask_xb86c_7{background-color:#0000001a;width:100dvw;height:100dvh;position:fixed;top:0;left:0}._ContentBar_xb86c_16{left:var(--ContentBar-left);top:var(--ContentBar-top);width:var(--ContentBar-width);height:var(--ContentBar-height);position:fixed}._Select_fr749_2{cursor:pointer;justify-content:center;align-items:center;width:20px;height:20px;display:flex}._SideBar_1en9s_2{transform:translateX(var(--SideBar-translateX)) scale(var(--SideBar-scale));transition:var(--SideBar-transition);border-radius:20px}._header_1en9s_8{height:50px;position:relative}._button_1en9s_13{width:35px;height:30px;transform:translateX(var(--button-translateX));cursor:pointer;border:none;border-radius:15px;justify-content:center;align-items:center;transition:transform .5s,box-shadow .5s;display:flex;position:absolute;top:10px;right:10px}._button_1en9s_13._close_1en9s_29{box-shadow:var(--box-shadow-200);background-color:#ffffffe6;border:1px solid #fff}@media (hover:hover){._button_1en9s_13:hover{background-color:var(--color-gray-200)}}.lovely-left-sidebar[data-v-0ee259c8]{color:var(--color-gray-500);font-size:20px}._TabBar_o3o84_2{-webkit-user-select:none;user-select:none;--font-size:10px;--top-color:var(--color-blue-300);gap:5px;height:50px;display:flex}._Bar_o3o84_12{width:calc(var(--Bar-height) * .8px);border-radius:calc(var(--Bar-border-radius) * 1px);cursor:pointer;height:80%;transition:var(--Bar-transition);padding:2px;overflow:hidden;background-color:var(--Bar-background-color)!important}._Bar_o3o84_12._active_o3o84_23{width:calc(var(--Bar-width) * 1px);height:100%;transform:scale(var(--Bar-scale));overflow:visible}._Bar_o3o84_12:not(._active_o3o84_23):active{transform:scale(1.2)}._search_o3o84_34{width:calc(var(--Bar-height) * 1px);height:100%;transition:var(--Bar-transition)}._search_o3o84_34._active_o3o84_23{width:calc(var(--search-width) * 1px);height:80%}._content_o3o84_45{touch-action:none;width:100%;height:100%;display:flex;position:relative}._content_o3o84_45._top_o3o84_53{z-index:1;clip-path:inset(0 calc(100% - var(--content-top-clipRight) * 1px) 0 calc(var(--content-top-clipLeft) * 1px) round calc((var(--Bar-border-radius) - 3) * 1px));transform:translateZ(0) scale(var(--content-top-scale));transform-origin:calc(var(--slide-center) * 1px) center;backface-visibility:hidden;transition:transform .2s;position:absolute;top:0;left:0}._tab_o3o84_65{width:calc(var(--slide-width) * 1px);flex-direction:column;flex-shrink:0;justify-content:center;align-items:center;height:100%;display:flex}._tab_o3o84_65 :nth-child(2){font-size:var(--font-size)}._tab_o3o84_65._small_o3o84_79{aspect-ratio:1;flex-shrink:1;height:100%}._tab_o3o84_65._top_o3o84_53{color:var(--top-color)}._search_o3o84_34 ._Button_o3o84_89{width:100%;height:100%}._search_o3o84_34 ._Input_o3o84_94{--font-size:18px;height:100%}._slide_o3o84_99{z-index:0;width:calc(var(--slide-width) * 1px);background:var(--slide-background);border:var(--slide-border);border-radius:calc((var(--Bar-border-radius) - 3) * 1px);height:100%;box-shadow:var(--slide-box-shadow);transform:translateX(calc(var(--slide-translateX) * 1px)) scale(var(--slide-scale));transition:var(--slide-transition);position:absolute;top:0;left:0}._header_1ndfk_2{border-bottom:.5px solid var(--color-gray-300);-webkit-user-select:none;user-select:none;height:28px;margin-bottom:4px;display:flex}._header_1ndfk_2 ._column_1ndfk_11{cursor:pointer;padding:6px 0}._header_1ndfk_2 ._column_1ndfk_11 ._container_1ndfk_16{justify-content:space-between;align-items:center;padding:0 8px;display:flex}._header_1ndfk_2 ._column_1ndfk_11:not(:last-child) ._container_1ndfk_16{border-right:.5px solid var(--color-gray-300)}._header_1ndfk_2 ._column_1ndfk_11 ._container_1ndfk_16 ._text_1ndfk_27{white-space:nowrap;text-overflow:ellipsis;font-size:12px;font-weight:500;line-height:16px;overflow:hidden}._list_1ndfk_36 ._row_1ndfk_36{height:35px;display:flex}._list_1ndfk_36 ._row_1ndfk_36:nth-child(2n){background-color:var(--color-gray-150)}._list_1ndfk_36 ._row_1ndfk_36 ._text_1ndfk_27{white-space:nowrap;text-overflow:ellipsis;padding:0 8px;font-size:16px;line-height:35px;overflow:hidden}.lovely-down-arrow[data-v-e4a726dd]{color:var(--color-gray-300);font-size:12px;font-weight:700}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent;margin:0;padding:0}input,textarea{font-family:inherit}ul{list-style:none}@media (pointer:coarse){input,textarea{font-size:16px!important}}:root{--color-blue-100:#94bbf0;--color-blue-200:#3b86f7;--color-blue-300:#0067ec;--color-blue-450:#2962d9;--color-gray-100:#fafafae6;--color-gray-150:#f5f5f5e6;--color-gray-200:#e4e4e4;--color-gray-250:#b3b3b3;--color-gray-300:#767676;--color-gray-400:#544957;--color-gray-500:#19191a;--color-red-200:#ef6b6bcc;--box-shadow-100:0 0 20px 0 #0000001a;--box-shadow-200:0 0 10px 2px #0000001a}.lovelymai-common-container{box-shadow:var(--box-shadow-100);background-color:#f8f8f8;border:1px solid #fff}.lovelymai-glass-container{-webkit-backdrop-filter:blur(10px)saturate(1.5);backdrop-filter:blur(10px)saturate(1.5);box-shadow:var(--box-shadow-100);background-color:#ffffffe6;border:1px solid #fff}.lovelymai-fade-enter-from,.lovelymai-fade-leave-to{opacity:0}.lovelymai-fade-enter-active,.lovelymai-fade-leave-active{transition:opacity .2s}.lovelymai-fade-leave-leave-to{opacity:0}.lovelymai-fade-leave-leave-active{transition:opacity .2s}@font-face{font-family:lovelymai;src:url(data:font/ttf;base64,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)format("truetype")}.lovelymai{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-style:normal;font-family:lovelymai!important}.lovely-ellipsis:before{content:""}.lovely-search:before{content:""}.lovely-info:before{content:""}.lovely-left-sidebar:before{content:""}.lovely-right-arrow:before{content:""}.lovely-clear:before{content:""}.lovely-down-arrow:before{content:""}.lovely-left-arrow:before{content:""}.lovely-check:before{content:""}.lovely-close:before{content:""}
2
2
  /*$vite$:1*/
@@ -57,7 +57,7 @@ function z(e) {
57
57
  return i >= 1 && i <= a[r - 1];
58
58
  }
59
59
  //#endregion
60
- //#region src/utils/useCssVar.ts
60
+ //#region src/utils/use-css-var.ts
61
61
  var B = (e, t) => {
62
62
  A(() => t, () => {
63
63
  e && Object.entries(t).forEach(([t, n]) => {
@@ -281,7 +281,7 @@ var B = (e, t) => {
281
281
  item: "_item_jczh8_40",
282
282
  active: "_active_jczh8_53",
283
283
  slideAnimation: "_slideAnimation_jczh8_68"
284
- } }], ["__scopeId", "data-v-e63f43e3"]]), ne = (e, t) => {
284
+ } }], ["__scopeId", "data-v-6b0e5948"]]), ne = (e, t) => {
285
285
  let n = x(!1), r = e.parentElement, i = x([0, 0]), a = () => {
286
286
  i.value = [e.offsetWidth, -5];
287
287
  }, o = () => {
@@ -884,7 +884,7 @@ var B = (e, t) => {
884
884
  custom: "_custom_1h70u_26",
885
885
  clear: "_clear_1h70u_30",
886
886
  input: "_input_1h70u_34"
887
- } }], ["__scopeId", "data-v-4e6a6678"]]), pe = [
887
+ } }], ["__scopeId", "data-v-45260164"]]), pe = [
888
888
  "rows",
889
889
  "value",
890
890
  "placeholder",
@@ -1217,7 +1217,7 @@ var B = (e, t) => {
1217
1217
  header: "_header_1en9s_8",
1218
1218
  button: "_button_1en9s_13",
1219
1219
  close: "_close_1en9s_29"
1220
- } }], ["__scopeId", "data-v-6c93f3f3"]]), be = { key: 0 }, xe = { key: 0 }, Se = /* @__PURE__ */ W(/* @__PURE__ */ u({
1220
+ } }], ["__scopeId", "data-v-0ee259c8"]]), be = { key: 0 }, xe = { key: 0 }, Se = /* @__PURE__ */ W(/* @__PURE__ */ u({
1221
1221
  __name: "TabBar",
1222
1222
  props: /* @__PURE__ */ f({
1223
1223
  tabs: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lovelymaid",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "一个基于 Vue 3, 模仿 iOS 26 风格的组件库",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -17,7 +17,7 @@
17
17
  ],
18
18
  "scripts": {
19
19
  "start": "vite",
20
- "build": "vite build && vue-tsc -p tsconfig.build.json --declaration --emitDeclarationOnly --outDir dist"
20
+ "build": "vite build && vue-tsc -p tsconfig.build.json --declaration --emitDeclarationOnly --outDir dist && node scripts/gen-clean-types.js"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "vue": "^3.4.0"
File without changes