ekm-ui 0.3.64 → 0.3.66
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/.turbo/turbo-build.log +32 -32
- package/CHANGELOG.md +6 -0
- package/dist/card-payment-block.css +1 -1
- package/dist/card-payment-block.css.map +1 -1
- package/dist/card-payment-block.mjs +1 -1
- package/dist/chunk-I4KFZXJ5.mjs +43 -0
- package/dist/{chunk-S7N5VK35.mjs.map → chunk-I4KFZXJ5.mjs.map} +1 -1
- package/dist/drag-and-drop.css +1 -1
- package/dist/drag-and-drop.css.map +1 -1
- package/dist/drag-and-drop.mjs +1 -1
- package/dist/file-picker/file-picker.css +1 -1
- package/dist/file-picker/file-picker.css.map +1 -1
- package/dist/file-picker/file-picker.mjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/layout/layout.css +1 -1
- package/dist/layout/layout.css.map +1 -1
- package/dist/layout/layout.mjs +1 -1
- package/dist/stacked-list-item.css +1 -1
- package/dist/stacked-list-item.css.map +1 -1
- package/dist/stacked-list-item.mjs +1 -1
- package/dist/table-header/table-header.d.ts +1 -8
- package/dist/table-header/table-header.mjs +4 -1
- package/dist/table-result-block.css +1 -1
- package/dist/table-result-block.css.map +1 -1
- package/dist/table-result-block.mjs +1 -1
- package/package.json +1 -1
- package/src/table-header/table-header.tsx +99 -138
- package/dist/chunk-S7N5VK35.mjs +0 -42
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { a as StackedListItem } from './chunk-SBWI5OCU.mjs';
|
|
2
2
|
import './chunk-EHJJX6ZZ.mjs';
|
|
3
3
|
import './chunk-ZJATBQ3X.mjs';
|
|
4
|
-
import './chunk-
|
|
4
|
+
import './chunk-I4KFZXJ5.mjs';
|
|
5
5
|
import './chunk-N7RKCR3X.mjs';
|
|
6
6
|
import './chunk-ASCPOK5F.mjs';
|
|
7
7
|
import './chunk-LQQDRIZN.mjs';
|
|
@@ -1,21 +1,18 @@
|
|
|
1
1
|
import PropTypes from 'prop-types';
|
|
2
2
|
|
|
3
|
-
declare function TableHeader({ config, callback, forceCheckedState, checkboxCallback, layout, forceSort,
|
|
3
|
+
declare function TableHeader({ config, callback, forceCheckedState, checkboxCallback, layout, forceSort, }: {
|
|
4
4
|
config: any;
|
|
5
5
|
callback: any;
|
|
6
6
|
forceCheckedState?: boolean | undefined;
|
|
7
7
|
checkboxCallback: any;
|
|
8
8
|
layout?: string | undefined;
|
|
9
9
|
forceSort: any;
|
|
10
|
-
selected?: number | undefined;
|
|
11
|
-
actions: any;
|
|
12
10
|
}): JSX.Element;
|
|
13
11
|
declare namespace TableHeader {
|
|
14
12
|
var propTypes: {
|
|
15
13
|
/** Object that is used to configure the header *(see component notes)* */
|
|
16
14
|
config: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
17
15
|
checkbox: PropTypes.Requireable<boolean>;
|
|
18
|
-
hideSelectedNum: PropTypes.Requireable<boolean>;
|
|
19
16
|
cols: PropTypes.Validator<(PropTypes.InferProps<{
|
|
20
17
|
title: PropTypes.Validator<string>;
|
|
21
18
|
layout: PropTypes.Requireable<string>;
|
|
@@ -36,10 +33,6 @@ declare namespace TableHeader {
|
|
|
36
33
|
/** Counter to ensure that the change in the prop will force a change in render - supplied by sort component */
|
|
37
34
|
counter: PropTypes.Validator<number>;
|
|
38
35
|
}>>;
|
|
39
|
-
/** Optional value to indicate the number of rows selected by user. This appears in the header then checkbox is clicked */
|
|
40
|
-
selected: PropTypes.Requireable<number>;
|
|
41
|
-
/** Optional actions to be performed when the checkbox is selected */
|
|
42
|
-
actions: PropTypes.Requireable<PropTypes.ReactElementLike>;
|
|
43
36
|
/** Returns the sort selected in the header format: {title: name of column, sort: ASC/DSC/OFF} */
|
|
44
37
|
callback: PropTypes.Validator<(...args: any[]) => any>;
|
|
45
38
|
/** Optional return call triggered when the optional header checkbox is clicked */
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
export { a as TableHeader } from '../chunk-
|
|
1
|
+
export { a as TableHeader } from '../chunk-I4KFZXJ5.mjs';
|
|
2
|
+
import '../chunk-ASCPOK5F.mjs';
|
|
3
|
+
import '../chunk-DZABAR36.mjs';
|
|
4
|
+
import '../chunk-GBY2NNWZ.mjs';
|
|
2
5
|
import '../chunk-PUJZGK7Y.mjs';
|
|
3
6
|
import '../chunk-23SJGKDR.mjs';
|
|
4
7
|
//# sourceMappingURL=out.js.map
|