@namba_one/ui-kit-2 1.4.1 → 1.5.0

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
@@ -5170,7 +5170,8 @@ export declare const TableSimple: <T>(__VLS_props: NonNullable<Awaited<typeof __
5170
5170
  column: string;
5171
5171
  item: T;
5172
5172
  }) => any) | undefined;
5173
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onClick" | "onReset" | "onClick-cell"> & TableSimpleProps<T> & Partial<{}>> & PublicProps;
5173
+ readonly "onUpdate:data"?: ((value: T[]) => any) | undefined;
5174
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onClick" | "onReset" | "onClick-cell" | "onUpdate:data"> & TableSimpleProps<T> & Partial<{}>> & PublicProps;
5174
5175
  expose(exposed: ShallowUnwrapRef< {}>): void;
5175
5176
  attrs: any;
5176
5177
  slots: Readonly<{
@@ -5251,6 +5252,7 @@ export declare type TableSimpleEmits<T> = {
5251
5252
  column: string;
5252
5253
  item: T;
5253
5254
  }): void;
5255
+ (e: 'update:data', value: T[]): void;
5254
5256
  (e: 'reset'): void;
5255
5257
  };
5256
5258
 
@@ -5268,6 +5270,7 @@ export declare type TableSimpleProps<T> = {
5268
5270
  data: T[];
5269
5271
  columns: string[];
5270
5272
  sizes: number[];
5273
+ isDraggable?: boolean;
5271
5274
  reRenderKey?: string;
5272
5275
  scrollOffset?: number | string;
5273
5276
  errorText?: string;