oolib 2.1.10 → 2.2.2

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.
@@ -61,7 +61,7 @@ var Breadcrumbs = function (_a) {
61
61
  })));
62
62
  }
63
63
  return (react_1.default.createElement(index_styled_1.StyledBreadcrumbs, { ref: measuredContainer },
64
- react_1.default.createElement(index_styled_1.StyledLinkCrumb, { to: links[links.length - 2], invert: invert },
64
+ react_1.default.createElement(index_styled_1.StyledLinkCrumb, { to: links[links.length - 2].to, invert: invert },
65
65
  react_1.default.createElement(ArrowLeft, { size: 14, weight: "bold", color: invert ? white : greyColor50 }),
66
66
  react_1.default.createElement(Typo_1.SANS_2, { invert: invert }, "Back"))));
67
67
  };
@@ -1,11 +1,11 @@
1
- export function TagDisplay({ display, invert, M, theme, variantSecondary }: {
1
+ export function TagDisplay({ display, invert, M, theme, variant }: {
2
2
  display: any;
3
3
  invert: any;
4
4
  M: any;
5
5
  theme: any;
6
- variantSecondary: any;
6
+ variant: any;
7
7
  }): JSX.Element;
8
- export function TagClear({ id, display, value, M, invert, onClick, theme, variantSecondary, variantGhost, grey, }: {
8
+ export function TagClear({ id, display, value, M, invert, onClick, theme, variant, grey, }: {
9
9
  id: any;
10
10
  display: any;
11
11
  value: any;
@@ -13,8 +13,7 @@ export function TagClear({ id, display, value, M, invert, onClick, theme, varian
13
13
  invert: any;
14
14
  onClick?: () => void;
15
15
  theme: any;
16
- variantSecondary: any;
17
- variantGhost: any;
16
+ variant: any;
18
17
  grey: any;
19
18
  }): JSX.Element;
20
19
  export function TagSelect({ onClick, isSelected, display, value, M, theme, }: {
@@ -25,11 +24,11 @@ export function TagSelect({ onClick, isSelected, display, value, M, theme, }: {
25
24
  M: any;
26
25
  theme: any;
27
26
  }): JSX.Element;
28
- export function TagLink({ display, to, invert, M, theme, variantSecondary }: {
27
+ export function TagLink({ display, to, invert, M, theme, variant }: {
29
28
  display: any;
30
29
  to: any;
31
30
  invert: any;
32
31
  M: any;
33
32
  theme: any;
34
- variantSecondary: any;
33
+ variant: any;
35
34
  }): JSX.Element;
@@ -25,23 +25,19 @@ var index_styled_1 = require("./index.styled");
25
25
  var Typo_1 = require("../Typo");
26
26
  var icons_1 = require("../../icons");
27
27
  function TagDisplay(_a) {
28
- var display = _a.display, invert = _a.invert, M = _a.M, theme = _a.theme, variantSecondary = _a.variantSecondary;
28
+ var display = _a.display, invert = _a.invert, M = _a.M, theme = _a.theme, variant = _a.variant;
29
29
  var size = M ? 'M' : 'S';
30
- return (react_1.default.createElement(index_styled_1.StyledTagDisplay, { variantSecondary: variantSecondary, invert: invert, theme: theme, size: size },
30
+ return (react_1.default.createElement(index_styled_1.StyledTagDisplay, { variant: variant, invert: invert, theme: theme, size: size },
31
31
  react_1.default.createElement(Typo_1.SANS_3, { semibold: true }, display)));
32
32
  }
33
33
  exports.TagDisplay = TagDisplay;
34
34
  function TagClear(_a) {
35
- var id = _a.id, display = _a.display, value = _a.value, M = _a.M, invert = _a.invert, _b = _a.onClick, onClick = _b === void 0 ? function () { } : _b, theme = _a.theme, variantSecondary = _a.variantSecondary, variantGhost = _a.variantGhost, grey = _a.grey;
35
+ var id = _a.id, display = _a.display, value = _a.value, M = _a.M, invert = _a.invert, _b = _a.onClick, onClick = _b === void 0 ? function () { } : _b, theme = _a.theme, variant = _a.variant, grey = _a.grey;
36
36
  var XIconCom = icons_1.phosphorIcons['X'];
37
37
  var size = M ? 'M' : 'S';
38
- return (react_1.default.createElement(index_styled_1.StyledTagClear, { invert: invert, theme: theme, size: size, grey: grey, variantGhost: variantGhost, variantSecondary: variantSecondary, onClick: function () {
39
- return !variantSecondary && !variantGhost && onClick(id, { display: display, value: value });
40
- } },
38
+ return (react_1.default.createElement(index_styled_1.StyledTagClear, { invert: invert, theme: theme, size: size, grey: grey, variant: variant, onClick: function () { return !variant && onClick(id, { display: display, value: value }); } },
41
39
  react_1.default.createElement(Typo_1.SANS_3, { semibold: true }, display),
42
- react_1.default.createElement(index_styled_1.StyledIconWrapper, { theme: theme, invert: invert, grey: grey, variantSecondary: variantSecondary, onClick: function () {
43
- return (variantSecondary || variantGhost) && onClick(id, { display: display, value: value });
44
- } },
40
+ react_1.default.createElement(index_styled_1.StyledIconWrapper, { theme: theme, invert: invert, grey: grey, variant: variant, onClick: function () { return variant && onClick(id, { display: display, value: value }); } },
45
41
  react_1.default.createElement(XIconCom, { size: '15', weight: 'bold' }))));
46
42
  }
47
43
  exports.TagClear = TagClear;
@@ -63,10 +59,10 @@ function TagSelect(_a) {
63
59
  }
64
60
  exports.TagSelect = TagSelect;
65
61
  function TagLink(_a) {
66
- var display = _a.display, to = _a.to, invert = _a.invert, M = _a.M, theme = _a.theme, variantSecondary = _a.variantSecondary;
62
+ var display = _a.display, to = _a.to, invert = _a.invert, M = _a.M, theme = _a.theme, variant = _a.variant;
67
63
  var size = M ? 'M' : 'S';
68
64
  return (react_1.default.createElement(index_styled_1.StyledLink, { to: to },
69
- react_1.default.createElement(index_styled_1.StyledTagLink, { theme: theme, variantSecondary: variantSecondary, invert: invert, size: size },
65
+ react_1.default.createElement(index_styled_1.StyledTagLink, { theme: theme, variant: variant, invert: invert, size: size },
70
66
  react_1.default.createElement(Typo_1.SANS_3, { semibold: true }, display))));
71
67
  }
72
68
  exports.TagLink = TagLink;
@@ -43,29 +43,28 @@ var StyledTagDisplay = styled_components_1.default.div(templateObject_3 || (temp
43
43
  var invert = _a.invert;
44
44
  return (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n\t\tbackground-color: ", ";\n\t\tcolor: ", ";\n\t"], ["\n\t\tbackground-color: ", ";\n\t\tcolor: ", ";\n\t"])), !invert ? greyColor15 : greyColor80, !invert ? greyColor80 : greyColor40);
45
45
  }, function (_a) {
46
- var variantSecondary = _a.variantSecondary, invert = _a.invert;
47
- return variantSecondary && (0, styled_components_1.css)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n\t\t\tbackground: none;\n\t\t\tborder: 2px solid ", ";\n\t\t\tcolor: ", ";\n\t\t"], ["\n\t\t\tbackground: none;\n\t\t\tborder: 2px solid ", ";\n\t\t\tcolor: ", ";\n\t\t"])), !invert ? greyColor15 : greyColor80, !invert ? greyColor80 : greyColor15);
46
+ var variant = _a.variant, invert = _a.invert;
47
+ return variant === "secondry" && (0, styled_components_1.css)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n\t\t\tbackground: none;\n\t\t\tborder: 2px solid ", ";\n\t\t\tcolor: ", ";\n\t\t"], ["\n\t\t\tbackground: none;\n\t\t\tborder: 2px solid ", ";\n\t\t\tcolor: ", ";\n\t\t"])), !invert ? greyColor15 : greyColor80, !invert ? greyColor80 : greyColor15);
48
48
  });
49
49
  exports.StyledTagDisplay = StyledTagDisplay;
50
50
  var StyledTagClear = styled_components_1.default.div(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n ", "\n \n\t", "\n\n\t", "\n\t", "\n"], ["\n ", "\n \n\t", "\n\n\t", "\n\t", "\n"])), function (_a) {
51
51
  var size = _a.size;
52
52
  return commonStyle({ size: size });
53
53
  }, function (_a) {
54
- var variantSecondary = _a.variantSecondary, variantGhost = _a.variantGhost, invert = _a.invert, grey = _a.grey, colors = _a.theme.colors;
55
- return !variantSecondary &&
56
- !variantGhost &&
54
+ var variant = _a.variant, invert = _a.invert, grey = _a.grey, colors = _a.theme.colors;
55
+ return !variant && // no variant passed, then primary (default)
57
56
  (!grey
58
57
  ? (0, styled_components_1.css)(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t\tcolor: ", ";\n\t\t\t "], ["\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t\tcolor: ", ";\n\t\t\t "])), !invert
59
58
  ? colors === null || colors === void 0 ? void 0 : colors.primaryColor100
60
59
  : colors === null || colors === void 0 ? void 0 : colors.primaryColor40, !invert ? white : greyColor100) : (0, styled_components_1.css)(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t\tcolor: ", ";\n\t\t\t "], ["\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t\tcolor: ", ";\n\t\t\t "])), !invert ? greyColor15 : greyColor80, !invert ? greyColor80 : greyColor40));
61
60
  }, function (_a) {
62
- var variantSecondary = _a.variantSecondary, invert = _a.invert, grey = _a.grey, colors = _a.theme.colors;
63
- return variantSecondary &&
61
+ var variant = _a.variant, invert = _a.invert, grey = _a.grey, colors = _a.theme.colors;
62
+ return variant === "secondry" &&
64
63
  (!grey
65
64
  ? (0, styled_components_1.css)(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n\t\t\t\t\tbackground: none;\n\t\t\t\t\tborder: 2px solid\n\t\t\t\t\t\t", ";\n\t\t\t\t\tcolor: ", ";\n\t\t\t "], ["\n\t\t\t\t\tbackground: none;\n\t\t\t\t\tborder: 2px solid\n\t\t\t\t\t\t", ";\n\t\t\t\t\tcolor: ", ";\n\t\t\t "])), !invert ? colors === null || colors === void 0 ? void 0 : colors.primaryColor100 : colors === null || colors === void 0 ? void 0 : colors.primaryColor40, !invert ? colors === null || colors === void 0 ? void 0 : colors.primaryColorText : colors === null || colors === void 0 ? void 0 : colors.primaryColor40) : (0, styled_components_1.css)(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n\t\t\t\t\tbackground: none;\n\t\t\t\t\tborder: 2px solid ", ";\n\t\t\t\t\tcolor: ", ";\n\t\t\t "], ["\n\t\t\t\t\tbackground: none;\n\t\t\t\t\tborder: 2px solid ", ";\n\t\t\t\t\tcolor: ", ";\n\t\t\t "])), !invert ? greyColor15 : greyColor80, !invert ? greyColor80 : greyColor15));
66
65
  }, function (_a) {
67
- var variantGhost = _a.variantGhost;
68
- return variantGhost && (0, styled_components_1.css)(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n\t\t\tbackground: none;\n\t\t"], ["\n\t\t\tbackground: none;\n\t\t"])));
66
+ var variant = _a.variant;
67
+ return variant === "ghost" && (0, styled_components_1.css)(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n\t\t\tbackground: none;\n\t\t"], ["\n\t\t\tbackground: none;\n\t\t"])));
69
68
  });
70
69
  exports.StyledTagClear = StyledTagClear;
71
70
  var StyledTagSelect = styled_components_1.default.div(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n ", "\n\t", "\n"], ["\n ", "\n\t", "\n"])), function (_a) {
@@ -76,17 +75,17 @@ var StyledTagSelect = styled_components_1.default.div(templateObject_10 || (temp
76
75
  return "\n border: 2px solid ".concat(colors === null || colors === void 0 ? void 0 : colors.primaryColor100, ";\n cursor: pointer;\n background-color: ").concat(selected ? colors === null || colors === void 0 ? void 0 : colors.primaryColor100 : null, ";\n\t\tcolor: ").concat(!selected ? colors === null || colors === void 0 ? void 0 : colors.primaryColorText : white, "\n ");
77
76
  });
78
77
  exports.StyledTagSelect = StyledTagSelect;
79
- var StyledTagLink = styled_components_1.default.div(templateObject_13 || (templateObject_13 = __makeTemplateObject(["\n ", "\n\t", "\n\n\t", "\n\t\n"], ["\n ", "\n\t", "\n\n\t", "\n\t\n"])), function (_a) {
78
+ var StyledTagLink = styled_components_1.default.div(templateObject_13 || (templateObject_13 = __makeTemplateObject(["\n ", "\n\t", "\n\t\n"], ["\n ", "\n\t", "\n\t\n"])), function (_a) {
80
79
  var size = _a.size;
81
80
  return commonStyle({ size: size });
82
81
  }, function (_a) {
83
- var variantSecondary = _a.variantSecondary, invert = _a.invert, colors = _a.theme.colors;
84
- return !variantSecondary && (0, styled_components_1.css)(templateObject_11 || (templateObject_11 = __makeTemplateObject(["\n\t\t\tbackground-color: ", ";\n\t\t\tcolor: ", ";\n\t\t"], ["\n\t\t\tbackground-color: ", ";\n\t\t\tcolor: ", ";\n\t\t"])), !invert
85
- ? colors === null || colors === void 0 ? void 0 : colors.primaryColor100
86
- : colors === null || colors === void 0 ? void 0 : colors.primaryColor40, !invert ? white : greyColor100);
87
- }, function (_a) {
88
- var variantSecondary = _a.variantSecondary, invert = _a.invert, colors = _a.theme.colors;
89
- return variantSecondary && (0, styled_components_1.css)(templateObject_12 || (templateObject_12 = __makeTemplateObject(["\n\t\t\tbackground: none;\n\t\t\tborder: 2px solid\n\t\t\t\t", ";\n\t\t\tcolor: ", ";\n\t\t"], ["\n\t\t\tbackground: none;\n\t\t\tborder: 2px solid\n\t\t\t\t", ";\n\t\t\tcolor: ", ";\n\t\t"])), !invert ? colors === null || colors === void 0 ? void 0 : colors.primaryColor100 : colors === null || colors === void 0 ? void 0 : colors.primaryColor40, !invert ? colors === null || colors === void 0 ? void 0 : colors.primaryColorText : colors === null || colors === void 0 ? void 0 : colors.primaryColor40);
82
+ var variant = _a.variant, invert = _a.invert, colors = _a.theme.colors;
83
+ if (variant !== "secondry") {
84
+ return (0, styled_components_1.css)(templateObject_11 || (templateObject_11 = __makeTemplateObject(["\n\t\t\tbackground-color: ", ";\n\t\t\tcolor: ", ";\n\t\t"], ["\n\t\t\tbackground-color: ", ";\n\t\t\tcolor: ", ";\n\t\t"])), !invert
85
+ ? colors === null || colors === void 0 ? void 0 : colors.primaryColor100
86
+ : colors === null || colors === void 0 ? void 0 : colors.primaryColor40, !invert ? white : greyColor100);
87
+ }
88
+ return (0, styled_components_1.css)(templateObject_12 || (templateObject_12 = __makeTemplateObject(["\n\t\t\tbackground: none;\n\t\t\tborder: 2px solid\n\t\t\t\t", ";\n\t\t\tcolor: ", ";\n\t\t"], ["\n\t\t\tbackground: none;\n\t\t\tborder: 2px solid\n\t\t\t\t", ";\n\t\t\tcolor: ", ";\n\t\t"])), !invert ? colors === null || colors === void 0 ? void 0 : colors.primaryColor100 : colors === null || colors === void 0 ? void 0 : colors.primaryColor40, !invert ? colors === null || colors === void 0 ? void 0 : colors.primaryColorText : colors === null || colors === void 0 ? void 0 : colors.primaryColor40);
90
89
  });
91
90
  exports.StyledTagLink = StyledTagLink;
92
91
  var StyledIconWrapper = styled_components_1.default.div(templateObject_15 || (templateObject_15 = __makeTemplateObject(["\n display: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tcursor: pointer;\n\n\t", "\n"], ["\n display: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tcursor: pointer;\n\n\t", "\n"])), function (_a) {
@@ -0,0 +1,4 @@
1
+ export default LetterH;
2
+ declare function LetterH({ role }: {
3
+ role: any;
4
+ }): JSX.Element;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ var react_1 = __importDefault(require("react"));
7
+ var LetterH = function (_a) {
8
+ var role = _a.role;
9
+ return (react_1.default.createElement("svg", { role: role, xmlns: "http://www.w3.org/2000/svg", className: "icon icon-tabler icon-tabler-letter-h", width: "14", height: "14", viewBox: "0 0 24 24", strokeWidth: "2.5", stroke: "currentColor", fill: "none", strokeLinejoin: "round" },
10
+ react_1.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z" }),
11
+ react_1.default.createElement("line", { x1: "17", y1: "4", x2: "17", y2: "21" }),
12
+ react_1.default.createElement("line", { x1: "7", y1: "12", x2: "17", y2: "12" }),
13
+ react_1.default.createElement("line", { x1: "7", y1: "4", x2: "7", y2: "21" })));
14
+ };
15
+ exports.default = LetterH;
@@ -0,0 +1,6 @@
1
+ export default LetterP;
2
+ declare function LetterP({ role, dataStyle, dataStyleScope }: {
3
+ role: any;
4
+ dataStyle: any;
5
+ dataStyleScope: any;
6
+ }): JSX.Element;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ var react_1 = __importDefault(require("react"));
7
+ var LetterP = function (_a) {
8
+ var role = _a.role, dataStyle = _a.dataStyle, dataStyleScope = _a.dataStyleScope;
9
+ return (react_1.default.createElement("svg", { role: role, "data-style": dataStyle, "data-style-scope": dataStyleScope, xmlns: "http://www.w3.org/2000/svg", className: "icon icon-tabler icon-tabler-letter-p", width: "14", height: "14", viewBox: "0 0 24 24", strokeWidth: "2.5", stroke: "currentColor", fill: "none", strokeLinecap: "round", strokeLinejoin: "round" },
10
+ react_1.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z" }),
11
+ react_1.default.createElement("path", { d: "M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5" })));
12
+ };
13
+ exports.default = LetterP;
@@ -57,7 +57,15 @@ export namespace phosphorIcons {
57
57
  export { Eye };
58
58
  export { EyeClosed };
59
59
  export { Minus };
60
+ export { TextHOne };
61
+ export { TextHTwo };
62
+ export { TextHThree };
63
+ export { TextBolder };
64
+ export { TextItalic };
65
+ export { TextUnderline };
60
66
  export { OkeGoogleIcon };
67
+ export { LetterH };
68
+ export { LetterP };
61
69
  }
62
70
  import { PencilSimple } from "phosphor-react";
63
71
  import { PencilLine } from "phosphor-react";
@@ -117,4 +125,12 @@ import { MagnifyingGlass } from "phosphor-react";
117
125
  import { Eye } from "phosphor-react";
118
126
  import { EyeClosed } from "phosphor-react";
119
127
  import { Minus } from "phosphor-react";
128
+ import { TextHOne } from "phosphor-react";
129
+ import { TextHTwo } from "phosphor-react";
130
+ import { TextHThree } from "phosphor-react";
131
+ import { TextBolder } from "phosphor-react";
132
+ import { TextItalic } from "phosphor-react";
133
+ import { TextUnderline } from "phosphor-react";
120
134
  import OkeGoogleIcon from "./OkeGoogleIcon";
135
+ import LetterH from "./LetterH";
136
+ import LetterP from "./LetterP";
@@ -6,6 +6,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.phosphorIcons = void 0;
7
7
  var phosphor_react_1 = require("phosphor-react");
8
8
  var OkeGoogleIcon_1 = __importDefault(require("./OkeGoogleIcon"));
9
+ var LetterH_1 = __importDefault(require("./LetterH"));
10
+ var LetterP_1 = __importDefault(require("./LetterP"));
9
11
  exports.phosphorIcons = {
10
12
  PencilSimple: phosphor_react_1.PencilSimple,
11
13
  PencilLine: phosphor_react_1.PencilLine,
@@ -65,5 +67,13 @@ exports.phosphorIcons = {
65
67
  Eye: phosphor_react_1.Eye,
66
68
  EyeClosed: phosphor_react_1.EyeClosed,
67
69
  Minus: phosphor_react_1.Minus,
68
- OkeGoogleIcon: OkeGoogleIcon_1.default
70
+ TextHOne: phosphor_react_1.TextHOne,
71
+ TextHTwo: phosphor_react_1.TextHTwo,
72
+ TextHThree: phosphor_react_1.TextHThree,
73
+ TextBolder: phosphor_react_1.TextBolder,
74
+ TextItalic: phosphor_react_1.TextItalic,
75
+ TextUnderline: phosphor_react_1.TextUnderline,
76
+ OkeGoogleIcon: OkeGoogleIcon_1.default,
77
+ LetterH: LetterH_1.default,
78
+ LetterP: LetterP_1.default
69
79
  };
package/dist/index.d.ts CHANGED
@@ -6,3 +6,4 @@ export * from "./components/Tags";
6
6
  export * from "./components/Breadcrumbs";
7
7
  export * from "./components/BlockLabel";
8
8
  export { colors } from "./themes";
9
+ export { phosphorIcons } from "./icons";
package/dist/index.js CHANGED
@@ -10,13 +10,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
- exports.colors = exports.GlobalStyles = void 0;
13
+ exports.phosphorIcons = exports.colors = exports.GlobalStyles = void 0;
14
14
  var globalStyles_1 = require("./globalStyles");
15
15
  Object.defineProperty(exports, "GlobalStyles", { enumerable: true, get: function () { return globalStyles_1.GlobalStyles; } });
16
16
  __exportStar(require("./components/Typo"), exports);
17
17
  __exportStar(require("./components/Loader"), exports);
18
18
  var themes_1 = require("./themes");
19
19
  Object.defineProperty(exports, "colors", { enumerable: true, get: function () { return themes_1.colors; } });
20
+ var icons_1 = require("./icons");
21
+ Object.defineProperty(exports, "phosphorIcons", { enumerable: true, get: function () { return icons_1.phosphorIcons; } });
20
22
  __exportStar(require("./components/Buttons"), exports);
21
23
  __exportStar(require("./components/Tags"), exports);
22
24
  __exportStar(require("./components/Breadcrumbs"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oolib",
3
- "version": "2.1.10",
3
+ "version": "2.2.2",
4
4
  "description": " OKE Component Library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -53,7 +53,8 @@
53
53
  },
54
54
  "peerDependencies": {
55
55
  "react": "^17.0.2",
56
- "react-dom": "^17.0.2"
56
+ "react-dom": "^17.0.2",
57
+ "react-router-dom": "^6.1.1"
57
58
  },
58
59
  "config": {
59
60
  "commitizen": {
@@ -69,7 +70,6 @@
69
70
  "draftjs-conductor": "^2.2.0",
70
71
  "immutable": "^3.7.6",
71
72
  "modularscale-js": "^3.0.1",
72
- "phosphor-react": "^1.3.1",
73
- "react-router-dom": "^6.1.1"
73
+ "phosphor-react": "^1.3.1"
74
74
  }
75
75
  }