infinity-forge 0.30.6 → 0.30.8
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/system/presentation/components/layout/component.d.ts +7 -3
- package/dist/system/presentation/components/layout/component.js +2 -2
- package/dist/system/presentation/components/layout/component.js.map +1 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/index.d.ts +1 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/index.js +2 -2
- package/dist/system/presentation/components/layout/header/components/menu-right/index.js.map +1 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/notifications/index.d.ts +4 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/notifications/index.js +8 -3
- package/dist/system/presentation/components/layout/header/components/menu-right/notifications/index.js.map +1 -1
- package/dist/system/presentation/components/layout/header/components/menu-right/notifications/interfaces.d.ts +4 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/notifications/interfaces.js +3 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/notifications/interfaces.js.map +1 -0
- package/dist/system/presentation/components/layout/header/index.d.ts +2 -1
- package/dist/system/presentation/components/layout/header/index.js +5 -3
- package/dist/system/presentation/components/layout/header/index.js.map +1 -1
- package/dist/system/presentation/components/layout/header/version-01/index.d.ts +2 -1
- package/dist/system/presentation/components/layout/header/version-01/index.js +2 -2
- package/dist/system/presentation/components/layout/header/version-01/index.js.map +1 -1
- package/dist/ui/icons/index.d.ts +3 -0
- package/dist/ui/icons/index.js +3 -0
- package/dist/ui/icons/index.js.map +1 -1
- package/dist/ui/icons/render/door.d.ts +2 -0
- package/dist/ui/icons/render/door.js +10 -0
- package/dist/ui/icons/render/door.js.map +1 -0
- package/dist/ui/icons/render/padlock.d.ts +2 -0
- package/dist/ui/icons/render/padlock.js +10 -0
- package/dist/ui/icons/render/padlock.js.map +1 -0
- package/dist/ui/icons/render/person.d.ts +2 -0
- package/dist/ui/icons/render/person.js +10 -0
- package/dist/ui/icons/render/person.js.map +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { INotification } from './header/components/menu-right/notifications/interfaces.js';
|
|
2
3
|
import { WorkSpace } from './menu/components/index.js';
|
|
3
|
-
|
|
4
|
-
children: React.ReactNode;
|
|
4
|
+
interface ILayout {
|
|
5
5
|
workspaces?: WorkSpace;
|
|
6
|
-
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
notifications?: INotification;
|
|
8
|
+
}
|
|
9
|
+
export declare function Layout({ children, workspaces, notifications }: ILayout): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -28,8 +28,8 @@ var jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
28
28
|
var header_1 = require("./header/index.js");
|
|
29
29
|
var S = __importStar(require("./styles.js"));
|
|
30
30
|
function Layout(_a) {
|
|
31
|
-
var children = _a.children, workspaces = _a.workspaces;
|
|
32
|
-
return ((0, jsx_runtime_1.jsxs)(S.Layout, { children: [(0, jsx_runtime_1.jsx)(header_1.Header, { workspaces: workspaces }), (0, jsx_runtime_1.jsx)("div", { className: 'content_layout', children: (0, jsx_runtime_1.jsx)("main", { children: children }) })] }));
|
|
31
|
+
var children = _a.children, workspaces = _a.workspaces, notifications = _a.notifications;
|
|
32
|
+
return ((0, jsx_runtime_1.jsxs)(S.Layout, { children: [(0, jsx_runtime_1.jsx)(header_1.Header, { workspaces: workspaces, notifications: notifications }), (0, jsx_runtime_1.jsx)("div", { className: 'content_layout', children: (0, jsx_runtime_1.jsx)("main", { children: children }) })] }));
|
|
33
33
|
}
|
|
34
34
|
exports.Layout = Layout;
|
|
35
35
|
//# sourceMappingURL=component.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../../src/system/presentation/components/layout/component.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mCAAiC;
|
|
1
|
+
{"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../../src/system/presentation/components/layout/component.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mCAAiC;AAIjC,0CAA6B;AAQ7B,SAAgB,MAAM,CAAC,EAAgD;QAA9C,QAAQ,cAAA,EAAE,UAAU,gBAAA,EAAE,aAAa,mBAAA;IAC1D,OAAO,CACL,wBAAC,CAAC,CAAC,MAAM,eACP,uBAAC,eAAM,IAAC,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,aAAa,GAAI,EAEhE,gCAAK,SAAS,EAAC,gBAAgB,YAC7B,2CAAO,QAAQ,GAAQ,GACnB,IACG,CACZ,CAAA;AACH,CAAC;AAVD,wBAUC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function MenuRight(): import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
export declare function MenuRight(props: any): import("react/jsx-runtime").JSX.Element;
|
|
@@ -31,8 +31,8 @@ var settings_1 = require("./settings/index.js");
|
|
|
31
31
|
var messages_1 = require("./messages/index.js");
|
|
32
32
|
var notifications_1 = require("./notifications/index.js");
|
|
33
33
|
var S = __importStar(require("./styles.js"));
|
|
34
|
-
function MenuRight() {
|
|
35
|
-
return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: 'MenuRight', children: (0, jsx_runtime_1.jsxs)(S.MenuRight, { children: [(0, jsx_runtime_1.jsx)(notifications_1.Notifications, {}), (0, jsx_runtime_1.jsx)(messages_1.Messages, {}), (0, jsx_runtime_1.jsx)(settings_1.Settings, {}), (0, jsx_runtime_1.jsx)(profile_1.Profile, {})] }) }));
|
|
34
|
+
function MenuRight(props) {
|
|
35
|
+
return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: 'MenuRight', children: (0, jsx_runtime_1.jsxs)(S.MenuRight, { children: [props.notifications && (0, jsx_runtime_1.jsx)(notifications_1.Notifications, { notifications: props === null || props === void 0 ? void 0 : props.notifications }), (0, jsx_runtime_1.jsx)(messages_1.Messages, {}), (0, jsx_runtime_1.jsx)(settings_1.Settings, {}), (0, jsx_runtime_1.jsx)(profile_1.Profile, {})] }) }));
|
|
36
36
|
}
|
|
37
37
|
exports.MenuRight = MenuRight;
|
|
38
38
|
//# sourceMappingURL=index.js.map
|
package/dist/system/presentation/components/layout/header/components/menu-right/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../src/system/presentation/components/layout/header/components/menu-right/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2BAA4B;AAC5B,qCAAmC;AACnC,uCAAqC;AACrC,uCAAqC;AACrC,iDAA+C;AAE/C,0CAA6B;AAE7B,SAAgB,SAAS;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../src/system/presentation/components/layout/header/components/menu-right/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2BAA4B;AAC5B,qCAAmC;AACnC,uCAAqC;AACrC,uCAAqC;AACrC,iDAA+C;AAE/C,0CAA6B;AAE7B,SAAgB,SAAS,CAAC,KAAK;IAC7B,OAAO,CACL,uBAAC,UAAK,IAAC,IAAI,EAAC,WAAW,YACrB,wBAAC,CAAC,CAAC,SAAS,eACT,KAAK,CAAC,aAAa,IAAI,uBAAC,6BAAa,IAAC,aAAa,EAAE,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,aAAa,GAAI,EAE9E,uBAAC,mBAAQ,KAAG,EAEZ,uBAAC,mBAAQ,KAAG,EAEZ,uBAAC,iBAAO,KAAG,IACC,GACR,CACT,CAAA;AACH,CAAC;AAdD,8BAcC"}
|
|
@@ -28,9 +28,14 @@ var jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
28
28
|
var ui_1 = require("../../../../../../../../ui/index.js");
|
|
29
29
|
var S = __importStar(require("./styles.js"));
|
|
30
30
|
var styles_1 = require("../styles.js");
|
|
31
|
-
function Notifications() {
|
|
32
|
-
var
|
|
33
|
-
|
|
31
|
+
function Notifications(_a) {
|
|
32
|
+
var _b;
|
|
33
|
+
var notifications = _a.notifications;
|
|
34
|
+
var timezone = (_b = new Date()) === null || _b === void 0 ? void 0 : _b.toISOString();
|
|
35
|
+
console.log(timezone);
|
|
36
|
+
var result = notifications === null || notifications === void 0 ? void 0 : notifications.loadNotifications(timezone).then(function (r) { return r.json(); });
|
|
37
|
+
console.log(result);
|
|
38
|
+
return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: 'Notifications', children: (0, jsx_runtime_1.jsx)(S.Notifications, { children: (0, jsx_runtime_1.jsxs)(styles_1.ActionBox, { type: 'button', children: [(notifications === null || notifications === void 0 ? void 0 : notifications.noRead) > 0 && (0, jsx_runtime_1.jsx)("div", { className: 'circle' }), (0, jsx_runtime_1.jsx)(ui_1.Icon, { name: 'IconFullFieldBell' })] }) }) }));
|
|
34
39
|
}
|
|
35
40
|
exports.Notifications = Notifications;
|
|
36
41
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../src/system/presentation/components/layout/header/components/menu-right/notifications/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2BAAkC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../src/system/presentation/components/layout/header/components/menu-right/notifications/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2BAAkC;AAIlC,0CAA6B;AAC7B,oCAAqC;AACrC,SAAgB,aAAa,CAAC,EAAmD;;QAAjD,aAAa,mBAAA;IAC3C,IAAM,QAAQ,GAAG,MAAA,IAAI,IAAI,EAAE,0CAAE,WAAW,EAAE,CAAA;IAC1C,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;IAErB,IAAM,MAAM,GAAG,aAAa,aAAb,aAAa,uBAAb,aAAa,CAAE,iBAAiB,CAAC,QAAQ,EAAE,IAAI,CAAC,UAAC,CAAC,IAAK,OAAA,CAAC,CAAC,IAAI,EAAE,EAAR,CAAQ,CAAC,CAAA;IAE/E,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;IAEnB,OAAO,CACL,uBAAC,UAAK,IAAC,IAAI,EAAC,eAAe,YACzB,uBAAC,CAAC,CAAC,aAAa,cACd,wBAAC,kBAAS,IAAC,IAAI,EAAC,QAAQ,aACrB,CAAA,aAAa,aAAb,aAAa,uBAAb,aAAa,CAAE,MAAM,IAAG,CAAC,IAAI,gCAAK,SAAS,EAAC,QAAQ,GAAG,EAExD,uBAAC,SAAI,IAAC,IAAI,EAAC,mBAAmB,GAAG,IACvB,GACI,GACZ,CACT,CAAA;AACH,CAAC;AAnBD,sCAmBC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../../../../../../../src/system/presentation/components/layout/header/components/menu-right/notifications/interfaces.ts"],"names":[],"mappings":""}
|
|
@@ -4,12 +4,14 @@ exports.Header = void 0;
|
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
var version_01_1 = require("./version-01/index.js");
|
|
6
6
|
function Header(_a) {
|
|
7
|
-
var workspaces = _a.workspaces;
|
|
7
|
+
var workspaces = _a.workspaces, notifications = _a.notifications;
|
|
8
8
|
var type = 'version01';
|
|
9
9
|
switch (type) {
|
|
10
10
|
case 'version01':
|
|
11
|
-
return (0, jsx_runtime_1.jsx)(version_01_1.HeaderVersion01, { workspaces: workspaces });
|
|
12
|
-
default:
|
|
11
|
+
return (0, jsx_runtime_1.jsx)(version_01_1.HeaderVersion01, { workspaces: workspaces, notifications: notifications });
|
|
12
|
+
default:
|
|
13
|
+
;
|
|
14
|
+
(0, jsx_runtime_1.jsx)(version_01_1.HeaderVersion01, { workspaces: workspaces, notifications: notifications });
|
|
13
15
|
}
|
|
14
16
|
}
|
|
15
17
|
exports.Header = Header;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/system/presentation/components/layout/header/index.tsx"],"names":[],"mappings":";;;;AAAA,2CAA8C;AAE9C,SAAgB,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/system/presentation/components/layout/header/index.tsx"],"names":[],"mappings":";;;;AAAA,2CAA8C;AAE9C,SAAgB,MAAM,CAAC,EAA6B;QAA3B,UAAU,gBAAA,EAAE,aAAa,mBAAA;IAChD,IAAM,IAAI,GAAG,WAAW,CAAA;IAExB,QAAQ,IAAI,EAAE,CAAC;QACb,KAAK,WAAW;YACd,OAAO,uBAAC,4BAAe,IAAC,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,aAAa,GAAI,CAAA;QAElF;YACE,CAAC;YAAA,uBAAC,4BAAe,IAAC,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,aAAa,GAAI,CAAA;IAC9E,CAAC;AACH,CAAC;AAVD,wBAUC"}
|
|
@@ -34,8 +34,8 @@ var menu_1 = require("../../menu/index.js");
|
|
|
34
34
|
var components_1 = require("../components/index.js");
|
|
35
35
|
var S = __importStar(require("./styles.js"));
|
|
36
36
|
function HeaderVersion01(_a) {
|
|
37
|
-
var workspaces = _a.workspaces;
|
|
38
|
-
return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: 'HeaderCarbon', children: (0, jsx_runtime_1.jsx)(S.HeaderVersion01, { id: 'header', children: (0, jsx_runtime_1.jsxs)(ui_1.Container, { children: [(0, jsx_runtime_1.jsxs)("div", { className: 'left', children: [(0, jsx_runtime_1.jsx)("div", { className: 'logo-wrapper', children: (0, jsx_runtime_1.jsx)(link_1.default, { className: 'logo', href: '/', children: (0, jsx_runtime_1.jsx)("img", { src: '/images/logo.png', alt: 'header-logo' }) }) }), (0, jsx_runtime_1.jsx)(menu_1.SideBarMenu, { workspaces: workspaces })] }), (0, jsx_runtime_1.jsxs)("div", { className: 'right', children: [(0, jsx_runtime_1.jsx)(components_1.SearchModal, {}), (0, jsx_runtime_1.jsx)(components_1.MenuRight, {})] })] }) }) }));
|
|
37
|
+
var workspaces = _a.workspaces, notifications = _a.notifications;
|
|
38
|
+
return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: 'HeaderCarbon', children: (0, jsx_runtime_1.jsx)(S.HeaderVersion01, { id: 'header', children: (0, jsx_runtime_1.jsxs)(ui_1.Container, { children: [(0, jsx_runtime_1.jsxs)("div", { className: 'left', children: [(0, jsx_runtime_1.jsx)("div", { className: 'logo-wrapper', children: (0, jsx_runtime_1.jsx)(link_1.default, { className: 'logo', href: '/', children: (0, jsx_runtime_1.jsx)("img", { src: '/images/logo.png', alt: 'header-logo' }) }) }), (0, jsx_runtime_1.jsx)(menu_1.SideBarMenu, { workspaces: workspaces })] }), (0, jsx_runtime_1.jsxs)("div", { className: 'right', children: [(0, jsx_runtime_1.jsx)(components_1.SearchModal, {}), (0, jsx_runtime_1.jsx)(components_1.MenuRight, { notifications: notifications })] })] }) }) }));
|
|
39
39
|
}
|
|
40
40
|
exports.HeaderVersion01 = HeaderVersion01;
|
|
41
41
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../src/system/presentation/components/layout/header/version-01/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mDAA4B;AAE5B,2BAAuC;AAEvC,mCAAwC;AACxC,4CAAsD;AAEtD,0CAA6B;AAE7B,SAAgB,eAAe,CAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../src/system/presentation/components/layout/header/version-01/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mDAA4B;AAE5B,2BAAuC;AAEvC,mCAAwC;AACxC,4CAAsD;AAEtD,0CAA6B;AAE7B,SAAgB,eAAe,CAAC,EAA6B;QAA3B,UAAU,gBAAA,EAAE,aAAa,mBAAA;IACzD,OAAO,CACL,uBAAC,UAAK,IAAC,IAAI,EAAC,cAAc,YACxB,uBAAC,CAAC,CAAC,eAAe,IAAC,EAAE,EAAC,QAAQ,YAC5B,wBAAC,cAAS,eACR,iCAAK,SAAS,EAAC,MAAM,aACnB,gCAAK,SAAS,EAAC,cAAc,YAC3B,uBAAC,cAAI,IAAC,SAAS,EAAC,MAAM,EAAC,IAAI,EAAC,GAAG,YAC7B,gCAAK,GAAG,EAAC,kBAAkB,EAAC,GAAG,EAAC,aAAa,GAAG,GAC3C,GACH,EAEN,uBAAC,kBAAW,IAAC,UAAU,EAAE,UAAU,GAAI,IACnC,EAEN,iCAAK,SAAS,EAAC,OAAO,aACpB,uBAAC,wBAAW,KAAG,EAEf,uBAAC,sBAAS,IAAC,aAAa,EAAE,aAAa,GAAI,IACvC,IACI,GACM,GACd,CACT,CAAA;AACH,CAAC;AAxBD,0CAwBC"}
|
package/dist/ui/icons/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export * from './render/Home.js';
|
|
|
17
17
|
export * from './render/chat.js';
|
|
18
18
|
export * from './render/word.js';
|
|
19
19
|
export * from './render/user.js';
|
|
20
|
+
export * from './render/door.js';
|
|
20
21
|
export * from './render/excel.js';
|
|
21
22
|
export * from './render/index.js';
|
|
22
23
|
export * from './render/Share.js';
|
|
@@ -36,7 +37,9 @@ export * from './render/Twitter.js';
|
|
|
36
37
|
export * from './render/YouTube.js';
|
|
37
38
|
export * from './render/delete.js';
|
|
38
39
|
export * from './render/upload.js';
|
|
40
|
+
export * from './render/person.js';
|
|
39
41
|
export * from './render/shopping.js';
|
|
42
|
+
export * from './render/padlock.js';
|
|
40
43
|
export * from './render/NavDown.js';
|
|
41
44
|
export * from './render/NavLeft.js';
|
|
42
45
|
export * from './render/loading.js';
|
package/dist/ui/icons/index.js
CHANGED
|
@@ -33,6 +33,7 @@ __exportStar(require("./render/Home.js"), exports);
|
|
|
33
33
|
__exportStar(require("./render/chat.js"), exports);
|
|
34
34
|
__exportStar(require("./render/word.js"), exports);
|
|
35
35
|
__exportStar(require("./render/user.js"), exports);
|
|
36
|
+
__exportStar(require("./render/door.js"), exports);
|
|
36
37
|
__exportStar(require("./render/excel.js"), exports);
|
|
37
38
|
__exportStar(require("./render/index.js"), exports);
|
|
38
39
|
__exportStar(require("./render/Share.js"), exports);
|
|
@@ -52,7 +53,9 @@ __exportStar(require("./render/Twitter.js"), exports);
|
|
|
52
53
|
__exportStar(require("./render/YouTube.js"), exports);
|
|
53
54
|
__exportStar(require("./render/delete.js"), exports);
|
|
54
55
|
__exportStar(require("./render/upload.js"), exports);
|
|
56
|
+
__exportStar(require("./render/person.js"), exports);
|
|
55
57
|
__exportStar(require("./render/shopping.js"), exports);
|
|
58
|
+
__exportStar(require("./render/padlock.js"), exports);
|
|
56
59
|
__exportStar(require("./render/NavDown.js"), exports);
|
|
57
60
|
__exportStar(require("./render/NavLeft.js"), exports);
|
|
58
61
|
__exportStar(require("./render/loading.js"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/ui/icons/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA4B;AAC5B,+CAA4B;AAC5B,+CAA4B;AAC5B,gDAA6B;AAC7B,+CAA4B;AAC5B,iDAA8B;AAC9B,gDAA6B;AAC7B,+CAA4B;AAC5B,gDAA6B;AAC7B,gDAA6B;AAC7B,gDAA6B;AAC7B,gDAA6B;AAC7B,gDAA6B;AAC7B,iDAA8B;AAC9B,iDAA8B;AAC9B,gDAA6B;AAC7B,gDAA6B;AAC7B,gDAA6B;AAC7B,gDAA6B;AAC7B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,gDAA6B;AAC7B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,kDAA+B;AAC/B,kDAA+B;AAC/B,kDAA+B;AAC/B,mDAAgC;AAChC,mDAAgC;AAChC,kDAA+B;AAC/B,kDAA+B;AAC/B,oDAAiC;AACjC,mDAAgC;AAChC,mDAAgC;AAChC,mDAAgC;AAChC,mDAAgC;AAChC,oDAAiC;AACjC,oDAAiC;AACjC,oDAAiC;AACjC,oDAAiC;AACjC,oDAAiC;AACjC,qDAAkC;AAClC,sDAAmC;AACnC,qDAAkC;AAClC,sDAAmC;AACnC,sDAAmC;AACnC,oDAAiC;AACjC,qDAAkC;AAClC,sDAAmC;AACnC,uDAAoC;AACpC,wDAAqC;AACrC,yDAAsC;AACtC,yDAAsC;AACtC,yDAAsC;AACtC,0DAAuC;AACvC,0DAAuC;AACvC,2DAAwC;AACxC,4DAAyC;AACzC,6DAA0C;AAC1C,8DAA2C;AAC3C,8DAA2C;AAC3C,+DAA4C;AAC5C,+DAA4C;AAC5C,gEAA6C;AAC7C,gEAA6C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/ui/icons/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA4B;AAC5B,+CAA4B;AAC5B,+CAA4B;AAC5B,gDAA6B;AAC7B,+CAA4B;AAC5B,iDAA8B;AAC9B,gDAA6B;AAC7B,+CAA4B;AAC5B,gDAA6B;AAC7B,gDAA6B;AAC7B,gDAA6B;AAC7B,gDAA6B;AAC7B,gDAA6B;AAC7B,iDAA8B;AAC9B,iDAA8B;AAC9B,gDAA6B;AAC7B,gDAA6B;AAC7B,gDAA6B;AAC7B,gDAA6B;AAC7B,gDAA6B;AAC7B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,gDAA6B;AAC7B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,kDAA+B;AAC/B,kDAA+B;AAC/B,kDAA+B;AAC/B,mDAAgC;AAChC,mDAAgC;AAChC,kDAA+B;AAC/B,kDAA+B;AAC/B,kDAA+B;AAC/B,oDAAiC;AACjC,mDAAgC;AAChC,mDAAgC;AAChC,mDAAgC;AAChC,mDAAgC;AAChC,mDAAgC;AAChC,oDAAiC;AACjC,oDAAiC;AACjC,oDAAiC;AACjC,oDAAiC;AACjC,oDAAiC;AACjC,qDAAkC;AAClC,sDAAmC;AACnC,qDAAkC;AAClC,sDAAmC;AACnC,sDAAmC;AACnC,oDAAiC;AACjC,qDAAkC;AAClC,sDAAmC;AACnC,uDAAoC;AACpC,wDAAqC;AACrC,yDAAsC;AACtC,yDAAsC;AACtC,yDAAsC;AACtC,0DAAuC;AACvC,0DAAuC;AACvC,2DAAwC;AACxC,4DAAyC;AACzC,6DAA0C;AAC1C,8DAA2C;AAC3C,8DAA2C;AAC3C,+DAA4C;AAC5C,+DAA4C;AAC5C,gEAA6C;AAC7C,gEAA6C"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconDoor = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
function IconDoor(_a) {
|
|
6
|
+
var fill = _a.fill;
|
|
7
|
+
return ((0, jsx_runtime_1.jsxs)("svg", { width: '22', height: '22', viewBox: '0 0 22 22', fill: 'none', xmlns: 'https://www.w3.org/2000/svg', children: [(0, jsx_runtime_1.jsx)("path", { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M20.625 22C20.9974 22 21.3197 21.8675 21.5918 21.6025C21.8639 21.3376 22 21.0117 22 20.625L22 1.375C22 0.988283 21.8639 0.662441 21.5918 0.397464C21.3197 0.132489 20.9974 3.08186e-06 20.625 3.04931e-06L8.9375 2.02755e-06C8.55078 1.99375e-06 8.22494 0.132488 7.95996 0.397463C7.69499 0.662439 7.5625 0.988281 7.5625 1.375L7.5625 7.58399L8.9375 7.58399L8.9375 2.21289C8.9375 1.98372 9.01986 1.78679 9.18457 1.62207C9.34929 1.45736 9.54622 1.375 9.77539 1.375L19.7871 1.375C20.0163 1.375 20.2096 1.45736 20.3672 1.62207C20.5247 1.78679 20.6035 1.98373 20.6035 2.21289L20.582 19.7871C20.582 20.0163 20.5033 20.2132 20.3457 20.3779C20.1881 20.5426 19.9948 20.625 19.7656 20.625L9.77539 20.625C9.54622 20.625 9.34928 20.5426 9.18457 20.3779C9.01986 20.2132 8.9375 20.0163 8.9375 19.7871L8.9375 14.4375L7.5625 14.4375L7.5625 20.625C7.5625 21.0117 7.69499 21.3376 7.95996 21.6025C8.22494 21.8675 8.55078 22 8.9375 22L20.625 22Z', fill: fill }), (0, jsx_runtime_1.jsx)("path", { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M12.5898 10.3125L10.0547 7.79883C9.92578 7.6556 9.86133 7.49089 9.86133 7.30469C9.86133 7.11849 9.92578 6.95378 10.0547 6.81055C10.1263 6.75326 10.2051 6.70671 10.291 6.6709C10.377 6.63509 10.4629 6.61719 10.5488 6.61719C10.6348 6.61719 10.7207 6.63509 10.8066 6.6709C10.8926 6.70671 10.9714 6.75326 11.043 6.81055L15.1035 10.9785L11.043 15.1465C10.8997 15.2897 10.735 15.3613 10.5488 15.3613C10.3626 15.3613 10.1979 15.2897 10.0547 15.1465C9.92578 15.0176 9.86133 14.8564 9.86133 14.6631C9.86133 14.4697 9.92578 14.3086 10.0547 14.1797L12.5469 11.6875L0.687503 11.6875C0.48698 11.6875 0.322269 11.623 0.193362 11.4941C0.0644551 11.3652 2.9986e-06 11.2005 3.05119e-06 11C3.10002e-06 10.8138 0.0644553 10.6527 0.193363 10.5166C0.322269 10.3805 0.486981 10.3125 0.687503 10.3125L12.5898 10.3125Z', fill: fill })] }));
|
|
8
|
+
}
|
|
9
|
+
exports.IconDoor = IconDoor;
|
|
10
|
+
//# sourceMappingURL=door.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"door.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/door.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,QAAQ,CAAC,EAAe;QAAb,IAAI,UAAA;IAC7B,OAAO,CACL,iCAAK,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,EAAC,KAAK,EAAC,6BAA6B,aAC7F,iCACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,y5BAAy5B,EAC35B,IAAI,EAAE,IAAI,GACJ,EACR,iCACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,2xBAA2xB,EAC7xB,IAAI,EAAE,IAAI,GACJ,IACJ,CACP,CAAA;AACH,CAAC;AAjBD,4BAiBC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconPadlock = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
function IconPadlock(_a) {
|
|
6
|
+
var fill = _a.fill;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { width: '20px', height: '20px', viewBox: '0 0 20 20', fill: 'none', xmlns: 'https://www.w3.org/2000/svg', children: (0, jsx_runtime_1.jsx)("path", { d: 'M18.333 8.8H16.5622V3.2C16.5622 1.4325 15.07 0 13.2288 0H6.77051C4.92936 0 3.43717 1.4325 3.43717 3.2V8.8H1.66634C1.2054 8.8 0.833008 9.1575 0.833008 9.6V19.2C0.833008 19.6425 1.2054 20 1.66634 20H18.333C18.7939 20 19.1663 19.6425 19.1663 19.2V9.6C19.1663 9.1575 18.7939 8.8 18.333 8.8ZM10.7288 14.725V16.05C10.7288 16.16 10.6351 16.25 10.5205 16.25H9.47884C9.36426 16.25 9.27051 16.16 9.27051 16.05V14.725C9.05554 14.5768 8.89509 14.367 8.81225 14.1257C8.72941 13.8845 8.72845 13.6242 8.80952 13.3823C8.89058 13.1405 9.04949 12.9296 9.26336 12.78C9.47723 12.6304 9.73504 12.5498 9.99967 12.5498C10.2643 12.5498 10.5221 12.6304 10.736 12.78C10.9499 12.9296 11.1088 13.1405 11.1898 13.3823C11.2709 13.6242 11.2699 13.8845 11.1871 14.1257C11.1043 14.367 10.9438 14.5768 10.7288 14.725ZM14.6872 8.8H5.31217V3.2C5.31217 2.4275 5.96582 1.8 6.77051 1.8H13.2288C14.0335 1.8 14.6872 2.4275 14.6872 3.2V8.8Z', fill: fill }) }));
|
|
8
|
+
}
|
|
9
|
+
exports.IconPadlock = IconPadlock;
|
|
10
|
+
//# sourceMappingURL=padlock.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"padlock.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/padlock.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,WAAW,CAAC,EAAe;QAAb,IAAI,UAAA;IAChC,OAAO,CACL,gCAAK,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,EAAC,KAAK,EAAC,6BAA6B,YACjG,iCACE,CAAC,EAAC,o4BAAo4B,EACt4B,IAAI,EAAE,IAAI,GACJ,GACJ,CACP,CAAA;AACH,CAAC;AATD,kCASC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconPerson = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
function IconPerson(_a) {
|
|
6
|
+
var fill = _a.fill;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { width: '20px', height: '20px', viewBox: '0 0 36 36', fill: 'none', xmlns: 'https://www.w3.org/2000/svg', children: (0, jsx_runtime_1.jsx)("path", { d: 'M9 8.52632C9 13.2272 13.038 17.0526 18 17.0526C22.962 17.0526 27 13.2272 27 8.52632C27 3.82547 22.962 0 18 0C13.038 0 9 3.82547 9 8.52632ZM34 36H36V34.1053C36 26.7935 29.718 20.8421 22 20.8421H14C6.28 20.8421 0 26.7935 0 34.1053V36H34Z', fill: fill }) }));
|
|
8
|
+
}
|
|
9
|
+
exports.IconPerson = IconPerson;
|
|
10
|
+
//# sourceMappingURL=person.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"person.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/person.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,UAAU,CAAC,EAAe;QAAb,IAAI,UAAA;IAC/B,OAAO,CACL,gCAAK,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,EAAC,KAAK,EAAC,6BAA6B,YACjG,iCACE,CAAC,EAAC,6OAA6O,EAC/O,IAAI,EAAE,IAAI,GACJ,GACJ,CACP,CAAA;AACH,CAAC;AATD,gCASC"}
|