@base-framework/ui 1.2.47 → 1.2.50
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/atoms.es.js +1 -1
- package/dist/{confirmation-CanrebjP.js → confirmation-tFjGo_pD.js} +1 -1
- package/dist/{full-page-B94AsK9X.js → full-page-BSJ6rkbe.js} +224 -211
- package/dist/index.es.js +5 -5
- package/dist/molecules.es.js +2 -2
- package/dist/organisms.es.js +3 -3
- package/dist/pages.es.js +2 -2
- package/dist/{sidebar-menu-ChdeuGcO.js → sidebar-menu-Qw5a8TeQ.js} +1 -1
- package/dist/{sidebar-menu-page-BSdU46Zw.js → sidebar-menu-page-CPoNqLGD.js} +2 -2
- package/dist/{signature-panel-B63AkDZP.js → signature-panel-C0enb6BJ.js} +191 -209
- package/dist/types/components/atoms/buttons/back-navigation.d.ts +3 -0
- package/dist/types/components/organisms/lists/dynamic-data-table.d.ts +1 -0
- package/dist/types/components/organisms/lists/dynamic-table.d.ts +1 -0
- package/dist/types/components/organisms/lists/scrollable-data-table.d.ts +1 -0
- package/dist/types/components/organisms/lists/scrollable-table.d.ts +1 -0
- package/dist/types/components/organisms/tabs/tab-navigation.d.ts +1 -6
- package/dist/types/components/organisms/tabs/underlined-tab-navigation.d.ts +1 -6
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
* @property {function} [props.selectRow] - The function to select a row.
|
|
17
17
|
* @property {string} [props.border] - The border to add to the table.
|
|
18
18
|
* @property {object} [props.data] - The table data.
|
|
19
|
+
* @property {string} [props.xhrMethod='all'] - The method name to call on data.xhr.
|
|
19
20
|
* @property {string} [props.cache] - The table cache identifier.
|
|
20
21
|
* @property {object|null} [props.emptyState] - The empty state to show when there are no items.
|
|
21
22
|
* @property {boolean|object} [props.skeleton] - Skeleton configuration. Can be true for default or object with { number: 5, row: customRowFunction }
|
|
@@ -11,6 +11,7 @@ export function DynamicTableBody(props: object): object;
|
|
|
11
11
|
* @property {string} [props.class] - The class to add to the list.
|
|
12
12
|
* @property {string} [props.key] - The key to use to identify the items.
|
|
13
13
|
* @property {object} [props.tableData] - The table data.
|
|
14
|
+
* @property {string} [props.xhrMethod='all'] - The method name to call on data.xhr.
|
|
14
15
|
* @property {array} [props.rows] - The initial rows.
|
|
15
16
|
* @property {function} [props.rowItem] - The row item.
|
|
16
17
|
* @property {string} [props.containerClass] - The class to add to the scroll container.
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
* @property {function} [props.selectRow] - The function to select a row.
|
|
18
18
|
* @property {string} [props.border] - The border to add to the table.
|
|
19
19
|
* @property {object} [props.data] - The table data.
|
|
20
|
+
* @property {string} [props.xhrMethod='all'] - The method name to call on data.xhr.
|
|
20
21
|
* @property {string} [props.cache] - The table cache identifier.
|
|
21
22
|
* @property {object|null} [props.emptyState] - The empty state to show when there are no items.
|
|
22
23
|
* @property {boolean|object} [props.skeleton] - Skeleton configuration. Can be true for default or object with { number: 5, row: customRowFunction }
|
|
@@ -12,6 +12,7 @@ export function ScrollableDataTableBody(props: object): object;
|
|
|
12
12
|
* @property {string} [props.class] - The class to add to the list.
|
|
13
13
|
* @property {string} [props.key] - The key to use to identify the items.
|
|
14
14
|
* @property {object} [props.tableData] - The table data.
|
|
15
|
+
* @property {string} [props.xhrMethod='all'] - The method name to call on data.xhr.
|
|
15
16
|
* @property {array} [props.rows] - The initial rows.
|
|
16
17
|
* @property {function} [props.rowItem] - The row item.
|
|
17
18
|
* @property {string} [props.containerClass] - The class to add to the scroll container.
|
|
@@ -24,6 +24,7 @@ export class TabNavigation extends Veil {
|
|
|
24
24
|
*/
|
|
25
25
|
onSelect: any;
|
|
26
26
|
links: any[];
|
|
27
|
+
activeLink: any;
|
|
27
28
|
/**
|
|
28
29
|
* This will render the component.
|
|
29
30
|
*
|
|
@@ -37,12 +38,6 @@ export class TabNavigation extends Veil {
|
|
|
37
38
|
* @returns {void}
|
|
38
39
|
*/
|
|
39
40
|
updateLinks(value: string): void;
|
|
40
|
-
/**
|
|
41
|
-
* This will deactivate all links.
|
|
42
|
-
*
|
|
43
|
-
* @returns {void}
|
|
44
|
-
*/
|
|
45
|
-
deactivateAllLinks(): void;
|
|
46
41
|
/**
|
|
47
42
|
* This will update the link.
|
|
48
43
|
*
|
|
@@ -32,6 +32,7 @@ export class UnderlinedTabNavigation extends Veil {
|
|
|
32
32
|
*/
|
|
33
33
|
scrollable: boolean;
|
|
34
34
|
links: any[];
|
|
35
|
+
activeLink: any;
|
|
35
36
|
/**
|
|
36
37
|
* This will render the component.
|
|
37
38
|
*
|
|
@@ -45,12 +46,6 @@ export class UnderlinedTabNavigation extends Veil {
|
|
|
45
46
|
* @returns {void}
|
|
46
47
|
*/
|
|
47
48
|
updateLinks(value: string): void;
|
|
48
|
-
/**
|
|
49
|
-
* This will deactivate all links.
|
|
50
|
-
*
|
|
51
|
-
* @returns {void}
|
|
52
|
-
*/
|
|
53
|
-
deactivateAllLinks(): void;
|
|
54
49
|
/**
|
|
55
50
|
* This will update the link.
|
|
56
51
|
*
|
package/package.json
CHANGED