infinity-forge 2.5.7 → 2.6.0

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 (25) hide show
  1. package/dist/system/presentation/components/layout/header/components/menu-right/messages/content/card/index.js +2 -1
  2. package/dist/system/presentation/components/layout/header/components/menu-right/messages/content/index.js +1 -1
  3. package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/index.js +2 -1
  4. package/dist/system/presentation/components/layout/header/components/menu-right/profile/index.js +4 -4
  5. package/dist/system/presentation/components/layout/header/components/search-modal/search-list/index.js +3 -3
  6. package/dist/system/presentation/components/layout/header/components/search-modal/trigger/index.js +2 -2
  7. package/dist/system/presentation/hooks/ui/use-table/components/table/actions/delete/index.d.ts +1 -1
  8. package/dist/system/presentation/hooks/ui/use-table/components/table/actions/delete/index.js +1 -1
  9. package/dist/system/presentation/hooks/ui/use-table/components/table/actions/index.js +3 -3
  10. package/dist/system/presentation/hooks/ui/use-table/components/table/active-filters/index.js +2 -2
  11. package/dist/system/presentation/hooks/ui/use-table/components/table/create/index.js +2 -2
  12. package/dist/system/presentation/hooks/ui/use-table/components/table/export/index.d.ts +1 -1
  13. package/dist/system/presentation/hooks/ui/use-table/components/table/export/index.js +1 -1
  14. package/dist/system/presentation/hooks/ui/use-table/components/table/filters/index.js +2 -1
  15. package/dist/system/presentation/hooks/ui/use-table/components/table/pagination/index.d.ts +1 -1
  16. package/dist/system/presentation/hooks/ui/use-table/components/table/pagination/index.js +1 -1
  17. package/dist/system/presentation/hooks/ui/use-table/components/table/skeleton-table/index.js +1 -1
  18. package/dist/system/presentation/hooks/ui/use-table/components/table/thead-item/index.js +1 -1
  19. package/dist/test/index.js +1 -1
  20. package/dist/test/index.js.map +1 -1
  21. package/dist/ui/components/form/input-cep/use-cep/providers/ibge/hook.d.ts +3 -1
  22. package/dist/ui/components/form/input-cep/use-cep/providers/ibge/hook.js +2 -2
  23. package/dist/ui/contexts/dynamic-sections/use-dynamic-section/index.js +12 -10
  24. package/dist/ui/contexts/dynamic-sections/use-dynamic-section/index.js.map +1 -1
  25. package/package.json +1 -1
@@ -43,4 +43,5 @@ function MessageCard(_a) {
43
43
  var title = _a.title, status = _a.status, date = _a.date, name = _a.name, description = _a.description, url = _a.url;
44
44
  return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: 'MessageCard', children: (0, jsx_runtime_1.jsxs)(S.MessageCard, { href: url, children: [(0, jsx_runtime_1.jsxs)("div", { className: 'top', children: [(0, jsx_runtime_1.jsx)("h5", { className: 'title font-16-bold', children: title }), (0, jsx_runtime_1.jsx)(system_1.HighlightText, __assign({}, status)), (0, jsx_runtime_1.jsx)("span", { className: 'days font-12-regular', children: date })] }), (0, jsx_runtime_1.jsxs)("p", { className: 'description font-16-regular', children: [(0, jsx_runtime_1.jsxs)("strong", { className: '-bold', children: [name, ": "] }), " ", description] })] }) }));
45
45
  }
46
- exports.Mess
46
+ exports.MessageCard = MessageCard;
47
+ //# sourceMappingURL=index.js.map
@@ -89,4 +89,4 @@ function Content() {
89
89
  return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: 'Content', children: (0, jsx_runtime_1.jsx)(S.Content, { children: (0, jsx_runtime_1.jsx)("div", { className: 'cards-box', children: messages.map(function (item) { return ((0, jsx_runtime_1.jsx)(card_1.MessageCard, __assign({}, item), 'message-card' + item.title)); }) }) }) }));
90
90
  }
91
91
  exports.Content = Content;
