@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.js
CHANGED
|
@@ -77,6 +77,12 @@ var toClassName = function () {
|
|
|
77
77
|
values[_i] = arguments[_i];
|
|
78
78
|
}
|
|
79
79
|
return values.filter(Boolean).join(' ');
|
|
80
|
+
};
|
|
81
|
+
var fromSelectMenuOptionToStringValue = function (options) {
|
|
82
|
+
if (options === null || options === void 0 ? void 0 : options.length) {
|
|
83
|
+
return options === null || options === void 0 ? void 0 : options.map(function (option) { return option === null || option === void 0 ? void 0 : option.value; });
|
|
84
|
+
}
|
|
85
|
+
return options === null || options === void 0 ? void 0 : options.value;
|
|
80
86
|
};
|
|
81
87
|
|
|
82
88
|
var deepCopyObject = function (object) {
|
|
@@ -2810,4 +2816,5 @@ exports.TableList = TableList;
|
|
|
2810
2816
|
exports.TableList2 = TableList2;
|
|
2811
2817
|
exports.VerticalNavigation = VerticalNavigation;
|
|
2812
2818
|
exports.createColumnHelper = createColumnHelper;
|
|
2819
|
+
exports.fromSelectMenuOptionToStringValue = fromSelectMenuOptionToStringValue;
|
|
2813
2820
|
//# sourceMappingURL=index.js.map
|