oolib 2.19.0 → 2.19.1

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.
@@ -1,6 +1,7 @@
1
- export function BarLoader({ progress, text, isBlock, blockHeight, }: {
1
+ export function BarLoader({ progress, text, children, isBlock, blockHeight, }: {
2
2
  progress: any;
3
3
  text: any;
4
+ children: any;
4
5
  isBlock?: boolean;
5
6
  blockHeight?: string;
6
7
  }): JSX.Element;
@@ -8,7 +8,7 @@ var react_1 = __importDefault(require("react"));
8
8
  var Typo_1 = require("../../Typo");
9
9
  var styled_1 = require("../styled");
10
10
  var BarLoader = function (_a) {
11
- var progress = _a.progress, text = _a.text, _b = _a.isBlock, isBlock = _b === void 0 ? true : _b, _c = _a.blockHeight, blockHeight = _c === void 0 ? '100%' : _c;
11
+ var progress = _a.progress, text = _a.text, children = _a.children, _b = _a.isBlock, isBlock = _b === void 0 ? true : _b, _c = _a.blockHeight, blockHeight = _c === void 0 ? '100%' : _c;
12
12
  var loaderWidth = 100; //maybe in the future this will be controlled by a size prop
13
13
  var genLoader = function () { return (react_1.default.createElement(styled_1.StyledLoaderWrapper, { isBlock: isBlock },
14
14
  react_1.default.createElement(styled_1.StyledHorLoader, { loaderWidth: loaderWidth },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oolib",
3
- "version": "2.19.0",
3
+ "version": "2.19.1",
4
4
  "description": " OKE Component Library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",