92
- //# sour
92
+ //# sourceMappingURL=index.js.map
@@ -32,4 +32,5 @@ function Content() {
32
32
  var _a = (0, system_1.useAuthAdmin)(), user = _a.user, signOut = _a.signOut;
33
33
  return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: 'Content', children: (0, jsx_runtime_1.jsxs)(S.Content, { children: [(0, jsx_runtime_1.jsx)("div", { className: 'user-profile', children: (0, jsx_runtime_1.jsxs)("div", { className: 'user-info', children: [(0, jsx_runtime_1.jsx)("h6", { className: 'font-16-semibold', children: user === null || user === void 0 ? void 0 : user.firstName }), (0, jsx_runtime_1.jsx)("p", { className: 'font-14-regular email', children: user === null || user === void 0 ? void 0 : user.emailAddress })] }) }), (0, jsx_runtime_1.jsx)("div", { className: 'divider', children: (0, jsx_runtime_1.jsx)("button", { className: 'sign-out-button font-14-regular', type: 'button', onClick: function () { return signOut(); }, children: "Sair" }) })] }) }));
34
34
  }
35
- exports.Co
35
+ exports.Content = Content;
36
+ //# sourceMappingURL=index.js.map
@@ -25,10 +25,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.Profile = void 0;
27
27
  var jsx_runtime_1 = require("react/jsx-runtime");
28
- var ui_1 = require("../../../../../../../../ui");
29
- var system_1 = require("../../../../../../../../system");
30
- var content_1 = require("./content");
31
- var S = __importStar(require("./styles"));
28
+ var ui_1 = require("../../../../../../../../ui/index.js");
29
+ var system_1 = require("../../../../../../../../system/index.js");
30
+ var content_1 = require("./content/index.js");
31
+ var S = __importStar(require("./styles.js"));
32
32
  function Profile() {
33
33
  var user = (0, system_1.useAuthAdmin)().user;
34
34
  var avatarImage = (user === null || user === void 0 ? void 0 : user.avatar) || '/images/default-profile.png';
@@ -30,9 +30,9 @@ exports.SearchList = void 0;
30
30
  var jsx_runtime_1 = require("react/jsx-runtime");
31
31
  var react_1 = require("react");
32
32
  var link_1 = __importDefault(require("next/link"));
33
- var system_1 = require("../../../../../../../../system");
34
- var ui_1 = require("../../../../../../../../ui");
35
- var S = __importStar(require("./styles"));
33
+ var system_1 = require("../../../../../../../../system/index.js");
34
+ var ui_1 = require("../../../../../../../../ui/index.js");
35
+ var S = __importStar(require("./styles.js"));
36
36
  function SearchList(_a) {
37
37
  var _b;
38
38
  var setOpen = _a.setOpen;
@@ -36,8 +36,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
36
36
  Object.defineProperty(exports, "__esModule", { value: true });
37
37
  exports.SearchTrigger = void 0;
38
38
  var jsx_runtime_1 = require("react/jsx-runtime");
39
- var ui_1 = require("../../../../../../../../ui");
40
- var S = __importStar(require("./styles"));
39
+ var ui_1 = require("../../../../../../../../ui/index.js");
40
+ var S = __importStar(require("./styles.js"));
41
41
  function SearchTrigger(props) {
42
42
  return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: 'SearchTrigger', children: (0, jsx_runtime_1.jsxs)(S.SearchTrigger, __assign({ "aria-label": 'Search' }, props, { children: [(0, jsx_runtime_1.jsx)("div", { className: 'icon', children: (0, jsx_runtime_1.jsx)(ui_1.Icon, { name: 'LupaIcon' }) }), (0, jsx_runtime_1.jsx)("span", { className: 'placeholder font-14-regular', children: "Pesquisar..." })] })) }));
43
43
  }
