@namba_one/ui-kit-2 1.2.7 → 1.2.9
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 +2 -0
- package/dist/index.es.js +1872 -1869
- package/dist/index.umd.js +11 -11
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5084,6 +5084,7 @@ export declare const TableSimple: <T>(__VLS_props: NonNullable<Awaited<typeof __
|
|
|
5084
5084
|
readonly onClick?: ((value: T) => any) | undefined;
|
|
5085
5085
|
readonly onReset?: (() => any) | undefined;
|
|
5086
5086
|
readonly "onClick-cell"?: ((value: {
|
|
5087
|
+
event: MouseEvent;
|
|
5087
5088
|
column: string;
|
|
5088
5089
|
item: T;
|
|
5089
5090
|
}) => any) | undefined;
|
|
@@ -5164,6 +5165,7 @@ declare type TableSimpleCopyCellProps = {
|
|
|
5164
5165
|
export declare type TableSimpleEmits<T> = {
|
|
5165
5166
|
(e: 'click', value: T): void;
|
|
5166
5167
|
(e: 'click-cell', value: {
|
|
5168
|
+
event: MouseEvent;
|
|
5167
5169
|
column: string;
|
|
5168
5170
|
item: T;
|
|
5169
5171
|
}): void;
|