@solfacil/girassol 0.19.3 → 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 +2 -0
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +6313 -6147
- 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/divider/Divider.vue.d.ts +32 -0
- package/dist/types/components/divider/index.d.ts +2 -0
- package/dist/types/components/divider/types.d.ts +4 -0
- package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +2 -2
- 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/components/tag/Tag.vue.d.ts +14 -13
- package/dist/types/components/tag/types.d.ts +9 -0
- package/dist/types/index.d.ts +659 -160
- 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
|
@@ -28,6 +28,8 @@ import { SolDatePicker } from './components/date-picker';
|
|
|
28
28
|
import { SolCollapsible } from './components/collapsible';
|
|
29
29
|
import { SolFileUpload } from './components/file-upload';
|
|
30
30
|
import { SolBreadcrumb } from './components/breadcrumb';
|
|
31
|
+
import { SolDivider } from './components/divider';
|
|
32
|
+
import { SolLink } from './components/link/';
|
|
31
33
|
import 'virtual:windi-base.css';
|
|
32
34
|
import 'virtual:windi-components.css';
|
|
33
35
|
import 'virtual:windi-utilities.css';
|
|
@@ -376,7 +378,7 @@ export declare const components: {
|
|
|
376
378
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
377
379
|
};
|
|
378
380
|
resize: {
|
|
379
|
-
type: import("vue").PropType<"none" | "vertical" | "
|
|
381
|
+
type: import("vue").PropType<"none" | "vertical" | "horizontal" | "both">;
|
|
380
382
|
} & {
|
|
381
383
|
default: string;
|
|
382
384
|
};
|
|
@@ -431,7 +433,7 @@ export declare const components: {
|
|
|
431
433
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
432
434
|
};
|
|
433
435
|
resize: {
|
|
434
|
-
type: import("vue").PropType<"none" | "vertical" | "
|
|
436
|
+
type: import("vue").PropType<"none" | "vertical" | "horizontal" | "both">;
|
|
435
437
|
} & {
|
|
436
438
|
default: string;
|
|
437
439
|
};
|
|
@@ -440,7 +442,7 @@ export declare const components: {
|
|
|
440
442
|
}, {
|
|
441
443
|
size: "small" | "medium";
|
|
442
444
|
error: string | null;
|
|
443
|
-
resize: "none" | "vertical" | "
|
|
445
|
+
resize: "none" | "vertical" | "horizontal" | "both";
|
|
444
446
|
}>;
|
|
445
447
|
SolInputText: {
|
|
446
448
|
new (...args: any[]): {
|
|
@@ -2470,9 +2472,9 @@ export declare const components: {
|
|
|
2470
2472
|
$: import("vue").ComponentInternalInstance;
|
|
2471
2473
|
$data: {};
|
|
2472
2474
|
$props: Partial<{
|
|
2473
|
-
type: "
|
|
2475
|
+
type: import("./components/tag/types").Type;
|
|
2474
2476
|
text: string;
|
|
2475
|
-
size: "
|
|
2477
|
+
size: import("./components/tag/types").Size;
|
|
2476
2478
|
variant: "fill" | "outline";
|
|
2477
2479
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2478
2480
|
id: {
|
|
@@ -2480,7 +2482,7 @@ export declare const components: {
|
|
|
2480
2482
|
required: true;
|
|
2481
2483
|
};
|
|
2482
2484
|
type: {
|
|
2483
|
-
type: import("vue").PropType<"
|
|
2485
|
+
type: import("vue").PropType<import("./components/tag/types").Type>;
|
|
2484
2486
|
} & {
|
|
2485
2487
|
default: string;
|
|
2486
2488
|
};
|
|
@@ -2490,7 +2492,7 @@ export declare const components: {
|
|
|
2490
2492
|
default: string;
|
|
2491
2493
|
};
|
|
2492
2494
|
size: {
|
|
2493
|
-
type: import("vue").PropType<"
|
|
2495
|
+
type: import("vue").PropType<import("./components/tag/types").Size>;
|
|
2494
2496
|
} & {
|
|
2495
2497
|
default: string;
|
|
2496
2498
|
};
|
|
@@ -2519,7 +2521,7 @@ export declare const components: {
|
|
|
2519
2521
|
required: true;
|
|
2520
2522
|
};
|
|
2521
2523
|
type: {
|
|
2522
|
-
type: import("vue").PropType<"
|
|
2524
|
+
type: import("vue").PropType<import("./components/tag/types").Type>;
|
|
2523
2525
|
} & {
|
|
2524
2526
|
default: string;
|
|
2525
2527
|
};
|
|
@@ -2529,7 +2531,7 @@ export declare const components: {
|
|
|
2529
2531
|
default: string;
|
|
2530
2532
|
};
|
|
2531
2533
|
size: {
|
|
2532
|
-
type: import("vue").PropType<"
|
|
2534
|
+
type: import("vue").PropType<import("./components/tag/types").Size>;
|
|
2533
2535
|
} & {
|
|
2534
2536
|
default: string;
|
|
2535
2537
|
};
|
|
@@ -2539,9 +2541,9 @@ export declare const components: {
|
|
|
2539
2541
|
default: string;
|
|
2540
2542
|
};
|
|
2541
2543
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
2542
|
-
type: "
|
|
2544
|
+
type: import("./components/tag/types").Type;
|
|
2543
2545
|
text: string;
|
|
2544
|
-
size: "
|
|
2546
|
+
size: import("./components/tag/types").Size;
|
|
2545
2547
|
variant: "fill" | "outline";
|
|
2546
2548
|
}, {}, string> & {
|
|
2547
2549
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -2569,7 +2571,7 @@ export declare const components: {
|
|
|
2569
2571
|
required: true;
|
|
2570
2572
|
};
|
|
2571
2573
|
type: {
|
|
2572
|
-
type: import("vue").PropType<"
|
|
2574
|
+
type: import("vue").PropType<import("./components/tag/types").Type>;
|
|
2573
2575
|
} & {
|
|
2574
2576
|
default: string;
|
|
2575
2577
|
};
|
|
@@ -2579,7 +2581,7 @@ export declare const components: {
|
|
|
2579
2581
|
default: string;
|
|
2580
2582
|
};
|
|
2581
2583
|
size: {
|
|
2582
|
-
type: import("vue").PropType<"
|
|
2584
|
+
type: import("vue").PropType<import("./components/tag/types").Size>;
|
|
2583
2585
|
} & {
|
|
2584
2586
|
default: string;
|
|
2585
2587
|
};
|
|
@@ -2598,7 +2600,7 @@ export declare const components: {
|
|
|
2598
2600
|
required: true;
|
|
2599
2601
|
};
|
|
2600
2602
|
type: {
|
|
2601
|
-
type: import("vue").PropType<"
|
|
2603
|
+
type: import("vue").PropType<import("./components/tag/types").Type>;
|
|
2602
2604
|
} & {
|
|
2603
2605
|
default: string;
|
|
2604
2606
|
};
|
|
@@ -2608,7 +2610,7 @@ export declare const components: {
|
|
|
2608
2610
|
default: string;
|
|
2609
2611
|
};
|
|
2610
2612
|
size: {
|
|
2611
|
-
type: import("vue").PropType<"
|
|
2613
|
+
type: import("vue").PropType<import("./components/tag/types").Size>;
|
|
2612
2614
|
} & {
|
|
2613
2615
|
default: string;
|
|
2614
2616
|
};
|
|
@@ -2618,9 +2620,9 @@ export declare const components: {
|
|
|
2618
2620
|
default: string;
|
|
2619
2621
|
};
|
|
2620
2622
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
2621
|
-
type: "
|
|
2623
|
+
type: import("./components/tag/types").Type;
|
|
2622
2624
|
text: string;
|
|
2623
|
-
size: "
|
|
2625
|
+
size: import("./components/tag/types").Size;
|
|
2624
2626
|
variant: "fill" | "outline";
|
|
2625
2627
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2626
2628
|
$slots: {
|
|
@@ -2632,9 +2634,9 @@ export declare const components: {
|
|
|
2632
2634
|
$: import("vue").ComponentInternalInstance;
|
|
2633
2635
|
$data: {};
|
|
2634
2636
|
$props: Partial<{
|
|
2635
|
-
title: string;
|
|
2636
2637
|
text: string;
|
|
2637
2638
|
feedback: "success" | "warning" | "error" | "informative";
|
|
2639
|
+
closeButton: boolean;
|
|
2638
2640
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2639
2641
|
id: {
|
|
2640
2642
|
type: import("vue").PropType<string>;
|
|
@@ -2642,8 +2644,6 @@ export declare const components: {
|
|
|
2642
2644
|
};
|
|
2643
2645
|
title: {
|
|
2644
2646
|
type: import("vue").PropType<string>;
|
|
2645
|
-
} & {
|
|
2646
|
-
default: string;
|
|
2647
2647
|
};
|
|
2648
2648
|
text: {
|
|
2649
2649
|
type: import("vue").PropType<string>;
|
|
@@ -2658,9 +2658,15 @@ export declare const components: {
|
|
|
2658
2658
|
action: {
|
|
2659
2659
|
type: import("vue").PropType<string>;
|
|
2660
2660
|
};
|
|
2661
|
+
closeButton: {
|
|
2662
|
+
type: import("vue").PropType<boolean>;
|
|
2663
|
+
} & {
|
|
2664
|
+
default: boolean;
|
|
2665
|
+
};
|
|
2661
2666
|
}>> & {
|
|
2662
2667
|
onClick?: (() => any) | undefined;
|
|
2663
|
-
|
|
2668
|
+
onClose?: (() => any) | undefined;
|
|
2669
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "feedback" | "closeButton">;
|
|
2664
2670
|
$attrs: {
|
|
2665
2671
|
[x: string]: unknown;
|
|
2666
2672
|
};
|
|
@@ -2672,7 +2678,7 @@ export declare const components: {
|
|
|
2672
2678
|
}>;
|
|
2673
2679
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
2674
2680
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
2675
|
-
$emit: (event: "click") => void;
|
|
2681
|
+
$emit: ((event: "click") => void) & ((event: "close") => void);
|
|
2676
2682
|
$el: any;
|
|
2677
2683
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2678
2684
|
id: {
|
|
@@ -2681,8 +2687,6 @@ export declare const components: {
|
|
|
2681
2687
|
};
|
|
2682
2688
|
title: {
|
|
2683
2689
|
type: import("vue").PropType<string>;
|
|
2684
|
-
} & {
|
|
2685
|
-
default: string;
|
|
2686
2690
|
};
|
|
2687
2691
|
text: {
|
|
2688
2692
|
type: import("vue").PropType<string>;
|
|
@@ -2697,14 +2701,22 @@ export declare const components: {
|
|
|
2697
2701
|
action: {
|
|
2698
2702
|
type: import("vue").PropType<string>;
|
|
2699
2703
|
};
|
|
2704
|
+
closeButton: {
|
|
2705
|
+
type: import("vue").PropType<boolean>;
|
|
2706
|
+
} & {
|
|
2707
|
+
default: boolean;
|
|
2708
|
+
};
|
|
2700
2709
|
}>> & {
|
|
2701
2710
|
onClick?: (() => any) | undefined;
|
|
2711
|
+
onClose?: (() => any) | undefined;
|
|
2702
2712
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2703
2713
|
click: () => void;
|
|
2714
|
+
} & {
|
|
2715
|
+
close: () => void;
|
|
2704
2716
|
}, string, {
|
|
2705
|
-
title: string;
|
|
2706
2717
|
text: string;
|
|
2707
2718
|
feedback: "success" | "warning" | "error" | "informative";
|
|
2719
|
+
closeButton: boolean;
|
|
2708
2720
|
}, {}, string> & {
|
|
2709
2721
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
2710
2722
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -2732,8 +2744,6 @@ export declare const components: {
|
|
|
2732
2744
|
};
|
|
2733
2745
|
title: {
|
|
2734
2746
|
type: import("vue").PropType<string>;
|
|
2735
|
-
} & {
|
|
2736
|
-
default: string;
|
|
2737
2747
|
};
|
|
2738
2748
|
text: {
|
|
2739
2749
|
type: import("vue").PropType<string>;
|
|
@@ -2748,8 +2758,14 @@ export declare const components: {
|
|
|
2748
2758
|
action: {
|
|
2749
2759
|
type: import("vue").PropType<string>;
|
|
2750
2760
|
};
|
|
2761
|
+
closeButton: {
|
|
2762
|
+
type: import("vue").PropType<boolean>;
|
|
2763
|
+
} & {
|
|
2764
|
+
default: boolean;
|
|
2765
|
+
};
|
|
2751
2766
|
}>> & {
|
|
2752
2767
|
onClick?: (() => any) | undefined;
|
|
2768
|
+
onClose?: (() => any) | undefined;
|
|
2753
2769
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
2754
2770
|
__isFragment?: undefined;
|
|
2755
2771
|
__isTeleport?: undefined;
|
|
@@ -2761,8 +2777,6 @@ export declare const components: {
|
|
|
2761
2777
|
};
|
|
2762
2778
|
title: {
|
|
2763
2779
|
type: import("vue").PropType<string>;
|
|
2764
|
-
} & {
|
|
2765
|
-
default: string;
|
|
2766
2780
|
};
|
|
2767
2781
|
text: {
|
|
2768
2782
|
type: import("vue").PropType<string>;
|
|
@@ -2777,14 +2791,22 @@ export declare const components: {
|
|
|
2777
2791
|
action: {
|
|
2778
2792
|
type: import("vue").PropType<string>;
|
|
2779
2793
|
};
|
|
2794
|
+
closeButton: {
|
|
2795
|
+
type: import("vue").PropType<boolean>;
|
|
2796
|
+
} & {
|
|
2797
|
+
default: boolean;
|
|
2798
|
+
};
|
|
2780
2799
|
}>> & {
|
|
2781
2800
|
onClick?: (() => any) | undefined;
|
|
2801
|
+
onClose?: (() => any) | undefined;
|
|
2782
2802
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2783
2803
|
click: () => void;
|
|
2804
|
+
} & {
|
|
2805
|
+
close: () => void;
|
|
2784
2806
|
}, string, {
|
|
2785
|
-
title: string;
|
|
2786
2807
|
text: string;
|
|
2787
2808
|
feedback: "success" | "warning" | "error" | "informative";
|
|
2809
|
+
closeButton: boolean;
|
|
2788
2810
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2789
2811
|
$slots: {
|
|
2790
2812
|
default: (_: {}) => any;
|
|
@@ -3192,24 +3214,30 @@ export declare const components: {
|
|
|
3192
3214
|
fallbackValue: string;
|
|
3193
3215
|
dataIdentifier: import("./components/list/types").DataIdentifier;
|
|
3194
3216
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
3195
|
-
$slots: Record<string, {
|
|
3196
|
-
data:
|
|
3197
|
-
|
|
3217
|
+
$slots: Record<string, (_: {
|
|
3218
|
+
data: {
|
|
3219
|
+
key: string;
|
|
3220
|
+
value: unknown;
|
|
3221
|
+
};
|
|
3222
|
+
index: number;
|
|
3198
3223
|
columnIndex: number;
|
|
3199
3224
|
renderHeader: (headerKey: string) => string;
|
|
3200
3225
|
headers: import("./components/list/types").Header | undefined;
|
|
3201
|
-
}> & Record<string, {
|
|
3226
|
+
}) => any> & Record<string, (_: {
|
|
3202
3227
|
data: any;
|
|
3203
3228
|
index: any;
|
|
3204
3229
|
columnIndex: any;
|
|
3205
3230
|
renderHeader: any;
|
|
3206
3231
|
headers: any;
|
|
3207
|
-
}> & Record<string, {
|
|
3208
|
-
data:
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
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> & {
|
|
3213
3241
|
image: (_: {
|
|
3214
3242
|
data: import("./components/list/types").Data;
|
|
3215
3243
|
}) => any;
|
|
@@ -3226,7 +3254,135 @@ export declare const components: {
|
|
|
3226
3254
|
}) => any;
|
|
3227
3255
|
};
|
|
3228
3256
|
});
|
|
3229
|
-
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<{
|
|
3230
3386
|
id: {
|
|
3231
3387
|
type: import("vue").PropType<string>;
|
|
3232
3388
|
required: true;
|
|
@@ -3249,39 +3405,20 @@ export declare const components: {
|
|
|
3249
3405
|
onlyLine: {
|
|
3250
3406
|
type: import("vue").PropType<boolean>;
|
|
3251
3407
|
};
|
|
3408
|
+
}>> & {
|
|
3409
|
+
"onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
|
|
3410
|
+
"onTabitem:active"?: ((tab: import("./components/tabs/types").TabList) => any) | undefined;
|
|
3252
3411
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3253
3412
|
"update:tabList": (tab: import("./components/tabs/types").TabList[]) => void;
|
|
3254
3413
|
} & {
|
|
3255
3414
|
"tabitem:active": (tab: import("./components/tabs/types").TabList) => void;
|
|
3256
|
-
}, string,
|
|
3257
|
-
id: {
|
|
3258
|
-
type: import("vue").PropType<string>;
|
|
3259
|
-
required: true;
|
|
3260
|
-
};
|
|
3261
|
-
tabList: {
|
|
3262
|
-
type: import("vue").PropType<import("./components/tabs/types").TabList[]>;
|
|
3263
|
-
} & {
|
|
3264
|
-
default: () => ({
|
|
3265
|
-
label: string;
|
|
3266
|
-
disabled: boolean;
|
|
3267
|
-
key: string;
|
|
3268
|
-
active?: undefined;
|
|
3269
|
-
} | {
|
|
3270
|
-
label: string;
|
|
3271
|
-
active: boolean;
|
|
3272
|
-
key: string;
|
|
3273
|
-
disabled?: undefined;
|
|
3274
|
-
})[];
|
|
3275
|
-
};
|
|
3276
|
-
onlyLine: {
|
|
3277
|
-
type: import("vue").PropType<boolean>;
|
|
3278
|
-
};
|
|
3279
|
-
}>> & {
|
|
3280
|
-
"onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
|
|
3281
|
-
"onTabitem:active"?: ((tab: import("./components/tabs/types").TabList) => any) | undefined;
|
|
3282
|
-
}, {
|
|
3415
|
+
}, string, {
|
|
3283
3416
|
tabList: import("./components/tabs/types").TabList[];
|
|
3284
|
-
}
|
|
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
|
+
});
|
|
3285
3422
|
SolMenu: {
|
|
3286
3423
|
new (...args: any[]): {
|
|
3287
3424
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -4023,95 +4160,256 @@ export declare const components: {
|
|
|
4023
4160
|
}) => any;
|
|
4024
4161
|
};
|
|
4025
4162
|
});
|
|
4026
|
-
SolOnboarding:
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4041
|
-
|
|
4042
|
-
|
|
4043
|
-
|
|
4044
|
-
|
|
4045
|
-
|
|
4046
|
-
|
|
4047
|
-
|
|
4048
|
-
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
|
|
4053
|
-
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
|
|
4071
|
-
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
|
|
4086
|
-
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
4093
|
-
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
|
|
4099
|
-
|
|
4100
|
-
|
|
4101
|
-
|
|
4102
|
-
|
|
4103
|
-
|
|
4104
|
-
|
|
4105
|
-
|
|
4106
|
-
|
|
4107
|
-
|
|
4108
|
-
|
|
4109
|
-
|
|
4110
|
-
|
|
4111
|
-
|
|
4112
|
-
|
|
4113
|
-
|
|
4114
|
-
|
|
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<{
|
|
4344
|
+
id: {
|
|
4345
|
+
type: import("vue").PropType<string>;
|
|
4346
|
+
required: true;
|
|
4347
|
+
};
|
|
4348
|
+
class: {
|
|
4349
|
+
type: import("vue").PropType<string | Record<string, any>>;
|
|
4350
|
+
};
|
|
4351
|
+
target: {
|
|
4352
|
+
type: import("vue").PropType<string>;
|
|
4353
|
+
} & {
|
|
4354
|
+
default: string;
|
|
4355
|
+
};
|
|
4356
|
+
isOpen: {
|
|
4357
|
+
type: import("vue").PropType<boolean>;
|
|
4358
|
+
};
|
|
4359
|
+
sliders: {
|
|
4360
|
+
type: import("vue").PropType<import("./components/modals/onboarding/types").Slider[]>;
|
|
4361
|
+
required: true;
|
|
4362
|
+
} & {
|
|
4363
|
+
default: () => never[];
|
|
4364
|
+
};
|
|
4365
|
+
finalButtonText: {
|
|
4366
|
+
type: import("vue").PropType<string>;
|
|
4367
|
+
} & {
|
|
4368
|
+
default: string;
|
|
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;
|
|
4379
|
+
}, {
|
|
4380
|
+
close: () => void;
|
|
4381
|
+
open: () => void;
|
|
4382
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4383
|
+
close: () => void;
|
|
4384
|
+
} & {
|
|
4385
|
+
open: () => void;
|
|
4386
|
+
} & {
|
|
4387
|
+
"update:isOpen": (value: boolean) => void;
|
|
4388
|
+
} & {
|
|
4389
|
+
"action:skip": () => void;
|
|
4390
|
+
} & {
|
|
4391
|
+
"action:start": () => void;
|
|
4392
|
+
} & {
|
|
4393
|
+
"action:next": () => void;
|
|
4394
|
+
} & {
|
|
4395
|
+
"action:previous": () => void;
|
|
4396
|
+
} & {
|
|
4397
|
+
"action:finish": () => void;
|
|
4398
|
+
}, string, {
|
|
4399
|
+
target: string;
|
|
4400
|
+
sliders: import("./components/modals/onboarding/types").Slider[];
|
|
4401
|
+
finalButtonText: string;
|
|
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
|
+
});
|
|
4411
|
+
SolPagination: import("vue").DefineComponent<{
|
|
4412
|
+
id: {
|
|
4115
4413
|
type: import("vue").PropType<string>;
|
|
4116
4414
|
required: true;
|
|
4117
4415
|
};
|
|
@@ -4948,7 +5246,7 @@ export declare const components: {
|
|
|
4948
5246
|
placeholder: string;
|
|
4949
5247
|
downloadMenu: import("./components/file-upload/types").DownloadMenu[];
|
|
4950
5248
|
}>;
|
|
4951
|
-
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<{}>>, {}>;
|
|
4952
5250
|
SolBreadcrumb: import("vue").DefineComponent<{
|
|
4953
5251
|
id: {
|
|
4954
5252
|
type: import("vue").PropType<string>;
|
|
@@ -4993,6 +5291,207 @@ export declare const components: {
|
|
|
4993
5291
|
items: import("./components/breadcrumb/types").Item[];
|
|
4994
5292
|
linkTag: "a" | "router-link" | "nuxt-link";
|
|
4995
5293
|
}>;
|
|
5294
|
+
SolDivider: import("vue").DefineComponent<{
|
|
5295
|
+
orientation: {
|
|
5296
|
+
type: import("vue").PropType<"vertical" | "horizontal">;
|
|
5297
|
+
} & {
|
|
5298
|
+
default: string;
|
|
5299
|
+
};
|
|
5300
|
+
thickness: {
|
|
5301
|
+
type: import("vue").PropType<"small" | "large" | "medium" | "x-small">;
|
|
5302
|
+
} & {
|
|
5303
|
+
default: string;
|
|
5304
|
+
};
|
|
5305
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5306
|
+
orientation: {
|
|
5307
|
+
type: import("vue").PropType<"vertical" | "horizontal">;
|
|
5308
|
+
} & {
|
|
5309
|
+
default: string;
|
|
5310
|
+
};
|
|
5311
|
+
thickness: {
|
|
5312
|
+
type: import("vue").PropType<"small" | "large" | "medium" | "x-small">;
|
|
5313
|
+
} & {
|
|
5314
|
+
default: string;
|
|
5315
|
+
};
|
|
5316
|
+
}>>, {
|
|
5317
|
+
orientation: "vertical" | "horizontal";
|
|
5318
|
+
thickness: "small" | "large" | "medium" | "x-small";
|
|
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
|
+
});
|
|
4996
5495
|
};
|
|
4997
5496
|
export declare function install(App: App): void;
|
|
4998
|
-
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, };
|
|
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, };
|