@@ -2,4 +2,4 @@ import { TableActionDelete } from '../../../../../../../../../system/index.js';
2
2
  export declare function TableActionDelete<T>({ action, table }: {
3
3
  action: TableActionDelete<T>;
4
4
  table: any;
5
- }): import("react/js
5
+ }): import("react/jsx-runtime").JSX.Element;
@@ -69,4 +69,4 @@ function TableActionDelete(_a) {
69
69
  return ((0, jsx_runtime_1.jsx)(ui_1.Tooltip, { idTooltip: 'Actions', bgColor: '#fff', enableHover: true, content: 'Excluir', trigger: (0, jsx_runtime_1.jsx)("button", { className: 'action-button', onClick: deleteItem, type: 'button', children: loading ? (0, jsx_runtime_1.jsx)(ui_1.LoaderCircle, { size: 13 }) : (0, jsx_runtime_1.jsx)(ui_1.Icon, { name: 'IconDelete' }) }) }));
70
70
  }
71
71
  exports.TableActionDelete = TableActionDelete;
72
- //# sour
72
+ //# sourceMappingURL=index.js.map
@@ -77,9 +77,9 @@ exports.Actions = void 0;
77
77
  var jsx_runtime_1 = require("react/jsx-runtime");
78
78
  var react_1 = require("react");
79
79
  var link_1 = __importDefault(require("next/link"));
80
- var ui_1 = require("../../../../../../../../ui");
81
- var delete_1 = require("./delete");
82
- var S = __importStar(require("./styles"));
80
+ var ui_1 = require("../../../../../../../../ui/index.js");
81
+ var delete_1 = require("./delete/index.js");
82
+ var S = __importStar(require("./styles.js"));
83
83
  function Actions(_a) {
84
84
  var _this = this;
85
85
  var _b;
@@ -35,8 +35,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
35
35
  exports.ActiveFilters = void 0;
36
36
  var jsx_runtime_1 = require("react/jsx-runtime");
37
37
  var router_1 = require("next/router");
38
- var ui_1 = require("../../../../../../../../ui");
39
- var S = __importStar(require("./styles"));
38
+ var ui_1 = require("../../../../../../../../ui/index.js");
39
+ var S = __importStar(require("./styles.js"));
40
40
  function ActiveFilters(_a) {
41
41
  var _b, _c, _d;
42
42
  var configs = _a.configs, tableInformations = _a.tableInformations;
@@ -41,8 +41,8 @@ exports.CreateAction = void 0;
41
41
  var jsx_runtime_1 = require("react/jsx-runtime");
42
42
  var react_1 = require("react");
43
43
  var link_1 = __importDefault(require("next/link"));
44
- var ui_1 = require("../../../../../../../../ui");
45
- var S = __importStar(require("./styles"));
44
+ var ui_1 = require("../../../../../../../../ui/index.js");
45
+ var S = __importStar(require("./styles.js"));
46
46
  function CreateAction(_a) {
47
47
  var _b, _c;
48
48
  var actions = _a.actions;
@@ -1,4 +1,4 @@
1
1
  import { ExportTable } from '../../../../../../../../system/domain/index.js';
2
2
  export declare function Export({ exports }: {
3
3
  exports: ExportTable[];
4
- }): import("react/jsx-r
4
+ }): import("react/jsx-runtime").JSX.Element;
@@ -32,4 +32,4 @@ function Export(_a) {
32
32
  return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: 'Export', children: (0, jsx_runtime_1.jsxs)(S.Export, { className: 'font-14-regular', children: [(0, jsx_runtime_1.jsx)("div", { className: 'icon', children: (0, jsx_runtime_1.jsx)(ui_1.Icon, { name: 'IconUpload' }) }), "Exportar"] }) }));
33
33
  }
34
34
  exports.Export = Export;
35
- //# sourceM
35
+ //# sourceMappingURL=index.js.map
@@ -135,4 +135,5 @@ function Filters(_a) {
135
135
  });
136
136
  }); }, options: filter.options.map(function (op) { return ({ label: op.text, value: op.value }); }) }, filter.data)); }), (0, jsx_runtime_1.jsx)(system_1.InputSearch, { onChange: function (value) { return (0, ui_1.updateRoute)({ params: { search: value, page: 1 }, router: router }); } })] }) }) }) }));
137
137
  }
138
- exports.Filters
138
+ exports.Filters = Filters;
139
+ //# sourceMappingURL=index.js.map
@@ -1,2 +1,2 @@
1
1
  import { PaginationModel } from '../../../../../../../../system/index.js';
