ranui 0.1.10-alpha.6 → 0.1.10-alpha.7
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/dist/index.d.ts +101 -119
- package/dist/typings.d.ts +101 -100
- package/package.json +1 -1
- package/typings.d.ts +101 -100
- package/dist/assets/image/failImage.d.ts +0 -2
- package/dist/build/config.d.ts +0 -3
- package/dist/build/config.es.d.ts +0 -2
- package/dist/build/config.sha.d.ts +0 -2
- package/dist/build/config.umd.d.ts +0 -2
- package/dist/components/button/index.d.ts +0 -38
- package/dist/components/checkbox/index.d.ts +0 -27
- package/dist/components/colorpicker/index.d.ts +0 -120
- package/dist/components/dropdown/index.d.ts +0 -28
- package/dist/components/form/index.d.ts +0 -2
- package/dist/components/icon/index.d.ts +0 -2
- package/dist/components/image/index.d.ts +0 -2
- package/dist/components/input/index.d.ts +0 -209
- package/dist/components/loading/index.d.ts +0 -77
- package/dist/components/math/index.d.ts +0 -17
- package/dist/components/message/index.d.ts +0 -15
- package/dist/components/modal/index.d.ts +0 -2
- package/dist/components/player/index.d.ts +0 -237
- package/dist/components/popover/content/index.d.ts +0 -16
- package/dist/components/popover/index.d.ts +0 -58
- package/dist/components/preview/colz.d.ts +0 -72
- package/dist/components/preview/constant.d.ts +0 -5
- package/dist/components/preview/docx.d.ts +0 -8
- package/dist/components/preview/excel/excel.d.ts +0 -2
- package/dist/components/preview/excel/index.d.ts +0 -2
- package/dist/components/preview/excel/media.d.ts +0 -37
- package/dist/components/preview/index.d.ts +0 -3
- package/dist/components/preview/pdf.d.ts +0 -2
- package/dist/components/preview/pptx/index.d.ts +0 -19
- package/dist/components/preview/pptx/process_pptx.d.ts +0 -22
- package/dist/components/preview/pptx/t_xml.d.ts +0 -1
- package/dist/components/preview/pptx/worker.d.ts +0 -1
- package/dist/components/preview/types.d.ts +0 -10
- package/dist/components/progress/index.d.ts +0 -41
- package/dist/components/radar/index.d.ts +0 -2
- package/dist/components/scratch/index.d.ts +0 -23
- package/dist/components/select/dropdown-item/index.d.ts +0 -23
- package/dist/components/select/index.d.ts +0 -114
- package/dist/components/select/option/index.d.ts +0 -2
- package/dist/components/skeleton/index.d.ts +0 -2
- package/dist/components/tab/index.d.ts +0 -413
- package/dist/components/tabpane/index.d.ts +0 -357
- package/dist/playwright.config.d.ts +0 -9
- package/dist/plugins/auto-import-file.d.ts +0 -0
- package/dist/plugins/load-style.d.ts +0 -6
- package/dist/plugins/load-svg.d.ts +0 -9
- package/dist/shadowless/icon/index.d.ts +0 -3
- package/dist/shadowless/input/index.d.ts +0 -210
- package/dist/shadowless/select/index.d.ts +0 -108
- package/dist/shadowless/select/option/index.d.ts +0 -2
- package/dist/shadowless.d.ts +0 -3
- package/dist/tests/button.spec.d.ts +0 -1
- package/dist/utils/color.d.ts +0 -52
- package/dist/utils/image.d.ts +0 -32
- package/dist/utils/index.d.ts +0 -72
- package/dist/utils/math.d.ts +0 -26
- package/dist/utils/tween.d.ts +0 -21
- package/dist/vite.config.d.ts +0 -7
package/dist/index.d.ts
CHANGED
|
@@ -1,22 +1,3 @@
|
|
|
1
|
-
export * as button from '@/components/button';
|
|
2
|
-
export * as icon from '@/components/icon';
|
|
3
|
-
export * as image from '@/components/image';
|
|
4
|
-
export * as input from '@/components/input';
|
|
5
|
-
export * as message from '@/components/message';
|
|
6
|
-
export * as preview from '@/components/preview';
|
|
7
|
-
export * as skeleton from '@/components/skeleton';
|
|
8
|
-
export * as tabpane from '@/components/tabpane';
|
|
9
|
-
export * as tab from '@/components/tab';
|
|
10
|
-
export * as radar from '@/components/radar';
|
|
11
|
-
export * as player from '@/components/player';
|
|
12
|
-
export * as modal from '@/components/modal';
|
|
13
|
-
export * as select from '@/components/select';
|
|
14
|
-
export * as progress from '@/components/progress';
|
|
15
|
-
export * as checkbox from '@/components/checkbox';
|
|
16
|
-
export * as colorpicker from '@/components/colorpicker';
|
|
17
|
-
export * as popover from '@/components/popover';
|
|
18
|
-
export * as loading from '@/components/loading';
|
|
19
|
-
export * as math from '@/components/math';
|
|
20
1
|
declare module '*.less';
|
|
21
2
|
declare module '*.less?inline';
|
|
22
3
|
declare module '*.ts';
|
|
@@ -127,105 +108,106 @@ declare interface Window {
|
|
|
127
108
|
};
|
|
128
109
|
Hls: HLS;
|
|
129
110
|
}
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
namespace JSX {
|
|
115
|
+
interface IntrinsicElements {
|
|
116
|
+
'r-loading': any & {
|
|
117
|
+
name: NAME_AMP;
|
|
118
|
+
};
|
|
119
|
+
'r-math': any & {
|
|
120
|
+
latex: string;
|
|
121
|
+
};
|
|
122
|
+
'r-button': any & {
|
|
123
|
+
sheet: string;
|
|
124
|
+
disabled: boolean | string;
|
|
125
|
+
iconSize: string;
|
|
126
|
+
icon: string;
|
|
127
|
+
effect: boolean | string;
|
|
128
|
+
};
|
|
129
|
+
'r-checkbox': any & {
|
|
130
|
+
disabled: boolean | string;
|
|
131
|
+
checked: boolean | string;
|
|
132
|
+
};
|
|
133
|
+
'r-img': any & {
|
|
134
|
+
fallback: string;
|
|
135
|
+
src: string;
|
|
136
|
+
};
|
|
137
|
+
'r-input': any & {
|
|
138
|
+
value: string;
|
|
139
|
+
placeholder: string;
|
|
140
|
+
label: string;
|
|
141
|
+
status: string;
|
|
142
|
+
name: string;
|
|
143
|
+
icon: string;
|
|
144
|
+
prefix: string;
|
|
145
|
+
suffix: string;
|
|
146
|
+
type: string;
|
|
147
|
+
required: boolean | string;
|
|
148
|
+
disabled: boolean | string;
|
|
149
|
+
min: number | string;
|
|
150
|
+
max: number | string;
|
|
151
|
+
step: number | string;
|
|
152
|
+
};
|
|
153
|
+
'r-player': any & {
|
|
154
|
+
src: string;
|
|
155
|
+
debug: boolean | string;
|
|
156
|
+
volume: number | string;
|
|
157
|
+
currentTime: number | string;
|
|
158
|
+
playbackRate: number | string;
|
|
159
|
+
};
|
|
160
|
+
'r-popover': any & {
|
|
161
|
+
placement: string;
|
|
162
|
+
trigger: string;
|
|
163
|
+
getPopupContainerId: string;
|
|
164
|
+
arrow: boolean | string;
|
|
165
|
+
};
|
|
166
|
+
'r-preview': any & {
|
|
167
|
+
src: string;
|
|
168
|
+
closeable: boolean | string;
|
|
169
|
+
};
|
|
170
|
+
'r-progress': any & {
|
|
171
|
+
percent: number | string;
|
|
172
|
+
total: number | string;
|
|
173
|
+
type: string;
|
|
174
|
+
animation: string;
|
|
175
|
+
dot: boolean | string;
|
|
176
|
+
};
|
|
177
|
+
'r-radar': any & {
|
|
178
|
+
abilitys: string;
|
|
179
|
+
colorPolygon?: string;
|
|
180
|
+
colorLine?: string;
|
|
181
|
+
fillColor?: string;
|
|
182
|
+
strokeColor?: string;
|
|
183
|
+
};
|
|
184
|
+
'r-select': any & {
|
|
185
|
+
value: string;
|
|
186
|
+
defaultValue?: string;
|
|
187
|
+
showSearch?: boolean | string;
|
|
188
|
+
type?: string;
|
|
189
|
+
placement?: string;
|
|
190
|
+
sheet?: string;
|
|
191
|
+
getPopupContainerId?: string;
|
|
192
|
+
dropdownclass?: string;
|
|
193
|
+
trigger?: string;
|
|
194
|
+
trigger?: string;
|
|
195
|
+
disabled?: boolean | string;
|
|
196
|
+
};
|
|
197
|
+
'r-skeleton': any;
|
|
198
|
+
'r-tab': any & {
|
|
199
|
+
label: string;
|
|
200
|
+
icon: string;
|
|
201
|
+
iconSize: string;
|
|
202
|
+
key: string;
|
|
203
|
+
disabled: boolean | string;
|
|
204
|
+
effect: boolean | string;
|
|
205
|
+
};
|
|
206
|
+
'r-tabs': any & {
|
|
207
|
+
align: string;
|
|
208
|
+
type: string;
|
|
209
|
+
active: string;
|
|
210
|
+
effect: string;
|
|
211
|
+
};
|
|
230
212
|
}
|
|
231
213
|
}
|
package/dist/typings.d.ts
CHANGED
|
@@ -108,105 +108,106 @@ declare interface Window {
|
|
|
108
108
|
};
|
|
109
109
|
Hls: HLS;
|
|
110
110
|
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
namespace JSX {
|
|
115
|
+
interface IntrinsicElements {
|
|
116
|
+
'r-loading': any & {
|
|
117
|
+
name: NAME_AMP;
|
|
118
|
+
};
|
|
119
|
+
'r-math': any & {
|
|
120
|
+
latex: string;
|
|
121
|
+
};
|
|
122
|
+
'r-button': any & {
|
|
123
|
+
sheet: string;
|
|
124
|
+
disabled: boolean | string;
|
|
125
|
+
iconSize: string;
|
|
126
|
+
icon: string;
|
|
127
|
+
effect: boolean | string;
|
|
128
|
+
};
|
|
129
|
+
'r-checkbox': any & {
|
|
130
|
+
disabled: boolean | string;
|
|
131
|
+
checked: boolean | string;
|
|
132
|
+
};
|
|
133
|
+
'r-img': any & {
|
|
134
|
+
fallback: string;
|
|
135
|
+
src: string;
|
|
136
|
+
};
|
|
137
|
+
'r-input': any & {
|
|
138
|
+
value: string;
|
|
139
|
+
placeholder: string;
|
|
140
|
+
label: string;
|
|
141
|
+
status: string;
|
|
142
|
+
name: string;
|
|
143
|
+
icon: string;
|
|
144
|
+
prefix: string;
|
|
145
|
+
suffix: string;
|
|
146
|
+
type: string;
|
|
147
|
+
required: boolean | string;
|
|
148
|
+
disabled: boolean | string;
|
|
149
|
+
min: number | string;
|
|
150
|
+
max: number | string;
|
|
151
|
+
step: number | string;
|
|
152
|
+
};
|
|
153
|
+
'r-player': any & {
|
|
154
|
+
src: string;
|
|
155
|
+
debug: boolean | string;
|
|
156
|
+
volume: number | string;
|
|
157
|
+
currentTime: number | string;
|
|
158
|
+
playbackRate: number | string;
|
|
159
|
+
};
|
|
160
|
+
'r-popover': any & {
|
|
161
|
+
placement: string;
|
|
162
|
+
trigger: string;
|
|
163
|
+
getPopupContainerId: string;
|
|
164
|
+
arrow: boolean | string;
|
|
165
|
+
};
|
|
166
|
+
'r-preview': any & {
|
|
167
|
+
src: string;
|
|
168
|
+
closeable: boolean | string;
|
|
169
|
+
};
|
|
170
|
+
'r-progress': any & {
|
|
171
|
+
percent: number | string;
|
|
172
|
+
total: number | string;
|
|
173
|
+
type: string;
|
|
174
|
+
animation: string;
|
|
175
|
+
dot: boolean | string;
|
|
176
|
+
};
|
|
177
|
+
'r-radar': any & {
|
|
178
|
+
abilitys: string;
|
|
179
|
+
colorPolygon?: string;
|
|
180
|
+
colorLine?: string;
|
|
181
|
+
fillColor?: string;
|
|
182
|
+
strokeColor?: string;
|
|
183
|
+
};
|
|
184
|
+
'r-select': any & {
|
|
185
|
+
value: string;
|
|
186
|
+
defaultValue?: string;
|
|
187
|
+
showSearch?: boolean | string;
|
|
188
|
+
type?: string;
|
|
189
|
+
placement?: string;
|
|
190
|
+
sheet?: string;
|
|
191
|
+
getPopupContainerId?: string;
|
|
192
|
+
dropdownclass?: string;
|
|
193
|
+
trigger?: string;
|
|
194
|
+
trigger?: string;
|
|
195
|
+
disabled?: boolean | string;
|
|
196
|
+
};
|
|
197
|
+
'r-skeleton': any;
|
|
198
|
+
'r-tab': any & {
|
|
199
|
+
label: string;
|
|
200
|
+
icon: string;
|
|
201
|
+
iconSize: string;
|
|
202
|
+
key: string;
|
|
203
|
+
disabled: boolean | string;
|
|
204
|
+
effect: boolean | string;
|
|
205
|
+
};
|
|
206
|
+
'r-tabs': any & {
|
|
207
|
+
align: string;
|
|
208
|
+
type: string;
|
|
209
|
+
active: string;
|
|
210
|
+
effect: string;
|
|
211
|
+
};
|
|
211
212
|
}
|
|
212
213
|
}
|
package/package.json
CHANGED
package/typings.d.ts
CHANGED
|
@@ -108,105 +108,106 @@ declare interface Window {
|
|
|
108
108
|
};
|
|
109
109
|
Hls: HLS;
|
|
110
110
|
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
namespace JSX {
|
|
115
|
+
interface IntrinsicElements {
|
|
116
|
+
'r-loading': any & {
|
|
117
|
+
name: NAME_AMP;
|
|
118
|
+
};
|
|
119
|
+
'r-math': any & {
|
|
120
|
+
latex: string;
|
|
121
|
+
};
|
|
122
|
+
'r-button': any & {
|
|
123
|
+
sheet: string;
|
|
124
|
+
disabled: boolean | string;
|
|
125
|
+
iconSize: string;
|
|
126
|
+
icon: string;
|
|
127
|
+
effect: boolean | string;
|
|
128
|
+
};
|
|
129
|
+
'r-checkbox': any & {
|
|
130
|
+
disabled: boolean | string;
|
|
131
|
+
checked: boolean | string;
|
|
132
|
+
};
|
|
133
|
+
'r-img': any & {
|
|
134
|
+
fallback: string;
|
|
135
|
+
src: string;
|
|
136
|
+
};
|
|
137
|
+
'r-input': any & {
|
|
138
|
+
value: string;
|
|
139
|
+
placeholder: string;
|
|
140
|
+
label: string;
|
|
141
|
+
status: string;
|
|
142
|
+
name: string;
|
|
143
|
+
icon: string;
|
|
144
|
+
prefix: string;
|
|
145
|
+
suffix: string;
|
|
146
|
+
type: string;
|
|
147
|
+
required: boolean | string;
|
|
148
|
+
disabled: boolean | string;
|
|
149
|
+
min: number | string;
|
|
150
|
+
max: number | string;
|
|
151
|
+
step: number | string;
|
|
152
|
+
};
|
|
153
|
+
'r-player': any & {
|
|
154
|
+
src: string;
|
|
155
|
+
debug: boolean | string;
|
|
156
|
+
volume: number | string;
|
|
157
|
+
currentTime: number | string;
|
|
158
|
+
playbackRate: number | string;
|
|
159
|
+
};
|
|
160
|
+
'r-popover': any & {
|
|
161
|
+
placement: string;
|
|
162
|
+
trigger: string;
|
|
163
|
+
getPopupContainerId: string;
|
|
164
|
+
arrow: boolean | string;
|
|
165
|
+
};
|
|
166
|
+
'r-preview': any & {
|
|
167
|
+
src: string;
|
|
168
|
+
closeable: boolean | string;
|
|
169
|
+
};
|
|
170
|
+
'r-progress': any & {
|
|
171
|
+
percent: number | string;
|
|
172
|
+
total: number | string;
|
|
173
|
+
type: string;
|
|
174
|
+
animation: string;
|
|
175
|
+
dot: boolean | string;
|
|
176
|
+
};
|
|
177
|
+
'r-radar': any & {
|
|
178
|
+
abilitys: string;
|
|
179
|
+
colorPolygon?: string;
|
|
180
|
+
colorLine?: string;
|
|
181
|
+
fillColor?: string;
|
|
182
|
+
strokeColor?: string;
|
|
183
|
+
};
|
|
184
|
+
'r-select': any & {
|
|
185
|
+
value: string;
|
|
186
|
+
defaultValue?: string;
|
|
187
|
+
showSearch?: boolean | string;
|
|
188
|
+
type?: string;
|
|
189
|
+
placement?: string;
|
|
190
|
+
sheet?: string;
|
|
191
|
+
getPopupContainerId?: string;
|
|
192
|
+
dropdownclass?: string;
|
|
193
|
+
trigger?: string;
|
|
194
|
+
trigger?: string;
|
|
195
|
+
disabled?: boolean | string;
|
|
196
|
+
};
|
|
197
|
+
'r-skeleton': any;
|
|
198
|
+
'r-tab': any & {
|
|
199
|
+
label: string;
|
|
200
|
+
icon: string;
|
|
201
|
+
iconSize: string;
|
|
202
|
+
key: string;
|
|
203
|
+
disabled: boolean | string;
|
|
204
|
+
effect: boolean | string;
|
|
205
|
+
};
|
|
206
|
+
'r-tabs': any & {
|
|
207
|
+
align: string;
|
|
208
|
+
type: string;
|
|
209
|
+
active: string;
|
|
210
|
+
effect: string;
|
|
211
|
+
};
|
|
211
212
|
}
|
|
212
213
|
}
|