@solfacil/girassol 0.7.0-beta-pagination.1 → 0.7.0-beta-tabs.1
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/cli/build/cli.js +68 -0
- package/cli/build/commands/create:component.js +136 -0
- package/cli/build/commands/generate:plugin.js +109 -0
- package/cli/build/commands/generate:types.js +76 -0
- package/cli/build/commands/girassol-cli.js +52 -0
- package/cli/build/extensions/cli-extension.js +17 -0
- package/cli/build/templates/components.d.ts.ejs +1 -0
- package/cli/build/templates/nuxt-plugin.ejs +8 -0
- package/cli/build/templates/vitesse-plugin.ejs +8 -0
- package/cli/build/templates/vue-plugin.ejs +5 -0
- package/cli/build/templates/windi.config.ts.ejs +3 -0
- package/cli/build/types/cli.d.ts +1 -0
- package/cli/build/types/commands/create:component.d.ts +1 -0
- package/cli/build/types/commands/generate:plugin.d.ts +1 -0
- package/cli/build/types/commands/generate:types.d.ts +7 -0
- package/cli/build/types/commands/girassol-cli.d.ts +1 -0
- package/cli/build/types/extensions/cli-extension.d.ts +1 -0
- package/cli/build/types/types.d.ts +0 -0
- package/cli/build/types.js +2 -0
- package/dist/components.d.ts +3 -0
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +2729 -2532
- package/dist/girassol.umd.js +9 -9
- package/dist/style.css +1 -1
- package/dist/types/components/empty-state/EmptyState.vue.d.ts +97 -0
- package/dist/types/components/empty-state/empty-state.spec.d.ts +1 -0
- package/dist/types/components/empty-state/index.d.ts +2 -0
- package/dist/types/components/empty-state/types.d.ts +7 -0
- package/dist/types/components/filters/chip/removable-chip/RemovableChip.vue.d.ts +4 -4
- package/dist/types/components/forms/button/button/Button.vue.d.ts +4 -4
- package/dist/types/components/informations/tag/Tag.vue.d.ts +4 -4
- package/dist/types/components/list/ListItem.vue.d.ts +17 -9
- package/dist/types/components/list/types.d.ts +2 -2
- package/dist/types/components/tabs/TabItem.vue.d.ts +83 -0
- package/dist/types/components/tabs/Tabs.vue.d.ts +133 -0
- package/dist/types/components/tabs/index.d.ts +2 -0
- package/dist/types/components/tabs/tabs.spec.d.ts +1 -0
- package/dist/types/components/tabs/types.d.ts +13 -0
- package/dist/types/composables/use-navigate/index.d.ts +3 -6
- package/dist/types/composables/use-navigate/types.d.ts +8 -0
- package/dist/types/index.d.ts +417 -61
- package/package.json +26 -22
package/dist/types/index.d.ts
CHANGED
|
@@ -10,12 +10,15 @@ import { SolRemovableChip } from './components/filters/chip/removable-chip';
|
|
|
10
10
|
import { SolTag } from './components/informations/tag';
|
|
11
11
|
import { SolAlert } from './components/informations/alert';
|
|
12
12
|
import { SolAccordion } from './components/accordion/';
|
|
13
|
+
import { SolTabs } from './components/tabs/';
|
|
13
14
|
import { SolList } from './components/list/';
|
|
14
15
|
import { SolMenu } from './components/menus/menu';
|
|
16
|
+
import { SolMenuItem } from './components/menus/menu-item/menu-item';
|
|
15
17
|
import { SolMenuItemLink } from './components/menus/menu-item/menu-item-link/';
|
|
16
18
|
import { SolMenuNavigationLinks } from './components/menus/menu-navigation-links';
|
|
17
19
|
import { SolModal } from './components/modal';
|
|
18
20
|
import { SolPagination } from './components/pagination';
|
|
21
|
+
import { SolEmptyState } from './components/empty-state';
|
|
19
22
|
import 'virtual:windi-base.css';
|
|
20
23
|
import 'virtual:windi-components.css';
|
|
21
24
|
import 'virtual:windi-utilities.css';
|
|
@@ -32,8 +35,8 @@ export declare const components: {
|
|
|
32
35
|
$data: {};
|
|
33
36
|
$props: Partial<{
|
|
34
37
|
onColor: boolean;
|
|
35
|
-
size: "small" | "medium" | "large";
|
|
36
38
|
variant: "primary" | "secondary" | "tertiary";
|
|
39
|
+
size: "small" | "medium" | "large";
|
|
37
40
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
38
41
|
id: {
|
|
39
42
|
type: import("vue").PropType<string>;
|
|
@@ -47,20 +50,20 @@ export declare const components: {
|
|
|
47
50
|
disabled: {
|
|
48
51
|
type: import("vue").PropType<boolean>;
|
|
49
52
|
};
|
|
50
|
-
|
|
51
|
-
type: import("vue").PropType<"
|
|
53
|
+
variant: {
|
|
54
|
+
type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
|
|
52
55
|
} & {
|
|
53
56
|
default: string;
|
|
54
57
|
};
|
|
55
|
-
|
|
56
|
-
type: import("vue").PropType<"
|
|
58
|
+
size: {
|
|
59
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
57
60
|
} & {
|
|
58
61
|
default: string;
|
|
59
62
|
};
|
|
60
63
|
loading: {
|
|
61
64
|
type: import("vue").PropType<boolean>;
|
|
62
65
|
};
|
|
63
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "onColor" | "
|
|
66
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "onColor" | "variant" | "size">;
|
|
64
67
|
$attrs: {
|
|
65
68
|
[x: string]: unknown;
|
|
66
69
|
};
|
|
@@ -87,13 +90,13 @@ export declare const components: {
|
|
|
87
90
|
disabled: {
|
|
88
91
|
type: import("vue").PropType<boolean>;
|
|
89
92
|
};
|
|
90
|
-
|
|
91
|
-
type: import("vue").PropType<"
|
|
93
|
+
variant: {
|
|
94
|
+
type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
|
|
92
95
|
} & {
|
|
93
96
|
default: string;
|
|
94
97
|
};
|
|
95
|
-
|
|
96
|
-
type: import("vue").PropType<"
|
|
98
|
+
size: {
|
|
99
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
97
100
|
} & {
|
|
98
101
|
default: string;
|
|
99
102
|
};
|
|
@@ -102,8 +105,8 @@ export declare const components: {
|
|
|
102
105
|
};
|
|
103
106
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
104
107
|
onColor: boolean;
|
|
105
|
-
size: "small" | "medium" | "large";
|
|
106
108
|
variant: "primary" | "secondary" | "tertiary";
|
|
109
|
+
size: "small" | "medium" | "large";
|
|
107
110
|
}> & {
|
|
108
111
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
109
112
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -137,13 +140,13 @@ export declare const components: {
|
|
|
137
140
|
disabled: {
|
|
138
141
|
type: import("vue").PropType<boolean>;
|
|
139
142
|
};
|
|
140
|
-
|
|
141
|
-
type: import("vue").PropType<"
|
|
143
|
+
variant: {
|
|
144
|
+
type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
|
|
142
145
|
} & {
|
|
143
146
|
default: string;
|
|
144
147
|
};
|
|
145
|
-
|
|
146
|
-
type: import("vue").PropType<"
|
|
148
|
+
size: {
|
|
149
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
147
150
|
} & {
|
|
148
151
|
default: string;
|
|
149
152
|
};
|
|
@@ -167,13 +170,13 @@ export declare const components: {
|
|
|
167
170
|
disabled: {
|
|
168
171
|
type: import("vue").PropType<boolean>;
|
|
169
172
|
};
|
|
170
|
-
|
|
171
|
-
type: import("vue").PropType<"
|
|
173
|
+
variant: {
|
|
174
|
+
type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
|
|
172
175
|
} & {
|
|
173
176
|
default: string;
|
|
174
177
|
};
|
|
175
|
-
|
|
176
|
-
type: import("vue").PropType<"
|
|
178
|
+
size: {
|
|
179
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
177
180
|
} & {
|
|
178
181
|
default: string;
|
|
179
182
|
};
|
|
@@ -182,8 +185,8 @@ export declare const components: {
|
|
|
182
185
|
};
|
|
183
186
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
184
187
|
onColor: boolean;
|
|
185
|
-
size: "small" | "medium" | "large";
|
|
186
188
|
variant: "primary" | "secondary" | "tertiary";
|
|
189
|
+
size: "small" | "medium" | "large";
|
|
187
190
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
188
191
|
$slots: {
|
|
189
192
|
'icon-left': (_: {}) => any;
|
|
@@ -2789,8 +2792,8 @@ export declare const components: {
|
|
|
2789
2792
|
$: import("vue").ComponentInternalInstance;
|
|
2790
2793
|
$data: {};
|
|
2791
2794
|
$props: Partial<{
|
|
2792
|
-
size: "small" | "medium";
|
|
2793
2795
|
variant: "fill" | "outline";
|
|
2796
|
+
size: "small" | "medium";
|
|
2794
2797
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2795
2798
|
label: {
|
|
2796
2799
|
type: import("vue").PropType<string>;
|
|
@@ -2802,19 +2805,19 @@ export declare const components: {
|
|
|
2802
2805
|
disabled: {
|
|
2803
2806
|
type: import("vue").PropType<boolean>;
|
|
2804
2807
|
};
|
|
2805
|
-
|
|
2806
|
-
type: import("vue").PropType<"
|
|
2808
|
+
variant: {
|
|
2809
|
+
type: import("vue").PropType<"fill" | "outline">;
|
|
2807
2810
|
} & {
|
|
2808
2811
|
default: string;
|
|
2809
2812
|
};
|
|
2810
|
-
|
|
2811
|
-
type: import("vue").PropType<"
|
|
2813
|
+
size: {
|
|
2814
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
2812
2815
|
} & {
|
|
2813
2816
|
default: string;
|
|
2814
2817
|
};
|
|
2815
2818
|
}>> & {
|
|
2816
2819
|
onClose?: (() => any) | undefined;
|
|
2817
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
2820
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "size">;
|
|
2818
2821
|
$attrs: {
|
|
2819
2822
|
[x: string]: unknown;
|
|
2820
2823
|
};
|
|
@@ -2839,13 +2842,13 @@ export declare const components: {
|
|
|
2839
2842
|
disabled: {
|
|
2840
2843
|
type: import("vue").PropType<boolean>;
|
|
2841
2844
|
};
|
|
2842
|
-
|
|
2843
|
-
type: import("vue").PropType<"
|
|
2845
|
+
variant: {
|
|
2846
|
+
type: import("vue").PropType<"fill" | "outline">;
|
|
2844
2847
|
} & {
|
|
2845
2848
|
default: string;
|
|
2846
2849
|
};
|
|
2847
|
-
|
|
2848
|
-
type: import("vue").PropType<"
|
|
2850
|
+
size: {
|
|
2851
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
2849
2852
|
} & {
|
|
2850
2853
|
default: string;
|
|
2851
2854
|
};
|
|
@@ -2854,8 +2857,8 @@ export declare const components: {
|
|
|
2854
2857
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2855
2858
|
close: () => void;
|
|
2856
2859
|
}, string, {
|
|
2857
|
-
size: "small" | "medium";
|
|
2858
2860
|
variant: "fill" | "outline";
|
|
2861
|
+
size: "small" | "medium";
|
|
2859
2862
|
}> & {
|
|
2860
2863
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
2861
2864
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -2887,13 +2890,13 @@ export declare const components: {
|
|
|
2887
2890
|
disabled: {
|
|
2888
2891
|
type: import("vue").PropType<boolean>;
|
|
2889
2892
|
};
|
|
2890
|
-
|
|
2891
|
-
type: import("vue").PropType<"
|
|
2893
|
+
variant: {
|
|
2894
|
+
type: import("vue").PropType<"fill" | "outline">;
|
|
2892
2895
|
} & {
|
|
2893
2896
|
default: string;
|
|
2894
2897
|
};
|
|
2895
|
-
|
|
2896
|
-
type: import("vue").PropType<"
|
|
2898
|
+
size: {
|
|
2899
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
2897
2900
|
} & {
|
|
2898
2901
|
default: string;
|
|
2899
2902
|
};
|
|
@@ -2914,13 +2917,13 @@ export declare const components: {
|
|
|
2914
2917
|
disabled: {
|
|
2915
2918
|
type: import("vue").PropType<boolean>;
|
|
2916
2919
|
};
|
|
2917
|
-
|
|
2918
|
-
type: import("vue").PropType<"
|
|
2920
|
+
variant: {
|
|
2921
|
+
type: import("vue").PropType<"fill" | "outline">;
|
|
2919
2922
|
} & {
|
|
2920
2923
|
default: string;
|
|
2921
2924
|
};
|
|
2922
|
-
|
|
2923
|
-
type: import("vue").PropType<"
|
|
2925
|
+
size: {
|
|
2926
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
2924
2927
|
} & {
|
|
2925
2928
|
default: string;
|
|
2926
2929
|
};
|
|
@@ -2929,8 +2932,8 @@ export declare const components: {
|
|
|
2929
2932
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2930
2933
|
close: () => void;
|
|
2931
2934
|
}, string, {
|
|
2932
|
-
size: "small" | "medium";
|
|
2933
2935
|
variant: "fill" | "outline";
|
|
2936
|
+
size: "small" | "medium";
|
|
2934
2937
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2935
2938
|
$slots: {
|
|
2936
2939
|
default: (_: {}) => any;
|
|
@@ -3108,8 +3111,8 @@ export declare const components: {
|
|
|
3108
3111
|
$props: Partial<{
|
|
3109
3112
|
text: string;
|
|
3110
3113
|
type: "warning" | "informative" | "neutral" | "positive" | "negative";
|
|
3111
|
-
size: "small" | "medium";
|
|
3112
3114
|
variant: "fill" | "outline";
|
|
3115
|
+
size: "small" | "medium";
|
|
3113
3116
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
3114
3117
|
text: {
|
|
3115
3118
|
type: import("vue").PropType<string>;
|
|
@@ -3125,17 +3128,17 @@ export declare const components: {
|
|
|
3125
3128
|
} & {
|
|
3126
3129
|
default: string;
|
|
3127
3130
|
};
|
|
3128
|
-
|
|
3129
|
-
type: import("vue").PropType<"
|
|
3131
|
+
variant: {
|
|
3132
|
+
type: import("vue").PropType<"fill" | "outline">;
|
|
3130
3133
|
} & {
|
|
3131
3134
|
default: string;
|
|
3132
3135
|
};
|
|
3133
|
-
|
|
3134
|
-
type: import("vue").PropType<"
|
|
3136
|
+
size: {
|
|
3137
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
3135
3138
|
} & {
|
|
3136
3139
|
default: string;
|
|
3137
3140
|
};
|
|
3138
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "type" | "
|
|
3141
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "type" | "variant" | "size">;
|
|
3139
3142
|
$attrs: {
|
|
3140
3143
|
[x: string]: unknown;
|
|
3141
3144
|
};
|
|
@@ -3164,21 +3167,21 @@ export declare const components: {
|
|
|
3164
3167
|
} & {
|
|
3165
3168
|
default: string;
|
|
3166
3169
|
};
|
|
3167
|
-
|
|
3168
|
-
type: import("vue").PropType<"
|
|
3170
|
+
variant: {
|
|
3171
|
+
type: import("vue").PropType<"fill" | "outline">;
|
|
3169
3172
|
} & {
|
|
3170
3173
|
default: string;
|
|
3171
3174
|
};
|
|
3172
|
-
|
|
3173
|
-
type: import("vue").PropType<"
|
|
3175
|
+
size: {
|
|
3176
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
3174
3177
|
} & {
|
|
3175
3178
|
default: string;
|
|
3176
3179
|
};
|
|
3177
3180
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
3178
3181
|
text: string;
|
|
3179
3182
|
type: "warning" | "informative" | "neutral" | "positive" | "negative";
|
|
3180
|
-
size: "small" | "medium";
|
|
3181
3183
|
variant: "fill" | "outline";
|
|
3184
|
+
size: "small" | "medium";
|
|
3182
3185
|
}> & {
|
|
3183
3186
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
3184
3187
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -3214,13 +3217,13 @@ export declare const components: {
|
|
|
3214
3217
|
} & {
|
|
3215
3218
|
default: string;
|
|
3216
3219
|
};
|
|
3217
|
-
|
|
3218
|
-
type: import("vue").PropType<"
|
|
3220
|
+
variant: {
|
|
3221
|
+
type: import("vue").PropType<"fill" | "outline">;
|
|
3219
3222
|
} & {
|
|
3220
3223
|
default: string;
|
|
3221
3224
|
};
|
|
3222
|
-
|
|
3223
|
-
type: import("vue").PropType<"
|
|
3225
|
+
size: {
|
|
3226
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
3224
3227
|
} & {
|
|
3225
3228
|
default: string;
|
|
3226
3229
|
};
|
|
@@ -3243,21 +3246,21 @@ export declare const components: {
|
|
|
3243
3246
|
} & {
|
|
3244
3247
|
default: string;
|
|
3245
3248
|
};
|
|
3246
|
-
|
|
3247
|
-
type: import("vue").PropType<"
|
|
3249
|
+
variant: {
|
|
3250
|
+
type: import("vue").PropType<"fill" | "outline">;
|
|
3248
3251
|
} & {
|
|
3249
3252
|
default: string;
|
|
3250
3253
|
};
|
|
3251
|
-
|
|
3252
|
-
type: import("vue").PropType<"
|
|
3254
|
+
size: {
|
|
3255
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
3253
3256
|
} & {
|
|
3254
3257
|
default: string;
|
|
3255
3258
|
};
|
|
3256
3259
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
3257
3260
|
text: string;
|
|
3258
3261
|
type: "warning" | "informative" | "neutral" | "positive" | "negative";
|
|
3259
|
-
size: "small" | "medium";
|
|
3260
3262
|
variant: "fill" | "outline";
|
|
3263
|
+
size: "small" | "medium";
|
|
3261
3264
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
3262
3265
|
$slots: {
|
|
3263
3266
|
default: (_: {}) => any;
|
|
@@ -3825,6 +3828,151 @@ export declare const components: {
|
|
|
3825
3828
|
menu: (_: {}) => any;
|
|
3826
3829
|
};
|
|
3827
3830
|
});
|
|
3831
|
+
SolTabs: {
|
|
3832
|
+
new (...args: any[]): {
|
|
3833
|
+
$: import("vue").ComponentInternalInstance;
|
|
3834
|
+
$data: {};
|
|
3835
|
+
$props: Partial<{
|
|
3836
|
+
tabList: import("./components/tabs/types").TabList[];
|
|
3837
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
3838
|
+
id: {
|
|
3839
|
+
type: import("vue").PropType<string>;
|
|
3840
|
+
required: true;
|
|
3841
|
+
};
|
|
3842
|
+
tabList: {
|
|
3843
|
+
type: import("vue").PropType<import("./components/tabs/types").TabList[]>;
|
|
3844
|
+
} & {
|
|
3845
|
+
default: () => ({
|
|
3846
|
+
label: string;
|
|
3847
|
+
disabled: boolean;
|
|
3848
|
+
active?: undefined;
|
|
3849
|
+
} | {
|
|
3850
|
+
label: string;
|
|
3851
|
+
active: boolean;
|
|
3852
|
+
disabled?: undefined;
|
|
3853
|
+
})[];
|
|
3854
|
+
};
|
|
3855
|
+
onlyLine: {
|
|
3856
|
+
type: import("vue").PropType<boolean>;
|
|
3857
|
+
};
|
|
3858
|
+
}>> & {
|
|
3859
|
+
"onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
|
|
3860
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "tabList">;
|
|
3861
|
+
$attrs: {
|
|
3862
|
+
[x: string]: unknown;
|
|
3863
|
+
};
|
|
3864
|
+
$refs: {
|
|
3865
|
+
[x: string]: unknown;
|
|
3866
|
+
};
|
|
3867
|
+
$slots: Readonly<{
|
|
3868
|
+
[name: string]: import("vue").Slot | undefined;
|
|
3869
|
+
}>;
|
|
3870
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
3871
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
3872
|
+
$emit: (event: "update:tabList", tab: import("./components/tabs/types").TabList[]) => void;
|
|
3873
|
+
$el: any;
|
|
3874
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
3875
|
+
id: {
|
|
3876
|
+
type: import("vue").PropType<string>;
|
|
3877
|
+
required: true;
|
|
3878
|
+
};
|
|
3879
|
+
tabList: {
|
|
3880
|
+
type: import("vue").PropType<import("./components/tabs/types").TabList[]>;
|
|
3881
|
+
} & {
|
|
3882
|
+
default: () => ({
|
|
3883
|
+
label: string;
|
|
3884
|
+
disabled: boolean;
|
|
3885
|
+
active?: undefined;
|
|
3886
|
+
} | {
|
|
3887
|
+
label: string;
|
|
3888
|
+
active: boolean;
|
|
3889
|
+
disabled?: undefined;
|
|
3890
|
+
})[];
|
|
3891
|
+
};
|
|
3892
|
+
onlyLine: {
|
|
3893
|
+
type: import("vue").PropType<boolean>;
|
|
3894
|
+
};
|
|
3895
|
+
}>> & {
|
|
3896
|
+
"onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
|
|
3897
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3898
|
+
"update:tabList": (tab: import("./components/tabs/types").TabList[]) => void;
|
|
3899
|
+
}, string, {
|
|
3900
|
+
tabList: import("./components/tabs/types").TabList[];
|
|
3901
|
+
}> & {
|
|
3902
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
3903
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
3904
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
3905
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
3906
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
3907
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
3908
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
3909
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
3910
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
3911
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
3912
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
3913
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
3914
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
3915
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
3916
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
3917
|
+
};
|
|
3918
|
+
$forceUpdate: () => void;
|
|
3919
|
+
$nextTick: typeof import("vue").nextTick;
|
|
3920
|
+
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
3921
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
3922
|
+
id: {
|
|
3923
|
+
type: import("vue").PropType<string>;
|
|
3924
|
+
required: true;
|
|
3925
|
+
};
|
|
3926
|
+
tabList: {
|
|
3927
|
+
type: import("vue").PropType<import("./components/tabs/types").TabList[]>;
|
|
3928
|
+
} & {
|
|
3929
|
+
default: () => ({
|
|
3930
|
+
label: string;
|
|
3931
|
+
disabled: boolean;
|
|
3932
|
+
active?: undefined;
|
|
3933
|
+
} | {
|
|
3934
|
+
label: string;
|
|
3935
|
+
active: boolean;
|
|
3936
|
+
disabled?: undefined;
|
|
3937
|
+
})[];
|
|
3938
|
+
};
|
|
3939
|
+
onlyLine: {
|
|
3940
|
+
type: import("vue").PropType<boolean>;
|
|
3941
|
+
};
|
|
3942
|
+
}>> & {
|
|
3943
|
+
"onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
|
|
3944
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
3945
|
+
__isFragment?: undefined;
|
|
3946
|
+
__isTeleport?: undefined;
|
|
3947
|
+
__isSuspense?: undefined;
|
|
3948
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
3949
|
+
id: {
|
|
3950
|
+
type: import("vue").PropType<string>;
|
|
3951
|
+
required: true;
|
|
3952
|
+
};
|
|
3953
|
+
tabList: {
|
|
3954
|
+
type: import("vue").PropType<import("./components/tabs/types").TabList[]>;
|
|
3955
|
+
} & {
|
|
3956
|
+
default: () => ({
|
|
3957
|
+
label: string;
|
|
3958
|
+
disabled: boolean;
|
|
3959
|
+
active?: undefined;
|
|
3960
|
+
} | {
|
|
3961
|
+
label: string;
|
|
3962
|
+
active: boolean;
|
|
3963
|
+
disabled?: undefined;
|
|
3964
|
+
})[];
|
|
3965
|
+
};
|
|
3966
|
+
onlyLine: {
|
|
3967
|
+
type: import("vue").PropType<boolean>;
|
|
3968
|
+
};
|
|
3969
|
+
}>> & {
|
|
3970
|
+
"onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
|
|
3971
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3972
|
+
"update:tabList": (tab: import("./components/tabs/types").TabList[]) => void;
|
|
3973
|
+
}, string, {
|
|
3974
|
+
tabList: import("./components/tabs/types").TabList[];
|
|
3975
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
3828
3976
|
SolMenu: {
|
|
3829
3977
|
new (...args: any[]): {
|
|
3830
3978
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -3957,6 +4105,85 @@ export declare const components: {
|
|
|
3957
4105
|
}) => any;
|
|
3958
4106
|
};
|
|
3959
4107
|
});
|
|
4108
|
+
SolMenuItem: {
|
|
4109
|
+
new (...args: any[]): {
|
|
4110
|
+
$: import("vue").ComponentInternalInstance;
|
|
4111
|
+
$data: {};
|
|
4112
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
4113
|
+
id: {
|
|
4114
|
+
type: import("vue").PropType<string>;
|
|
4115
|
+
required: true;
|
|
4116
|
+
};
|
|
4117
|
+
}>> & {
|
|
4118
|
+
onClicked?: (() => any) | undefined;
|
|
4119
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
4120
|
+
$attrs: {
|
|
4121
|
+
[x: string]: unknown;
|
|
4122
|
+
};
|
|
4123
|
+
$refs: {
|
|
4124
|
+
[x: string]: unknown;
|
|
4125
|
+
};
|
|
4126
|
+
$slots: Readonly<{
|
|
4127
|
+
[name: string]: import("vue").Slot | undefined;
|
|
4128
|
+
}>;
|
|
4129
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
4130
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
4131
|
+
$emit: (event: "clicked") => void;
|
|
4132
|
+
$el: any;
|
|
4133
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
4134
|
+
id: {
|
|
4135
|
+
type: import("vue").PropType<string>;
|
|
4136
|
+
required: true;
|
|
4137
|
+
};
|
|
4138
|
+
}>> & {
|
|
4139
|
+
onClicked?: (() => any) | undefined;
|
|
4140
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4141
|
+
clicked: () => void;
|
|
4142
|
+
}, string, {}> & {
|
|
4143
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
4144
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
4145
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
4146
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
4147
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
4148
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
4149
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
4150
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
4151
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
4152
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
4153
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
4154
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
4155
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
4156
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
4157
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
4158
|
+
};
|
|
4159
|
+
$forceUpdate: () => void;
|
|
4160
|
+
$nextTick: typeof import("vue").nextTick;
|
|
4161
|
+
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
4162
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
4163
|
+
id: {
|
|
4164
|
+
type: import("vue").PropType<string>;
|
|
4165
|
+
required: true;
|
|
4166
|
+
};
|
|
4167
|
+
}>> & {
|
|
4168
|
+
onClicked?: (() => any) | undefined;
|
|
4169
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
4170
|
+
__isFragment?: undefined;
|
|
4171
|
+
__isTeleport?: undefined;
|
|
4172
|
+
__isSuspense?: undefined;
|
|
4173
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
4174
|
+
id: {
|
|
4175
|
+
type: import("vue").PropType<string>;
|
|
4176
|
+
required: true;
|
|
4177
|
+
};
|
|
4178
|
+
}>> & {
|
|
4179
|
+
onClicked?: (() => any) | undefined;
|
|
4180
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4181
|
+
clicked: () => void;
|
|
4182
|
+
}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
4183
|
+
$slots: {
|
|
4184
|
+
default: (_: {}) => any;
|
|
4185
|
+
};
|
|
4186
|
+
});
|
|
3960
4187
|
SolMenuItemLink: {
|
|
3961
4188
|
new (...args: any[]): {
|
|
3962
4189
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -4741,6 +4968,135 @@ export declare const components: {
|
|
|
4741
4968
|
totalPages: number;
|
|
4742
4969
|
current: number;
|
|
4743
4970
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
4971
|
+
SolEmptyState: {
|
|
4972
|
+
new (...args: any[]): {
|
|
4973
|
+
$: import("vue").ComponentInternalInstance;
|
|
4974
|
+
$data: {};
|
|
4975
|
+
$props: Partial<{
|
|
4976
|
+
variant: import("./components/empty-state/types").Variant;
|
|
4977
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
4978
|
+
title: {
|
|
4979
|
+
type: import("vue").PropType<string>;
|
|
4980
|
+
required: true;
|
|
4981
|
+
};
|
|
4982
|
+
id: {
|
|
4983
|
+
type: import("vue").PropType<string>;
|
|
4984
|
+
required: true;
|
|
4985
|
+
};
|
|
4986
|
+
subtitle: {
|
|
4987
|
+
type: import("vue").PropType<string>;
|
|
4988
|
+
required: true;
|
|
4989
|
+
};
|
|
4990
|
+
variant: {
|
|
4991
|
+
type: import("vue").PropType<import("./components/empty-state/types").Variant>;
|
|
4992
|
+
required: true;
|
|
4993
|
+
} & {
|
|
4994
|
+
default: string;
|
|
4995
|
+
};
|
|
4996
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant">;
|
|
4997
|
+
$attrs: {
|
|
4998
|
+
[x: string]: unknown;
|
|
4999
|
+
};
|
|
5000
|
+
$refs: {
|
|
5001
|
+
[x: string]: unknown;
|
|
5002
|
+
};
|
|
5003
|
+
$slots: Readonly<{
|
|
5004
|
+
[name: string]: import("vue").Slot | undefined;
|
|
5005
|
+
}>;
|
|
5006
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
5007
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
5008
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
5009
|
+
$el: any;
|
|
5010
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
5011
|
+
title: {
|
|
5012
|
+
type: import("vue").PropType<string>;
|
|
5013
|
+
required: true;
|
|
5014
|
+
};
|
|
5015
|
+
id: {
|
|
5016
|
+
type: import("vue").PropType<string>;
|
|
5017
|
+
required: true;
|
|
5018
|
+
};
|
|
5019
|
+
subtitle: {
|
|
5020
|
+
type: import("vue").PropType<string>;
|
|
5021
|
+
required: true;
|
|
5022
|
+
};
|
|
5023
|
+
variant: {
|
|
5024
|
+
type: import("vue").PropType<import("./components/empty-state/types").Variant>;
|
|
5025
|
+
required: true;
|
|
5026
|
+
} & {
|
|
5027
|
+
default: string;
|
|
5028
|
+
};
|
|
5029
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
5030
|
+
variant: import("./components/empty-state/types").Variant;
|
|
5031
|
+
}> & {
|
|
5032
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
5033
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
5034
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
5035
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
5036
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
5037
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
5038
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
5039
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
5040
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
5041
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
5042
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
5043
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
5044
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
5045
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
5046
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
5047
|
+
};
|
|
5048
|
+
$forceUpdate: () => void;
|
|
5049
|
+
$nextTick: typeof import("vue").nextTick;
|
|
5050
|
+
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
5051
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
5052
|
+
title: {
|
|
5053
|
+
type: import("vue").PropType<string>;
|
|
5054
|
+
required: true;
|
|
5055
|
+
};
|
|
5056
|
+
id: {
|
|
5057
|
+
type: import("vue").PropType<string>;
|
|
5058
|
+
required: true;
|
|
5059
|
+
};
|
|
5060
|
+
subtitle: {
|
|
5061
|
+
type: import("vue").PropType<string>;
|
|
5062
|
+
required: true;
|
|
5063
|
+
};
|
|
5064
|
+
variant: {
|
|
5065
|
+
type: import("vue").PropType<import("./components/empty-state/types").Variant>;
|
|
5066
|
+
required: true;
|
|
5067
|
+
} & {
|
|
5068
|
+
default: string;
|
|
5069
|
+
};
|
|
5070
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
5071
|
+
__isFragment?: undefined;
|
|
5072
|
+
__isTeleport?: undefined;
|
|
5073
|
+
__isSuspense?: undefined;
|
|
5074
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
5075
|
+
title: {
|
|
5076
|
+
type: import("vue").PropType<string>;
|
|
5077
|
+
required: true;
|
|
5078
|
+
};
|
|
5079
|
+
id: {
|
|
5080
|
+
type: import("vue").PropType<string>;
|
|
5081
|
+
required: true;
|
|
5082
|
+
};
|
|
5083
|
+
subtitle: {
|
|
5084
|
+
type: import("vue").PropType<string>;
|
|
5085
|
+
required: true;
|
|
5086
|
+
};
|
|
5087
|
+
variant: {
|
|
5088
|
+
type: import("vue").PropType<import("./components/empty-state/types").Variant>;
|
|
5089
|
+
required: true;
|
|
5090
|
+
} & {
|
|
5091
|
+
default: string;
|
|
5092
|
+
};
|
|
5093
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
5094
|
+
variant: import("./components/empty-state/types").Variant;
|
|
5095
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
5096
|
+
$slots: {
|
|
5097
|
+
button: (_: {}) => any;
|
|
5098
|
+
};
|
|
5099
|
+
});
|
|
4744
5100
|
};
|
|
4745
5101
|
export declare function install(App: App): void;
|
|
4746
|
-
export { SolButton, SolButtonDestructive, SolInputTextarea, SolInputText, SolInputTextPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolSelect, SolRemovableChip, SolSelectableChip, SolTag, SolAlert, SolAccordion, SolList, SolMenu, SolMenuItemLink, SolMenuNavigationLinks, SolModal, SolPagination, };
|
|
5102
|
+
export { SolButton, SolButtonDestructive, SolInputTextarea, SolInputText, SolInputTextPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolSelect, SolRemovableChip, SolSelectableChip, SolTag, SolAlert, SolAccordion, SolList, SolTabs, SolMenu, SolMenuItem, SolMenuItemLink, SolMenuNavigationLinks, SolModal, SolPagination, SolEmptyState, };
|