sprintify-ui 0.0.125 → 0.0.126
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
|
@@ -10901,8 +10901,8 @@ const El = /* @__PURE__ */ new WeakMap(), Ol = (e) => {
|
|
|
10901
10901
|
__name: "BaseFieldI18n",
|
|
10902
10902
|
props: {
|
|
10903
10903
|
modelValue: {
|
|
10904
|
-
default:
|
|
10905
|
-
type: [Object, null
|
|
10904
|
+
default: null,
|
|
10905
|
+
type: [Object, null]
|
|
10906
10906
|
},
|
|
10907
10907
|
locales: {
|
|
10908
10908
|
default: void 0,
|
|
@@ -2,10 +2,10 @@ import { Locales } from '@/types';
|
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
3
|
declare const _default: import("vue").DefineComponent<{
|
|
4
4
|
modelValue: {
|
|
5
|
-
default:
|
|
5
|
+
default: null;
|
|
6
6
|
type: PropType<{
|
|
7
7
|
[locale: string]: string | number | boolean;
|
|
8
|
-
} | null
|
|
8
|
+
} | null>;
|
|
9
9
|
};
|
|
10
10
|
locales: {
|
|
11
11
|
default: undefined;
|
|
@@ -41,10 +41,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
41
41
|
};
|
|
42
42
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
43
43
|
modelValue: {
|
|
44
|
-
default:
|
|
44
|
+
default: null;
|
|
45
45
|
type: PropType<{
|
|
46
46
|
[locale: string]: string | number | boolean;
|
|
47
|
-
} | null
|
|
47
|
+
} | null>;
|
|
48
48
|
};
|
|
49
49
|
locales: {
|
|
50
50
|
default: undefined;
|
|
@@ -87,7 +87,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
87
87
|
defaultValue: string | number | boolean;
|
|
88
88
|
modelValue: {
|
|
89
89
|
[locale: string]: string | number | boolean;
|
|
90
|
-
} | null
|
|
90
|
+
} | null;
|
|
91
91
|
hasError: boolean;
|
|
92
92
|
component: "BaseInput" | "BaseTextarea";
|
|
93
93
|
locales: Locales;
|
package/package.json
CHANGED
|
@@ -55,8 +55,8 @@ type Value = { [locale: string]: string | number | boolean };
|
|
|
55
55
|
|
|
56
56
|
const props = defineProps({
|
|
57
57
|
modelValue: {
|
|
58
|
-
default:
|
|
59
|
-
type: [Object, null
|
|
58
|
+
default: null,
|
|
59
|
+
type: [Object, null] as PropType<Value | null>,
|
|
60
60
|
},
|
|
61
61
|
locales: {
|
|
62
62
|
default: undefined,
|