infinity-forge 0.41.1 → 0.41.3

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.
Files changed (58) hide show
  1. package/dist/infinity-forge.css +2 -354
  2. package/dist/react-tool-tip.css +1 -0
  3. package/dist/reset.css +1 -0
  4. package/dist/system/presentation/components/data/chat/loader/index.js +2 -26
  5. package/dist/system/presentation/components/data/chat/loader/index.js.map +1 -1
  6. package/dist/system/presentation/components/data/detail-card/component.js +1 -2
  7. package/dist/system/presentation/components/data/detail-card/component.js.map +1 -1
  8. package/dist/system/presentation/components/data/notifications/index.js +2 -3
  9. package/dist/system/presentation/components/data/notifications/index.js.map +1 -1
  10. package/dist/system/presentation/components/data/tab/component.js +1 -1
  11. package/dist/system/presentation/components/data/tab/component.js.map +1 -1
  12. package/dist/system/presentation/components/layout/header/components/menu-right/messages/index.js +2 -6
  13. package/dist/system/presentation/components/layout/header/components/menu-right/messages/index.js.map +1 -1
  14. package/dist/system/presentation/components/layout/header/components/menu-right/messages/styles.js +1 -1
  15. package/dist/system/presentation/components/layout/header/components/menu-right/messages/styles.js.map +1 -1
  16. package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/index.js.map +1 -1
  17. package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/styles.js +1 -1
  18. package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/styles.js.map +1 -1
  19. package/dist/system/presentation/components/layout/header/components/menu-right/profile/index.js +1 -2
  20. package/dist/system/presentation/components/layout/header/components/menu-right/profile/index.js.map +1 -1
  21. package/dist/system/presentation/components/layout/header/components/menu-right/settings/index.js.map +1 -1
  22. package/dist/system/presentation/context/container.js +1 -2
  23. package/dist/system/presentation/context/container.js.map +1 -1
  24. package/dist/system/presentation/hooks/notifications/use-load-all/index.js +1 -1
  25. package/dist/system/presentation/hooks/notifications/use-load-all/index.js.map +1 -1
  26. package/dist/system/presentation/hooks/ui/use-table/components/table/actions/index.js +3 -2
  27. package/dist/system/presentation/hooks/ui/use-table/components/table/actions/index.js.map +1 -1
  28. package/dist/system/presentation/hooks/ui/use-table/components/table/skeleton-table/index.js +1 -2
  29. package/dist/system/presentation/hooks/ui/use-table/components/table/skeleton-table/index.js.map +1 -1
  30. package/dist/system/presentation/hooks/ui/use-table/components/table/skeleton-table/styles.js +1 -1
  31. package/dist/system/presentation/hooks/ui/use-table/components/table/skeleton-table/styles.js.map +1 -1
  32. package/dist/ui/components/form/input-file/file-card/index.js +6 -8
  33. package/dist/ui/components/form/input-file/file-card/index.js.map +1 -1
  34. package/dist/ui/components/index.d.ts +4 -1
  35. package/dist/ui/components/index.js +3 -0
  36. package/dist/ui/components/index.js.map +1 -1
  37. package/dist/ui/components/modal/index.d.ts +16 -0
  38. package/dist/ui/components/modal/index.js +34 -0
  39. package/dist/ui/components/modal/index.js.map +1 -0
  40. package/dist/ui/components/sidebar/index.js +2 -2
  41. package/dist/ui/components/sidebar/index.js.map +1 -1
  42. package/dist/ui/components/skeleton/index.d.ts +8 -0
  43. package/dist/ui/components/skeleton/index.js +34 -0
  44. package/dist/ui/components/skeleton/index.js.map +1 -0
  45. package/dist/ui/components/skeleton/styles.d.ts +2 -0
  46. package/dist/ui/components/skeleton/styles.js +14 -0
  47. package/dist/ui/components/skeleton/styles.js.map +1 -0
  48. package/dist/ui/components/tooltip/index.d.ts +6 -0
  49. package/dist/ui/components/tooltip/index.js +23 -0
  50. package/dist/ui/components/tooltip/index.js.map +1 -0
  51. package/dist/ui/styles/libs/react-tool-tip.css +109 -0
  52. package/dist/ui/styles/reset.css +352 -0
  53. package/package.json +2 -1
  54. package/dist/semantic-ui.css +0 -354
  55. package/dist/system/presentation/components/data/chat/loader/styles.d.ts +0 -4
  56. package/dist/system/presentation/components/data/chat/loader/styles.js +0 -14
  57. package/dist/system/presentation/components/data/chat/loader/styles.js.map +0 -1
  58. package/dist/ui/styles/libs/semantic-ui.css +0 -26968
