infinity-forge 0.41.0 → 0.41.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.
- package/dist/infinity-forge.css +2 -354
- package/dist/react-tool-tip.css +1 -0
- package/dist/reset.css +1 -0
- package/dist/system/presentation/components/data/chat/loader/index.js +2 -26
- package/dist/system/presentation/components/data/chat/loader/index.js.map +1 -1
- package/dist/system/presentation/components/data/detail-card/component.js +1 -2
- package/dist/system/presentation/components/data/detail-card/component.js.map +1 -1
- package/dist/system/presentation/components/data/notifications/index.js +2 -3
- package/dist/system/presentation/components/data/notifications/index.js.map +1 -1
- package/dist/system/presentation/components/data/tab/component.js +1 -1
- package/dist/system/presentation/components/data/tab/component.js.map +1 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/index.js +2 -6
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/index.js.map +1 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/styles.js +1 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/styles.js.map +1 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/index.js.map +1 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/styles.js +1 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/styles.js.map +1 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/index.js +1 -2
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/index.js.map +1 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/settings/index.js.map +1 -1
- package/dist/system/presentation/context/container.js +1 -2
- package/dist/system/presentation/context/container.js.map +1 -1
- package/dist/system/presentation/hooks/notifications/use-load-all/index.js +1 -1
- package/dist/system/presentation/hooks/notifications/use-load-all/index.js.map +1 -1
- package/dist/system/presentation/hooks/ui/use-table/components/table/actions/index.js +3 -2
- package/dist/system/presentation/hooks/ui/use-table/components/table/actions/index.js.map +1 -1
- package/dist/system/presentation/hooks/ui/use-table/components/table/skeleton-table/index.js +1 -2
- package/dist/system/presentation/hooks/ui/use-table/components/table/skeleton-table/index.js.map +1 -1
- package/dist/system/presentation/hooks/ui/use-table/components/table/skeleton-table/styles.js +1 -1
- package/dist/system/presentation/hooks/ui/use-table/components/table/skeleton-table/styles.js.map +1 -1
- package/dist/ui/components/form/input-file/file-card/index.js +6 -8
- package/dist/ui/components/form/input-file/file-card/index.js.map +1 -1
- package/dist/ui/components/index.d.ts +4 -1
- package/dist/ui/components/index.js +3 -0
- package/dist/ui/components/index.js.map +1 -1
- package/dist/ui/components/modal/index.d.ts +16 -0
- package/dist/ui/components/modal/index.js +34 -0
- package/dist/ui/components/modal/index.js.map +1 -0
- package/dist/ui/components/skeleton/index.d.ts +8 -0
- package/dist/ui/components/skeleton/index.js +34 -0
- package/dist/ui/components/skeleton/index.js.map +1 -0
- package/dist/ui/components/skeleton/styles.d.ts +2 -0
- package/dist/ui/components/skeleton/styles.js +14 -0
- package/dist/ui/components/skeleton/styles.js.map +1 -0
- package/dist/ui/components/tooltip/index.d.ts +6 -0
- package/dist/ui/components/tooltip/index.js +23 -0
- package/dist/ui/components/tooltip/index.js.map +1 -0
- package/dist/ui/contexts/toast/index.js +2 -11
- package/dist/ui/contexts/toast/index.js.map +1 -1
- package/dist/ui/contexts/toast/styles.js +1 -1
- package/dist/ui/contexts/toast/styles.js.map +1 -1
- package/dist/ui/styles/libs/react-tool-tip.css +109 -0
- package/dist/ui/styles/reset.css +352 -0
- package/package.json +2 -1
- package/dist/semantic-ui.css +0 -354
- package/dist/system/presentation/components/data/chat/loader/styles.d.ts +0 -4
- package/dist/system/presentation/components/data/chat/loader/styles.js +0 -14
- package/dist/system/presentation/components/data/chat/loader/styles.js.map +0 -1
- package/dist/ui/styles/libs/semantic-ui.css +0 -26968
|
@@ -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,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"}
|
|
@@ -33,15 +33,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
33
33
|
__setModuleDefault(result, mod);
|
|
34
34
|
return result;
|
|
35
35
|
};
|
|
36
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
37
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
38
|
-
if (ar || !(i in from)) {
|
|
39
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
40
|
-
ar[i] = from[i];
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
44
|
-
};
|
|
45
36
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
46
37
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
47
38
|
};
|
|
@@ -61,9 +52,9 @@ function ToastProvider(_a) {
|
|
|
61
52
|
var _b = (0, react_1.useState)([]), toasts = _b[0], setToast = _b[1];
|
|
62
53
|
function createToast(item) {
|
|
63
54
|
var id = (0, utils_1.uid)(32);
|
|
64
|
-
setToast(
|
|
55
|
+
setToast([__assign(__assign({}, item), { uid: id })]);
|
|
65
56
|
}
|
|
66
|
-
return ((0, jsx_runtime_1.jsxs)(ToastContext.Provider, { value: { createToast: createToast }, children: [children, react_dom_1.default.createPortal((0, jsx_runtime_1.jsx)(S.Toast, { children: toasts === null || toasts === void 0 ? void 0 : toasts.map(function (toast
|
|
57
|
+
return ((0, jsx_runtime_1.jsxs)(ToastContext.Provider, { value: { createToast: createToast }, children: [children, react_dom_1.default.createPortal((0, jsx_runtime_1.jsx)(S.Toast, { children: toasts === null || toasts === void 0 ? void 0 : toasts.map(function (toast) { return ((0, jsx_runtime_1.jsx)(toast_item_1.ToastItem, __assign({}, toast, { setToast: setToast }), toast.uid)); }) }), document.getElementById('__next'))] }));
|
|
67
58
|
}
|
|
68
59
|
exports.ToastProvider = ToastProvider;
|
|
69
60
|
function useToast() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/contexts/toast/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/contexts/toast/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wDAAgC;AAChC,+BAA2D;AAE3D,oCAAgC;AAChC,2CAAwC;AAIxC,0CAA6B;AAE7B,IAAM,YAAY,GAAG,IAAA,qBAAa,EAAyC;IACzE,WAAW,EAAE,cAAO,CAAC;CACtB,CAAC,CAAA;AAEF,SAAS,aAAa,CAAC,EAAY;QAAV,QAAQ,cAAA;IACzB,IAAA,KAAqB,IAAA,gBAAQ,EAAU,EAAE,CAAC,EAAzC,MAAM,QAAA,EAAE,QAAQ,QAAyB,CAAA;IAEhD,SAAS,WAAW,CAAC,IAAW;QAC9B,IAAM,EAAE,GAAG,IAAA,WAAG,EAAC,EAAE,CAAC,CAAA;QAElB,QAAQ,CAAC,uBAAM,IAAI,KAAE,GAAG,EAAE,EAAE,IAAG,CAAC,CAAA;IAClC,CAAC;IAED,OAAO,CACL,wBAAC,YAAY,CAAC,QAAQ,IAAC,KAAK,EAAE,EAAE,WAAW,aAAA,EAAE,aAC1C,QAAQ,EAER,mBAAQ,CAAC,YAAY,CACpB,uBAAC,CAAC,CAAC,KAAK,cACL,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,GAAG,CAAC,UAAC,KAAK,IAAK,OAAA,CACtB,uBAAC,sBAAS,eAAqB,KAAK,IAAE,QAAQ,EAAE,QAAQ,KAAxC,KAAK,CAAC,GAAG,CAAmC,CAC7D,EAFuB,CAEvB,CAAC,GACM,EACV,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,CAClC,IACqB,CACzB,CAAA;AACH,CAAC;AAQQ,sCAAa;AANtB,SAAS,QAAQ;IACf,IAAM,OAAO,GAAG,IAAA,kBAAU,EAAC,YAAY,CAAC,CAAA;IAExC,OAAO,OAAO,CAAA;AAChB,CAAC;AAEuB,4BAAQ"}
|
|
@@ -9,6 +9,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
10
|
exports.Toast = void 0;
|
|
11
11
|
var styled_components_1 = __importDefault(require("styled-components"));
|
|
12
|
-
exports.Toast = (0, styled_components_1.default)('div')(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: fixed;\n top: 15px;\n right: 10px;\n display: flex;\n flex-direction: column;\n gap: 10px;\n"], ["\n position: fixed;\n top: 15px;\n right: 10px;\n display: flex;\n flex-direction: column;\n gap: 10px;\n"])));
|
|
12
|
+
exports.Toast = (0, styled_components_1.default)('div')(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: fixed;\n top: 15px;\n right: 10px;\n display: flex;\n flex-direction: column;\n gap: 10px;\n z-index: 99;\n\n & + * {\n z-index: 2;\n position: relative;\n }\n"], ["\n position: fixed;\n top: 15px;\n right: 10px;\n display: flex;\n flex-direction: column;\n gap: 10px;\n z-index: 99;\n\n & + * {\n z-index: 2;\n position: relative;\n }\n"])));
|
|
13
13
|
var templateObject_1;
|
|
14
14
|
//# sourceMappingURL=styles.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../../src/ui/contexts/toast/styles.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,wEAAsC;AAEzB,QAAA,KAAK,GAAG,IAAA,2BAAM,EAAC,KAAK,CAAC,
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../../src/ui/contexts/toast/styles.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,wEAAsC;AAEzB,QAAA,KAAK,GAAG,IAAA,2BAAM,EAAC,KAAK,CAAC,gQAAA,6LAajC,KAAA"}
|
|
@@ -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.
|
|
3
|
+
"version": "0.41.2",
|
|
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",
|