pukaad-ui-lib 1.16.0 → 1.17.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.
package/dist/module.json
CHANGED
|
@@ -36,8 +36,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
36
36
|
id: string;
|
|
37
37
|
name: string;
|
|
38
38
|
description: string;
|
|
39
|
-
placeholder: string;
|
|
40
39
|
options: AutocompleteOption[] | string[] | number[];
|
|
40
|
+
placeholder: string;
|
|
41
41
|
limit: number;
|
|
42
42
|
disabledErrorMessage: boolean;
|
|
43
43
|
disabledBorder: boolean;
|
|
@@ -36,8 +36,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
36
36
|
id: string;
|
|
37
37
|
name: string;
|
|
38
38
|
description: string;
|
|
39
|
-
placeholder: string;
|
|
40
39
|
options: AutocompleteOption[] | string[] | number[];
|
|
40
|
+
placeholder: string;
|
|
41
41
|
limit: number;
|
|
42
42
|
disabledErrorMessage: boolean;
|
|
43
43
|
disabledBorder: boolean;
|
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
AlertDialogCancel,
|
|
11
11
|
AlertDialogAction
|
|
12
12
|
} from "@/runtime/components/ui/alert-dialog";
|
|
13
|
+
import { buttonVariants } from "@/runtime/components/ui/button";
|
|
13
14
|
import Icon from "@/runtime/components/icons.vue";
|
|
14
15
|
class Alert {
|
|
15
16
|
show(options = {}) {
|
|
@@ -82,6 +83,10 @@ class Alert {
|
|
|
82
83
|
h(
|
|
83
84
|
AlertDialogAction,
|
|
84
85
|
{
|
|
86
|
+
class: buttonVariants({
|
|
87
|
+
variant: "default",
|
|
88
|
+
color: "primary"
|
|
89
|
+
}),
|
|
85
90
|
onClick: onConfirmed
|
|
86
91
|
},
|
|
87
92
|
{
|