2
- export declare function PaginationTable({ page, endPage, pages, pageSize, totalItems, hasNextPage, hasPreviousPage }: PaginationModel): import("react/jsx-r
2
+ export declare function PaginationTable({ page, endPage, pages, pageSize, totalItems, hasNextPage, hasPreviousPage }: PaginationModel): import("react/jsx-runtime").JSX.Element;
@@ -53,4 +53,4 @@ function PaginationTable(_a) {
53
53
  }, onClick: function () { return onSelect(pagination.page + 1); }, children: (0, jsx_runtime_1.jsx)(ui_1.Icon, { name: 'IconKeyboardRightArrow' }) }))] }));
54
54
  }
55
55
  exports.PaginationTable = PaginationTable;
56
- //# sourceM
56
+ //# sourceMappingURL=index.js.map
@@ -31,4 +31,4 @@ function SkeletonTable() {
31
31
  return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: 'skeleton', children: (0, jsx_runtime_1.jsxs)(S.SkeletonCustom, { "data-testid": 'skeleton', children: [(0, jsx_runtime_1.jsx)(ui_1.Skeleton, { type: 'line', size: { height: '60px', width: '100%', margin: "0" } }), (0, jsx_runtime_1.jsx)(ui_1.Skeleton, { type: 'line', size: { height: '60px', width: '100%', margin: "0" } }), (0, jsx_runtime_1.jsx)(ui_1.Skeleton, { type: 'line', size: { height: '60px', width: '100%', margin: "0" } }), (0, jsx_runtime_1.jsx)(ui_1.Skeleton, { type: 'line', size: { height: '60px', width: '100%', margin: "0" } }), (0, jsx_runtime_1.jsx)(ui_1.Skeleton, { type: 'line', size: { height: '60px', width: '100%', margin: "0" } }), (0, jsx_runtime_1.jsx)(ui_1.Skeleton, { type: 'line', size: { height: '60px', width: '100%', margin: "0" } }), (0, jsx_runtime_1.jsx)(ui_1.Skeleton, { type: 'line', size: { height: '60px', width: '100%', margin: "0" } }), (0, jsx_runtime_1.jsx)(ui_1.Skeleton, { type: 'line', size: { height: '60px', width: '100%', margin: "0" } }), (0, jsx_runtime_1.jsx)(ui_1.Skeleton, { type: 'line', size: { height: '60px', width: '100%', margin: "0" } })] }) }));
32
32
  }
33
33
  exports.SkeletonTable = SkeletonTable;
