sag_components 2.0.0-beta126 → 2.0.0-beta127
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 +1 -1
- package/dist/index.esm.js +104 -26
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +103 -25
- package/dist/index.js.map +1 -1
- package/dist/types/components/Table/Table.d.ts +2 -1
- package/dist/types/components/Table/Table.stories.d.ts +32 -0
- package/dist/types/components/Table/TableBody.d.ts +2 -8
- package/package.json +1 -1
|
@@ -216,6 +216,30 @@ declare namespace _default {
|
|
|
216
216
|
const name_25: string;
|
|
217
217
|
export { name_25 as name };
|
|
218
218
|
}
|
|
219
|
+
namespace resetTableFocus {
|
|
220
|
+
const control_17: string;
|
|
221
|
+
export { control_17 as control };
|
|
222
|
+
const description_26: string;
|
|
223
|
+
export { description_26 as description };
|
|
224
|
+
const name_26: string;
|
|
225
|
+
export { name_26 as name };
|
|
226
|
+
}
|
|
227
|
+
namespace onTableFocusChange {
|
|
228
|
+
const action_9: string;
|
|
229
|
+
export { action_9 as action };
|
|
230
|
+
const description_27: string;
|
|
231
|
+
export { description_27 as description };
|
|
232
|
+
const name_27: string;
|
|
233
|
+
export { name_27 as name };
|
|
234
|
+
}
|
|
235
|
+
namespace clearFocusOnOutsideClick {
|
|
236
|
+
const control_18: string;
|
|
237
|
+
export { control_18 as control };
|
|
238
|
+
const description_28: string;
|
|
239
|
+
export { description_28 as description };
|
|
240
|
+
const name_28: string;
|
|
241
|
+
export { name_28 as name };
|
|
242
|
+
}
|
|
219
243
|
}
|
|
220
244
|
}
|
|
221
245
|
export default _default;
|
|
@@ -257,6 +281,10 @@ export namespace Default {
|
|
|
257
281
|
export { showHorizontalScroll_1 as showHorizontalScroll };
|
|
258
282
|
const showNoDataInSearch_1: boolean;
|
|
259
283
|
export { showNoDataInSearch_1 as showNoDataInSearch };
|
|
284
|
+
const resetTableFocus_1: boolean;
|
|
285
|
+
export { resetTableFocus_1 as resetTableFocus };
|
|
286
|
+
const clearFocusOnOutsideClick_1: boolean;
|
|
287
|
+
export { clearFocusOnOutsideClick_1 as clearFocusOnOutsideClick };
|
|
260
288
|
const children_1: import("react/jsx-runtime").JSX.Element;
|
|
261
289
|
export { children_1 as children };
|
|
262
290
|
}
|
|
@@ -284,6 +312,10 @@ export namespace WithData {
|
|
|
284
312
|
export { buttonColor_2 as buttonColor };
|
|
285
313
|
const showNoDataInSearch_2: boolean;
|
|
286
314
|
export { showNoDataInSearch_2 as showNoDataInSearch };
|
|
315
|
+
const resetTableFocus_2: boolean;
|
|
316
|
+
export { resetTableFocus_2 as resetTableFocus };
|
|
317
|
+
const clearFocusOnOutsideClick_2: boolean;
|
|
318
|
+
export { clearFocusOnOutsideClick_2 as clearFocusOnOutsideClick };
|
|
287
319
|
}
|
|
288
320
|
export { args_1 as args };
|
|
289
321
|
}
|
|
@@ -1,9 +1,3 @@
|
|
|
1
1
|
export default TableBody;
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
data: any;
|
|
5
|
-
onRowClick: any;
|
|
6
|
-
onSendClick: any;
|
|
7
|
-
buttonColor: any;
|
|
8
|
-
onDeleteClick: any;
|
|
9
|
-
}): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const TableBody: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
3
|
+
import React from "react";
|