g-ui-web 1.2.16 → 1.2.18
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/lib/calendar/src/index.vue.d.ts +449 -334
- package/lib/ele/table/src/index.vue.d.ts +474 -0
- package/lib/ele/tree/index.d.ts +4576 -0
- package/lib/ele/tree/src/index.vue.d.ts +2295 -0
- package/lib/g-ui-web.js +65148 -49294
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +106 -78
- package/lib/ranking-list/index.d.ts +18 -0
- package/lib/ranking-list/src/index.vue.d.ts +10 -0
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/package.json +1 -1
|
@@ -28,12 +28,17 @@ declare const GRankingList: ({
|
|
|
28
28
|
type: StringConstructor;
|
|
29
29
|
default: string;
|
|
30
30
|
};
|
|
31
|
+
index: {
|
|
32
|
+
type: NumberConstructor;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
31
35
|
}>> & Readonly<{}>, {
|
|
32
36
|
props: {
|
|
33
37
|
readonly icon: boolean;
|
|
34
38
|
readonly type: string;
|
|
35
39
|
readonly description: string;
|
|
36
40
|
readonly sort: string;
|
|
41
|
+
readonly index: number;
|
|
37
42
|
readonly dbOptions: Record<string, any>;
|
|
38
43
|
readonly limit: number;
|
|
39
44
|
readonly icons: Record<string, any>;
|
|
@@ -44,6 +49,7 @@ declare const GRankingList: ({
|
|
|
44
49
|
type: string;
|
|
45
50
|
description: string;
|
|
46
51
|
sort: string;
|
|
52
|
+
index: number;
|
|
47
53
|
dbOptions: Record<string, any>;
|
|
48
54
|
limit: number;
|
|
49
55
|
icons: Record<string, any>;
|
|
@@ -83,12 +89,17 @@ declare const GRankingList: ({
|
|
|
83
89
|
type: StringConstructor;
|
|
84
90
|
default: string;
|
|
85
91
|
};
|
|
92
|
+
index: {
|
|
93
|
+
type: NumberConstructor;
|
|
94
|
+
default: string;
|
|
95
|
+
};
|
|
86
96
|
}>> & Readonly<{}>, {
|
|
87
97
|
props: {
|
|
88
98
|
readonly icon: boolean;
|
|
89
99
|
readonly type: string;
|
|
90
100
|
readonly description: string;
|
|
91
101
|
readonly sort: string;
|
|
102
|
+
readonly index: number;
|
|
92
103
|
readonly dbOptions: Record<string, any>;
|
|
93
104
|
readonly limit: number;
|
|
94
105
|
readonly icons: Record<string, any>;
|
|
@@ -99,6 +110,7 @@ declare const GRankingList: ({
|
|
|
99
110
|
type: string;
|
|
100
111
|
description: string;
|
|
101
112
|
sort: string;
|
|
113
|
+
index: number;
|
|
102
114
|
dbOptions: Record<string, any>;
|
|
103
115
|
limit: number;
|
|
104
116
|
icons: Record<string, any>;
|
|
@@ -135,12 +147,17 @@ declare const GRankingList: ({
|
|
|
135
147
|
type: StringConstructor;
|
|
136
148
|
default: string;
|
|
137
149
|
};
|
|
150
|
+
index: {
|
|
151
|
+
type: NumberConstructor;
|
|
152
|
+
default: string;
|
|
153
|
+
};
|
|
138
154
|
}>> & Readonly<{}>, {
|
|
139
155
|
props: {
|
|
140
156
|
readonly icon: boolean;
|
|
141
157
|
readonly type: string;
|
|
142
158
|
readonly description: string;
|
|
143
159
|
readonly sort: string;
|
|
160
|
+
readonly index: number;
|
|
144
161
|
readonly dbOptions: Record<string, any>;
|
|
145
162
|
readonly limit: number;
|
|
146
163
|
readonly icons: Record<string, any>;
|
|
@@ -151,6 +168,7 @@ declare const GRankingList: ({
|
|
|
151
168
|
type: string;
|
|
152
169
|
description: string;
|
|
153
170
|
sort: string;
|
|
171
|
+
index: number;
|
|
154
172
|
dbOptions: Record<string, any>;
|
|
155
173
|
limit: number;
|
|
156
174
|
icons: Record<string, any>;
|
|
@@ -45,12 +45,17 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
45
45
|
type: StringConstructor;
|
|
46
46
|
default: string;
|
|
47
47
|
};
|
|
48
|
+
index: {
|
|
49
|
+
type: NumberConstructor;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
48
52
|
}>, {
|
|
49
53
|
props: {
|
|
50
54
|
readonly icon: boolean;
|
|
51
55
|
readonly type: string;
|
|
52
56
|
readonly description: string;
|
|
53
57
|
readonly sort: string;
|
|
58
|
+
readonly index: number;
|
|
54
59
|
readonly dbOptions: Record<string, any>;
|
|
55
60
|
readonly limit: number;
|
|
56
61
|
readonly icons: Record<string, any>;
|
|
@@ -85,11 +90,16 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
85
90
|
type: StringConstructor;
|
|
86
91
|
default: string;
|
|
87
92
|
};
|
|
93
|
+
index: {
|
|
94
|
+
type: NumberConstructor;
|
|
95
|
+
default: string;
|
|
96
|
+
};
|
|
88
97
|
}>> & Readonly<{}>, {
|
|
89
98
|
icon: boolean;
|
|
90
99
|
type: string;
|
|
91
100
|
description: string;
|
|
92
101
|
sort: string;
|
|
102
|
+
index: number;
|
|
93
103
|
dbOptions: Record<string, any>;
|
|
94
104
|
limit: number;
|
|
95
105
|
icons: Record<string, any>;
|