@@ -35,7 +35,7 @@ function SideBar(_a) {
35
35
  function handleClose() {
36
36
  if (overlay) {
37
37
  setOpen(false);
38
- react_dom_1.default.unmountComponentAtNode(document.getElementById("__next").querySelector("div").querySelector("div"));
38
+ react_dom_1.default.unmountComponentAtNode(document.getElementById("__next"));
39
39
  }
40
40
  }
41
41
  function handleContentClick(event) {
@@ -44,7 +44,7 @@ function SideBar(_a) {
44
44
  if (!process.browser) {
45
45
  return (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {});
46
46
  }
47
- return react_dom_1.default.createPortal((0, jsx_runtime_1.jsx)(S.SideBar, { "$overlay": overlay, "$open": open, "$maxWidth": maxWidth, "$direction": direction, onClick: handleClose, className: "side_bar_infinity_forge", children: (0, jsx_runtime_1.jsx)("div", { onClick: handleContentClick, className: 'content', children: open && children }) }), document.getElementById("__next").querySelector("div").querySelector("div"));
47
+ return react_dom_1.default.createPortal((0, jsx_runtime_1.jsx)(S.SideBar, { "$overlay": overlay, "$open": open, "$maxWidth": maxWidth, "$direction": direction, onClick: handleClose, className: "side_bar_infinity_forge", children: (0, jsx_runtime_1.jsx)("div", { onClick: handleContentClick, className: 'content', children: open && children }) }), document.getElementById('__next'));
48
48
  }
49
49
  exports.SideBar = SideBar;
50
50
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/components/sidebar/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wDAAgC;AAIhC,0CAA6B;AAE7B,SAAgB,OAAO,CAAC,EAA6E;QAA3E,QAAQ,cAAA,EAAE,QAAQ,cAAA,EAAE,IAAI,UAAA,EAAE,OAAO,aAAA,EAAE,iBAAmB,EAAnB,SAAS,mBAAG,OAAO,KAAA,EAAE,OAAO,aAAA;IACvF,SAAS,WAAW;QAClB,IAAI,OAAO,EAAE,CAAC;YACZ,OAAO,CAAC,KAAK,CAAC,CAAA;YAEd,mBAAQ,CAAC,sBAAsB,CAAC,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,CAAA;QAC9G,CAAC;IACH,CAAC;IAED,SAAS,kBAAkB,CAAC,KAAmD;QAC7E,KAAK,CAAC,eAAe,EAAE,CAAA;IACzB,CAAC;IAGD,IAAG,CAAE,OAAe,CAAC,OAAO,EAAE,CAAC;QAC7B,OAAO,kDAAK,CAAA;IACd,CAAC;IAED,OAAO,mBAAQ,CAAC,YAAY,CAC1B,uBAAC,CAAC,CAAC,OAAO,gBAAW,OAAO,WAAS,IAAI,eAAa,QAAQ,gBAAc,SAAS,EAAE,OAAO,EAAE,WAAW,EAAE,SAAS,EAAC,yBAAyB,YAC9I,gCAAK,OAAO,EAAE,kBAAkB,EAAE,SAAS,EAAC,SAAS,YAClD,IAAI,IAAI,QAAQ,GACb,GACI,EACZ,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,CAC5E,CAAA;AACH,CAAC;AA1BD,0BA0BC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/components/sidebar/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wDAAgC;AAIhC,0CAA6B;AAE7B,SAAgB,OAAO,CAAC,EAA6E;QAA3E,QAAQ,cAAA,EAAE,QAAQ,cAAA,EAAE,IAAI,UAAA,EAAE,OAAO,aAAA,EAAE,iBAAmB,EAAnB,SAAS,mBAAG,OAAO,KAAA,EAAE,OAAO,aAAA;IACvF,SAAS,WAAW;QAClB,IAAI,OAAO,EAAE,CAAC;YACZ,OAAO,CAAC,KAAK,CAAC,CAAA;YAEd,mBAAQ,CAAC,sBAAsB,CAAC,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAA;QACpE,CAAC;IACH,CAAC;IAED,SAAS,kBAAkB,CAAC,KAAmD;QAC7E,KAAK,CAAC,eAAe,EAAE,CAAA;IACzB,CAAC;IAGD,IAAG,CAAE,OAAe,CAAC,OAAO,EAAE,CAAC;QAC7B,OAAO,kDAAK,CAAA;IACd,CAAC;IAED,OAAO,mBAAQ,CAAC,YAAY,CAC1B,uBAAC,CAAC,CAAC,OAAO,gBAAW,OAAO,WAAS,IAAI,eAAa,QAAQ,gBAAc,SAAS,EAAE,OAAO,EAAE,WAAW,EAAE,SAAS,EAAC,yBAAyB,YAC9I,gCAAK,OAAO,EAAE,kBAAkB,EAAE,SAAS,EAAC,SAAS,YAClD,IAAI,IAAI,QAAQ,GACb,GACI,EACZ,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,CAClC,CAAA;AACH,CAAC;AA1BD,0BA0BC"}
@@ -0,0 +1,8 @@
1
+ export declare function Skeleton({ type, size }: {
2
+ type: 'line' | 'square' | 'ball';
3
+ size?: {
4
+ width: string;
5
+ height: string;
6
+ margin?: string;
7
+ };
8
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.Skeleton = void 0;
27
+ var jsx_runtime_1 = require("react/jsx-runtime");
28
+ var S = __importStar(require("./styles.js"));
29
+ function Skeleton(_a) {
30
+ var type = _a.type, size = _a.size;
31
+ return (0, jsx_runtime_1.jsx)(S.Skeleton, { className: type, style: size });
32
+ }
33
+ exports.Skeleton = Skeleton;
34
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/components/skeleton/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,0CAA6B;AAE7B,SAAgB,QAAQ,CAAC,EAA+G;QAA7G,IAAI,UAAA,EAAE,IAAI,UAAA;IACnC,OAAO,uBAAC,CAAC,CAAC,QAAQ,IAAC,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,GAAG,CAAA;AACpD,CAAC;AAFD,4BAEC"}
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const Skeleton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
3
+ if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
4
+ return cooked;
5
+ };
6
+ var __importDefault = (this && this.__importDefault) || function (mod) {
7
+ return (mod && mod.__esModule) ? mod : { "default": mod };
8
+ };
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ exports.Skeleton = void 0;
11
+ var styled_components_1 = __importDefault(require("styled-components"));
12
+ exports.Skeleton = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: relative;\n overflow: hidden;\n background-color: #dddbdd;\n height: 100%;\n width: 100%;\n\n &::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n transform: translateX(-100%);\n background-image: linear-gradient(\n 90deg,\n rgba(255, 255, 255, 0) 0,\n rgba(255, 255, 255, 0.2) 20%,\n rgba(255, 255, 255, 0.5) 60%,\n rgba(255, 255, 255, 0)\n );\n animation: shimmer 2.5s infinite;\n content: '';\n\n @keyframes shimmer {\n 100% {\n transform: translateX(100%);\n }\n }\n }\n\n &.line {\n width: 100%;\n height: 8px;\n margin-bottom: 8px;\n }\n\n &.square {\n width: 40px;\n height: 40px;\n }\n\n &.ball {\n width: 40px;\n width: 40px;\n border-radius: 100%;\n }\n"], ["\n position: relative;\n overflow: hidden;\n background-color: #dddbdd;\n height: 100%;\n width: 100%;\n\n &::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n transform: translateX(-100%);\n background-image: linear-gradient(\n 90deg,\n rgba(255, 255, 255, 0) 0,\n rgba(255, 255, 255, 0.2) 20%,\n rgba(255, 255, 255, 0.5) 60%,\n rgba(255, 255, 255, 0)\n );\n animation: shimmer 2.5s infinite;\n content: '';\n\n @keyframes shimmer {\n 100% {\n transform: translateX(100%);\n }\n }\n }\n\n &.line {\n width: 100%;\n height: 8px;\n margin-bottom: 8px;\n }\n\n &.square {\n width: 40px;\n height: 40px;\n }\n\n &.ball {\n width: 40px;\n width: 40px;\n border-radius: 100%;\n }\n"])));
13
+ var templateObject_1;
14
+ //# sourceMappingURL=styles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../../src/ui/components/skeleton/styles.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,wEAAsC;AAEzB,QAAA,QAAQ,GAAG,2BAAM,CAAC,GAAG,w3BAAA,qzBA+CjC,KAAA"}
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { ITooltip } from 'react-tooltip';
3
+ export declare function Tooltip(props: ITooltip & {
4
+ target: React.ReactNode;
5
+ custom?: React.ReactNode;
6
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Tooltip = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var utils_1 = require("../../../ui/utils/index.js");
17
+ var react_tooltip_1 = require("react-tooltip");
18
+ function Tooltip(props) {
19
+ var id = String("uid_" + (0, utils_1.uid)(8));
20
+ return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(react_tooltip_1.Tooltip, __assign({}, props, { id: id, anchorSelect: "#".concat(id), children: props.custom && props.custom })), (0, jsx_runtime_1.jsx)("a", { id: id, children: props.target })] }));
21
+ }
22
+ exports.Tooltip = Tooltip;
23
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/components/tooltip/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,oCAAiC;AACjC,+CAAiE;AAEjE,SAAgB,OAAO,CAAC,KAAuE;IAC7F,IAAM,EAAE,GAAG,MAAM,CAAC,MAAM,GAAG,IAAA,WAAG,EAAC,CAAC,CAAC,CAAC,CAAC;IAEnC,OAAO,CACL,6DACE,uBAAC,uBAAY,eAAK,KAAK,IAAE,EAAE,EAAE,EAAE,EAAE,YAAY,EAAE,WAAI,EAAE,CAAE,YACpD,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC,MAAM,IAChB,EAEf,8BAAG,EAAE,EAAE,EAAE,YAAG,KAAK,CAAC,MAAM,GAAK,IAC5B,CACJ,CAAA;AACH,CAAC;AAZD,0BAYC"}
@@ -0,0 +1,109 @@
1
+ :root {
2
+ --rt-color-white: #fff;
3
+ --rt-color-dark: #222;
4
+ --rt-color-success: #8dc572;
5
+ --rt-color-error: #be6464;
6
+ --rt-color-warning: #f0ad4e;
7
+ --rt-color-info: #337ab7;
8
+ --rt-opacity: 0.9;
9
+ --rt-transition-show-delay: 0.15s;
10
+ --rt-transition-closing-delay: 0.15s;
11
+ }
12
+
13
+ .core-styles-module_tooltip__3vRRp {
14
+ position: absolute;
15
+ top: 0;
16
+ left: 0;
17
+ pointer-events: none;
18
+ opacity: 0;
19
+ will-change: opacity;
20
+ }
21
+
22
+ .core-styles-module_fixed__pcSol {
23
+ position: fixed;
24
+ }
25
+
26
+ .core-styles-module_arrow__cvMwQ {
27
+ position: absolute;
28
+ background: inherit;
29
+ }
30
+
31
+ .core-styles-module_noArrow__xock6 {
32
+ display: none;
33
+ }
34
+
35
+ .core-styles-module_clickable__ZuTTB {
36
+ pointer-events: auto;
37
+ }
38
+
39
+ .core-styles-module_show__Nt9eE {
40
+ opacity: var(--rt-opacity);
41
+ transition: opacity var(--rt-transition-show-delay) ease-out;
42
+ }
43
+
44
+ .core-styles-module_closing__sGnxF {
45
+ opacity: 0;
46
+ transition: opacity var(--rt-transition-closing-delay) ease-in;
47
+ }
48
+
49
+ /** end - core styles **/
50
+
51
+ .styles-module_tooltip__mnnfp {
52
+ padding: 8px 16px;
53
+ border-radius: 3px;
54
+ font-size: 90%;
55
+ width: max-content;
56
+ }
57
+
58
+ .styles-module_arrow__K0L3T {
59
+ width: 8px;
60
+ height: 8px;
61
+ }
62
+
63
+ [class*='react-tooltip__place-top'] > .styles-module_arrow__K0L3T {
64
+ transform: rotate(45deg);
65
+ }
66
+
67
+ [class*='react-tooltip__place-right'] > .styles-module_arrow__K0L3T {
68
+ transform: rotate(135deg);
69
+ }
70
+
71
+ [class*='react-tooltip__place-bottom'] > .styles-module_arrow__K0L3T {
72
+ transform: rotate(225deg);
73
+ }
74
+
75
+ [class*='react-tooltip__place-left'] > .styles-module_arrow__K0L3T {
76
+ transform: rotate(315deg);
77
+ }
78
+
79
+ /** Types variant **/
80
+ .styles-module_dark__xNqje {
81
+ background: var(--rt-color-dark);
82
+ color: var(--rt-color-white);
83
+ }
84
+
85
+ .styles-module_light__Z6W-X {
86
+ background-color: var(--rt-color-white);
87
+ color: var(--rt-color-dark);
88
+ }
89
+
90
+ .styles-module_success__A2AKt {
91
+ background-color: var(--rt-color-success);
92
+ color: var(--rt-color-white);
93
+ }
94
+
95
+ .styles-module_warning__SCK0X {
96
+ background-color: var(--rt-color-warning);
97
+ color: var(--rt-color-white);
98
+ }
99
+
100
+ .styles-module_error__JvumD {
101
+ background-color: var(--rt-color-error);
102
+ color: var(--rt-color-white);
103
+ }
104
+
105
+ .styles-module_info__BWdHW {
106
+ background-color: var(--rt-color-info);
107
+ color: var(--rt-color-white);
108
+ }
109
+
@@ -0,0 +1,352 @@
1
+ *,
2
+ *::before,
3
+ *::after {
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ button,
8
+ a {
9
+ outline: unset !important;
10
+ cursor: pointer;
11
+ }
12
+
13
+ html {
14
+ font-family: sans-serif;
15
+ line-height: 1.15;
16
+ -webkit-text-size-adjust: 100%;
17
+ -ms-text-size-adjust: 100%;
18
+ -ms-overflow-style: scrollbar;
19
+ -webkit-tap-highlight-color: transparent;
20
+ }
21
+
22
+ .row {
23
+ display: flex;
24
+ gap: 15px;
25
+ }
26
+
27
+ @-ms-viewport {
28
+ width: device-width;
29
+ }
30
+
31
+ article,
32
+ aside,
33
+ dialog,
34
+ figcaption,
35
+ figure,
36
+ footer,
37
+ header,
38
+ hgroup,
39
+ main,
40
+ nav,
41
+ section {
42
+ display: block;
43
+ }
44
+
45
+ body {
46
+ margin: 0;
47
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
48
+ "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
49
+ "Segoe UI Symbol";
50
+ font-size: 1rem;
51
+ font-weight: normal;
52
+ line-height: 1.5;
53
+ color: #212529;
54
+ text-align: left;
55
+ background-color: #fff;
56
+ }
57
+
58
+ [tabindex="-1"]:focus {
59
+ outline: none !important;
60
+ }
61
+
62
+ hr {
63
+ box-sizing: content-box;
64
+ height: 0;
65
+ overflow: visible;
66
+ }
67
+
68
+ h1,
69
+ h2,
70
+ h3,
71
+ h4,
72
+ h5,
73
+ h6 {
74
+ margin-top: 0;
75
+ margin-bottom: 0.5rem;
76
+ }
77
+
78
+ p {
79
+ margin-top: 0;
80
+ margin-bottom: 1rem;
81
+ }
82
+
83
+ abbr[title],
84
+ abbr[data-original-title] {
85
+ text-decoration: underline;
86
+ -webkit-text-decoration: underline dotted;
87
+ text-decoration: underline dotted;
88
+ cursor: help;
89
+ border-bottom: 0;
90
+ }
91
+ address {
92
+ margin-bottom: 1rem;
93
+ font-style: normal;
94
+ line-height: inherit;
95
+ }
96
+ ol,
97
+ ul,
98
+ dl {
99
+ margin-top: 0;
100
+ margin-bottom: 1rem;
101
+ }
102
+ ol ol,
103
+ ul ul,
104
+ ol ul,
105
+ ul ol {
106
+ margin-bottom: 0;
107
+ }
108
+ dt {
109
+ font-weight: bold;
110
+ }
111
+ dd {
112
+ margin-bottom: 0.5rem;
113
+ margin-left: 0;
114
+ }
115
+ blockquote {
116
+ margin: 0 0 1rem;
117
+ }
118
+ dfn {
119
+ font-style: italic;
120
+ }
121
+ b,
122
+ strong {
123
+ font-weight: bolder;
124
+ }
125
+ small {
126
+ font-size: 80%;
127
+ }
128
+ sub,
129
+ sup {
130
+ position: relative;
131
+ font-size: 75%;
132
+ line-height: 0;
133
+ vertical-align: baseline;
134
+ }
135
+ sub {
136
+ bottom: -0.25em;
137
+ }
138
+ sup {
139
+ top: -0.5em;
140
+ }
141
+
142
+ a {
143
+ color: #007bff;
144
+ text-decoration: none;
145
+ background-color: transparent;
146
+ -webkit-text-decoration-skip: objects;
147
+ }
148
+ a:hover {
149
+ color: #0056b3;
150
+ text-decoration: underline;
151
+ }
152
+
153
+ a:not([href]):not([tabindex]) {
154
+ text-decoration: none;
155
+ }
156
+ a:not([href]):not([tabindex]):focus,
157
+ a:not([href]):not([tabindex]):hover {
158
+ text-decoration: none;
159
+ }
160
+ a:not([href]):not([tabindex]):focus {
161
+ outline: 0;
162
+ }
163
+
164
+ pre,
165
+ code,
166
+ kbd,
167
+ samp {
168
+ font-family: monospace, monospace;
169
+ font-size: 1em;
170
+ }
171
+ pre {
172
+ margin-top: 0;
173
+
174
+ margin-bottom: 1rem;
175
+ overflow: auto;
176
+ -ms-overflow-style: scrollbar;
177
+ }
178
+
179
+ figure {
180
+ margin: 0 0 1rem;
181
+ }
182
+
183
+ img {
184
+ vertical-align: middle;
185
+ border-style: none;
186
+ }
187
+ svg:not(:root) {
188
+ overflow: hidden;
189
+ }
190
+
191
+ a,
192
+ area,
193
+ button,
194
+ [role="button"],
195
+ input:not([type="range"]),
196
+ label,
197
+ select,
198
+ summary,
199
+ textarea {
200
+ -ms-touch-action: manipulation;
201
+ touch-action: manipulation;
202
+ }
203
+
204
+ table {
205
+ border-collapse: collapse;
206
+ }
207
+ caption {
208
+ padding-top: 0.75rem;
209
+ padding-bottom: 0.75rem;
210
+ color: #868e96;
211
+ text-align: left;
212
+ caption-side: bottom;
213
+ }
214
+ th {
215
+ text-align: inherit;
216
+ }
217
+
218
+ label {
219
+ display: inline-block;
220
+ margin-bottom: 0.5rem;
221
+ }
222
+
223
+ button {
224
+ border-radius: 0;
225
+ }
226
+
227
+ button:focus {
228
+ outline: 1px dotted;
229
+ outline: 5px auto -webkit-focus-ring-color;
230
+ }
231
+ input,
232
+ button,
233
+ select,
234
+ optgroup,
235
+ textarea {
236
+ margin: 0;
237
+ font-family: inherit;
238
+ font-size: inherit;
239
+ line-height: inherit;
240
+ }
241
+ button,
242
+ input {
243
+ overflow: visible;
244
+ }
245
+ button,
246
+ select {
247
+ text-transform: none;
248
+ }
249
+
250
+ button,
251
+ html [type="button"],
252
+ [type="reset"],
253
+ [type="submit"] {
254
+ -webkit-appearance: button;
255
+ }
256
+
257
+ button::-moz-focus-inner,
258
+ [type="button"]::-moz-focus-inner,
259
+ [type="reset"]::-moz-focus-inner,
260
+ [type="submit"]::-moz-focus-inner {
261
+ padding: 0;
262
+ border-style: none;
263
+ }
264
+ input[type="radio"],
265
+ input[type="checkbox"] {
266
+ box-sizing: border-box;
267
+ padding: 0;
268
+ }
269
+ input[type="date"],
270
+ input[type="time"],
271
+ input[type="datetime-local"],
272
+ input[type="month"] {
273
+ -webkit-appearance: listbox;
274
+ }
275
+ textarea {
276
+ overflow: auto;
277
+ resize: vertical;
278
+ }
279
+ fieldset {
280
+ min-width: 0;
281
+ padding: 0;
282
+ margin: 0;
283
+ border: 0;
284
+ }
285
+
286
+ legend {
287
+ display: block;
288
+ width: 100%;
289
+ max-width: 100%;
290
+ padding: 0;
291
+ margin-bottom: 0.5rem;
292
+ font-size: 1.5rem;
293
+ line-height: inherit;
294
+ color: inherit;
295
+ white-space: normal;
296
+ }
297
+ progress {
298
+ vertical-align: baseline;
299
+ }
300
+
301
+ [type="number"]::-webkit-inner-spin-button,
302
+ [type="number"]::-webkit-outer-spin-button {
303
+ height: auto;
304
+ }
305
+ [type="search"] {
306
+ outline-offset: -2px;
307
+ -webkit-appearance: none;
308
+ }
309
+
310
+ [type="search"]::-webkit-search-cancel-button,
311
+ [type="search"]::-webkit-search-decoration {
312
+ -webkit-appearance: none;
313
+ }
314
+
315
+ ::-webkit-file-upload-button {
316
+ font: inherit;
317
+ -webkit-appearance: button;
318
+ }
319
+
320
+ output {
321
+ display: inline-block;
322
+ }
323
+ summary {
324
+ display: list-item;
325
+ }
326
+ template {
327
+ display: none;
328
+ }
329
+
330
+ [hidden] {
331
+ display: none !important;
332
+ }
333
+
334
+ ul,
335
+ ul li {
336
+ list-style-type: none;
337
+ padding-left: 0;
338
+ }
339
+
340
+ @keyframes placeHolderShimmer {
341
+ 0% {
342
+ background-position: 0px 0;
343
+ }
344
+ 100% {
345
+ background-position: 100vw 0;
346
+ }
347
+ }
348
+ .ReactModal__Overlay, .ReactModalPortal {
349
+ z-index: 100000;
350
+ position: relative;
351
+ }
352
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infinity-forge",
3
- "version": "0.41.1",
3
+ "version": "0.41.3",
4
4
  "description": "codie Library",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -73,6 +73,7 @@
73
73
  "react-semantic-ui-datepickers": "^2.17.2",
74
74
  "react-share": "^5.1.0",
75
75
  "react-slick": "^0.30.2",
76
+ "react-tooltip": "^5.26.4",
76
77
  "reflect-metadata": "^0.2.2",
77
78
  "semantic-ui-react": "^2.1.5",
78
79
  "sharp": "^0.33.4",