@avenirs-esr/avenirs-dsav 0.1.42 → 0.1.43
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/avenirs-dsav.es.js +973 -962
- package/dist/avenirs-dsav.umd.js +6 -6
- package/dist/components/interaction/buttons/AvCancelConfirmButtons/AvCancelConfirmButtons.stories.d.ts +6 -0
- package/dist/components/interaction/buttons/AvCancelConfirmButtons/AvCancelConfirmButtons.vue.d.ts +14 -2
- package/dist/components/overlay/modals/AvModal/AvModal.vue.d.ts +13 -0
- package/package.json +1 -1
|
@@ -36,3 +36,9 @@ export default meta;
|
|
|
36
36
|
export declare const Default: StoryFn<AvCancelConfirmButtonsProps>;
|
|
37
37
|
export declare const CancelOnly: StoryFn<AvCancelConfirmButtonsProps>;
|
|
38
38
|
export declare const ConfirmOnly: StoryFn<AvCancelConfirmButtonsProps>;
|
|
39
|
+
export declare const CancelDisabled: StoryFn<AvCancelConfirmButtonsProps>;
|
|
40
|
+
export declare const ConfirmDisabled: StoryFn<AvCancelConfirmButtonsProps>;
|
|
41
|
+
export declare const BothDisabled: StoryFn<AvCancelConfirmButtonsProps>;
|
|
42
|
+
export declare const CancelLoading: StoryFn<AvCancelConfirmButtonsProps>;
|
|
43
|
+
export declare const ConfirmLoading: StoryFn<AvCancelConfirmButtonsProps>;
|
|
44
|
+
export declare const BothLoading: StoryFn<AvCancelConfirmButtonsProps>;
|
package/dist/components/interaction/buttons/AvCancelConfirmButtons/AvCancelConfirmButtons.vue.d.ts
CHANGED
|
@@ -11,6 +11,14 @@ export interface AvCancelConfirmButtonsProps {
|
|
|
11
11
|
* @default 'mdi:close-circle-outline'
|
|
12
12
|
*/
|
|
13
13
|
cancelIcon?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Adds a disabled state on the cancel button.
|
|
16
|
+
*/
|
|
17
|
+
cancelDisabled?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Adds a loading state on the cancel button.
|
|
20
|
+
*/
|
|
21
|
+
cancelIsLoading?: boolean;
|
|
14
22
|
/**
|
|
15
23
|
* Label and title (for accessibility) of the confirm button.
|
|
16
24
|
*/
|
|
@@ -21,9 +29,13 @@ export interface AvCancelConfirmButtonsProps {
|
|
|
21
29
|
*/
|
|
22
30
|
confirmIcon?: string;
|
|
23
31
|
/**
|
|
24
|
-
* Adds a
|
|
32
|
+
* Adds a disabled state on the confirm button.
|
|
33
|
+
*/
|
|
34
|
+
confirmDisabled?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Adds a loading state on the confirm button.
|
|
25
37
|
*/
|
|
26
|
-
|
|
38
|
+
confirmIsLoading?: boolean;
|
|
27
39
|
}
|
|
28
40
|
declare const _default: import("vue").DefineComponent<AvCancelConfirmButtonsProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
29
41
|
cancel: () => any;
|
|
@@ -38,6 +38,15 @@ export interface AvModalProps {
|
|
|
38
38
|
* Label and title (for accessibility) of the close button.
|
|
39
39
|
*/
|
|
40
40
|
closeButtonLabel: string;
|
|
41
|
+
/**
|
|
42
|
+
* Icon name of the confirm button.
|
|
43
|
+
* @default 'mdi:close-circle-outline'
|
|
44
|
+
*/
|
|
45
|
+
closeButtonIcon?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Adds a disabled state on the close button.
|
|
48
|
+
*/
|
|
49
|
+
closeButtonDisabled?: boolean;
|
|
41
50
|
/**
|
|
42
51
|
* Label and title (for accessibility) of the confirm button.
|
|
43
52
|
*/
|
|
@@ -47,6 +56,10 @@ export interface AvModalProps {
|
|
|
47
56
|
* @default 'mdi:check-circle-outline'
|
|
48
57
|
*/
|
|
49
58
|
confirmButtonIcon?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Adds a disabled state on the confirm button.
|
|
61
|
+
*/
|
|
62
|
+
confirmButtonDisabled?: boolean;
|
|
50
63
|
/**
|
|
51
64
|
* Adds a loading state on the close button.
|
|
52
65
|
*/
|