g-ui-web 1.1.19 → 1.1.21
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/g-ui-web.js +1721 -1712
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +10 -10
- package/lib/ranking-list/index.d.ts +24 -0
- package/lib/ranking-list/src/index.vue.d.ts +16 -0
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/package.json +1 -1
|
@@ -24,6 +24,10 @@ declare const GRankingList: ({
|
|
|
24
24
|
type: ObjectConstructor;
|
|
25
25
|
default: {};
|
|
26
26
|
};
|
|
27
|
+
lineClass: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
27
31
|
}>> & Readonly<{}>, {
|
|
28
32
|
props: {
|
|
29
33
|
readonly icon: boolean;
|
|
@@ -32,6 +36,7 @@ declare const GRankingList: ({
|
|
|
32
36
|
readonly dbOptions: Record<string, any>;
|
|
33
37
|
readonly limit: number;
|
|
34
38
|
readonly icons: Record<string, any>;
|
|
39
|
+
readonly lineClass: string;
|
|
35
40
|
};
|
|
36
41
|
rankingListRef: globalThis.Ref<null, null>;
|
|
37
42
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
@@ -41,6 +46,7 @@ declare const GRankingList: ({
|
|
|
41
46
|
dbOptions: Record<string, any>;
|
|
42
47
|
limit: number;
|
|
43
48
|
icons: Record<string, any>;
|
|
49
|
+
lineClass: string;
|
|
44
50
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
45
51
|
P: {};
|
|
46
52
|
B: {};
|
|
@@ -73,6 +79,10 @@ declare const GRankingList: ({
|
|
|
73
79
|
type: ObjectConstructor;
|
|
74
80
|
default: {};
|
|
75
81
|
};
|
|
82
|
+
lineClass: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
default: string;
|
|
85
|
+
};
|
|
76
86
|
}>> & Readonly<{}>, {
|
|
77
87
|
props: {
|
|
78
88
|
readonly icon: boolean;
|
|
@@ -81,6 +91,7 @@ declare const GRankingList: ({
|
|
|
81
91
|
readonly dbOptions: Record<string, any>;
|
|
82
92
|
readonly limit: number;
|
|
83
93
|
readonly icons: Record<string, any>;
|
|
94
|
+
readonly lineClass: string;
|
|
84
95
|
};
|
|
85
96
|
rankingListRef: globalThis.Ref<null, null>;
|
|
86
97
|
}, {}, {}, {}, {
|
|
@@ -90,6 +101,7 @@ declare const GRankingList: ({
|
|
|
90
101
|
dbOptions: Record<string, any>;
|
|
91
102
|
limit: number;
|
|
92
103
|
icons: Record<string, any>;
|
|
104
|
+
lineClass: string;
|
|
93
105
|
}>;
|
|
94
106
|
__isFragment?: never;
|
|
95
107
|
__isTeleport?: never;
|
|
@@ -119,6 +131,10 @@ declare const GRankingList: ({
|
|
|
119
131
|
type: ObjectConstructor;
|
|
120
132
|
default: {};
|
|
121
133
|
};
|
|
134
|
+
lineClass: {
|
|
135
|
+
type: StringConstructor;
|
|
136
|
+
default: string;
|
|
137
|
+
};
|
|
122
138
|
}>> & Readonly<{}>, {
|
|
123
139
|
props: {
|
|
124
140
|
readonly icon: boolean;
|
|
@@ -127,6 +143,7 @@ declare const GRankingList: ({
|
|
|
127
143
|
readonly dbOptions: Record<string, any>;
|
|
128
144
|
readonly limit: number;
|
|
129
145
|
readonly icons: Record<string, any>;
|
|
146
|
+
readonly lineClass: string;
|
|
130
147
|
};
|
|
131
148
|
rankingListRef: globalThis.Ref<null, null>;
|
|
132
149
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
@@ -136,8 +153,15 @@ declare const GRankingList: ({
|
|
|
136
153
|
dbOptions: Record<string, any>;
|
|
137
154
|
limit: number;
|
|
138
155
|
icons: Record<string, any>;
|
|
156
|
+
lineClass: string;
|
|
139
157
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
140
158
|
$slots: {
|
|
159
|
+
label?(_: {
|
|
160
|
+
item: any;
|
|
161
|
+
}): any;
|
|
162
|
+
value?(_: {
|
|
163
|
+
item: any;
|
|
164
|
+
}): any;
|
|
141
165
|
empty?(_: {
|
|
142
166
|
class: string;
|
|
143
167
|
}): any;
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
2
|
slots: {
|
|
3
|
+
label?(_: {
|
|
4
|
+
item: any;
|
|
5
|
+
}): any;
|
|
6
|
+
value?(_: {
|
|
7
|
+
item: any;
|
|
8
|
+
}): any;
|
|
3
9
|
empty?(_: {
|
|
4
10
|
class: string;
|
|
5
11
|
}): any;
|
|
@@ -35,6 +41,10 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
35
41
|
type: ObjectConstructor;
|
|
36
42
|
default: {};
|
|
37
43
|
};
|
|
44
|
+
lineClass: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
38
48
|
}>, {
|
|
39
49
|
props: {
|
|
40
50
|
readonly icon: boolean;
|
|
@@ -43,6 +53,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
43
53
|
readonly dbOptions: Record<string, any>;
|
|
44
54
|
readonly limit: number;
|
|
45
55
|
readonly icons: Record<string, any>;
|
|
56
|
+
readonly lineClass: string;
|
|
46
57
|
};
|
|
47
58
|
rankingListRef: globalThis.Ref<null, null>;
|
|
48
59
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
@@ -70,6 +81,10 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
70
81
|
type: ObjectConstructor;
|
|
71
82
|
default: {};
|
|
72
83
|
};
|
|
84
|
+
lineClass: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
73
88
|
}>> & Readonly<{}>, {
|
|
74
89
|
icon: boolean;
|
|
75
90
|
type: string;
|
|
@@ -77,6 +92,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
77
92
|
dbOptions: Record<string, any>;
|
|
78
93
|
limit: number;
|
|
79
94
|
icons: Record<string, any>;
|
|
95
|
+
lineClass: string;
|
|
80
96
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
81
97
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
82
98
|
export default _default;
|