@avenirs-esr/avenirs-dsav 0.1.78 → 0.1.80
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/base/AvIcon/AvIcon.vue.d.ts +1 -13
- package/dist/components/interaction/buttons/AvButton/AvButton.stub.d.ts +2 -2
- package/dist/components/interaction/buttons/AvCancelConfirmButtons/AvCancelConfirmButtons.vue.d.ts +4 -0
- package/dist/components/interaction/selects/AvAutocomplete/AvAutocomplete.stories.d.ts +6 -1
- package/dist/index.cjs.js +5 -5
- package/dist/index.es.js +2883 -4056
- package/dist/test-utils.cjs.js +1 -1
- package/dist/test-utils.es.js +1 -1
- package/dist/tokens/icons.d.ts +19 -1
- package/dist/utils/storybook.d.ts +4 -0
- package/package.json +4 -2
- package/src/styles/components/_icons.scss +100 -0
- package/src/styles/main.scss +1 -0
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* AvIcon component props.
|
|
3
|
-
*/
|
|
4
1
|
export interface AvIconProps {
|
|
5
2
|
/**
|
|
6
3
|
* The size in rem of the icon.
|
|
@@ -26,11 +23,7 @@ export interface AvIconProps {
|
|
|
26
23
|
*/
|
|
27
24
|
flip?: 'horizontal' | 'vertical' | 'both';
|
|
28
25
|
/**
|
|
29
|
-
*
|
|
30
|
-
*/
|
|
31
|
-
label?: string;
|
|
32
|
-
/**
|
|
33
|
-
* Icon title (`<title>` tag), used for accessibility and tooltips.
|
|
26
|
+
* Icon title used for accessibility and tooltips.
|
|
34
27
|
*/
|
|
35
28
|
title?: string;
|
|
36
29
|
/**
|
|
@@ -38,11 +31,6 @@ export interface AvIconProps {
|
|
|
38
31
|
* @default 'inherit'
|
|
39
32
|
*/
|
|
40
33
|
color?: string;
|
|
41
|
-
/**
|
|
42
|
-
* Enables server-side rendering.
|
|
43
|
-
* @default true
|
|
44
|
-
*/
|
|
45
|
-
ssr?: boolean;
|
|
46
34
|
}
|
|
47
35
|
declare const _default: import("vue").DefineComponent<AvIconProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AvIconProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
48
36
|
export default _default;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export declare const AvButtonStub: import("vue").DefineComponent<{
|
|
2
2
|
label?: any;
|
|
3
|
-
|
|
3
|
+
small?: any;
|
|
4
4
|
type?: any;
|
|
5
5
|
variant?: any;
|
|
6
6
|
isLoading?: any;
|
|
7
7
|
disabled?: any;
|
|
8
8
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<{
|
|
9
9
|
label?: any;
|
|
10
|
-
|
|
10
|
+
small?: any;
|
|
11
11
|
type?: any;
|
|
12
12
|
variant?: any;
|
|
13
13
|
isLoading?: any;
|
package/dist/components/interaction/buttons/AvCancelConfirmButtons/AvCancelConfirmButtons.vue.d.ts
CHANGED
|
@@ -36,6 +36,10 @@ export interface AvCancelConfirmButtonsProps {
|
|
|
36
36
|
* Adds a loading state on the confirm button.
|
|
37
37
|
*/
|
|
38
38
|
confirmIsLoading?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Associates the confirm button with a form.
|
|
41
|
+
*/
|
|
42
|
+
form?: string;
|
|
39
43
|
}
|
|
40
44
|
declare const _default: import("vue").DefineComponent<AvCancelConfirmButtonsProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
41
45
|
cancel: () => any;
|
|
@@ -503,6 +503,7 @@ export declare const WithCustomItemSlotExample: {
|
|
|
503
503
|
BOOK_LOCATION_OUTLINE: string;
|
|
504
504
|
BRIEFCASE_VARIANT_OUTLINE: string;
|
|
505
505
|
CALENDAR_MONTH_OUTLINE: string;
|
|
506
|
+
CALENDAR_OUTLINE: string;
|
|
506
507
|
CHART_TIMELINE_VARIANT_SHIMMER: string;
|
|
507
508
|
CHAT_ALERT: string;
|
|
508
509
|
CHAT_BUBBLE_OUTLINE: string;
|
|
@@ -520,6 +521,7 @@ export declare const WithCustomItemSlotExample: {
|
|
|
520
521
|
DIAMOND_STONE: string;
|
|
521
522
|
DOTS_VERTICAL: string;
|
|
522
523
|
ELECTRON_FRAMEWORK: string;
|
|
524
|
+
EMAIL_OUTLINE: string;
|
|
523
525
|
FAMILY: string;
|
|
524
526
|
FILE: string;
|
|
525
527
|
FILE_ACCOUNT_OUTLINE: string;
|
|
@@ -539,9 +541,11 @@ export declare const WithCustomItemSlotExample: {
|
|
|
539
541
|
INFORMATION_BOX_OUTLINE: string;
|
|
540
542
|
INFORMATION_OUTLINE: string;
|
|
541
543
|
LINK: string;
|
|
542
|
-
|
|
544
|
+
LOADING: string;
|
|
545
|
+
LOCK_OUTLINE: string;
|
|
543
546
|
LOGOUT: string;
|
|
544
547
|
MAGNIFY: string;
|
|
548
|
+
MAP_MARKER_OUTLINE: string;
|
|
545
549
|
NAVIGATE_BEFORE: string;
|
|
546
550
|
NAVIGATE_NEXT: string;
|
|
547
551
|
NOTEBOOK_CHECK: string;
|
|
@@ -550,6 +554,7 @@ export declare const WithCustomItemSlotExample: {
|
|
|
550
554
|
PAGE_LAST: string;
|
|
551
555
|
PENCIL_OUTLINE: string;
|
|
552
556
|
PEOPLE_GROUP_OUTLINE: string;
|
|
557
|
+
PHONE_OUTLINE: string;
|
|
553
558
|
PLUS_CIRCLE_OUTLINE: string;
|
|
554
559
|
POST_IT_NOTES_OUTLINE: string;
|
|
555
560
|
RECORD_CIRCLE_OUTLINE: string;
|