@namba_one/ui-kit-2 1.0.207 → 1.0.209
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 +3 -1
- package/dist/index.es.js +2543 -2499
- package/dist/index.umd.js +24 -24
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -479,7 +479,6 @@ declare type __VLS_Props_11 = DropdownElementProps;
|
|
|
479
479
|
declare type __VLS_Props_12 = ThemePickerProps;
|
|
480
480
|
|
|
481
481
|
declare type __VLS_Props_13 = {
|
|
482
|
-
gap?: string | number;
|
|
483
482
|
align?: 'flex-start' | 'center' | 'flex-end';
|
|
484
483
|
};
|
|
485
484
|
|
|
@@ -2226,6 +2225,7 @@ export declare type EditorProps = {
|
|
|
2226
2225
|
maxLength?: number;
|
|
2227
2226
|
isDisabled?: boolean;
|
|
2228
2227
|
isError?: boolean;
|
|
2228
|
+
isRequired?: boolean;
|
|
2229
2229
|
isBorder?: boolean;
|
|
2230
2230
|
placeholder: string;
|
|
2231
2231
|
};
|
|
@@ -3253,6 +3253,7 @@ export declare const Table: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_se
|
|
|
3253
3253
|
export declare type TableProps<T> = {
|
|
3254
3254
|
headers: string[];
|
|
3255
3255
|
gridTemplateColumns: string;
|
|
3256
|
+
gap?: number | string;
|
|
3256
3257
|
list: T[];
|
|
3257
3258
|
isLoading?: boolean;
|
|
3258
3259
|
extractKey?: (item: T) => string;
|
|
@@ -3417,6 +3418,7 @@ export declare type TooltipProps = {
|
|
|
3417
3418
|
verticalAlign?: DropdownElementProps['verticalAlign'];
|
|
3418
3419
|
verticalOffset?: DropdownElementProps['verticalOffset'];
|
|
3419
3420
|
behavior?: 'hover' | 'click' | 'manual';
|
|
3421
|
+
width?: number | string;
|
|
3420
3422
|
};
|
|
3421
3423
|
|
|
3422
3424
|
export declare const TransitionFade: DefineComponent<ExtractPropTypes< {
|