beem-component 1.0.6 → 1.0.7
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/components/index.js
CHANGED
|
@@ -114,6 +114,12 @@ Object.defineProperty(exports, "BmInput", {
|
|
|
114
114
|
return _input.BmInput;
|
|
115
115
|
}
|
|
116
116
|
});
|
|
117
|
+
Object.defineProperty(exports, "BmListBox", {
|
|
118
|
+
enumerable: true,
|
|
119
|
+
get: function get() {
|
|
120
|
+
return _listBox.BmListBox;
|
|
121
|
+
}
|
|
122
|
+
});
|
|
117
123
|
Object.defineProperty(exports, "BmListHeader", {
|
|
118
124
|
enumerable: true,
|
|
119
125
|
get: function get() {
|
|
@@ -223,6 +229,8 @@ var _listheader = require("./Lists/listheader");
|
|
|
223
229
|
|
|
224
230
|
var _rowLabels = require("./Lists/rowLabels");
|
|
225
231
|
|
|
232
|
+
var _listBox = require("./Lists/listBox");
|
|
233
|
+
|
|
226
234
|
var _modal = _interopRequireDefault(require("./Modals/modal"));
|
|
227
235
|
|
|
228
236
|
var _progressbar = require("./ProgressBar/progressbar");
|
package/package.json
CHANGED
|
@@ -10,6 +10,7 @@ import { BmInput } from "./input";
|
|
|
10
10
|
import { BmRouteLink } from "./RouteLink/link";
|
|
11
11
|
import { BmListHeader } from "./Lists/listheader";
|
|
12
12
|
import { BmRowLabel } from "./Lists/rowLabels";
|
|
13
|
+
import { BmListBox } from "./Lists/listBox";
|
|
13
14
|
import BmModal from "./Modals/modal";
|
|
14
15
|
import { BmProgressBar } from "./ProgressBar/progressbar";
|
|
15
16
|
import { BmTab } from "./Tabs/tabs";
|
|
@@ -44,6 +45,7 @@ export {
|
|
|
44
45
|
BmBtnIcon,
|
|
45
46
|
BmColors,
|
|
46
47
|
BmCard,
|
|
48
|
+
BmListBox,
|
|
47
49
|
BmListHeader,
|
|
48
50
|
BmRowLabel,
|
|
49
51
|
BmModal,
|