@solfacil/girassol 0.10.0 → 0.12.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.
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1,9 @@
1
+ export declare type Variants = 'button-primary' | 'button-secondary' | 'button-icon';
2
+ export interface Search {
3
+ id: string;
4
+ ariaLabel: string;
5
+ placeholder?: string;
6
+ variant?: Variants;
7
+ modelValue?: string;
8
+ size?: 'small' | 'medium';
9
+ }
@@ -8,6 +8,7 @@ declare const _default: {
8
8
  label?: string | undefined;
9
9
  disabled?: TabItem['disabled'];
10
10
  active?: TabItem['active'];
11
+ gtmId?: TabItem['gtmId'];
11
12
  }>, {}>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
12
13
  $attrs: {
13
14
  [x: string]: unknown;
@@ -27,6 +28,7 @@ declare const _default: {
27
28
  label?: string | undefined;
28
29
  disabled?: TabItem['disabled'];
29
30
  active?: TabItem['active'];
31
+ gtmId?: TabItem['gtmId'];
30
32
  }>, {}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}> & {
31
33
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
32
34
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -52,6 +54,7 @@ declare const _default: {
52
54
  label?: string | undefined;
53
55
  disabled?: TabItem['disabled'];
54
56
  active?: TabItem['active'];
57
+ gtmId?: TabItem['gtmId'];
55
58
  }>, {}>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
56
59
  __isFragment?: undefined;
57
60
  __isTeleport?: undefined;
@@ -61,6 +64,7 @@ declare const _default: {
61
64
  label?: string | undefined;
62
65
  disabled?: TabItem['disabled'];
63
66
  active?: TabItem['active'];
67
+ gtmId?: TabItem['gtmId'];
64
68
  }>, {}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
65
69
  $slots: {
66
70
  icon: (_: {}) => any;
@@ -1,4 +1,4 @@
1
- import type { Tabs } from './types';
1
+ import type { TabList, Tabs } from './types';
2
2
  declare const _default: {
3
3
  new (...args: any[]): {
4
4
  $: import("vue").ComponentInternalInstance;
@@ -7,20 +7,23 @@ declare const _default: {
7
7
  tabList: Tabs['tabList'];
8
8
  }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
9
9
  id: Tabs['id'];
10
- tabList?: import("./types").TabList[] | undefined;
10
+ tabList?: TabList[] | undefined;
11
11
  onlyLine?: Tabs['onlyLine'];
12
12
  }>, {
13
13
  tabList: () => ({
14
14
  label: string;
15
15
  disabled: boolean;
16
+ key: string;
16
17
  active?: undefined;
17
18
  } | {
18
19
  label: string;
19
20
  active: boolean;
21
+ key: string;
20
22
  disabled?: undefined;
21
23
  })[];
22
24
  }>>> & {
23
- "onUpdate:tabList"?: ((tab: import("./types").TabList[]) => any) | undefined;
25
+ "onUpdate:tabList"?: ((tab: TabList[]) => any) | undefined;
26
+ "onTabitem:active"?: ((tab: TabList) => any) | undefined;
24
27
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "tabList">;
25
28
  $attrs: {
26
29
  [x: string]: unknown;
@@ -33,26 +36,31 @@ declare const _default: {
33
36
  }>;
34
37
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
35
38
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
36
- $emit: (event: "update:tabList", tab: import("./types").TabList[]) => void;
39
+ $emit: ((event: "update:tabList", tab: TabList[]) => void) & ((event: "tabitem:active", tab: TabList) => void);
37
40
  $el: any;
38
41
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
39
42
  id: Tabs['id'];
40
- tabList?: import("./types").TabList[] | undefined;
43
+ tabList?: TabList[] | undefined;
41
44
  onlyLine?: Tabs['onlyLine'];
42
45
  }>, {
43
46
  tabList: () => ({
44
47
  label: string;
45
48
  disabled: boolean;
49
+ key: string;
46
50
  active?: undefined;
47
51
  } | {
48
52
  label: string;
49
53
  active: boolean;
54
+ key: string;
50
55
  disabled?: undefined;
51
56
  })[];
52
57
  }>>> & {
53
- "onUpdate:tabList"?: ((tab: import("./types").TabList[]) => any) | undefined;
58
+ "onUpdate:tabList"?: ((tab: TabList[]) => any) | undefined;
59
+ "onTabitem:active"?: ((tab: TabList) => any) | undefined;
54
60
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
55
- "update:tabList": (tab: import("./types").TabList[]) => void;
61
+ "update:tabList": (tab: TabList[]) => void;
62
+ } & {
63
+ "tabitem:active": (tab: TabList) => void;
56
64
  }, string, {
57
65
  tabList: Tabs['tabList'];
58
66
  }> & {
@@ -77,42 +85,50 @@ declare const _default: {
77
85
  $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
78
86
  } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
79
87
  id: Tabs['id'];
80
- tabList?: import("./types").TabList[] | undefined;
88
+ tabList?: TabList[] | undefined;
81
89
  onlyLine?: Tabs['onlyLine'];
82
90
  }>, {
83
91
  tabList: () => ({
84
92
  label: string;
85
93
  disabled: boolean;
94
+ key: string;
86
95
  active?: undefined;
87
96
  } | {
88
97
  label: string;
89
98
  active: boolean;
99
+ key: string;
90
100
  disabled?: undefined;
91
101
  })[];
92
102
  }>>> & {
93
- "onUpdate:tabList"?: ((tab: import("./types").TabList[]) => any) | undefined;
103
+ "onUpdate:tabList"?: ((tab: TabList[]) => any) | undefined;
104
+ "onTabitem:active"?: ((tab: TabList) => any) | undefined;
94
105
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
95
106
  __isFragment?: undefined;
96
107
  __isTeleport?: undefined;
97
108
  __isSuspense?: undefined;
98
109
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
99
110
  id: Tabs['id'];
100
- tabList?: import("./types").TabList[] | undefined;
111
+ tabList?: TabList[] | undefined;
101
112
  onlyLine?: Tabs['onlyLine'];
102
113
  }>, {
103
114
  tabList: () => ({
104
115
  label: string;
105
116
  disabled: boolean;
117
+ key: string;
106
118
  active?: undefined;
107
119
  } | {
108
120
  label: string;
109
121
  active: boolean;
122
+ key: string;
110
123
  disabled?: undefined;
111
124
  })[];
112
125
  }>>> & {
113
- "onUpdate:tabList"?: ((tab: import("./types").TabList[]) => any) | undefined;
126
+ "onUpdate:tabList"?: ((tab: TabList[]) => any) | undefined;
127
+ "onTabitem:active"?: ((tab: TabList) => any) | undefined;
114
128
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
115
- "update:tabList": (tab: import("./types").TabList[]) => void;
129
+ "update:tabList": (tab: TabList[]) => void;
130
+ } & {
131
+ "tabitem:active": (tab: TabList) => void;
116
132
  }, string, {
117
133
  tabList: Tabs['tabList'];
118
134
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
@@ -2,12 +2,14 @@ export declare type TabList = {
2
2
  label: string;
3
3
  disabled?: boolean;
4
4
  active?: boolean;
5
- key?: unknown;
5
+ key: string;
6
+ gtmId?: string;
6
7
  };
7
8
  export interface Tabs {
8
9
  id: string;
9
10
  tabList: TabList[];
10
11
  onlyLine?: boolean;
12
+ gtmId?: string;
11
13
  }
12
14
  export interface TabItem extends TabList {
13
15
  id: string;
@@ -19,6 +19,7 @@ import { SolMenuNavigationLinks } from './components/menus/menu-navigation-links
19
19
  import { SolModal } from './components/modal';
20
20
  import { SolPagination } from './components/pagination';
21
21
  import { SolEmptyState } from './components/empty-state';
22
+ import { SolSearch } from './components/search';
22
23
  import 'virtual:windi-base.css';
23
24
  import 'virtual:windi-components.css';
24
25
  import 'virtual:windi-utilities.css';
@@ -3859,10 +3860,12 @@ export declare const components: {
3859
3860
  default: () => ({
3860
3861
  label: string;
3861
3862
  disabled: boolean;
3863
+ key: string;
3862
3864
  active?: undefined;
3863
3865
  } | {
3864
3866
  label: string;
3865
3867
  active: boolean;
3868
+ key: string;
3866
3869
  disabled?: undefined;
3867
3870
  })[];
3868
3871
  };
@@ -3871,6 +3874,7 @@ export declare const components: {
3871
3874
  };
3872
3875
  }>> & {
3873
3876
  "onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
3877
+ "onTabitem:active"?: ((tab: import("./components/tabs/types").TabList) => any) | undefined;
3874
3878
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "tabList">;
3875
3879
  $attrs: {
3876
3880
  [x: string]: unknown;
@@ -3883,7 +3887,7 @@ export declare const components: {
3883
3887
  }>;
3884
3888
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
3885
3889
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
3886
- $emit: (event: "update:tabList", tab: import("./components/tabs/types").TabList[]) => void;
3890
+ $emit: ((event: "update:tabList", tab: import("./components/tabs/types").TabList[]) => void) & ((event: "tabitem:active", tab: import("./components/tabs/types").TabList) => void);
3887
3891
  $el: any;
3888
3892
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3889
3893
  id: {
@@ -3896,10 +3900,12 @@ export declare const components: {
3896
3900
  default: () => ({
3897
3901
  label: string;
3898
3902
  disabled: boolean;
3903
+ key: string;
3899
3904
  active?: undefined;
3900
3905
  } | {
3901
3906
  label: string;
3902
3907
  active: boolean;
3908
+ key: string;
3903
3909
  disabled?: undefined;
3904
3910
  })[];
3905
3911
  };
@@ -3908,8 +3914,11 @@ export declare const components: {
3908
3914
  };
3909
3915
  }>> & {
3910
3916
  "onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
3917
+ "onTabitem:active"?: ((tab: import("./components/tabs/types").TabList) => any) | undefined;
3911
3918
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3912
3919
  "update:tabList": (tab: import("./components/tabs/types").TabList[]) => void;
3920
+ } & {
3921
+ "tabitem:active": (tab: import("./components/tabs/types").TabList) => void;
3913
3922
  }, string, {
3914
3923
  tabList: import("./components/tabs/types").TabList[];
3915
3924
  }> & {
@@ -3943,10 +3952,12 @@ export declare const components: {
3943
3952
  default: () => ({
3944
3953
  label: string;
3945
3954
  disabled: boolean;
3955
+ key: string;
3946
3956
  active?: undefined;
3947
3957
  } | {
3948
3958
  label: string;
3949
3959
  active: boolean;
3960
+ key: string;
3950
3961
  disabled?: undefined;
3951
3962
  })[];
3952
3963
  };
@@ -3955,6 +3966,7 @@ export declare const components: {
3955
3966
  };
3956
3967
  }>> & {
3957
3968
  "onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
3969
+ "onTabitem:active"?: ((tab: import("./components/tabs/types").TabList) => any) | undefined;
3958
3970
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
3959
3971
  __isFragment?: undefined;
3960
3972
  __isTeleport?: undefined;
@@ -3970,10 +3982,12 @@ export declare const components: {
3970
3982
  default: () => ({
3971
3983
  label: string;
3972
3984
  disabled: boolean;
3985
+ key: string;
3973
3986
  active?: undefined;
3974
3987
  } | {
3975
3988
  label: string;
3976
3989
  active: boolean;
3990
+ key: string;
3977
3991
  disabled?: undefined;
3978
3992
  })[];
3979
3993
  };
@@ -3982,8 +3996,11 @@ export declare const components: {
3982
3996
  };
3983
3997
  }>> & {
3984
3998
  "onUpdate:tabList"?: ((tab: import("./components/tabs/types").TabList[]) => any) | undefined;
3999
+ "onTabitem:active"?: ((tab: import("./components/tabs/types").TabList) => any) | undefined;
3985
4000
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3986
4001
  "update:tabList": (tab: import("./components/tabs/types").TabList[]) => void;
4002
+ } & {
4003
+ "tabitem:active": (tab: import("./components/tabs/types").TabList) => void;
3987
4004
  }, string, {
3988
4005
  tabList: import("./components/tabs/types").TabList[];
3989
4006
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
@@ -5111,6 +5128,211 @@ export declare const components: {
5111
5128
  button: (_: {}) => any;
5112
5129
  };
5113
5130
  });
5131
+ SolSearch: {
5132
+ new (...args: any[]): {
5133
+ $: import("vue").ComponentInternalInstance;
5134
+ $data: {};
5135
+ $props: Partial<{
5136
+ variant: import("./components/search/types").Variants;
5137
+ placeholder: string;
5138
+ size: "small" | "medium";
5139
+ modelValue: string;
5140
+ ariaLabel: string;
5141
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
5142
+ id: {
5143
+ type: import("vue").PropType<string>;
5144
+ required: true;
5145
+ };
5146
+ variant: {
5147
+ type: import("vue").PropType<import("./components/search/types").Variants>;
5148
+ } & {
5149
+ default: string;
5150
+ };
5151
+ placeholder: {
5152
+ type: import("vue").PropType<string>;
5153
+ } & {
5154
+ default: string;
5155
+ };
5156
+ size: {
5157
+ type: import("vue").PropType<"small" | "medium">;
5158
+ } & {
5159
+ default: string;
5160
+ };
5161
+ modelValue: {
5162
+ type: import("vue").PropType<string>;
5163
+ } & {
5164
+ default: string;
5165
+ };
5166
+ ariaLabel: {
5167
+ type: import("vue").PropType<string>;
5168
+ required: true;
5169
+ } & {
5170
+ default: string;
5171
+ };
5172
+ }>> & {
5173
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
5174
+ onSearch?: ((value: string) => any) | undefined;
5175
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "placeholder" | "size" | "modelValue" | "ariaLabel">;
5176
+ $attrs: {
5177
+ [x: string]: unknown;
5178
+ };
5179
+ $refs: {
5180
+ [x: string]: unknown;
5181
+ };
5182
+ $slots: Readonly<{
5183
+ [name: string]: import("vue").Slot | undefined;
5184
+ }>;
5185
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
5186
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
5187
+ $emit: ((event: "search", value: string) => void) & ((event: "update:modelValue", value: string) => void);
5188
+ $el: any;
5189
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5190
+ id: {
5191
+ type: import("vue").PropType<string>;
5192
+ required: true;
5193
+ };
5194
+ variant: {
5195
+ type: import("vue").PropType<import("./components/search/types").Variants>;
5196
+ } & {
5197
+ default: string;
5198
+ };
5199
+ placeholder: {
5200
+ type: import("vue").PropType<string>;
5201
+ } & {
5202
+ default: string;
5203
+ };
5204
+ size: {
5205
+ type: import("vue").PropType<"small" | "medium">;
5206
+ } & {
5207
+ default: string;
5208
+ };
5209
+ modelValue: {
5210
+ type: import("vue").PropType<string>;
5211
+ } & {
5212
+ default: string;
5213
+ };
5214
+ ariaLabel: {
5215
+ type: import("vue").PropType<string>;
5216
+ required: true;
5217
+ } & {
5218
+ default: string;
5219
+ };
5220
+ }>> & {
5221
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
5222
+ onSearch?: ((value: string) => any) | undefined;
5223
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5224
+ search: (value: string) => void;
5225
+ } & {
5226
+ "update:modelValue": (value: string) => void;
5227
+ }, string, {
5228
+ variant: import("./components/search/types").Variants;
5229
+ placeholder: string;
5230
+ size: "small" | "medium";
5231
+ modelValue: string;
5232
+ ariaLabel: string;
5233
+ }> & {
5234
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
5235
+ created?: ((() => void) | (() => void)[]) | undefined;
5236
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
5237
+ mounted?: ((() => void) | (() => void)[]) | undefined;
5238
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
5239
+ updated?: ((() => void) | (() => void)[]) | undefined;
5240
+ activated?: ((() => void) | (() => void)[]) | undefined;
5241
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
5242
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
5243
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
5244
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
5245
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
5246
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
5247
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
5248
+ 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;
5249
+ };
5250
+ $forceUpdate: () => void;
5251
+ $nextTick: typeof import("vue").nextTick;
5252
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
5253
+ } & Readonly<import("vue").ExtractPropTypes<{
5254
+ id: {
5255
+ type: import("vue").PropType<string>;
5256
+ required: true;
5257
+ };
5258
+ variant: {
5259
+ type: import("vue").PropType<import("./components/search/types").Variants>;
5260
+ } & {
5261
+ default: string;
5262
+ };
5263
+ placeholder: {
5264
+ type: import("vue").PropType<string>;
5265
+ } & {
5266
+ default: string;
5267
+ };
5268
+ size: {
5269
+ type: import("vue").PropType<"small" | "medium">;
5270
+ } & {
5271
+ default: string;
5272
+ };
5273
+ modelValue: {
5274
+ type: import("vue").PropType<string>;
5275
+ } & {
5276
+ default: string;
5277
+ };
5278
+ ariaLabel: {
5279
+ type: import("vue").PropType<string>;
5280
+ required: true;
5281
+ } & {
5282
+ default: string;
5283
+ };
5284
+ }>> & {
5285
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
5286
+ onSearch?: ((value: string) => any) | undefined;
5287
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
5288
+ __isFragment?: undefined;
5289
+ __isTeleport?: undefined;
5290
+ __isSuspense?: undefined;
5291
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5292
+ id: {
5293
+ type: import("vue").PropType<string>;
5294
+ required: true;
5295
+ };
5296
+ variant: {
5297
+ type: import("vue").PropType<import("./components/search/types").Variants>;
5298
+ } & {
5299
+ default: string;
5300
+ };
5301
+ placeholder: {
5302
+ type: import("vue").PropType<string>;
5303
+ } & {
5304
+ default: string;
5305
+ };
5306
+ size: {
5307
+ type: import("vue").PropType<"small" | "medium">;
5308
+ } & {
5309
+ default: string;
5310
+ };
5311
+ modelValue: {
5312
+ type: import("vue").PropType<string>;
5313
+ } & {
5314
+ default: string;
5315
+ };
5316
+ ariaLabel: {
5317
+ type: import("vue").PropType<string>;
5318
+ required: true;
5319
+ } & {
5320
+ default: string;
5321
+ };
5322
+ }>> & {
5323
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
5324
+ onSearch?: ((value: string) => any) | undefined;
5325
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5326
+ search: (value: string) => void;
5327
+ } & {
5328
+ "update:modelValue": (value: string) => void;
5329
+ }, string, {
5330
+ variant: import("./components/search/types").Variants;
5331
+ placeholder: string;
5332
+ size: "small" | "medium";
5333
+ modelValue: string;
5334
+ ariaLabel: string;
5335
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
5114
5336
  };
5115
5337
  export declare function install(App: App): void;
5116
- 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, };
5338
+ 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, SolSearch, };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solfacil/girassol",
3
3
  "description": "Girassol design system",
4
- "version": "0.10.0",
4
+ "version": "0.12.0",
5
5
  "license": "MIT",
6
6
  "authors": [
7
7
  {
@@ -98,6 +98,7 @@
98
98
  "c8": "^7.12.0",
99
99
  "cli-spinner": "^0.2.10",
100
100
  "commitizen": "^4.2.5",
101
+ "conventional-changelog-conventionalcommits": "^5.0.0",
101
102
  "copyfiles": "^2.4.1",
102
103
  "critters": "^0.0.16",
103
104
  "eslint": "^8.25.0",