@rocketui/vue 0.1.22 → 0.1.23
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/rocket-ui-vue.d.ts +12 -12
- package/dist/rocket-ui-vue.js +141 -145
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -1419,9 +1419,7 @@ declare interface PaginationProps {
|
|
|
1419
1419
|
page: number;
|
|
1420
1420
|
perPage: number;
|
|
1421
1421
|
totalItems: number;
|
|
1422
|
-
|
|
1423
|
-
ofText?: string;
|
|
1424
|
-
slash?: boolean;
|
|
1422
|
+
infoText: string;
|
|
1425
1423
|
}
|
|
1426
1424
|
|
|
1427
1425
|
declare enum Placement {
|
|
@@ -2358,27 +2356,21 @@ export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2358
2356
|
page: number;
|
|
2359
2357
|
perPage: number;
|
|
2360
2358
|
totalItems: number;
|
|
2361
|
-
|
|
2362
|
-
ofText: string;
|
|
2363
|
-
slash: boolean;
|
|
2359
|
+
infoText: string;
|
|
2364
2360
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2365
2361
|
"update:page": (...args: any[]) => void;
|
|
2366
2362
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_21<PaginationProps>, {
|
|
2367
2363
|
page: number;
|
|
2368
2364
|
perPage: number;
|
|
2369
2365
|
totalItems: number;
|
|
2370
|
-
|
|
2371
|
-
ofText: string;
|
|
2372
|
-
slash: boolean;
|
|
2366
|
+
infoText: string;
|
|
2373
2367
|
}>>> & {
|
|
2374
2368
|
"onUpdate:page"?: ((...args: any[]) => any) | undefined;
|
|
2375
2369
|
}, {
|
|
2376
2370
|
page: number;
|
|
2377
2371
|
perPage: number;
|
|
2378
2372
|
totalItems: number;
|
|
2379
|
-
|
|
2380
|
-
ofText: string;
|
|
2381
|
-
slash: boolean;
|
|
2373
|
+
infoText: string;
|
|
2382
2374
|
}, {}>, {
|
|
2383
2375
|
prev?(_: {}): any;
|
|
2384
2376
|
next?(_: {}): any;
|
|
@@ -2895,6 +2887,14 @@ declare interface SelectProps {
|
|
|
2895
2887
|
* <Dropdown autocomplete="on" />
|
|
2896
2888
|
*/
|
|
2897
2889
|
autocomplete?: 'on' | 'off';
|
|
2890
|
+
/**
|
|
2891
|
+
* Text to show when there is no options
|
|
2892
|
+
* @type {string}
|
|
2893
|
+
* @default 'No options'
|
|
2894
|
+
* @example
|
|
2895
|
+
* <Dropdown notOptionsText="No options" />
|
|
2896
|
+
*/
|
|
2897
|
+
notOptionsText?: string;
|
|
2898
2898
|
}
|
|
2899
2899
|
|
|
2900
2900
|
declare interface Tab {
|