sprintify-ui 0.0.44 → 0.0.45
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
|
@@ -7686,7 +7686,7 @@ const Zo = /* @__PURE__ */ Pe(xd, [["render", Sd]]), $d = ["data-name"], Xo = /*
|
|
|
7686
7686
|
props: {
|
|
7687
7687
|
modelValue: {
|
|
7688
7688
|
default: void 0,
|
|
7689
|
-
type: String
|
|
7689
|
+
type: [String, null, void 0]
|
|
7690
7690
|
},
|
|
7691
7691
|
type: {
|
|
7692
7692
|
type: String,
|
|
@@ -7740,7 +7740,7 @@ const Zo = /* @__PURE__ */ Pe(xd, [["render", Sd]]), $d = ["data-name"], Xo = /*
|
|
|
7740
7740
|
return Kr(f) ? Ot(f) : "";
|
|
7741
7741
|
}
|
|
7742
7742
|
return (p, f) => (x(), L("textarea", {
|
|
7743
|
-
value: e.modelValue,
|
|
7743
|
+
value: e.modelValue + "",
|
|
7744
7744
|
type: e.type,
|
|
7745
7745
|
name: h(l),
|
|
7746
7746
|
placeholder: e.placeholder,
|
|
@@ -2,7 +2,7 @@ import { PropType } from 'vue';
|
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
modelValue: {
|
|
4
4
|
default: undefined;
|
|
5
|
-
type: PropType<string | undefined>;
|
|
5
|
+
type: PropType<string | null | undefined>;
|
|
6
6
|
};
|
|
7
7
|
type: {
|
|
8
8
|
type: StringConstructor;
|
|
@@ -43,7 +43,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
43
43
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
44
|
modelValue: {
|
|
45
45
|
default: undefined;
|
|
46
|
-
type: PropType<string | undefined>;
|
|
46
|
+
type: PropType<string | null | undefined>;
|
|
47
47
|
};
|
|
48
48
|
type: {
|
|
49
49
|
type: StringConstructor;
|
|
@@ -87,7 +87,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
87
87
|
required: boolean;
|
|
88
88
|
type: string;
|
|
89
89
|
name: string;
|
|
90
|
-
modelValue: string | undefined;
|
|
90
|
+
modelValue: string | null | undefined;
|
|
91
91
|
placeholder: string;
|
|
92
92
|
disabled: boolean;
|
|
93
93
|
hasError: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<textarea
|
|
3
|
-
:value="modelValue"
|
|
3
|
+
:value="modelValue + ''"
|
|
4
4
|
:type="type"
|
|
5
5
|
:name="nameInternal"
|
|
6
6
|
:placeholder="placeholder"
|
|
@@ -21,7 +21,7 @@ import { PropType } from 'vue';
|
|
|
21
21
|
const props = defineProps({
|
|
22
22
|
modelValue: {
|
|
23
23
|
default: undefined,
|
|
24
|
-
type: String as PropType<string | undefined>,
|
|
24
|
+
type: [String, null, undefined] as PropType<string | null | undefined>,
|
|
25
25
|
},
|
|
26
26
|
type: {
|
|
27
27
|
type: String,
|