@solar-taro/ui-sun 1.6.5 → 2.0.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.
- package/CHANGELOG.md +12 -0
- package/accordion/index.vue.d.ts +22 -16
- package/chip/index.vue.d.ts +15 -36
- package/circular-progress/index.vue.d.ts +4 -30
- package/fab/fab-group.vue.d.ts +9 -3
- package/fab/fab.vue.d.ts +9 -3
- package/fab/index.scss +11 -3
- package/icon/index.scss +4 -3
- package/icon/index.vue.d.ts +3 -22
- package/index.d.ts +2 -0
- package/index.js +24 -20
- package/index10.js +24 -33
- package/index11.js +33 -75
- package/index12.js +75 -19
- package/index13.js +19 -49
- package/index14.js +46 -141
- package/index15.js +142 -27
- package/index16.js +29 -21
- package/index17.js +18 -21
- package/index18.js +42 -11
- package/index19.js +21 -26
- package/index20.js +11 -118
- package/index21.js +33 -10
- package/index22.js +123 -10
- package/index23.js +12 -8
- package/index24.js +10 -2
- package/index25.js +10 -2
- package/index26.js +1 -1
- package/index27.js +1 -1
- package/index28.js +1 -1
- package/index29.js +7 -2
- package/index30.js +2 -7
- package/index31.js +1 -1
- package/index33.js +1 -1
- package/index34.js +1 -1
- package/index35.js +1 -1
- package/index36.js +1 -1
- package/index37.js +1 -1
- package/index38.js +1 -1
- package/index39.js +1 -1
- package/index40.js +1 -1
- package/index41.js +1 -1
- package/index42.js +1 -1
- package/index43.js +2 -526
- package/index44.js +2 -3
- package/index45.js +2 -66
- package/index46.js +2 -12
- package/index47.js +3 -25
- package/index48.js +65 -13
- package/index49.js +12 -5
- package/index50.js +25 -26
- package/index51.js +14 -2
- package/index52.js +4 -505
- package/index53.js +524 -77
- package/index54.js +24 -68
- package/index55.js +2 -69
- package/index56.js +331 -368
- package/index57.js +79 -2
- package/index58.js +70 -2
- package/index59.js +69 -2
- package/index60.js +542 -3
- package/index62.js +2 -4
- package/index63.js +2 -2
- package/index64.js +4 -2
- package/index66.js +4 -48
- package/index67.js +2 -82
- package/index69.js +2 -2
- package/index7.js +7 -9
- package/index70.js +2 -2
- package/index71.js +48 -2
- package/index72.js +84 -0
- package/index73.js +4 -0
- package/index74.js +4 -0
- package/index75.js +4 -0
- package/index8.js +29 -17
- package/index9.js +19 -25
- package/item/index.d.ts +1 -0
- package/item/index.scss +40 -0
- package/item/index.vue.d.ts +26 -0
- package/lazy-render/index.vue.d.ts +13 -29
- package/list-header/index.scss +1 -1
- package/list-header/index.vue.d.ts +9 -3
- package/navbar/index.vue.d.ts +10 -4
- package/package.json +2 -2
- package/plugin.d.ts +0 -1
- package/popover/index.vue.d.ts +24 -41
- package/qrcode/index.vue.d.ts +6 -31
- package/segment/injection.d.ts +0 -1
- package/segment/segment-btn.vue.d.ts +12 -16
- package/segment/segment.vue.d.ts +16 -20
- package/slider-captcha/index.vue.d.ts +7 -36
- package/spinner/index.scss +1 -0
- package/spinner/index.vue.d.ts +14 -33
- package/sudoku/sudoku-item.vue.d.ts +9 -3
- package/sudoku/sudoku.vue.d.ts +9 -3
- package/tabbar/index.d.ts +1 -0
- package/tabbar/index.scss +74 -0
- package/tabbar/index.vue.d.ts +38 -0
- package/table/_table.scss +1 -1
- package/table/table-cell.vue.d.ts +13 -24
- package/table/table-row.vue.d.ts +12 -17
- package/table/table.vue.d.ts +17 -43
- package/virtual-scroll/index.vue.d.ts +35 -74
|
@@ -1,78 +1,39 @@
|
|
|
1
|
-
declare const _default:
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
direction?: "vertical" | "horizontal";
|
|
27
|
-
items: Record<string, any>[];
|
|
28
|
-
itemSize: number | string;
|
|
29
|
-
itemKey?: string;
|
|
30
|
-
id?: string;
|
|
31
|
-
bottomSpace?: number;
|
|
32
|
-
loading?: boolean;
|
|
33
|
-
loadingText?: string;
|
|
34
|
-
}>, {
|
|
35
|
-
refresherBg: string;
|
|
36
|
-
direction: string;
|
|
37
|
-
id: () => string;
|
|
38
|
-
bottomSpace: number;
|
|
39
|
-
loadingText: string;
|
|
40
|
-
}>>> & Readonly<{
|
|
41
|
-
onRefresh?: (() => any) | undefined;
|
|
42
|
-
onLower?: (() => any) | undefined;
|
|
43
|
-
}>, {
|
|
44
|
-
id: string;
|
|
45
|
-
direction: "vertical" | "horizontal";
|
|
46
|
-
refresherBg: string;
|
|
47
|
-
bottomSpace: number;
|
|
48
|
-
loadingText: string;
|
|
49
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
50
|
-
default?(_: {
|
|
51
|
-
item: Record<string, any>;
|
|
52
|
-
index: number;
|
|
53
|
-
}): any;
|
|
54
|
-
empty?(_: {}): any;
|
|
55
|
-
}>;
|
|
56
|
-
export default _default;
|
|
57
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
58
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
59
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
60
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
61
|
-
} : {
|
|
62
|
-
type: import('vue').PropType<T[K]>;
|
|
63
|
-
required: true;
|
|
1
|
+
declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
3
|
+
readonly onRefresh?: (() => any) | undefined;
|
|
4
|
+
readonly onLower?: (() => any) | undefined;
|
|
5
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onRefresh" | "onLower"> & {
|
|
6
|
+
refreshing?: boolean;
|
|
7
|
+
refresher?: boolean;
|
|
8
|
+
refresherBg?: string;
|
|
9
|
+
direction?: "vertical" | "horizontal";
|
|
10
|
+
items: T[];
|
|
11
|
+
itemSize: number | string;
|
|
12
|
+
itemKey?: keyof T;
|
|
13
|
+
id?: string;
|
|
14
|
+
bottomSpace?: number;
|
|
15
|
+
loading?: boolean;
|
|
16
|
+
loadingText?: string;
|
|
17
|
+
} & Partial<{}>> & import('vue').PublicProps;
|
|
18
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
19
|
+
attrs: any;
|
|
20
|
+
slots: {
|
|
21
|
+
default?(_: {
|
|
22
|
+
item: T;
|
|
23
|
+
index: number;
|
|
24
|
+
}): any;
|
|
25
|
+
empty?(_: {}): any;
|
|
64
26
|
};
|
|
27
|
+
emit: {
|
|
28
|
+
(e: "refresh"): void;
|
|
29
|
+
(e: "lower"): void;
|
|
30
|
+
};
|
|
31
|
+
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
32
|
+
[key: string]: any;
|
|
33
|
+
}> & {
|
|
34
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
65
35
|
};
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
default: D[K];
|
|
69
|
-
}> : P[K];
|
|
70
|
-
};
|
|
71
|
-
type __VLS_Prettify<T> = {
|
|
36
|
+
export default _default;
|
|
37
|
+
type __VLS_PrettifyLocal<T> = {
|
|
72
38
|
[K in keyof T]: T[K];
|
|
73
39
|
} & {};
|
|
74
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
75
|
-
new (): {
|
|
76
|
-
$slots: S;
|
|
77
|
-
};
|
|
78
|
-
};
|