@ballistix.digital/react-components 0.4.82 → 0.4.83
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 -0
- package/dist/index.esm.js +7 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { TDropdownElementStyles as TDropdownElementStyles$1 } from 'components/E
|
|
|
8
8
|
import { TPagePaginationNavigationStyles as TPagePaginationNavigationStyles$1 } from 'components/Navigation/PagePagination';
|
|
9
9
|
export { createColumnHelper } from 'helpers/table';
|
|
10
10
|
import { Option, SelectValue } from 'react-tailwindcss-select/dist/components/type';
|
|
11
|
+
export { fromSelectMenuOptionToStringValue } from 'helpers/format';
|
|
11
12
|
|
|
12
13
|
declare const base$j: {
|
|
13
14
|
loading: string;
|
package/dist/index.esm.js
CHANGED
|
@@ -67,6 +67,12 @@ var toClassName = function () {
|
|
|
67
67
|
values[_i] = arguments[_i];
|
|
68
68
|
}
|
|
69
69
|
return values.filter(Boolean).join(' ');
|
|
70
|
+
};
|
|
71
|
+
var fromSelectMenuOptionToStringValue = function (options) {
|
|
72
|
+
if (options === null || options === void 0 ? void 0 : options.length) {
|
|
73
|
+
return options === null || options === void 0 ? void 0 : options.map(function (option) { return option === null || option === void 0 ? void 0 : option.value; });
|
|
74
|
+
}
|
|
75
|
+
return options === null || options === void 0 ? void 0 : options.value;
|
|
70
76
|
};
|
|
71
77
|
|
|
72
78
|
var deepCopyObject = function (object) {
|
|
@@ -2774,5 +2780,5 @@ var styles = {
|
|
|
2774
2780
|
disabled: disabled,
|
|
2775
2781
|
};
|
|
2776
2782
|
|
|
2777
|
-
export { AvatarElement, BadgeElement, BreadcrumbsNavigation, ButtonElement, ButtonGroupElement, ContainerLayout, DividerLayout, DropdownElement, IconElement, InputGroupForm, ListContainerLayout, MediaObjectLayout, ModalOverlay, NotificationOverlay, PagePaginationNavigation, LayoutPanel as PanelLayout, PanelPaginationNavigation, SelectMenuForm, SlideOverOverlay, TabNavigation, TableColumnOptionsCustom, TableExcelExportCustom as TableExportCustom, TableList, TableList2, VerticalNavigation, createColumnHelper };
|
|
2783
|
+
export { AvatarElement, BadgeElement, BreadcrumbsNavigation, ButtonElement, ButtonGroupElement, ContainerLayout, DividerLayout, DropdownElement, IconElement, InputGroupForm, ListContainerLayout, MediaObjectLayout, ModalOverlay, NotificationOverlay, PagePaginationNavigation, LayoutPanel as PanelLayout, PanelPaginationNavigation, SelectMenuForm, SlideOverOverlay, TabNavigation, TableColumnOptionsCustom, TableExcelExportCustom as TableExportCustom, TableList, TableList2, VerticalNavigation, createColumnHelper, fromSelectMenuOptionToStringValue };
|
|
2778
2784
|
//# sourceMappingURL=index.esm.js.map
|