sprintify-ui 0.6.66 → 0.6.67
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/sprintify-ui.es.js
CHANGED
|
@@ -6771,6 +6771,7 @@ const Ex = {
|
|
|
6771
6771
|
class: { type: [Array, String, null, Number, Boolean], default: "" },
|
|
6772
6772
|
loading: { type: Boolean, default: !1 },
|
|
6773
6773
|
icon: { default: "" },
|
|
6774
|
+
href: { default: void 0 },
|
|
6774
6775
|
type: { default: "submit" },
|
|
6775
6776
|
iconPosition: { default: "start" },
|
|
6776
6777
|
size: { default: "md" },
|
|
@@ -14,6 +14,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
14
14
|
type: import("vue").PropType<RouteLocationRaw>;
|
|
15
15
|
default: undefined;
|
|
16
16
|
};
|
|
17
|
+
href: {
|
|
18
|
+
type: import("vue").PropType<string>;
|
|
19
|
+
default: undefined;
|
|
20
|
+
};
|
|
17
21
|
color: {
|
|
18
22
|
type: import("vue").PropType<string>;
|
|
19
23
|
default: string;
|
|
@@ -59,6 +63,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
59
63
|
type: import("vue").PropType<RouteLocationRaw>;
|
|
60
64
|
default: undefined;
|
|
61
65
|
};
|
|
66
|
+
href: {
|
|
67
|
+
type: import("vue").PropType<string>;
|
|
68
|
+
default: undefined;
|
|
69
|
+
};
|
|
62
70
|
color: {
|
|
63
71
|
type: import("vue").PropType<string>;
|
|
64
72
|
default: string;
|
|
@@ -93,6 +101,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
93
101
|
class: string | false | 0 | ClassNameValue[] | null;
|
|
94
102
|
type: "button" | "submit" | "reset";
|
|
95
103
|
to: RouteLocationRaw;
|
|
104
|
+
href: string;
|
|
96
105
|
color: string;
|
|
97
106
|
icon: string;
|
|
98
107
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
package/package.json
CHANGED
|
@@ -91,6 +91,7 @@ const props = withDefaults(defineProps<{
|
|
|
91
91
|
class?: ClassNameValue,
|
|
92
92
|
loading?: boolean;
|
|
93
93
|
icon?: string;
|
|
94
|
+
href?: string;
|
|
94
95
|
type?: 'button' | 'submit' | 'reset';
|
|
95
96
|
iconPosition?: 'start' | 'end';
|
|
96
97
|
size?: keyof typeof sizes;
|
|
@@ -102,6 +103,7 @@ const props = withDefaults(defineProps<{
|
|
|
102
103
|
class: '',
|
|
103
104
|
loading: false,
|
|
104
105
|
icon: '',
|
|
106
|
+
href: undefined,
|
|
105
107
|
type: 'submit',
|
|
106
108
|
iconPosition: 'start',
|
|
107
109
|
size: 'md',
|