@solfacil/girassol 0.20.0 → 0.21.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/README.md +8 -4
- package/dist/components.d.ts +1 -0
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +6304 -6156
- package/dist/girassol.umd.js +5 -5
- package/dist/logo.svg +28 -23
- package/dist/style.css +1 -1
- package/dist/types/components/alert/Alert.vue.d.ts +8 -3
- package/dist/types/components/link/Link.vue.d.ts +52 -0
- package/dist/types/components/link/index.d.ts +2 -0
- package/dist/types/components/link/types.d.ts +19 -0
- package/dist/types/components/list/List.vue.d.ts +16 -10
- package/dist/types/components/list/ListItem.vue.d.ts +4 -4
- package/dist/types/components/menus/menu-item/MenuItemSeparator.vue.d.ts +1 -1
- package/dist/types/components/modals/onboarding/Onboarding.vue.d.ts +13 -2
- package/dist/types/components/overlay/Overlay.vue.d.ts +8 -1
- package/dist/types/components/tabs/Tabs.vue.d.ts +9 -2
- package/dist/types/index.d.ts +565 -93
- package/package.json +11 -11
- package/public/logo.svg +28 -23
- package/theme/solfacil/index.ts +14 -12
- package/theme/solfacil/utilities.ts +32 -9
- package/windi.config.ts +1 -0
package/dist/types/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ import { SolCollapsible } from './components/collapsible';
|
|
|
29
29
|
import { SolFileUpload } from './components/file-upload';
|
|
30
30
|
import { SolBreadcrumb } from './components/breadcrumb';
|
|
31
31
|
import { SolDivider } from './components/divider';
|
|
32
|
+
import { SolLink } from './components/link/';
|
|
32
33
|
import 'virtual:windi-base.css';
|
|
33
34
|
import 'virtual:windi-components.css';
|
|
34
35
|
import 'virtual:windi-utilities.css';
|
|
@@ -2633,9 +2634,9 @@ export declare const components: {
|
|
|
2633
2634
|
$: import("vue").ComponentInternalInstance;
|
|
2634
2635
|
$data: {};
|
|
2635
2636
|
$props: Partial<{
|
|
2636
|
-
title: string;
|
|
2637
2637
|
text: string;
|
|
2638
2638
|
feedback: "success" | "warning" | "error" | "informative";
|
|
2639
|
+
closeButton: boolean;
|
|
2639
2640
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2640
2641
|
id: {
|
|
2641
2642
|
type: import("vue").PropType<string>;
|
|
@@ -2643,8 +2644,6 @@ export declare const components: {
|
|
|
2643
2644
|
};
|
|
2644
2645
|
title: {
|
|
2645
2646
|
type: import("vue").PropType<string>;
|
|
2646
|
-
} & {
|
|
2647
|
-
default: string;
|
|
2648
2647
|
};
|
|
2649
2648
|
text: {
|
|
2650
2649
|
type: import("vue").PropType<string>;
|
|
@@ -2659,9 +2658,15 @@ export declare const components: {
|
|
|
2659
2658
|
action: {
|
|
2660
2659
|
type: import("vue").PropType<string>;
|
|
2661
2660
|
};
|
|
2661
|
+
closeButton: {
|
|
2662
|
+
type: import("vue").PropType<boolean>;
|
|
2663
|
+
} & {
|
|
2664
|
+
default: boolean;
|
|
2665
|
+
};
|
|
2662
2666
|
}>> & {
|
|
2663
2667
|
onClick?: (() => any) | undefined;
|
|
2664
|
-
|
|
2668
|
+
onClose?: (() => any) | undefined;
|
|
2669
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "feedback" | "closeButton">;
|
|
2665
2670
|
$attrs: {
|
|
2666
2671
|
[x: string]: unknown;
|
|
2667
2672
|
};
|
|
@@ -2673,7 +2678,7 @@ export declare const components: {
|
|
|
2673
2678
|
}>;
|
|
2674
2679
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
2675
2680
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
2676
|
-
$emit: (event: "click") => void;
|
|
2681
|
+
$emit: ((event: "click") => void) & ((event: "close") => void);
|
|
2677
2682
|
$el: any;
|
|
2678
2683
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2679
2684
|
id: {
|
|
@@ -2682,8 +2687,6 @@ export declare const components: {
|
|
|
2682
2687
|
};
|
|
2683
2688
|
title: {
|
|
2684
2689
|
type: import("vue").PropType<string>;
|
|
2685
|
-
} & {
|
|
2686
|
-
default: string;
|
|
2687
2690
|
};
|
|
2688
2691
|
text: {
|
|
2689
2692
|
type: import("vue").PropType<string>;
|
|
@@ -2698,14 +2701,22 @@ export declare const components: {
|
|
|
2698
2701
|
action: {
|
|
2699
2702
|
type: import("vue").PropType<string>;
|
|
2700
2703
|
};
|
|
2704
|
+
closeButton: {
|
|
2705
|
+
type: import("vue").PropType<boolean>;
|
|
2706
|
+
} & {
|
|
2707
|
+
default: boolean;
|
|
2708
|
+
};
|
|
2701
2709
|
}>> & {
|
|
2702
2710
|
onClick?: (() => any) | undefined;
|
|
2711
|
+
onClose?: (() => any) | undefined;
|
|
2703
2712
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2704
2713
|
click: () => void;
|
|
2714
|
+
} & {
|
|
2715
|
+
close: () => void;
|
|
2705
2716
|
}, string, {
|
|
2706
|
-
title: string;
|
|
2707
2717
|
text: string;
|
|
2708
2718
|
feedback: "success" | "warning" | "error" | "informative";
|
|
2719
|
+
closeButton: boolean;
|
|
2709
2720
|
}, {}, string> & {
|
|
2710
2721
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
2711
2722
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -2733,8 +2744,6 @@ export declare const components: {
|
|
|
2733
2744
|
};
|
|
2734
2745
|
title: {
|
|
2735
2746
|
type: import("vue").PropType<string>;
|
|
2736
|
-
} & {
|
|
2737
|
-
default: string;
|
|
2738
2747
|
};
|
|
2739
2748
|
text: {
|
|
2740
2749
|
type: import("vue").PropType<string>;
|
|
@@ -2749,8 +2758,14 @@ export declare const components: {
|
|
|
2749
2758
|
action: {
|
|
2750
2759
|
type: import("vue").PropType<string>;
|
|
2751
2760
|
};
|
|
2761
|
+
closeButton: {
|
|
2762
|
+
type: import("vue").PropType<boolean>;
|
|
2763
|
+
} & {
|
|
2764
|
+
default: boolean;
|
|
2765
|
+
};
|
|
2752
2766
|
}>> & {
|
|
2753
2767
|
onClick?: (() => any) | undefined;
|
|
2768
|
+
onClose?: (() => any) | undefined;
|
|
2754
2769
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
2755
2770
|
__isFragment?: undefined;
|
|
2756
2771
|
__isTeleport?: undefined;
|
|
@@ -2762,8 +2777,6 @@ export declare const components: {
|
|
|
2762
2777
|
};
|
|
2763
2778
|
title: {
|
|
2764
2779
|
type: import("vue").PropType<string>;
|
|
2765
|
-
} & {
|
|
2766
|
-
default: string;
|
|
2767
2780
|
};
|
|
2768
2781
|
text: {
|
|
2769
2782
|
type: import("vue").PropType<string>;
|
|
@@ -2778,14 +2791,22 @@ export declare const components: {
|
|
|
2778
2791
|
action: {
|
|
2779
2792
|
type: import("vue").PropType<string>;
|
|
2780
2793
|
};
|
|
2794
|
+
closeButton: {
|
|
2795
|
+
type: import("vue").PropType<boolean>;
|
|
2796
|
+
} & {
|
|
2797
|
+
default: boolean;
|
|
2798
|
+
};
|
|
2781
2799
|
}>> & {
|
|
2782
2800
|
onClick?: (() => any) | undefined;
|
|
2801
|
+
onClose?: (() => any) | undefined;
|
|
2783
2802
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2784
2803
|
click: () => void;
|
|
2804
|
+
} & {
|
|
2805
|
+
close: () => void;
|
|
2785
2806
|
}, string, {
|
|
2786
|
-
title: string;
|
|
2787
2807
|
text: string;
|
|
2788
2808
|
feedback: "success" | "warning" | "error" | "informative";
|
|
2809
|
+
closeButton: boolean;
|
|
2789
2810
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2790
2811
|
$slots: {
|
|
2791
2812
|
default: (_: {}) => any;
|
|
@@ -3193,24 +3214,30 @@ export declare const components: {
|
|
|
3193
3214
|
fallbackValue: string;
|
|
3194
3215
|
dataIdentifier: import("./components/list/types").DataIdentifier;
|
|
3195
3216
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
3196
|
-
$slots: Record<string, {
|
|
3197
|
-
data:
|
|
3198
|
-
|
|
3217
|
+
$slots: Record<string, (_: {
|
|
3218
|
+
data: {
|
|
3219
|
+
key: string;
|
|
3220
|
+
value: unknown;
|
|
3221
|
+
};
|
|
3222
|
+
index: number;
|
|
3199
3223
|
columnIndex: number;
|
|
3200
3224
|
renderHeader: (headerKey: string) => string;
|
|
3201
3225
|
headers: import("./components/list/types").Header | undefined;
|
|
3202
|
-
}> & Record<string, {
|
|
3226
|
+
}) => any> & Record<string, (_: {
|
|
3203
3227
|
data: any;
|
|
3204
3228
|
index: any;
|
|
3205
3229
|
columnIndex: any;
|
|
3206
3230
|
renderHeader: any;
|
|
3207
3231
|
headers: any;
|
|
3208
|
-
}> & Record<string, {
|
|
3209
|
-
data:
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3232
|
+
}) => any> & Record<string, (_: {
|
|
3233
|
+
data: {
|
|
3234
|
+
key: string;
|
|
3235
|
+
value: unknown;
|
|
3236
|
+
};
|
|
3237
|
+
index: number;
|
|
3238
|
+
columnIndex: number;
|
|
3239
|
+
isHighlight: (param: import("./components/list/types").IsHighlightParams) => boolean;
|
|
3240
|
+
}) => any> & {
|
|
3214
3241
|
image: (_: {
|
|
3215
3242
|
data: import("./components/list/types").Data;
|
|
3216
3243
|
}) => any;
|
|
@@ -3227,7 +3254,135 @@ export declare const components: {
|
|
|
3227
3254
|
}) => any;
|
|
3228
3255
|
};
|
|
3229
3256
|
});
|
|
3230
|
-
SolTabs:
|
|
3257
|
+
SolTabs: {
|
|
3258
|
+
new (...args: any[]): {
|
|
3259
|
+
$: import("vue").ComponentInternalInstance;
|
|
3260
|
+
$data: {};
|
|
3261
|
+
$props: Partial<{
|
|
3262
|
+
tabList: import("./components/tabs/types").TabList[];
|
|
3263
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
3264
|
+
id: {
|
|
3265
|
+
type: import("vue").PropType<string>;
|
|
3266
|
+
required: true;
|
|
3267
|
+
};
|
|
3268
|
+
tabList: {
|
|
3269
|
+
type: import("vue").PropType<import("./components/tabs/types").TabList[]>;
|
|
3270
|
+
} & {
|
|
3271
|
+
default: () => ({
|
|
3272
|
+
label: string;
|
|
3273
|
+
disabled: boolean;
|
|
3274
|
+
key: string;
|
|
3275
|
+
active?: undefined;
|
|
3276
|
+
} | {
|
|
3277
|
+
label: string;
|
|
3278
|
+
active: boolean;
|
|
3279
|
+
key: string;
|
|
3280
|
+
disabled?: undefined;
|
|
3281
|
+
})[];
|
|
3282
|
+
};
|
|
3283
|
+
onlyLine: {
|
|
3284
|
+
type: import("vue").PropType<boolean>;
|
|
3285
|
+
};
|
|
3286
|
+
}>> & {
|
|
3287
|
+
"onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
|
|
3288
|
+
"onTabitem:active"?: ((tab: import("./components/tabs/types").TabList) => any) | undefined;
|
|
3289
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "tabList">;
|
|
3290
|
+
$attrs: {
|
|
3291
|
+
[x: string]: unknown;
|
|
3292
|
+
};
|
|
3293
|
+
$refs: {
|
|
3294
|
+
[x: string]: unknown;
|
|
3295
|
+
};
|
|
3296
|
+
$slots: Readonly<{
|
|
3297
|
+
[name: string]: import("vue").Slot | undefined;
|
|
3298
|
+
}>;
|
|
3299
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
3300
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
3301
|
+
$emit: ((event: "update:tabList", tab: import("./components/tabs/types").TabList[]) => void) & ((event: "tabitem:active", tab: import("./components/tabs/types").TabList) => void);
|
|
3302
|
+
$el: any;
|
|
3303
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
3304
|
+
id: {
|
|
3305
|
+
type: import("vue").PropType<string>;
|
|
3306
|
+
required: true;
|
|
3307
|
+
};
|
|
3308
|
+
tabList: {
|
|
3309
|
+
type: import("vue").PropType<import("./components/tabs/types").TabList[]>;
|
|
3310
|
+
} & {
|
|
3311
|
+
default: () => ({
|
|
3312
|
+
label: string;
|
|
3313
|
+
disabled: boolean;
|
|
3314
|
+
key: string;
|
|
3315
|
+
active?: undefined;
|
|
3316
|
+
} | {
|
|
3317
|
+
label: string;
|
|
3318
|
+
active: boolean;
|
|
3319
|
+
key: string;
|
|
3320
|
+
disabled?: undefined;
|
|
3321
|
+
})[];
|
|
3322
|
+
};
|
|
3323
|
+
onlyLine: {
|
|
3324
|
+
type: import("vue").PropType<boolean>;
|
|
3325
|
+
};
|
|
3326
|
+
}>> & {
|
|
3327
|
+
"onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
|
|
3328
|
+
"onTabitem:active"?: ((tab: import("./components/tabs/types").TabList) => any) | undefined;
|
|
3329
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3330
|
+
"update:tabList": (tab: import("./components/tabs/types").TabList[]) => void;
|
|
3331
|
+
} & {
|
|
3332
|
+
"tabitem:active": (tab: import("./components/tabs/types").TabList) => void;
|
|
3333
|
+
}, string, {
|
|
3334
|
+
tabList: import("./components/tabs/types").TabList[];
|
|
3335
|
+
}, {}, string> & {
|
|
3336
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
3337
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
3338
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
3339
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
3340
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
3341
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
3342
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
3343
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
3344
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
3345
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
3346
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
3347
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
3348
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
3349
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
3350
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
3351
|
+
};
|
|
3352
|
+
$forceUpdate: () => void;
|
|
3353
|
+
$nextTick: typeof import("vue").nextTick;
|
|
3354
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
3355
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
3356
|
+
id: {
|
|
3357
|
+
type: import("vue").PropType<string>;
|
|
3358
|
+
required: true;
|
|
3359
|
+
};
|
|
3360
|
+
tabList: {
|
|
3361
|
+
type: import("vue").PropType<import("./components/tabs/types").TabList[]>;
|
|
3362
|
+
} & {
|
|
3363
|
+
default: () => ({
|
|
3364
|
+
label: string;
|
|
3365
|
+
disabled: boolean;
|
|
3366
|
+
key: string;
|
|
3367
|
+
active?: undefined;
|
|
3368
|
+
} | {
|
|
3369
|
+
label: string;
|
|
3370
|
+
active: boolean;
|
|
3371
|
+
key: string;
|
|
3372
|
+
disabled?: undefined;
|
|
3373
|
+
})[];
|
|
3374
|
+
};
|
|
3375
|
+
onlyLine: {
|
|
3376
|
+
type: import("vue").PropType<boolean>;
|
|
3377
|
+
};
|
|
3378
|
+
}>> & {
|
|
3379
|
+
"onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
|
|
3380
|
+
"onTabitem:active"?: ((tab: import("./components/tabs/types").TabList) => any) | undefined;
|
|
3381
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
3382
|
+
__isFragment?: undefined;
|
|
3383
|
+
__isTeleport?: undefined;
|
|
3384
|
+
__isSuspense?: undefined;
|
|
3385
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
3231
3386
|
id: {
|
|
3232
3387
|
type: import("vue").PropType<string>;
|
|
3233
3388
|
required: true;
|
|
@@ -3250,39 +3405,20 @@ export declare const components: {
|
|
|
3250
3405
|
onlyLine: {
|
|
3251
3406
|
type: import("vue").PropType<boolean>;
|
|
3252
3407
|
};
|
|
3408
|
+
}>> & {
|
|
3409
|
+
"onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
|
|
3410
|
+
"onTabitem:active"?: ((tab: import("./components/tabs/types").TabList) => any) | undefined;
|
|
3253
3411
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3254
3412
|
"update:tabList": (tab: import("./components/tabs/types").TabList[]) => void;
|
|
3255
3413
|
} & {
|
|
3256
3414
|
"tabitem:active": (tab: import("./components/tabs/types").TabList) => void;
|
|
3257
|
-
}, string,
|
|
3258
|
-
id: {
|
|
3259
|
-
type: import("vue").PropType<string>;
|
|
3260
|
-
required: true;
|
|
3261
|
-
};
|
|
3262
|
-
tabList: {
|
|
3263
|
-
type: import("vue").PropType<import("./components/tabs/types").TabList[]>;
|
|
3264
|
-
} & {
|
|
3265
|
-
default: () => ({
|
|
3266
|
-
label: string;
|
|
3267
|
-
disabled: boolean;
|
|
3268
|
-
key: string;
|
|
3269
|
-
active?: undefined;
|
|
3270
|
-
} | {
|
|
3271
|
-
label: string;
|
|
3272
|
-
active: boolean;
|
|
3273
|
-
key: string;
|
|
3274
|
-
disabled?: undefined;
|
|
3275
|
-
})[];
|
|
3276
|
-
};
|
|
3277
|
-
onlyLine: {
|
|
3278
|
-
type: import("vue").PropType<boolean>;
|
|
3279
|
-
};
|
|
3280
|
-
}>> & {
|
|
3281
|
-
"onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
|
|
3282
|
-
"onTabitem:active"?: ((tab: import("./components/tabs/types").TabList) => any) | undefined;
|
|
3283
|
-
}, {
|
|
3415
|
+
}, string, {
|
|
3284
3416
|
tabList: import("./components/tabs/types").TabList[];
|
|
3285
|
-
}
|
|
3417
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
3418
|
+
$slots: Record<string, (_: {}) => any> & Record<string, (_: {
|
|
3419
|
+
label: string;
|
|
3420
|
+
}) => any> & Record<string, (_: {}) => any> & Record<string, (_: {}) => any>;
|
|
3421
|
+
});
|
|
3286
3422
|
SolMenu: {
|
|
3287
3423
|
new (...args: any[]): {
|
|
3288
3424
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -4024,7 +4160,187 @@ export declare const components: {
|
|
|
4024
4160
|
}) => any;
|
|
4025
4161
|
};
|
|
4026
4162
|
});
|
|
4027
|
-
SolOnboarding:
|
|
4163
|
+
SolOnboarding: {
|
|
4164
|
+
new (...args: any[]): {
|
|
4165
|
+
$: import("vue").ComponentInternalInstance;
|
|
4166
|
+
$data: {};
|
|
4167
|
+
$props: Partial<{
|
|
4168
|
+
target: string;
|
|
4169
|
+
sliders: import("./components/modals/onboarding/types").Slider[];
|
|
4170
|
+
finalButtonText: string;
|
|
4171
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
4172
|
+
id: {
|
|
4173
|
+
type: import("vue").PropType<string>;
|
|
4174
|
+
required: true;
|
|
4175
|
+
};
|
|
4176
|
+
class: {
|
|
4177
|
+
type: import("vue").PropType<string | Record<string, any>>;
|
|
4178
|
+
};
|
|
4179
|
+
target: {
|
|
4180
|
+
type: import("vue").PropType<string>;
|
|
4181
|
+
} & {
|
|
4182
|
+
default: string;
|
|
4183
|
+
};
|
|
4184
|
+
isOpen: {
|
|
4185
|
+
type: import("vue").PropType<boolean>;
|
|
4186
|
+
};
|
|
4187
|
+
sliders: {
|
|
4188
|
+
type: import("vue").PropType<import("./components/modals/onboarding/types").Slider[]>;
|
|
4189
|
+
required: true;
|
|
4190
|
+
} & {
|
|
4191
|
+
default: () => never[];
|
|
4192
|
+
};
|
|
4193
|
+
finalButtonText: {
|
|
4194
|
+
type: import("vue").PropType<string>;
|
|
4195
|
+
} & {
|
|
4196
|
+
default: string;
|
|
4197
|
+
};
|
|
4198
|
+
}>> & {
|
|
4199
|
+
onClose?: (() => any) | undefined;
|
|
4200
|
+
onOpen?: (() => any) | undefined;
|
|
4201
|
+
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
4202
|
+
"onAction:skip"?: (() => any) | undefined;
|
|
4203
|
+
"onAction:start"?: (() => any) | undefined;
|
|
4204
|
+
"onAction:next"?: (() => any) | undefined;
|
|
4205
|
+
"onAction:previous"?: (() => any) | undefined;
|
|
4206
|
+
"onAction:finish"?: (() => any) | undefined;
|
|
4207
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "target" | "sliders" | "finalButtonText">;
|
|
4208
|
+
$attrs: {
|
|
4209
|
+
[x: string]: unknown;
|
|
4210
|
+
};
|
|
4211
|
+
$refs: {
|
|
4212
|
+
[x: string]: unknown;
|
|
4213
|
+
};
|
|
4214
|
+
$slots: Readonly<{
|
|
4215
|
+
[name: string]: import("vue").Slot | undefined;
|
|
4216
|
+
}>;
|
|
4217
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
4218
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
4219
|
+
$emit: ((event: "close") => void) & ((event: "open") => void) & ((event: "update:isOpen", value: boolean) => void) & ((event: "action:skip") => void) & ((event: "action:start") => void) & ((event: "action:next") => void) & ((event: "action:previous") => void) & ((event: "action:finish") => void);
|
|
4220
|
+
$el: any;
|
|
4221
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
4222
|
+
id: {
|
|
4223
|
+
type: import("vue").PropType<string>;
|
|
4224
|
+
required: true;
|
|
4225
|
+
};
|
|
4226
|
+
class: {
|
|
4227
|
+
type: import("vue").PropType<string | Record<string, any>>;
|
|
4228
|
+
};
|
|
4229
|
+
target: {
|
|
4230
|
+
type: import("vue").PropType<string>;
|
|
4231
|
+
} & {
|
|
4232
|
+
default: string;
|
|
4233
|
+
};
|
|
4234
|
+
isOpen: {
|
|
4235
|
+
type: import("vue").PropType<boolean>;
|
|
4236
|
+
};
|
|
4237
|
+
sliders: {
|
|
4238
|
+
type: import("vue").PropType<import("./components/modals/onboarding/types").Slider[]>;
|
|
4239
|
+
required: true;
|
|
4240
|
+
} & {
|
|
4241
|
+
default: () => never[];
|
|
4242
|
+
};
|
|
4243
|
+
finalButtonText: {
|
|
4244
|
+
type: import("vue").PropType<string>;
|
|
4245
|
+
} & {
|
|
4246
|
+
default: string;
|
|
4247
|
+
};
|
|
4248
|
+
}>> & {
|
|
4249
|
+
onClose?: (() => any) | undefined;
|
|
4250
|
+
onOpen?: (() => any) | undefined;
|
|
4251
|
+
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
4252
|
+
"onAction:skip"?: (() => any) | undefined;
|
|
4253
|
+
"onAction:start"?: (() => any) | undefined;
|
|
4254
|
+
"onAction:next"?: (() => any) | undefined;
|
|
4255
|
+
"onAction:previous"?: (() => any) | undefined;
|
|
4256
|
+
"onAction:finish"?: (() => any) | undefined;
|
|
4257
|
+
}, {
|
|
4258
|
+
close: () => void;
|
|
4259
|
+
open: () => void;
|
|
4260
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4261
|
+
close: () => void;
|
|
4262
|
+
} & {
|
|
4263
|
+
open: () => void;
|
|
4264
|
+
} & {
|
|
4265
|
+
"update:isOpen": (value: boolean) => void;
|
|
4266
|
+
} & {
|
|
4267
|
+
"action:skip": () => void;
|
|
4268
|
+
} & {
|
|
4269
|
+
"action:start": () => void;
|
|
4270
|
+
} & {
|
|
4271
|
+
"action:next": () => void;
|
|
4272
|
+
} & {
|
|
4273
|
+
"action:previous": () => void;
|
|
4274
|
+
} & {
|
|
4275
|
+
"action:finish": () => void;
|
|
4276
|
+
}, string, {
|
|
4277
|
+
target: string;
|
|
4278
|
+
sliders: import("./components/modals/onboarding/types").Slider[];
|
|
4279
|
+
finalButtonText: string;
|
|
4280
|
+
}, {}, string> & {
|
|
4281
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
4282
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
4283
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
4284
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
4285
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
4286
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
4287
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
4288
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
4289
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
4290
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
4291
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
4292
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
4293
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
4294
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
4295
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
4296
|
+
};
|
|
4297
|
+
$forceUpdate: () => void;
|
|
4298
|
+
$nextTick: typeof import("vue").nextTick;
|
|
4299
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
4300
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
4301
|
+
id: {
|
|
4302
|
+
type: import("vue").PropType<string>;
|
|
4303
|
+
required: true;
|
|
4304
|
+
};
|
|
4305
|
+
class: {
|
|
4306
|
+
type: import("vue").PropType<string | Record<string, any>>;
|
|
4307
|
+
};
|
|
4308
|
+
target: {
|
|
4309
|
+
type: import("vue").PropType<string>;
|
|
4310
|
+
} & {
|
|
4311
|
+
default: string;
|
|
4312
|
+
};
|
|
4313
|
+
isOpen: {
|
|
4314
|
+
type: import("vue").PropType<boolean>;
|
|
4315
|
+
};
|
|
4316
|
+
sliders: {
|
|
4317
|
+
type: import("vue").PropType<import("./components/modals/onboarding/types").Slider[]>;
|
|
4318
|
+
required: true;
|
|
4319
|
+
} & {
|
|
4320
|
+
default: () => never[];
|
|
4321
|
+
};
|
|
4322
|
+
finalButtonText: {
|
|
4323
|
+
type: import("vue").PropType<string>;
|
|
4324
|
+
} & {
|
|
4325
|
+
default: string;
|
|
4326
|
+
};
|
|
4327
|
+
}>> & {
|
|
4328
|
+
onClose?: (() => any) | undefined;
|
|
4329
|
+
onOpen?: (() => any) | undefined;
|
|
4330
|
+
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
4331
|
+
"onAction:skip"?: (() => any) | undefined;
|
|
4332
|
+
"onAction:start"?: (() => any) | undefined;
|
|
4333
|
+
"onAction:next"?: (() => any) | undefined;
|
|
4334
|
+
"onAction:previous"?: (() => any) | undefined;
|
|
4335
|
+
"onAction:finish"?: (() => any) | undefined;
|
|
4336
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
4337
|
+
close: () => void;
|
|
4338
|
+
open: () => void;
|
|
4339
|
+
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
4340
|
+
__isFragment?: undefined;
|
|
4341
|
+
__isTeleport?: undefined;
|
|
4342
|
+
__isSuspense?: undefined;
|
|
4343
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
4028
4344
|
id: {
|
|
4029
4345
|
type: import("vue").PropType<string>;
|
|
4030
4346
|
required: true;
|
|
@@ -4051,6 +4367,15 @@ export declare const components: {
|
|
|
4051
4367
|
} & {
|
|
4052
4368
|
default: string;
|
|
4053
4369
|
};
|
|
4370
|
+
}>> & {
|
|
4371
|
+
onClose?: (() => any) | undefined;
|
|
4372
|
+
onOpen?: (() => any) | undefined;
|
|
4373
|
+
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
4374
|
+
"onAction:skip"?: (() => any) | undefined;
|
|
4375
|
+
"onAction:start"?: (() => any) | undefined;
|
|
4376
|
+
"onAction:next"?: (() => any) | undefined;
|
|
4377
|
+
"onAction:previous"?: (() => any) | undefined;
|
|
4378
|
+
"onAction:finish"?: (() => any) | undefined;
|
|
4054
4379
|
}, {
|
|
4055
4380
|
close: () => void;
|
|
4056
4381
|
open: () => void;
|
|
@@ -4070,47 +4395,19 @@ export declare const components: {
|
|
|
4070
4395
|
"action:previous": () => void;
|
|
4071
4396
|
} & {
|
|
4072
4397
|
"action:finish": () => void;
|
|
4073
|
-
}, string,
|
|
4074
|
-
id: {
|
|
4075
|
-
type: import("vue").PropType<string>;
|
|
4076
|
-
required: true;
|
|
4077
|
-
};
|
|
4078
|
-
class: {
|
|
4079
|
-
type: import("vue").PropType<string | Record<string, any>>;
|
|
4080
|
-
};
|
|
4081
|
-
target: {
|
|
4082
|
-
type: import("vue").PropType<string>;
|
|
4083
|
-
} & {
|
|
4084
|
-
default: string;
|
|
4085
|
-
};
|
|
4086
|
-
isOpen: {
|
|
4087
|
-
type: import("vue").PropType<boolean>;
|
|
4088
|
-
};
|
|
4089
|
-
sliders: {
|
|
4090
|
-
type: import("vue").PropType<import("./components/modals/onboarding/types").Slider[]>;
|
|
4091
|
-
required: true;
|
|
4092
|
-
} & {
|
|
4093
|
-
default: () => never[];
|
|
4094
|
-
};
|
|
4095
|
-
finalButtonText: {
|
|
4096
|
-
type: import("vue").PropType<string>;
|
|
4097
|
-
} & {
|
|
4098
|
-
default: string;
|
|
4099
|
-
};
|
|
4100
|
-
}>> & {
|
|
4101
|
-
onClose?: (() => any) | undefined;
|
|
4102
|
-
onOpen?: (() => any) | undefined;
|
|
4103
|
-
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
4104
|
-
"onAction:skip"?: (() => any) | undefined;
|
|
4105
|
-
"onAction:start"?: (() => any) | undefined;
|
|
4106
|
-
"onAction:next"?: (() => any) | undefined;
|
|
4107
|
-
"onAction:previous"?: (() => any) | undefined;
|
|
4108
|
-
"onAction:finish"?: (() => any) | undefined;
|
|
4109
|
-
}, {
|
|
4398
|
+
}, string, {
|
|
4110
4399
|
target: string;
|
|
4111
4400
|
sliders: import("./components/modals/onboarding/types").Slider[];
|
|
4112
4401
|
finalButtonText: string;
|
|
4113
|
-
}
|
|
4402
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
4403
|
+
$slots: Record<string, (_: {
|
|
4404
|
+
image: string;
|
|
4405
|
+
}) => any> & Record<string, (_: {
|
|
4406
|
+
title: string;
|
|
4407
|
+
}) => any> & Record<string, (_: {
|
|
4408
|
+
content: string;
|
|
4409
|
+
}) => any>;
|
|
4410
|
+
});
|
|
4114
4411
|
SolPagination: import("vue").DefineComponent<{
|
|
4115
4412
|
id: {
|
|
4116
4413
|
type: import("vue").PropType<string>;
|
|
@@ -4949,7 +5246,7 @@ export declare const components: {
|
|
|
4949
5246
|
placeholder: string;
|
|
4950
5247
|
downloadMenu: import("./components/file-upload/types").DownloadMenu[];
|
|
4951
5248
|
}>;
|
|
4952
|
-
SolMenuItemSeparator:
|
|
5249
|
+
SolMenuItemSeparator: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
4953
5250
|
SolBreadcrumb: import("vue").DefineComponent<{
|
|
4954
5251
|
id: {
|
|
4955
5252
|
type: import("vue").PropType<string>;
|
|
@@ -5020,6 +5317,181 @@ export declare const components: {
|
|
|
5020
5317
|
orientation: "vertical" | "horizontal";
|
|
5021
5318
|
thickness: "small" | "large" | "medium" | "x-small";
|
|
5022
5319
|
}>;
|
|
5320
|
+
SolLink: {
|
|
5321
|
+
new (...args: any[]): {
|
|
5322
|
+
$: import("vue").ComponentInternalInstance;
|
|
5323
|
+
$data: {};
|
|
5324
|
+
$props: Partial<{
|
|
5325
|
+
text: string;
|
|
5326
|
+
size: "large" | "medium";
|
|
5327
|
+
component: "a" | "router-link" | "nuxt-link";
|
|
5328
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
5329
|
+
id: {
|
|
5330
|
+
type: import("vue").PropType<string>;
|
|
5331
|
+
required: true;
|
|
5332
|
+
};
|
|
5333
|
+
onColor: {
|
|
5334
|
+
type: import("vue").PropType<boolean>;
|
|
5335
|
+
};
|
|
5336
|
+
text: {
|
|
5337
|
+
type: import("vue").PropType<string>;
|
|
5338
|
+
} & {
|
|
5339
|
+
default: string;
|
|
5340
|
+
};
|
|
5341
|
+
size: {
|
|
5342
|
+
type: import("vue").PropType<"large" | "medium">;
|
|
5343
|
+
} & {
|
|
5344
|
+
default: string;
|
|
5345
|
+
};
|
|
5346
|
+
to: {
|
|
5347
|
+
type: import("vue").PropType<string | import("./components/link/types").LinkTo>;
|
|
5348
|
+
};
|
|
5349
|
+
component: {
|
|
5350
|
+
type: import("vue").PropType<"a" | "router-link" | "nuxt-link">;
|
|
5351
|
+
} & {
|
|
5352
|
+
default: string;
|
|
5353
|
+
};
|
|
5354
|
+
external: {
|
|
5355
|
+
type: import("vue").PropType<boolean>;
|
|
5356
|
+
};
|
|
5357
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "component">;
|
|
5358
|
+
$attrs: {
|
|
5359
|
+
[x: string]: unknown;
|
|
5360
|
+
};
|
|
5361
|
+
$refs: {
|
|
5362
|
+
[x: string]: unknown;
|
|
5363
|
+
};
|
|
5364
|
+
$slots: Readonly<{
|
|
5365
|
+
[name: string]: import("vue").Slot | undefined;
|
|
5366
|
+
}>;
|
|
5367
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
5368
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
5369
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
5370
|
+
$el: any;
|
|
5371
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
5372
|
+
id: {
|
|
5373
|
+
type: import("vue").PropType<string>;
|
|
5374
|
+
required: true;
|
|
5375
|
+
};
|
|
5376
|
+
onColor: {
|
|
5377
|
+
type: import("vue").PropType<boolean>;
|
|
5378
|
+
};
|
|
5379
|
+
text: {
|
|
5380
|
+
type: import("vue").PropType<string>;
|
|
5381
|
+
} & {
|
|
5382
|
+
default: string;
|
|
5383
|
+
};
|
|
5384
|
+
size: {
|
|
5385
|
+
type: import("vue").PropType<"large" | "medium">;
|
|
5386
|
+
} & {
|
|
5387
|
+
default: string;
|
|
5388
|
+
};
|
|
5389
|
+
to: {
|
|
5390
|
+
type: import("vue").PropType<string | import("./components/link/types").LinkTo>;
|
|
5391
|
+
};
|
|
5392
|
+
component: {
|
|
5393
|
+
type: import("vue").PropType<"a" | "router-link" | "nuxt-link">;
|
|
5394
|
+
} & {
|
|
5395
|
+
default: string;
|
|
5396
|
+
};
|
|
5397
|
+
external: {
|
|
5398
|
+
type: import("vue").PropType<boolean>;
|
|
5399
|
+
};
|
|
5400
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
5401
|
+
text: string;
|
|
5402
|
+
size: "large" | "medium";
|
|
5403
|
+
component: "a" | "router-link" | "nuxt-link";
|
|
5404
|
+
}, {}, string> & {
|
|
5405
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
5406
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
5407
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
5408
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
5409
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
5410
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
5411
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
5412
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
5413
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
5414
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
5415
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
5416
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
5417
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
5418
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
5419
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
5420
|
+
};
|
|
5421
|
+
$forceUpdate: () => void;
|
|
5422
|
+
$nextTick: typeof import("vue").nextTick;
|
|
5423
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
5424
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
5425
|
+
id: {
|
|
5426
|
+
type: import("vue").PropType<string>;
|
|
5427
|
+
required: true;
|
|
5428
|
+
};
|
|
5429
|
+
onColor: {
|
|
5430
|
+
type: import("vue").PropType<boolean>;
|
|
5431
|
+
};
|
|
5432
|
+
text: {
|
|
5433
|
+
type: import("vue").PropType<string>;
|
|
5434
|
+
} & {
|
|
5435
|
+
default: string;
|
|
5436
|
+
};
|
|
5437
|
+
size: {
|
|
5438
|
+
type: import("vue").PropType<"large" | "medium">;
|
|
5439
|
+
} & {
|
|
5440
|
+
default: string;
|
|
5441
|
+
};
|
|
5442
|
+
to: {
|
|
5443
|
+
type: import("vue").PropType<string | import("./components/link/types").LinkTo>;
|
|
5444
|
+
};
|
|
5445
|
+
component: {
|
|
5446
|
+
type: import("vue").PropType<"a" | "router-link" | "nuxt-link">;
|
|
5447
|
+
} & {
|
|
5448
|
+
default: string;
|
|
5449
|
+
};
|
|
5450
|
+
external: {
|
|
5451
|
+
type: import("vue").PropType<boolean>;
|
|
5452
|
+
};
|
|
5453
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
5454
|
+
__isFragment?: undefined;
|
|
5455
|
+
__isTeleport?: undefined;
|
|
5456
|
+
__isSuspense?: undefined;
|
|
5457
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
5458
|
+
id: {
|
|
5459
|
+
type: import("vue").PropType<string>;
|
|
5460
|
+
required: true;
|
|
5461
|
+
};
|
|
5462
|
+
onColor: {
|
|
5463
|
+
type: import("vue").PropType<boolean>;
|
|
5464
|
+
};
|
|
5465
|
+
text: {
|
|
5466
|
+
type: import("vue").PropType<string>;
|
|
5467
|
+
} & {
|
|
5468
|
+
default: string;
|
|
5469
|
+
};
|
|
5470
|
+
size: {
|
|
5471
|
+
type: import("vue").PropType<"large" | "medium">;
|
|
5472
|
+
} & {
|
|
5473
|
+
default: string;
|
|
5474
|
+
};
|
|
5475
|
+
to: {
|
|
5476
|
+
type: import("vue").PropType<string | import("./components/link/types").LinkTo>;
|
|
5477
|
+
};
|
|
5478
|
+
component: {
|
|
5479
|
+
type: import("vue").PropType<"a" | "router-link" | "nuxt-link">;
|
|
5480
|
+
} & {
|
|
5481
|
+
default: string;
|
|
5482
|
+
};
|
|
5483
|
+
external: {
|
|
5484
|
+
type: import("vue").PropType<boolean>;
|
|
5485
|
+
};
|
|
5486
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
5487
|
+
text: string;
|
|
5488
|
+
size: "large" | "medium";
|
|
5489
|
+
component: "a" | "router-link" | "nuxt-link";
|
|
5490
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
5491
|
+
$slots: {
|
|
5492
|
+
icon: (_: {}) => any;
|
|
5493
|
+
};
|
|
5494
|
+
});
|
|
5023
5495
|
};
|
|
5024
5496
|
export declare function install(App: App): void;
|
|
5025
|
-
export { SolButton, SolButtonDestructive, SolInputTextarea, SolInputText, SolInputTextPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolSelect, SolRemovableChip, SolSelectableChip, SolTag, SolAlert, SolAccordion, SolList, SolTabs, SolMenu, SolMenuItem, SolMenuItemLink, SolMenuNavigationLinks, SolModal, SolOnboarding, SolPagination, SolEmptyState, SolSearch, SolDatePicker, SolCollapsible, SolSteps, SolTextValue, SolFileUpload, SolMenuItemSeparator, SolBreadcrumb, SolDivider, };
|
|
5497
|
+
export { SolButton, SolButtonDestructive, SolInputTextarea, SolInputText, SolInputTextPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolSelect, SolRemovableChip, SolSelectableChip, SolTag, SolAlert, SolAccordion, SolList, SolTabs, SolMenu, SolMenuItem, SolMenuItemLink, SolMenuNavigationLinks, SolModal, SolOnboarding, SolPagination, SolEmptyState, SolSearch, SolDatePicker, SolCollapsible, SolSteps, SolTextValue, SolFileUpload, SolMenuItemSeparator, SolBreadcrumb, SolDivider, SolLink, };
|