34
- //# sourceM
34
+ //# sourceMappingURL=index.js.map
@@ -47,4 +47,4 @@ function THeadItem(_a) {
47
47
  return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: 'thead-item', children: (0, jsx_runtime_1.jsx)("th", { style: { width: colunm.width + 'px' }, children: (0, jsx_runtime_1.jsxs)(S.THeadItem, { style: { width: colunm.width + 'px' }, onClick: handleOrd, children: [(0, jsx_runtime_1.jsx)("span", { className: 'font-12-bold uppercase', children: colunm.label }), !disableOrdenationTable && colunm.hasAsc && ((0, jsx_runtime_1.jsx)("div", { className: 'ord-actions', children: (0, jsx_runtime_1.jsx)("button", { type: 'button', children: (0, jsx_runtime_1.jsx)("svg", { style: { transform: rotateArrow ? 'rotate(180deg)' : 'rotate(0deg)' }, xmlns: 'http://www.w3.org/2000/svg', width: '11', height: '6', viewBox: '0 0 11 6', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M5.75 5.5L0.75 0.5H10.75L5.75 5.5Z', fill: ascIsActive ? '#1ABB64' : '#828282' }) }) }) }))] }) }) }));
48
48
  }
49
49
  exports.THeadItem = THeadItem;
50
- //# sourceM
50
+ //# sourceMappingURL=index.js.map
@@ -8,7 +8,7 @@ function HomePage() {
8
8
  refSection: 'test',
9
9
  fields: {},
10
10
  }), Section = _a.Section, title = _a.title;
11
- return ((0, jsx_runtime_1.jsx)(index_1.Layout, { children: (0, jsx_runtime_1.jsx)(Section, { children: title }) }));
11
+ return ((0, jsx_runtime_1.jsx)(Section, { children: title }));
12
12
  }
13
13
  exports.HomePage = HomePage;
14
14
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/test/index.tsx"],"names":[],"mappings":";;;;AAAA,kCAAoD;AAEpD,SAAgB,QAAQ;IAChB,IAAA,KAAqB,IAAA,yBAAiB,EAAC;QAC3C,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,EAAE;KACX,CAAC,EAHM,OAAO,aAAA,EAAE,KAAK,WAGpB,CAAA;IAEF,OAAO,CACL,uBAAC,cAAM,cACL,uBAAC,OAAO,cAAE,KAAK,GAAW,GACnB,CACV,CAAA;AACH,CAAC;AAXD,4BAWC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/test/index.tsx"],"names":[],"mappings":";;;;AAAA,kCAAoD;AAEpD,SAAgB,QAAQ;IAChB,IAAA,KAAqB,IAAA,yBAAiB,EAAC;QAC3C,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,EAAE;KACX,CAAC,EAHM,OAAO,aAAA,EAAE,KAAK,WAGpB,CAAA;IAEF,OAAO,CACH,uBAAC,OAAO,cAAE,KAAK,GAAW,CAC7B,CAAA;AACH,CAAC;AATD,4BASC"}
@@ -1,5 +1,7 @@
1
- import { FieldsProviderCep, InputCepProps } from '../../../../../../../ui/index.js';
1
+ import { FieldsProviderCep, InputCepProps } from '../../../../../../../ui';
2
2
  export declare function useCepIBGE<T = any>({ fields }: InputCepProps<T>): {
3
3
  getCep: (zipCode: any) => Promise<T>;
4
4
  fields: FieldsProviderCep<T>;
5
5
  };
6
+ p<T>;
7
+ };
@@ -37,7 +37,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
39
  exports.useCepIBGE = void 0;
40
- var ui_1 = require("../../../../../../../ui/index.js");
40
+ var ui_1 = require("../../../../../../../ui");
41
41
  function useCepIBGE(_a) {
42
42
  var fields = _a.fields;
43
43
  function getCep(zipCode) {
@@ -64,4 +64,4 @@ function useCepIBGE(_a) {
64
64
  };
65
65
  }
66
66
  exports.useCepIBGE = useCepIBGE;
67
- //# sourceMappingURL=hook.js.map
67
+ //# sourceMappingURL=hook.js.mapok.js.map
@@ -40,23 +40,25 @@ function useDynamicSection(_a) {
40
40
  var initialDataSection = {
41
41
  enabled: false,
42
42
  images: [{ url: '/images/default-image.webp' }],
43
- linkUrl: '-',
44
- videoUrl: '-',
43
+ linkUrl: 'https:test.com',
44
+ videoUrl: 'https:test.com',
45
45
  i18n: languages.reduce(function (reducer, language) {
46
46
  var _a;
47
47
  return (__assign(__assign({}, reducer), (_a = {}, _a[language.symbol] = {
48
- title: '-',
49
- subtitle: '-',
50
- description: '-',
51
- linkText: '-',
48
+ title: 'Lorem ipsum dolor',
49
+ subtitle: 'Lorem ipsum dolor sit amet',
50
+ description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec maximus ligula, nec elementum sem. Aliquam erat volutpat. Aenean posuere leo erat, et sagittis purus gravida sit amet.',
51
+ linkText: 'Lorem ipsum',
52
52
  }, _a)));
53
53
  }, {}),
54
54
  };
55
- if (findSection) {
56
- var desestrureI18n = (locale && findSection['i18n'] && findSection['i18n'][locale]) || {};
57
- return __assign(__assign(__assign(__assign({}, initialDataSection), findSection), desestrureI18n), { Section: Section });
55
+ console.log(findSection);
56
+ if (findSection && Object.keys(findSection).length > 0) {
57
+ var desestrureI18n_1 = (locale && findSection['i18n'] && findSection['i18n'][locale]) || {};
58
+ return __assign(__assign(__assign(__assign({}, initialDataSection), findSection), desestrureI18n_1), { Section: Section });
58
59
  }
59
- return __assign({ Section: Section }, initialDataSection);
60
+ var desestrureI18n = (locale && initialDataSection['i18n'] && initialDataSection['i18n'][locale]) || {};
61
+ return __assign(__assign({ Section: Section }, initialDataSection), desestrureI18n);
60
62
  }
61
63
  exports.useDynamicSection = useDynamicSection;
62
64
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/ui/contexts/dynamic-sections/use-dynamic-section/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,sCAAuC;AAGvC,2BAA2C;AAE3C,sCAAqD;AACrD,+CAAqD;AAIrD,SAAgB,iBAAiB,CAAC,EAQjC;QAPC,cAAW,EAAX,MAAM,mBAAG,EAAE,KAAA,EACX,QAAQ,cAAA,EACR,UAAU,gBAAA;IAMV,IAAM,MAAM,GAAG,IAAA,kBAAS,GAAE,CAAA;IAE1B,IAAM,MAAM,GAAG,MAAM,CAAC,MAAM,CAAA;IAE5B,IAAM,YAAY,GAAG,IAAA,gBAAW,EAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAA;IAEtD,IAAA,QAAQ,GAAK,IAAA,kCAAwB,GAAE,SAA/B,CAA+B;IAEvC,IAAA,SAAS,GAAK,IAAA,YAAO,GAAE,UAAd,CAAc;IAE/B,IAAM,WAAW,GAAG,CAAA,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,IAAI,CAAC,UAAC,OAAO,IAAK,OAAA,OAAO,CAAC,GAAG,KAAK,YAAY,EAA5B,CAA4B,CAAC,KAAK,EAAqB,CAAA;IAEvG,SAAS,OAAO,CAAC,EAA2C;YAAzC,QAAQ,cAAA;QACzB,IAAM,yBAAyB,GAAG;YAChC,UAAU,EAAE,YAAY;YACxB,OAAO,EAAE,WAAW;YACpB,MAAM,QAAA;SACP,CAAA;QAED,IAAI,CAAC,WAAW,CAAC,OAAO,IAAI,MAAM,CAAC,KAAK,CAAC,QAAQ,KAAK,MAAM,EAAE,CAAC;YAC7D,OAAO,uBAAC,mCAAoB,eAAK,yBAAyB,EAAI,CAAA;QAChE,CAAC;QAED,OAAO,CACL,6DACE,uBAAC,mCAAoB,eAAK,yBAAyB,EAAI,EAEtD,QAAQ,IACR,CACJ,CAAA;IACH,CAAC;IAED,IAAM,kBAAkB,GAAG;QACzB,OAAO,EAAE,KAAK;QACd,MAAM,EAAE,CAAC,EAAE,GAAG,EAAE,4BAA4B,EAAE,CAAC;QAC/C,OAAO,EAAE,GAAG;QACZ,QAAQ,EAAE,GAAG;QACb,IAAI,EAAE,SAAS,CAAC,MAAM,CACpB,UAAC,OAAO,EAAE,QAAQ;;YAAK,OAAA,uBAClB,OAAO,gBACT,QAAQ,CAAC,MAAM,IAAG;gBACjB,KAAK,EAAE,GAAG;gBACV,QAAQ,EAAE,GAAG;gBACb,WAAW,EAAE,GAAG;gBAChB,QAAQ,EAAE,GAAG;aACd,OACD;QARqB,CAQrB,EACF,EAAE,CACH;KACgB,CAAA;IAEnB,IAAI,WAAW,EAAE,CAAC;QAChB,IAAM,cAAc,GAAG,CAAC,MAAM,IAAI,WAAW,CAAC,MAAM,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,CAAA;QAE3F,+CACK,kBAAkB,GAClB,WAAW,GACX,cAAc,KACjB,OAAO,SAAA,IACR;IACH,CAAC;IACD,OAAO,WAAE,OAAO,SAAA,IAAK,kBAAkB,CAA0B,CAAA;AACnE,CAAC;AAvED,8CAuEC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/ui/contexts/dynamic-sections/use-dynamic-section/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,sCAAuC;AAGvC,2BAA2C;AAE3C,sCAAqD;AACrD,+CAAqD;AAIrD,SAAgB,iBAAiB,CAAC,EAQjC;QAPC,cAAW,EAAX,MAAM,mBAAG,EAAE,KAAA,EACX,QAAQ,cAAA,EACR,UAAU,gBAAA;IAMV,IAAM,MAAM,GAAG,IAAA,kBAAS,GAAE,CAAA;IAE1B,IAAM,MAAM,GAAG,MAAM,CAAC,MAAM,CAAA;IAE5B,IAAM,YAAY,GAAG,IAAA,gBAAW,EAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAA;IAEtD,IAAA,QAAQ,GAAK,IAAA,kCAAwB,GAAE,SAA/B,CAA+B;IAEvC,IAAA,SAAS,GAAK,IAAA,YAAO,GAAE,UAAd,CAAc;IAE/B,IAAM,WAAW,GAAG,CAAA,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,IAAI,CAAC,UAAC,OAAO,IAAK,OAAA,OAAO,CAAC,GAAG,KAAK,YAAY,EAA5B,CAA4B,CAAC,KAAK,EAAqB,CAAA;IAEvG,SAAS,OAAO,CAAC,EAA2C;YAAzC,QAAQ,cAAA;QACzB,IAAM,yBAAyB,GAAG;YAChC,UAAU,EAAE,YAAY;YACxB,OAAO,EAAE,WAAW;YACpB,MAAM,QAAA;SACP,CAAA;QAED,IAAI,CAAC,WAAW,CAAC,OAAO,IAAI,MAAM,CAAC,KAAK,CAAC,QAAQ,KAAK,MAAM,EAAE,CAAC;YAC7D,OAAO,uBAAC,mCAAoB,eAAK,yBAAyB,EAAI,CAAA;QAChE,CAAC;QAED,OAAO,CACL,6DACE,uBAAC,mCAAoB,eAAK,yBAAyB,EAAI,EAEtD,QAAQ,IACR,CACJ,CAAA;IACH,CAAC;IAED,IAAM,kBAAkB,GAAG;QACzB,OAAO,EAAE,KAAK;QACd,MAAM,EAAE,CAAC,EAAE,GAAG,EAAE,4BAA4B,EAAE,CAAC;QAC/C,OAAO,EAAE,gBAAgB;QACzB,QAAQ,EAAE,gBAAgB;QAC1B,IAAI,EAAE,SAAS,CAAC,MAAM,CACpB,UAAC,OAAO,EAAE,QAAQ;;YAAK,OAAA,uBAClB,OAAO,gBACT,QAAQ,CAAC,MAAM,IAAG;gBACjB,KAAK,EAAE,mBAAmB;gBAC1B,QAAQ,EAAE,4BAA4B;gBACtC,WAAW,EAAE,4LAA4L;gBACzM,QAAQ,EAAE,aAAa;aACxB,OACD;QARqB,CAQrB,EACF,EAAE,CACH;KACgB,CAAA;IAEnB,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,CAAA;IAExB,IAAI,WAAW,IAAI,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QACvD,IAAM,gBAAc,GAAG,CAAC,MAAM,IAAI,WAAW,CAAC,MAAM,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,CAAA;QAE3F,+CACK,kBAAkB,GAClB,WAAW,GACX,gBAAc,KACjB,OAAO,SAAA,IACR;IACH,CAAC;IAED,IAAM,cAAc,GAAG,CAAC,MAAM,IAAI,kBAAkB,CAAC,MAAM,CAAC,IAAI,kBAAkB,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,CAAA;IAEzG,OAAO,oBAAE,OAAO,SAAA,IAAK,kBAAkB,GAAK,cAAc,CAA0B,CAAA;AACtF,CAAC;AA5ED,8CA4EC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infinity-forge",
3
- "version": "2.5.7",
3
+ "version": "2.6.0",
4
4
  "description": "codie Library",
5
5
  "main": "./dist/index",
6
6
  "module": "./dist/index",