@namba_one/ui-kit-2 1.0.153 → 1.0.155
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/index.d.ts +8 -7
- package/dist/index.es.js +1 -0
- package/dist/index.umd.js +1 -1
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -573,7 +573,7 @@ declare type __VLS_PublicProps_3 = {
|
|
|
573
573
|
} & __VLS_Props_4;
|
|
574
574
|
|
|
575
575
|
declare type __VLS_PublicProps_4 = {
|
|
576
|
-
'value'?:
|
|
576
|
+
'value'?: InputProps['value'];
|
|
577
577
|
} & __VLS_Props_5;
|
|
578
578
|
|
|
579
579
|
declare type __VLS_PublicProps_5 = {
|
|
@@ -1849,7 +1849,7 @@ inputStartRef: ({
|
|
|
1849
1849
|
$: ComponentInternalInstance;
|
|
1850
1850
|
$data: {};
|
|
1851
1851
|
$props: {
|
|
1852
|
-
readonly value?:
|
|
1852
|
+
readonly value?: InputProps["value"];
|
|
1853
1853
|
readonly type?: ("text" | "password") | undefined;
|
|
1854
1854
|
readonly label?: string | undefined;
|
|
1855
1855
|
readonly description?: string | undefined;
|
|
@@ -1887,7 +1887,7 @@ $host: Element | null;
|
|
|
1887
1887
|
$emit: ((event: "blur") => void) & ((event: "update:value", value: string | null | undefined) => void) & ((event: "update:error", value: boolean) => void);
|
|
1888
1888
|
$el: HTMLDivElement;
|
|
1889
1889
|
$options: ComponentOptionsBase<Readonly<{
|
|
1890
|
-
value?:
|
|
1890
|
+
value?: InputProps["value"];
|
|
1891
1891
|
} & InputProps> & Readonly<{
|
|
1892
1892
|
onBlur?: (() => any) | undefined;
|
|
1893
1893
|
"onUpdate:value"?: ((value: string | null | undefined) => any) | undefined;
|
|
@@ -1918,7 +1918,7 @@ $forceUpdate: () => void;
|
|
|
1918
1918
|
$nextTick: nextTick;
|
|
1919
1919
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1920
1920
|
} & Readonly<{}> & Omit<Readonly<{
|
|
1921
|
-
value?:
|
|
1921
|
+
value?: InputProps["value"];
|
|
1922
1922
|
} & InputProps> & Readonly<{
|
|
1923
1923
|
onBlur?: (() => any) | undefined;
|
|
1924
1924
|
"onUpdate:value"?: ((value: string | null | undefined) => any) | undefined;
|
|
@@ -1932,7 +1932,7 @@ inputEndRef: ({
|
|
|
1932
1932
|
$: ComponentInternalInstance;
|
|
1933
1933
|
$data: {};
|
|
1934
1934
|
$props: {
|
|
1935
|
-
readonly value?:
|
|
1935
|
+
readonly value?: InputProps["value"];
|
|
1936
1936
|
readonly type?: ("text" | "password") | undefined;
|
|
1937
1937
|
readonly label?: string | undefined;
|
|
1938
1938
|
readonly description?: string | undefined;
|
|
@@ -1970,7 +1970,7 @@ $host: Element | null;
|
|
|
1970
1970
|
$emit: ((event: "blur") => void) & ((event: "update:value", value: string | null | undefined) => void) & ((event: "update:error", value: boolean) => void);
|
|
1971
1971
|
$el: HTMLDivElement;
|
|
1972
1972
|
$options: ComponentOptionsBase<Readonly<{
|
|
1973
|
-
value?:
|
|
1973
|
+
value?: InputProps["value"];
|
|
1974
1974
|
} & InputProps> & Readonly<{
|
|
1975
1975
|
onBlur?: (() => any) | undefined;
|
|
1976
1976
|
"onUpdate:value"?: ((value: string | null | undefined) => any) | undefined;
|
|
@@ -2001,7 +2001,7 @@ $forceUpdate: () => void;
|
|
|
2001
2001
|
$nextTick: nextTick;
|
|
2002
2002
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
2003
2003
|
} & Readonly<{}> & Omit<Readonly<{
|
|
2004
|
-
value?:
|
|
2004
|
+
value?: InputProps["value"];
|
|
2005
2005
|
} & InputProps> & Readonly<{
|
|
2006
2006
|
onBlur?: (() => any) | undefined;
|
|
2007
2007
|
"onUpdate:value"?: ((value: string | null | undefined) => any) | undefined;
|
|
@@ -2236,6 +2236,7 @@ export declare const InputPassword: DefineComponent<InputPasswordProps, {}, {},
|
|
|
2236
2236
|
export declare type InputPasswordProps = Omit<InputFieldProps, 'iconRight' | 'type'>;
|
|
2237
2237
|
|
|
2238
2238
|
export declare type InputProps = {
|
|
2239
|
+
value?: string | null;
|
|
2239
2240
|
type?: 'text' | 'password';
|
|
2240
2241
|
label?: string;
|
|
2241
2242
|
description?: string;
|