@avenirs-esr/avenirs-dsav 0.1.97 → 0.1.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/avenirs-dsav.css +1 -1
- package/dist/components/cards/AvCard/AvCard.stories.d.ts +1 -0
- package/dist/components/cards/AvCard/AvCard.stub.d.ts +64 -0
- package/dist/components/cards/AvCard/AvCard.vue.d.ts +5 -0
- package/dist/components/cards/index.d.ts +1 -1
- package/dist/components/interaction/buttons/AvButton/AvButton.stub.d.ts +97 -18
- package/dist/components/interaction/buttons/AvButton/AvButton.vue.d.ts +5 -7
- package/dist/components/interaction/buttons/AvRichButton/AvRichButton.vue.d.ts +5 -7
- package/dist/index.cjs.js +2 -2
- package/dist/index.es.js +746 -741
- package/dist/test-utils.cjs.js +13 -13
- package/dist/test-utils.es.js +65 -40
- package/dist/tests/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/test-utils.cjs.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
:style="{ backgroundColor, borderColor, color }"
|
|
5
5
|
>
|
|
6
6
|
{{ label }}
|
|
7
|
-
</div>`,props:{label:String,small:{type:Boolean,default:!1},ellipsis:{type:Boolean,default:!1},color:String,backgroundColor:String,borderColor:String,icon:String}}),d=e.defineComponent({name:"AvTag",template:'<div class="av-tag-stub" />',props:["label","link","tagName","icon","disabled","small","iconOnly","selectable","selected","value"]}),r=e.defineComponent({name:"AvFieldset",props:["id","legend","legendId","class","ariaLive"],template:"<fieldset><slot /></fieldset>"}),c=e.defineComponent({name:"AvIcon",props:["name","color","size","title","animation"],template:'<div class="av-vicon-stub" />'}),p=e.defineComponent({name:"AvIconText",template:'<div class="av-icon-text" />',props:["icon","text","icon-color","text-color"]}),u=e.defineComponent({name:"AvAccordion",props:["title","icon"],template:`
|
|
7
|
+
</div>`,props:{label:String,small:{type:Boolean,default:!1},ellipsis:{type:Boolean,default:!1},color:String,backgroundColor:String,borderColor:String,icon:String}}),d=e.defineComponent({name:"AvTag",template:'<div class="av-tag-stub" />',props:["label","link","tagName","icon","disabled","small","iconOnly","selectable","selected","value"]}),r=e.defineComponent({name:"AvFieldset",props:["id","legend","legendId","class","ariaLive"],template:"<fieldset><slot /></fieldset>"}),c=e.defineComponent({name:"AvIcon",props:["name","color","size","title","animation"],template:'<div class="av-vicon-stub" />'}),p=e.defineComponent({name:"AvIconText",template:'<div class="av-icon-text" />',props:["icon","text","icon-color","text-color"]}),u=e.defineComponent({name:"AvCard",props:{titleOnly:{type:Boolean,default:!1},baclgroundColor:{type:String,default:"var(--card)"},borderColor:{type:String,default:"var(--stroke)"},titleBackground:{type:String,default:"var(--surface-background)"},titleHeight:{type:String},collapsible:{type:Boolean,default:!1},collapsed:{type:Boolean,default:!1}},template:'<div class="av-card"><slot name="title" /><slot /></div>'}),m=e.defineComponent({name:"AvAccordion",props:["title","icon"],template:`
|
|
8
8
|
<div class="av-accordion">
|
|
9
9
|
<button
|
|
10
10
|
class="av-accordion__btn"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<slot />
|
|
16
16
|
</button>
|
|
17
17
|
</div>
|
|
18
|
-
`,setup(
|
|
18
|
+
`,setup(o){const t=e.inject(l.registerAccordionKey);if(!t){const n=e.ref(!1);return{isActive:n,expand:()=>{n.value=!n.value}}}const{isActive:a,expand:i}=t(e.toRef(o,"title"));return{isActive:a,expand:i}}}),v=e.defineComponent({name:"AvButton",props:{variant:{type:String,default:"DEFAULT"},theme:{type:String,default:"PRIMARY"},isLoading:{type:Boolean,default:!1},iconScale:{type:Number},noRadius:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},label:{type:String,required:!0},iconOnly:{type:Boolean,default:!1},small:{type:Boolean,default:!1},icon:{type:[String,Object]},noSentenceCase:{type:Boolean,default:!1}},emits:["click"],template:`
|
|
19
19
|
<button
|
|
20
20
|
class="av-button-stub"
|
|
21
21
|
:disabled="disabled"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
>
|
|
24
24
|
{{ label }}
|
|
25
25
|
</button>
|
|
26
|
-
`}),
|
|
26
|
+
`}),b=e.defineComponent({name:"AvCancelConfirmButtons",props:["cancelLabel","cancelIcon","confirmLabel","cancelDisabled","cancelIsLoading","confirmIcon","confirmDisabled","confirmIsLoading"],emits:["cancel","confirm"],template:`
|
|
27
27
|
<div class="av-cancel-confirmation-buttons-stub" >
|
|
28
28
|
<button
|
|
29
29
|
class="cancel"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
{{ confirmLabel }}
|
|
39
39
|
</button>
|
|
40
40
|
</div>
|
|
41
|
-
`}),
|
|
41
|
+
`}),g=e.defineComponent({name:"AvCheckbox",props:{id:{type:String,default:""},name:{type:String,default:"checkbox"},value:{type:[String,Number,Boolean],required:!0},modelValue:{type:Array,required:!0},label:{type:String,default:""}},emits:["update:modelValue"],template:`
|
|
42
42
|
<div class="av-checkbox-stub">
|
|
43
43
|
<input
|
|
44
44
|
type="checkbox"
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
/>
|
|
55
55
|
<label :for="id"><slot name="label">{{ label }}</slot></label>
|
|
56
56
|
</div>
|
|
57
|
-
`}),
|
|
57
|
+
`}),S=e.defineComponent({name:"AvInput",props:{modelValue:String,label:String,labelClass:String,placeholder:String,isValid:Boolean,isTextarea:Boolean,labelVisible:Boolean,disabled:Boolean,required:Boolean,maxlength:Number,minlength:Number,errorMessage:String,validMessage:String,prefixIcon:String,id:String,descriptionId:String,hint:String,type:String,minDate:String,maxDate:String,width:String,noRadius:Boolean,modelModifiers:Object,textareaMinHeight:String},emits:["update:modelValue"],template:'<input data-testid="av-input-stub" :value="modelValue" :placeholder="placeholder" :disabled="disabled" :required="required" :maxlength="maxlength" /><slot name="customCaptions" :current-value="modelValue" />'}),f=e.defineComponent({name:"AvList",props:["size"],template:`
|
|
58
58
|
<div class="av-list-stub">
|
|
59
59
|
<slot />
|
|
60
60
|
</div>`}),A=e.defineComponent({name:"AvListItem",props:["clickable","hoverBackgroundColor","selected","icon","iconSize","iconColor","colorOnHover"],emits:["click"],template:`
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
@click="$emit('click')"
|
|
64
64
|
>
|
|
65
65
|
<slot />
|
|
66
|
-
</div>`}),
|
|
66
|
+
</div>`}),C=e.defineComponent({name:"AvTagPicker",props:["label","options","selected","handleSelectChange"],template:`
|
|
67
67
|
<div class="av-tag-picker-stub">
|
|
68
68
|
<button
|
|
69
69
|
v-for="option in options"
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
:toggle="() => {}"
|
|
86
86
|
/>
|
|
87
87
|
</div>
|
|
88
|
-
`}),
|
|
88
|
+
`}),y=e.defineComponent({name:"AvSelect",props:{modelValue:[String,Number],options:Array,placeholder:String,dense:Boolean,required:Boolean,disabled:Boolean,hint:String,errorMessage:String,successMessage:String},emits:["update:modelValue"],template:`
|
|
89
89
|
<select
|
|
90
90
|
class="av-select-stub"
|
|
91
91
|
:value="modelValue"
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
<span v-if="errorMessage">{{ errorMessage }}</span>
|
|
111
111
|
<span v-if="!errorMessage && successMessage">{{ successMessage }}</span>
|
|
112
112
|
</select>
|
|
113
|
-
`}),
|
|
113
|
+
`}),B=e.defineComponent({name:"AvToggle",props:["id","name","modelValue","description","activeText","inactiveText","disabled"],emits:["update:modelValue"],template:`
|
|
114
114
|
<div class="av-toggle">
|
|
115
115
|
<input
|
|
116
116
|
type="checkbox"
|
|
@@ -128,12 +128,12 @@
|
|
|
128
128
|
<span class="inactive-text">
|
|
129
129
|
{{ inactiveText }}
|
|
130
130
|
</span>
|
|
131
|
-
</div>`}),k=e.defineComponent({name:"AvBreadcrumb",template:'<div class="av-breadcrumb-stub" />',props:["links","navigationLabel","showBreadcrumbLabel"]}),
|
|
131
|
+
</div>`}),k=e.defineComponent({name:"AvBreadcrumb",template:'<div class="av-breadcrumb-stub" />',props:["links","navigationLabel","showBreadcrumbLabel"]}),x=e.defineComponent({name:"AvSideNavigation",props:{items:Array,selectedItem:String,isSideMenuCollapsed:Boolean,collapsedWidth:String},emits:["update:selectedItem","update:isSideMenuCollapsed"],template:`
|
|
132
132
|
<div
|
|
133
133
|
class="av-side-navigation-stub"
|
|
134
134
|
@click="$emit('update:isSideMenuCollapsed', !isSideMenuCollapsed)"
|
|
135
135
|
/>
|
|
136
|
-
`}),
|
|
136
|
+
`}),I=e.defineComponent({name:"AvStepper",props:{steps:{type:Array,required:!0},currentStep:{type:Number,required:!0}},template:`
|
|
137
137
|
<div class="av-stepper-stub">
|
|
138
138
|
<div
|
|
139
139
|
v-for="(step, index) in steps"
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
<slot />
|
|
150
150
|
<slot name="footer" />
|
|
151
151
|
</div>
|
|
152
|
-
`}),
|
|
152
|
+
`}),L=e.defineComponent({name:"AvDropdown",props:["items","triggerAriaLabel","triggerIcon","triggerLabel","triggerVariant","triggerSmall","padding"],emits:["itemSelected"],template:`
|
|
153
153
|
<div class="av-dropdown-stub">
|
|
154
154
|
<button
|
|
155
155
|
v-for="item in items"
|
|
@@ -160,10 +160,10 @@
|
|
|
160
160
|
{{ item.label }}
|
|
161
161
|
</button>
|
|
162
162
|
</div>
|
|
163
|
-
`}),
|
|
163
|
+
`}),M=e.defineComponent({name:"AvModal",props:["opened","closeButtonLabel","confirmButtonLabel","confirmButtonIcon"],emits:["close","confirm"],template:`
|
|
164
164
|
<div class="av-modal">
|
|
165
165
|
<slot name="header"></slot>
|
|
166
166
|
<slot />
|
|
167
167
|
<slot name="footer"></slot>
|
|
168
168
|
</div>
|
|
169
|
-
`});function
|
|
169
|
+
`});function T(){return{given(o,t){return describe(`🔵 GIVEN ${o}`,t),this},when(o,t){return describe(`🔶 WHEN ${o}`,t),this},and(o,t){return describe(`➕ AND ${o}`,t),this},then(o,t){return it(`🟩 THEN ${o}`,t),this}}}exports.AvAccordionStub=m;exports.AvAutocompleteStub=h;exports.AvBadgeStub=s;exports.AvBreadcrumbStub=k;exports.AvButtonStub=v;exports.AvCancelConfirmButtonsStub=b;exports.AvCardStub=u;exports.AvCheckboxStub=g;exports.AvDrawerStub=V;exports.AvDropdownStub=L;exports.AvFieldsetStub=r;exports.AvIconStub=c;exports.AvIconTextStub=p;exports.AvInputStub=S;exports.AvListItemStub=A;exports.AvListStub=f;exports.AvModalStub=M;exports.AvSelectStub=y;exports.AvSideNavigationStub=x;exports.AvStepperStub=I;exports.AvTagPickerStub=C;exports.AvTagStub=d;exports.AvToggleStub=B;exports.BddTest=T;
|
package/dist/test-utils.es.js
CHANGED
|
@@ -48,11 +48,23 @@ const v = e({
|
|
|
48
48
|
name: "AvIcon",
|
|
49
49
|
props: ["name", "color", "size", "title", "animation"],
|
|
50
50
|
template: '<div class="av-vicon-stub" />'
|
|
51
|
-
}),
|
|
51
|
+
}), f = e({
|
|
52
52
|
name: "AvIconText",
|
|
53
53
|
template: '<div class="av-icon-text" />',
|
|
54
54
|
props: ["icon", "text", "icon-color", "text-color"]
|
|
55
|
-
}),
|
|
55
|
+
}), A = e({
|
|
56
|
+
name: "AvCard",
|
|
57
|
+
props: {
|
|
58
|
+
titleOnly: { type: Boolean, default: !1 },
|
|
59
|
+
baclgroundColor: { type: String, default: "var(--card)" },
|
|
60
|
+
borderColor: { type: String, default: "var(--stroke)" },
|
|
61
|
+
titleBackground: { type: String, default: "var(--surface-background)" },
|
|
62
|
+
titleHeight: { type: String },
|
|
63
|
+
collapsible: { type: Boolean, default: !1 },
|
|
64
|
+
collapsed: { type: Boolean, default: !1 }
|
|
65
|
+
},
|
|
66
|
+
template: '<div class="av-card"><slot name="title" /><slot /></div>'
|
|
67
|
+
}), h = e({
|
|
56
68
|
name: "AvAccordion",
|
|
57
69
|
props: ["title", "icon"],
|
|
58
70
|
template: `
|
|
@@ -70,17 +82,29 @@ const v = e({
|
|
|
70
82
|
setup(a) {
|
|
71
83
|
const t = n(c);
|
|
72
84
|
if (!t) {
|
|
73
|
-
const
|
|
74
|
-
return { isActive:
|
|
75
|
-
|
|
85
|
+
const o = s(!1);
|
|
86
|
+
return { isActive: o, expand: () => {
|
|
87
|
+
o.value = !o.value;
|
|
76
88
|
} };
|
|
77
89
|
}
|
|
78
|
-
const { isActive:
|
|
79
|
-
return { isActive:
|
|
90
|
+
const { isActive: l, expand: i } = t(r(a, "title"));
|
|
91
|
+
return { isActive: l, expand: i };
|
|
80
92
|
}
|
|
81
|
-
}),
|
|
93
|
+
}), y = e({
|
|
82
94
|
name: "AvButton",
|
|
83
|
-
props:
|
|
95
|
+
props: {
|
|
96
|
+
variant: { type: String, default: "DEFAULT" },
|
|
97
|
+
theme: { type: String, default: "PRIMARY" },
|
|
98
|
+
isLoading: { type: Boolean, default: !1 },
|
|
99
|
+
iconScale: { type: Number },
|
|
100
|
+
noRadius: { type: Boolean, default: !1 },
|
|
101
|
+
disabled: { type: Boolean, default: !1 },
|
|
102
|
+
label: { type: String, required: !0 },
|
|
103
|
+
iconOnly: { type: Boolean, default: !1 },
|
|
104
|
+
small: { type: Boolean, default: !1 },
|
|
105
|
+
icon: { type: [String, Object] },
|
|
106
|
+
noSentenceCase: { type: Boolean, default: !1 }
|
|
107
|
+
},
|
|
84
108
|
emits: ["click"],
|
|
85
109
|
template: `
|
|
86
110
|
<button
|
|
@@ -91,7 +115,7 @@ const v = e({
|
|
|
91
115
|
{{ label }}
|
|
92
116
|
</button>
|
|
93
117
|
`
|
|
94
|
-
}),
|
|
118
|
+
}), k = e({
|
|
95
119
|
name: "AvCancelConfirmButtons",
|
|
96
120
|
props: [
|
|
97
121
|
"cancelLabel",
|
|
@@ -120,7 +144,7 @@ const v = e({
|
|
|
120
144
|
</button>
|
|
121
145
|
</div>
|
|
122
146
|
`
|
|
123
|
-
}),
|
|
147
|
+
}), x = e({
|
|
124
148
|
name: "AvCheckbox",
|
|
125
149
|
props: {
|
|
126
150
|
id: { type: String, default: "" },
|
|
@@ -147,7 +171,7 @@ const v = e({
|
|
|
147
171
|
<label :for="id"><slot name="label">{{ label }}</slot></label>
|
|
148
172
|
</div>
|
|
149
173
|
`
|
|
150
|
-
}),
|
|
174
|
+
}), B = e({
|
|
151
175
|
name: "AvInput",
|
|
152
176
|
props: {
|
|
153
177
|
modelValue: String,
|
|
@@ -177,7 +201,7 @@ const v = e({
|
|
|
177
201
|
},
|
|
178
202
|
emits: ["update:modelValue"],
|
|
179
203
|
template: '<input data-testid="av-input-stub" :value="modelValue" :placeholder="placeholder" :disabled="disabled" :required="required" :maxlength="maxlength" /><slot name="customCaptions" :current-value="modelValue" />'
|
|
180
|
-
}),
|
|
204
|
+
}), C = e({
|
|
181
205
|
name: "AvList",
|
|
182
206
|
props: ["size"],
|
|
183
207
|
template: `
|
|
@@ -195,7 +219,7 @@ const v = e({
|
|
|
195
219
|
>
|
|
196
220
|
<slot />
|
|
197
221
|
</div>`
|
|
198
|
-
}),
|
|
222
|
+
}), I = e({
|
|
199
223
|
name: "AvTagPicker",
|
|
200
224
|
props: [
|
|
201
225
|
"label",
|
|
@@ -215,7 +239,7 @@ const v = e({
|
|
|
215
239
|
</button>
|
|
216
240
|
</div>
|
|
217
241
|
`
|
|
218
|
-
}),
|
|
242
|
+
}), L = e({
|
|
219
243
|
name: "AvAutocomplete",
|
|
220
244
|
props: [
|
|
221
245
|
"modelValue",
|
|
@@ -242,7 +266,7 @@ const v = e({
|
|
|
242
266
|
/>
|
|
243
267
|
</div>
|
|
244
268
|
`
|
|
245
|
-
}),
|
|
269
|
+
}), M = e({
|
|
246
270
|
name: "AvSelect",
|
|
247
271
|
props: {
|
|
248
272
|
modelValue: [String, Number],
|
|
@@ -282,7 +306,7 @@ const v = e({
|
|
|
282
306
|
<span v-if="!errorMessage && successMessage">{{ successMessage }}</span>
|
|
283
307
|
</select>
|
|
284
308
|
`
|
|
285
|
-
}),
|
|
309
|
+
}), T = e({
|
|
286
310
|
name: "AvToggle",
|
|
287
311
|
props: ["id", "name", "modelValue", "description", "activeText", "inactiveText", "disabled"],
|
|
288
312
|
emits: ["update:modelValue"],
|
|
@@ -305,11 +329,11 @@ const v = e({
|
|
|
305
329
|
{{ inactiveText }}
|
|
306
330
|
</span>
|
|
307
331
|
</div>`
|
|
308
|
-
}),
|
|
332
|
+
}), $ = e({
|
|
309
333
|
name: "AvBreadcrumb",
|
|
310
334
|
template: '<div class="av-breadcrumb-stub" />',
|
|
311
335
|
props: ["links", "navigationLabel", "showBreadcrumbLabel"]
|
|
312
|
-
}),
|
|
336
|
+
}), N = e({
|
|
313
337
|
name: "AvSideNavigation",
|
|
314
338
|
props: {
|
|
315
339
|
items: Array,
|
|
@@ -348,7 +372,7 @@ const v = e({
|
|
|
348
372
|
</div>
|
|
349
373
|
</div>
|
|
350
374
|
`
|
|
351
|
-
}),
|
|
375
|
+
}), q = e({
|
|
352
376
|
name: "AvDrawer",
|
|
353
377
|
props: ["show", "position", "width"],
|
|
354
378
|
emits: ["escape-pressed"],
|
|
@@ -358,7 +382,7 @@ const v = e({
|
|
|
358
382
|
<slot name="footer" />
|
|
359
383
|
</div>
|
|
360
384
|
`
|
|
361
|
-
}),
|
|
385
|
+
}), D = e({
|
|
362
386
|
name: "AvDropdown",
|
|
363
387
|
props: ["items", "triggerAriaLabel", "triggerIcon", "triggerLabel", "triggerVariant", "triggerSmall", "padding"],
|
|
364
388
|
emits: ["itemSelected"],
|
|
@@ -374,7 +398,7 @@ const v = e({
|
|
|
374
398
|
</button>
|
|
375
399
|
</div>
|
|
376
400
|
`
|
|
377
|
-
}),
|
|
401
|
+
}), O = e({
|
|
378
402
|
name: "AvModal",
|
|
379
403
|
props: ["opened", "closeButtonLabel", "confirmButtonLabel", "confirmButtonIcon"],
|
|
380
404
|
emits: ["close", "confirm"],
|
|
@@ -386,7 +410,7 @@ const v = e({
|
|
|
386
410
|
</div>
|
|
387
411
|
`
|
|
388
412
|
});
|
|
389
|
-
function
|
|
413
|
+
function H() {
|
|
390
414
|
return {
|
|
391
415
|
given(a, t) {
|
|
392
416
|
return describe(`🔵 GIVEN ${a}`, t), this;
|
|
@@ -403,27 +427,28 @@ function O() {
|
|
|
403
427
|
};
|
|
404
428
|
}
|
|
405
429
|
export {
|
|
406
|
-
|
|
407
|
-
|
|
430
|
+
h as AvAccordionStub,
|
|
431
|
+
L as AvAutocompleteStub,
|
|
408
432
|
v as AvBadgeStub,
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
q as
|
|
433
|
+
$ as AvBreadcrumbStub,
|
|
434
|
+
y as AvButtonStub,
|
|
435
|
+
k as AvCancelConfirmButtonsStub,
|
|
436
|
+
A as AvCardStub,
|
|
437
|
+
x as AvCheckboxStub,
|
|
438
|
+
q as AvDrawerStub,
|
|
439
|
+
D as AvDropdownStub,
|
|
415
440
|
g as AvFieldsetStub,
|
|
416
441
|
S as AvIconStub,
|
|
417
|
-
|
|
418
|
-
|
|
442
|
+
f as AvIconTextStub,
|
|
443
|
+
B as AvInputStub,
|
|
419
444
|
V as AvListItemStub,
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
445
|
+
C as AvListStub,
|
|
446
|
+
O as AvModalStub,
|
|
447
|
+
M as AvSelectStub,
|
|
448
|
+
N as AvSideNavigationStub,
|
|
424
449
|
w as AvStepperStub,
|
|
425
|
-
|
|
450
|
+
I as AvTagPickerStub,
|
|
426
451
|
b as AvTagStub,
|
|
427
|
-
|
|
428
|
-
|
|
452
|
+
T as AvToggleStub,
|
|
453
|
+
H as BddTest
|
|
429
454
|
};
|
package/dist/tests/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { AvTagStub } from '@/components/badges/AvTag/AvTag.stub';
|
|
|
3
3
|
import { AvFieldsetStub } from '@/components/base/AvFieldset/AvFieldset.stub';
|
|
4
4
|
import { AvIconStub } from '@/components/base/AvIcon/AvIcon.stub';
|
|
5
5
|
import { AvIconTextStub } from '@/components/base/AvIconText/AvIconText.stub';
|
|
6
|
+
import { AvCardStub } from '@/components/cards/AvCard/AvCard.stub';
|
|
6
7
|
import { AvAccordionStub } from '@/components/interaction/accordions/AvAccordion/AvAccordion.stub';
|
|
7
8
|
import { AvButtonStub } from '@/components/interaction/buttons/AvButton/AvButton.stub';
|
|
8
9
|
import { AvCancelConfirmButtonsStub } from '@/components/interaction/buttons/AvCancelConfirmButtons/AvCancelConfirmButtons.stub';
|
|
@@ -21,4 +22,4 @@ import { AvDrawerStub } from '@/components/overlay/drawers/AvDrawer/AvDrawer.stu
|
|
|
21
22
|
import { AvDropdownStub } from '@/components/overlay/dropdowns/AvDropdown/AvDropdown.stub';
|
|
22
23
|
import { AvModalStub } from '@/components/overlay/modals/AvModal/AvModal.stub';
|
|
23
24
|
import { BddTest } from '@/tests/utils';
|
|
24
|
-
export { AvAccordionStub, AvAutocompleteStub, AvBadgeStub, AvBreadcrumbStub, AvButtonStub, AvCancelConfirmButtonsStub, AvCheckboxStub, AvDrawerStub, AvDropdownStub, AvFieldsetStub, AvIconStub, AvIconTextStub, AvInputStub, AvListItemStub, AvListStub, AvModalStub, AvSelectStub, AvSideNavigationStub, AvStepperStub, AvTagPickerStub, AvTagStub, AvToggleStub, BddTest, };
|
|
25
|
+
export { AvAccordionStub, AvAutocompleteStub, AvBadgeStub, AvBreadcrumbStub, AvButtonStub, AvCancelConfirmButtonsStub, AvCardStub, AvCheckboxStub, AvDrawerStub, AvDropdownStub, AvFieldsetStub, AvIconStub, AvIconTextStub, AvInputStub, AvListItemStub, AvListStub, AvModalStub, AvSelectStub, AvSideNavigationStub, AvStepperStub, AvTagPickerStub, AvTagStub, AvToggleStub, BddTest, };
|