@namba_one/ui-kit-2 1.0.206 → 1.0.208

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 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;