@things-factory/meta-ui 6.1.108 → 6.1.110

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 (116) hide show
  1. package/client/actions/main.js +4 -4
  2. package/client/bootstrap.js +23 -35
  3. package/client/component/filter/filter-form-meta-code-select.js +9 -9
  4. package/client/component/filter/filter-form-meta-object-select.js +9 -9
  5. package/client/component/filter/filter-grist-meta-code-select.js +9 -9
  6. package/client/component/filter/filter-grist-meta-object-select.js +9 -9
  7. package/client/component/grist/editor/grist-editor-code-input.js +6 -6
  8. package/client/component/grist/editor/grist-editor-meta-code-selector.js +7 -7
  9. package/client/component/grist/editor/grist-editor-meta-object-selector.js +8 -8
  10. package/client/component/grist/renderer/grist-renderer-code-input.js +1 -1
  11. package/client/component/grist/renderer/grist-renderer-meta-code-selector.js +1 -1
  12. package/client/component/grist/renderer/grist-renderer-meta-object-selector.js +1 -1
  13. package/client/component/popup/code-input-editor-popup.js +10 -10
  14. package/client/component/popup/file-upload-popup.js +11 -11
  15. package/client/component/popup/meta-object-selector-popup.js +11 -11
  16. package/client/component/popup/record-based-code-editor-popup.js +39 -0
  17. package/client/index.js +2 -1
  18. package/client/mixin/meta-base-mixin.js +1 -1
  19. package/client/mixin/meta-basic-grist-mixin.js +4 -4
  20. package/client/mixin/meta-button-mixin.js +1 -1
  21. package/client/mixin/meta-form-mixin.js +1 -1
  22. package/client/mixin/meta-grist-tab-mixin.js +1 -1
  23. package/client/mixin/meta-main-tab-mixin.js +1 -1
  24. package/client/mixin/meta-master-detail-mixin.js +1 -1
  25. package/client/mixin/meta-service-mixin.js +1 -1
  26. package/client/mixin/meta-tab-detail-mixin.js +1 -1
  27. package/client/mixin/meta-tab-mixin.js +1 -1
  28. package/client/pages/activity/meta-activity-define-page.js +11 -23
  29. package/client/pages/activity/meta-activity-list-page.js +6 -6
  30. package/client/pages/activity/meta-activity-viewer-element.js +3 -3
  31. package/client/pages/activity/meta-activity-writer-element.js +3 -3
  32. package/client/pages/activity/meta-activiy-mixin.js +3 -3
  33. package/client/pages/button-role/button-role-detail.js +1 -1
  34. package/client/pages/button-role/button-role-page.js +1 -1
  35. package/client/pages/doc-number/doc-number-page.js +1 -0
  36. package/client/pages/doc-number/next-doc-number-popup.js +1 -0
  37. package/client/pages/entity/config-entity.js +29 -29
  38. package/client/pages/entity/main-menu-selector.js +8 -8
  39. package/client/pages/history/history-copy-list-popup.js +5 -5
  40. package/client/pages/history/history-json-list-popup.js +6 -6
  41. package/client/pages/loading-page.js +4 -4
  42. package/client/pages/menu/dynamic-menu-setting-let.js +22 -0
  43. package/client/pages/menu/dynamic-menu-template.js +7 -7
  44. package/client/pages/menu/dynamic-menu.js +18 -18
  45. package/client/pages/menu/export-menu-popup.js +7 -7
  46. package/client/pages/meta-form-element.js +1 -1
  47. package/client/pages/meta-grist-element.js +1 -1
  48. package/client/pages/meta-grist-page.js +1 -1
  49. package/client/pages/meta-grist-tab-element.js +1 -1
  50. package/client/pages/meta-grist-tab-page.js +1 -1
  51. package/client/pages/meta-main-tab-element.js +1 -1
  52. package/client/pages/meta-main-tab-page.js +1 -1
  53. package/client/pages/meta-master-detail-element.js +1 -1
  54. package/client/pages/meta-master-detail-page.js +1 -1
  55. package/client/pages/meta-tab-detail-element.js +1 -1
  56. package/client/pages/meta-tab-detail-page.js +1 -1
  57. package/client/pages/meta-tab-element.js +1 -1
  58. package/client/pages/personalize/personal-column-selector.js +11 -11
  59. package/client/pages/printer-device/printer-device-page.js +1 -0
  60. package/client/pages/template/doc-template-page.js +1 -0
  61. package/client/pages/template/template-file-page.js +1 -0
  62. package/client/pages/terms/config-terminology.js +6 -6
  63. package/client/pages/work-code/work-code-detail-popup.js +1 -1
  64. package/client/pages/work-code/work-code-page.js +1 -1
  65. package/client/reducers/main.js +1 -1
  66. package/client/utils/grist-default-value.js +1 -1
  67. package/client/utils/meta-api.js +1 -1
  68. package/client/utils/meta-crypto.js +1 -1
  69. package/client/utils/meta-ui-util.js +119 -112
  70. package/client/utils/service-util.js +49 -16
  71. package/client/utils/terms-util.js +2 -2
  72. package/client/utils/ui-util.js +1 -1
  73. package/client/utils/value-util.js +1 -1
  74. package/client/viewparts/dynamic-menu-landscape-styles.js +1 -1
  75. package/client/viewparts/dynamic-menu-landscape.js +10 -10
  76. package/client/viewparts/dynamic-menu-part.js +12 -12
  77. package/client/viewparts/dynamic-menu-portrait-styles.js +1 -1
  78. package/client/viewparts/dynamic-menu-portrait.js +9 -9
  79. package/client/viewparts/dynamic-top-menu-bar.js +7 -7
  80. package/package.json +3 -3
  81. package/server/activity/CommonActivity.js +2 -2
  82. package/server/constants/error-code.js +1 -1
  83. package/server/errors/license-error.js +1 -1
  84. package/server/routes.js +1 -1
  85. package/server/service/button-role/button-role-mutation.js +1 -1
  86. package/server/service/button-role/button-role-query.js +1 -1
  87. package/server/service/button-role/button-role-type.js +1 -1
  88. package/server/service/button-role/button-role.js +1 -1
  89. package/server/service/dynamic-menu/dynamic-menu-query.js +1 -1
  90. package/server/service/dynamic-menu/dynamic-menu-type.js +1 -1
  91. package/server/service/entity-event-subscriber/entity-event-subscriber.js +1 -1
  92. package/server/service/grid-personalize/grid-personalize-mutation.js +1 -1
  93. package/server/service/grid-personalize/grid-personalize-query.js +1 -1
  94. package/server/service/grid-personalize/grid-personalize-type.js +1 -1
  95. package/server/service/grid-personalize/grid-personalize.js +1 -1
  96. package/server/service/menu-button-auth/menu-button-auth-mutation.js +1 -1
  97. package/server/service/menu-button-auth/menu-button-auth-query.js +1 -1
  98. package/server/service/menu-button-auth/menu-button-auth-type.js +1 -1
  99. package/server/service/menu-button-auth/menu-button-auth.js +1 -1
  100. package/server/service/meta-activity/meta-activity-mutation.js +1 -1
  101. package/server/service/meta-activity/meta-activity-query.js +1 -1
  102. package/server/service/meta-activity/meta-activity-type.js +1 -1
  103. package/server/service/meta-secret/meta-resolver.js +1 -1
  104. package/server/service/set-translations/set-translation-resolver.js +1 -1
  105. package/server/service/work-code/work-code-mutation.js +1 -1
  106. package/server/service/work-code/work-code-query.js +1 -1
  107. package/server/service/work-code/work-code-type.js +1 -1
  108. package/server/service/work-code/work-code.js +1 -1
  109. package/server/service/work-code-detail/work-code-detail-mutation.js +1 -1
  110. package/server/service/work-code-detail/work-code-detail-query.js +1 -1
  111. package/server/service/work-code-detail/work-code-detail-type.js +1 -1
  112. package/server/service/work-code-detail/work-code-detail.js +1 -1
  113. package/translations/en.json +100 -72
  114. package/translations/ko.json +69 -41
  115. package/translations/ms.json +100 -72
  116. package/translations/zh.json +107 -79
@@ -1,4 +1,4 @@
1
- function a0_0x2387(_0x1141ed,_0x1aa157){const _0x1b38ad=a0_0x1b38();return a0_0x2387=function(_0x2387c,_0x245df5){_0x2387c=_0x2387c-0xa2;let _0x5c049e=_0x1b38ad[_0x2387c];return _0x5c049e;},a0_0x2387(_0x1141ed,_0x1aa157);}const a0_0x7495ae=a0_0x2387;(function(_0x425261,_0x159be2){const _0x44c450=a0_0x2387,_0x552abc=_0x425261();while(!![]){try{const _0x202232=-parseInt(_0x44c450(0x116))/0x1*(-parseInt(_0x44c450(0xa9))/0x2)+-parseInt(_0x44c450(0x10d))/0x3*(parseInt(_0x44c450(0xab))/0x4)+parseInt(_0x44c450(0x100))/0x5+parseInt(_0x44c450(0xd2))/0x6*(-parseInt(_0x44c450(0xd8))/0x7)+parseInt(_0x44c450(0x11b))/0x8*(-parseInt(_0x44c450(0xf8))/0x9)+parseInt(_0x44c450(0xfc))/0xa+parseInt(_0x44c450(0xb5))/0xb*(parseInt(_0x44c450(0xde))/0xc);if(_0x202232===_0x159be2)break;else _0x552abc['push'](_0x552abc['shift']());}catch(_0x2ba8df){_0x552abc['push'](_0x552abc['shift']());}}}(a0_0x1b38,0x4d716));import{store,gqlContext}from'@things-factory/shell';import{getCodeByName}from'@things-factory/code-base';import{EXPORT}from'@things-factory/export-base';import{gqlBuilder}from'@things-factory/utils';import{client}from'@operato/graphql';import{TermsUtil}from'./terms-util';import{UiUtil}from'./ui-util';import a0_0x2a7828 from'graphql-tag';import{ValueUtil}from'./value-util';function a0_0x1b38(){const _0x5ee418=['menus','rank','getCodeSelectorData','routing','3384vSqzNd','hidden','updateMultiple','record','createdAt','sort','join','dirtyRecords','push','\x0a\x20\x20\x20\x20','log','buildArgs','tText','__dirty__','total','unshift','template','isEmpty','parse','success\x20to\x20delete','__seq__','records','key','isNotEmpty','creator','xlsx','showGraphqlException','imex','312VONVfI','deleteListByIds','148PuBEjn','SCREEN','test','button.delete','category','runScenario','numberOfApprovalPendings','text.there_is_nothing_to_delete','id,template','message','55SLjWsI','showToast','children','reduce','cuFlag','value','group','callScenario','findOne','approval-pending-list','forEach','info','draft-list','hiddenFlag','checkClientError','workCodeByName','noteq','errors','tMenu','button.','details','check-mandatory-field','data','badge','path','split','active','iconPath','description','84ibfVld','gridPersonalizeTemplates','splice','resourceUrl','text.are_you_sure','GROUP','101514rlQwcL','codeItems','dispatch','success\x20to\x20save','HOME','parent','1115916IpgJDq','arrangeMenuRoutes','todo-list','length','header','Graphql\x20Error','fetch','getWorkCodeByName','text.nothing_selected','success\x20to\x20process','myDynamicMenus','showAlertPopup','find','error','code','deleteListByGristSelected','result','numberOfDrafts','getSelectedIdList','delete','map','routingType','\x0a\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20parent\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20name\x0a\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20children{\x0a\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20name\x0a\x20\x20\x20\x20\x20\x20\x20\x20description\x0a\x20\x20\x20\x20\x20\x20\x20\x20menuType\x0a\x20\x20\x20\x20\x20\x20\x20\x20category\x0a\x20\x20\x20\x20\x20\x20\x20\x20routingType\x0a\x20\x20\x20\x20\x20\x20\x20\x20routing\x0a\x20\x20\x20\x20\x20\x20\x20\x20resourceUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20iconPath\x0a\x20\x20\x20\x20\x20\x20\x20\x20hiddenFlag\x0a\x20\x20\x20\x20\x20\x20\x20\x20rank\x0a\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20name\x0a\x20\x20\x20\x20\x20\x20description\x0a\x20\x20\x20\x20\x20\x20menuType\x0a\x20\x20\x20\x20\x20\x20category\x0a\x20\x20\x20\x20\x20\x20routingType\x0a\x20\x20\x20\x20\x20\x20routing\x0a\x20\x20\x20\x20\x20\x20resourceUrl\x0a\x20\x20\x20\x20\x20\x20iconPath\x0a\x20\x20\x20\x20','undefined','showGraphqlErrorResponse','HIDDEN-PAGE','8955sxVQMm','updater','confirm','question','3991990AWBGDW','includes','query','menuType','713545tagYlK','networkError','name','\x0a\x20\x20\x20\x20\x20\x20','columns','isArray','updateMultipleData','config','searchByPagination','getCodeByScenario','extensions','title','searchMyDynamicMenus','18954FDHYhO','filter','object','type','getCodeByEntity','gutter','menu.id','selected','__origin__','1077gcfKiT'];a0_0x1b38=function(){return _0x5ee418;};return a0_0x1b38();}import{asyncReplace}from'lit/directives/async-replace.js';import a0_0x5d0abb from'i18next';import{generateActivitySummary,startSubscribeActivitySummary}from'@things-factory/worklist';export class ServiceUtil{static async[a0_0x7495ae(0xd9)](_0x1de55b){const _0x280f32=a0_0x7495ae;if(Array[_0x280f32(0x105)](_0x1de55b))return _0x1de55b['map'](_0x394406=>_0x280f32(0x10f)==typeof _0x394406?{'name':_0x394406[_0x280f32(0xba)],'description':_0x394406['display']}:{'name':_0x394406,'description':_0x394406});let _0x1e090a=await ServiceUtil[_0x280f32(0xe5)](_0x1de55b);return _0x1e090a&&_0x1e090a[_0x280f32(0xe1)]>0x0?_0x1e090a:await getCodeByName(_0x1de55b);}static async[a0_0x7495ae(0xe5)](_0x2b601d){const _0x2df052=a0_0x7495ae,_0xa54053=await client['query']({'query':a0_0x2a7828`
1
+ const a0_0x21c53d=a0_0x31a7;function a0_0x3a6e(){const _0x5ac0e5=['routingType','callMutationByIdData','ids','key','extensions','hidden','showGraphqlErrorResponse','todo-list','sort','hiddenFlag','callMutationById','41260203SfNjuT','\x0a\x20\x20\x20\x20\x20\x20','2802100haQUZx','join','record','header','limit','__seq__','unshift','query_name','filter','\x0a\x20\x20\x20\x20','display','query_type','template','columns','test','menus','records','log','query','runScenario','success\x20to\x20save','param\x20type\x20not\x20found','split','singleById','11SqLRYz','mutation\x20name\x20not\x20found!','myDynamicMenus','code','createdAt','error','id_value_not_found','return_fields','active','dispatch','confirm','menuType','mutation_type','menu.id','cancel','getSelectedIdList','callMutationByData','gridPersonalizeTemplates','workCodeByName','callMutationByIds','param_name','message','callQueryService','numberOfApprovalPendings','showAlertPopup','searchMenuGridPersnalTemplate','__selected__','text.check-mandatory','info','showToast','fetch','updater','getCodeByEntity','7059647wwgKbr','8660298viPJUs','getCodeByScenario','find','SCREEN','callMutationService','patchesForUpdateMultiple','reduce','callScenario','noteq','5iGKFQA','category','id_field','push','getWorkCodeByName','path','isArray','id-data','isNotEmpty','rank','string','imex','mandatory','networkError','cuFlag','searchByFilters','creator','routing','text.NOTHING_CHANGED','_config','replaceVariableObject','config','forEach','text.nothing_selected','296214sqkiWj','text.nothing_changed','callService','items','findByFilters','HIDDEN-PAGE','description','searchMyDynamicMenus','object','pagination','3443337tsETey','param_type','total','approval-pending-list','map','updatedAt','result','stringify','title','includes','success\x20to\x20process','deleteListByGristSelected','errors','callMutation','keys','details','updateMultiple','parse','singleByFilters','GROUP','splice','HOME','parent','success\x20to\x20delete','param\x20name\x20not\x20found','tText','deleteListByIds','value','children','searchByPagination','replace','__origin__','filters','group','buildArgs','mutation\x20type\x20not\x20found!','gutter','text.are_you_sure','__dirty__','selected','6159888kZWlFn','numberOfDrafts','__dirtyfields__','draft-list','isEmpty','mutation_name','tMenu','updateOne','badge','name','type','MENU','length','Graphql\x20Error','resourceUrl','graphql_type','dirtyRecords','question','arrangeMenuRoutes','numberOfToDos','showGraphqlException','data','codeItems'];a0_0x3a6e=function(){return _0x5ac0e5;};return a0_0x3a6e();}(function(_0x5840fc,_0x1a9653){const _0x328e3=a0_0x31a7,_0x12f0e7=_0x5840fc();while(!![]){try{const _0x6c28d0=parseInt(_0x328e3(0x133))/0x1*(-parseInt(_0x328e3(0xc5))/0x2)+-parseInt(_0x328e3(0xcf))/0x3+parseInt(_0x328e3(0x11b))/0x4+parseInt(_0x328e3(0xad))/0x5*(-parseInt(_0x328e3(0xa4))/0x6)+-parseInt(_0x328e3(0xa3))/0x7+parseInt(_0x328e3(0xf7))/0x8+parseInt(_0x328e3(0x119))/0x9;if(_0x6c28d0===_0x1a9653)break;else _0x12f0e7['push'](_0x12f0e7['shift']());}catch(_0x2c2949){_0x12f0e7['push'](_0x12f0e7['shift']());}}}(a0_0x3a6e,0xc9b06));import{store,gqlContext}from'@things-factory/shell';import{getCodeByName}from'@things-factory/code-base';import{EXPORT}from'@things-factory/export-base';import{gqlBuilder}from'@things-factory/utils';function a0_0x31a7(_0xc018c4,_0x31bf3e){const _0x3a6edb=a0_0x3a6e();return a0_0x31a7=function(_0x31a7f6,_0x53a284){_0x31a7f6=_0x31a7f6-0x8e;let _0x106e5b=_0x3a6edb[_0x31a7f6];return _0x106e5b;},a0_0x31a7(_0xc018c4,_0x31bf3e);}import{client}from'@operato/graphql';import{TermsUtil}from'./terms-util';import{UiUtil}from'./ui-util';import a0_0x262102 from'graphql-tag';import{ValueUtil}from'./value-util';import{asyncReplace}from'lit/directives/async-replace.js';import a0_0x2ea027 from'i18next';import{generateActivitySummary,startSubscribeActivitySummary}from'@things-factory/worklist';export class ServiceUtil{static async[a0_0x21c53d(0x10d)](_0x346e65){const _0x235e70=a0_0x21c53d;if(Array[_0x235e70(0xb3)](_0x346e65))return _0x346e65['map'](_0x3b0e5c=>'object'==typeof _0x3b0e5c?{'name':_0x3b0e5c[_0x235e70(0xea)],'description':_0x3b0e5c[_0x235e70(0x125)]}:{'name':_0x3b0e5c,'description':_0x3b0e5c});let _0x32bc7c=await ServiceUtil[_0x235e70(0xb1)](_0x346e65);return _0x32bc7c&&_0x32bc7c[_0x235e70(0x103)]>0x0?_0x32bc7c:await getCodeByName(_0x346e65);}static async[a0_0x21c53d(0xb1)](_0x3c897d){const _0x2f63fa=a0_0x21c53d,_0x1f42ac=await client[_0x2f63fa(0x12d)]({'query':a0_0x262102`
2
2
  query workCodeByName($name: String!) {
3
3
  workCodeByName(name: $name) {
4
4
  details {
@@ -8,32 +8,65 @@ function a0_0x2387(_0x1141ed,_0x1aa157){const _0x1b38ad=a0_0x1b38();return a0_0x
8
8
  }
9
9
  }
10
10
  }
11
- `,'variables':{'name':_0x2b601d},'context':gqlContext()});return!_0xa54053[_0x2df052(0xc6)]&&_0xa54053[_0x2df052(0xcb)][_0x2df052(0xc4)]&&_0xa54053[_0x2df052(0xcb)]['workCodeByName'][_0x2df052(0xc9)]?_0xa54053['data'][_0x2df052(0xc4)][_0x2df052(0xc9)][_0x2df052(0x120)]((_0x52dbba,_0x3a96dc)=>_0x52dbba[_0x2df052(0x118)]-_0x3a96dc[_0x2df052(0x118)]):[];}static async[a0_0x7495ae(0x119)](_0x5671ac){const _0x4df4e3=a0_0x7495ae;let _0x296645=(await ServiceUtil[_0x4df4e3(0xd9)](_0x5671ac))[_0x4df4e3(0xf2)](_0x3a3996=>({'value':_0x3a3996[_0x4df4e3(0x102)],'display':_0x3a3996[_0x4df4e3(0xd1)]}));return _0x296645[_0x4df4e3(0x12a)]({'value':'','display':''}),_0x296645;}static async[a0_0x7495ae(0x109)](_0x239e74,_0x1d4b86){const _0x11fd35=a0_0x7495ae;let _0x2c9c5d=await ServiceUtil[_0x11fd35(0xbc)](null,_0x239e74,_0x1d4b86,!0x1);if(_0x2c9c5d&&_0x2c9c5d['data']&&_0x2c9c5d['data'][_0x11fd35(0xb0)]&&_0x2c9c5d[_0x11fd35(0xcb)][_0x11fd35(0xb0)]['result']&&_0x2c9c5d[_0x11fd35(0xcb)][_0x11fd35(0xb0)][_0x11fd35(0xee)][_0x11fd35(0xee)]){let _0x4de214=_0x2c9c5d['data']['runScenario']['result'][_0x11fd35(0xee)];return _0x4de214[_0x11fd35(0x12a)]({'value':'','display':''}),_0x4de214[_0x11fd35(0xf2)](_0x595b33=>({'value':_0x595b33[_0x11fd35(0x102)],'display':_0x595b33[_0x11fd35(0xd1)]}));}return[];}static async[a0_0x7495ae(0x111)]({queryName:_0x1bffa4,codeField:_0x5a2287='name',dispField:_0x200ea8,filters:_0x46bc53=[],sorters:_0x106493=[]}){const _0x586036=a0_0x7495ae;let _0x97dfa5=_0x200ea8[_0x586036(0xce)](','),_0x248c41=_0x586036(0x103)+_0x5a2287+_0x586036(0x103)+(_0x200ea8?_0x97dfa5['join']('\x0a'):'')+_0x586036(0x124),_0x1e2c52=await ServiceUtil['searchByPagination'](_0x1bffa4,_0x46bc53,_0x106493,0x0,0x0,_0x248c41),_0x4e20d1=[{'value':'','display':''}];return _0x1e2c52[_0x586036(0xa2)][_0x586036(0xbf)](_0x1d9aec=>{const _0x2cafdb=_0x586036;let _0x461a5b=_0x1d9aec[_0x5a2287];if(_0x200ea8){let _0x252b56=_0x200ea8[_0x2cafdb(0xce)](',');_0x461a5b=_0x1d9aec[_0x252b56[0x0]],_0x252b56[_0x2cafdb(0xe1)]>0x1&&(_0x461a5b+='('+_0x252b56[_0x2cafdb(0xd4)](0x1)[_0x2cafdb(0xf2)](_0x251b12=>_0x1d9aec[_0x251b12])[_0x2cafdb(0x121)](',')+')');}_0x4e20d1[_0x2cafdb(0x123)]({'value':_0x1d9aec[_0x5a2287],'display':_0x461a5b});}),_0x4e20d1;}static async[a0_0x7495ae(0xe8)](){const _0x39660c=a0_0x7495ae;let _0xcae83=await ServiceUtil[_0x39660c(0x10c)]();return null!=_0xcae83?ServiceUtil['arrangeMenuRoutes'](_0xcae83):null;}static async['searchMenuGridPersnalTemplate'](_0x3810bb){const _0x44d5fc=a0_0x7495ae;let _0xa6b459=[{'name':_0x44d5fc(0x113),'operator':'eq','value':_0x3810bb}],_0x4f481f=await ServiceUtil['searchByPagination'](_0x44d5fc(0xd3),_0xa6b459,[],0x0,0x0,_0x44d5fc(0xb3));return 0x0==_0x4f481f[_0x44d5fc(0x129)]?{}:{'id':_0x4f481f[_0x44d5fc(0xa2)][0x0]['id'],'template':JSON[_0x44d5fc(0x12d)](_0x4f481f['records'][0x0][_0x44d5fc(0x12b)])};}static[a0_0x7495ae(0xdf)](_0x3af78d){const _0x1cd620=a0_0x7495ae;let _0x5a313c=[];_0x3af78d[_0x1cd620(0xbf)](_0xda8f6b=>{const _0x43f47b=_0x1cd620;_0x5a313c[_0x43f47b(0x123)](_0xda8f6b),_0xda8f6b[_0x43f47b(0xb7)]&&(_0xda8f6b[_0x43f47b(0xb7)][_0x43f47b(0x120)](function(_0x1b880e,_0x332c51){const _0x292719=_0x43f47b;return _0x1b880e[_0x292719(0x118)]-_0x332c51[_0x292719(0x118)];}),_0xda8f6b['children']['forEach'](_0x316015=>{0x1!=_0x316015['hiddenFlag']&&(_0x316015['parent']=_0xda8f6b,_0x5a313c['push'](_0x316015));}));});let _0x1c99e2=_0x5a313c[_0x1cd620(0xf2)](_0x45a93a=>{const _0x48eb59=_0x1cd620;if(_0x48eb59(0xd7)==_0x45a93a[_0x48eb59(0xff)]||'MENU'==_0x45a93a[_0x48eb59(0xff)]){let _0x2a07a6={'id':_0x45a93a['id'],'parent':!0x0,'name':TermsUtil[_0x48eb59(0xc7)](_0x45a93a[_0x48eb59(0x102)]),'icon':_0x45a93a[_0x48eb59(0xd0)],'type':_0x48eb59(0xd7)==_0x45a93a[_0x48eb59(0xff)]?_0x48eb59(0xbb):'','menus':[]};return _0x45a93a[_0x48eb59(0x11a)]&&(_0x2a07a6[_0x48eb59(0xcd)]=_0x45a93a['routing']),_0x2a07a6;}return{'id':'0'};})[_0x1cd620(0x10e)](_0x481de1=>'0'!=_0x481de1['id']),_0x16df0e=_0x5a313c[_0x1cd620(0xf2)](_0x2fdb55=>{const _0x2ee0ad=_0x1cd620;if(_0x2ee0ad(0xac)==_0x2fdb55['menuType']||_0x2ee0ad(0xf7)==_0x2fdb55[_0x2ee0ad(0xff)]){let _0x54f9c5=_0x1c99e2[_0x2ee0ad(0xea)](_0xc6fb7=>_0xc6fb7['id']==_0x2fdb55[_0x2ee0ad(0xdd)]['id']);if(_0x54f9c5){let _0x18b7b1=TermsUtil[_0x2ee0ad(0xc7)](_0x2fdb55[_0x2ee0ad(0x102)]);return'SCREEN'==_0x2fdb55[_0x2ee0ad(0xff)]&&_0x54f9c5['menus'][_0x2ee0ad(0x123)]({'id':_0x2fdb55['id'],'name':_0x18b7b1,'path':_0x2fdb55[_0x2ee0ad(0x11a)],'icon':_0x2fdb55['iconPath']}),{'id':_0x2fdb55['id'],'parent':!0x1,'parent_id':_0x54f9c5['id'],'title':_0x18b7b1,'tagname':_0x2fdb55[_0x2ee0ad(0xaf)],'page':_0x2fdb55[_0x2ee0ad(0x11a)],'template':_0x2fdb55[_0x2ee0ad(0xd5)],'routing_type':_0x2fdb55['routingType']};}return{'id':'0'};}return _0x2ee0ad(0xdc)==_0x2fdb55[_0x2ee0ad(0xff)]?{'id':_0x2fdb55['id'],'parent':!0x0,'parent_id':null,'title':TermsUtil[_0x2ee0ad(0xc7)](_0x2fdb55[_0x2ee0ad(0x102)]),'tagname':_0x2fdb55[_0x2ee0ad(0xaf)],'page':_0x2fdb55[_0x2ee0ad(0x11a)],'template':_0x2fdb55[_0x2ee0ad(0xd5)],'routing_type':_0x2fdb55[_0x2ee0ad(0xf3)]}:{'id':'0'};})[_0x1cd620(0x10e)](_0x212462=>null!=_0x212462&&'0'!=_0x212462['id']);_0x1c99e2[_0x1cd620(0x10e)](_0x390cca=>'group'==_0x390cca['type']&&_0x390cca[_0x1cd620(0x117)]&&_0x390cca[_0x1cd620(0x117)][_0x1cd620(0xe1)]>0x0)[_0x1cd620(0xbf)](_0x26a9d5=>{const _0x2209e4=_0x1cd620;let _0x15e0b7=_0x1c99e2['findIndex'](_0x12f460=>_0x12f460['id']==_0x26a9d5['id'])+0x1;_0x1c99e2[_0x2209e4(0xd4)](_0x15e0b7,0x0,..._0x26a9d5[_0x2209e4(0x117)]);});let _0x1a4e1c=0x0;return _0x1c99e2[_0x1cd620(0xbf)](_0x3d6422=>{const _0x49d6f5=_0x1cd620;_0x49d6f5(0xe0)==_0x3d6422['path']?(_0x1a4e1c++,_0x3d6422[_0x49d6f5(0xcc)]=()=>asyncReplace(generateActivitySummary('numberOfToDos')),_0x3d6422[_0x49d6f5(0xcf)]=({path:_0x4070c8})=>/^activity\//['test'](_0x4070c8)):_0x49d6f5(0xbe)==_0x3d6422['path']?(_0x1a4e1c++,_0x3d6422[_0x49d6f5(0xcc)]=()=>asyncReplace(generateActivitySummary(_0x49d6f5(0xb1))),_0x3d6422[_0x49d6f5(0xcf)]=({path:_0x341f7d})=>/^activity\//[_0x49d6f5(0xad)](_0x341f7d)):_0x49d6f5(0xc1)==_0x3d6422['path']&&(_0x1a4e1c++,_0x3d6422[_0x49d6f5(0xcc)]=()=>asyncReplace(generateActivitySummary(_0x49d6f5(0xef))));}),_0x1a4e1c>0x0&&startSubscribeActivitySummary(),{'menus':_0x1c99e2,'routes':_0x16df0e};}static async[a0_0x7495ae(0x10c)](){const _0x3f05d7=a0_0x7495ae;let _0x494453=await ServiceUtil[_0x3f05d7(0x108)](_0x3f05d7(0x117),[{'name':_0x3f05d7(0xc2),'operator':_0x3f05d7(0xc5),'value':!0x0},{'name':'menuType','operator':'in','value':[_0x3f05d7(0xdc),'MENU',_0x3f05d7(0xd7)]}],[{'name':_0x3f05d7(0x118)}],0x0,0x0,_0x3f05d7(0xf4));return _0x494453?_0x494453['records']:[];}static async[a0_0x7495ae(0xf6)](_0x6cf11d){const _0x4aaf51=a0_0x7495ae;if(_0x6cf11d[_0x4aaf51(0xc6)]&&_0x6cf11d['errors'][_0x4aaf51(0xe1)]>0x0){let _0x7f933b=_0x6cf11d['errors'][0x0],_0x7ce259=_0x7f933b[_0x4aaf51(0xb4)],_0x497f54=_0x7f933b[_0x4aaf51(0xb4)];_0x7f933b['extensions']&&(_0x497f54=_0x7f933b[_0x4aaf51(0x10a)][_0x4aaf51(0xec)]),await UiUtil['showAlertPopup'](_0x497f54,_0x7ce259,'error',_0x4aaf51(0xfa));}}static async[a0_0x7495ae(0xa7)](_0x2d1eae){const _0x2fb5f0=a0_0x7495ae;_0x2d1eae&&(_0x2d1eae[_0x2fb5f0(0x101)]&&_0x2d1eae['networkError']['result']?await ServiceUtil['showGraphqlErrorResponse'](_0x2d1eae[_0x2fb5f0(0x101)][_0x2fb5f0(0xee)]):await UiUtil['showAlertPopup'](_0x2fb5f0(0xe3),_0x2d1eae[_0x2fb5f0(0xb4)],_0x2fb5f0(0xeb),_0x2fb5f0(0xfa)));}static async['exportableData'](_0x290391,_0x41e1a5,_0x1c2af4){const _0x2597d4=a0_0x7495ae;var _0x3b3fe5=_0x1c2af4['_config'][_0x2597d4(0x104)][_0x2597d4(0x10e)](_0x244a71=>_0x2597d4(0x112)!==_0x244a71[_0x2597d4(0x110)]&&void 0x0!==_0x244a71[_0x2597d4(0x11e)]&&void 0x0!==_0x244a71[_0x2597d4(0xa8)]&&!0x0!==_0x244a71[_0x2597d4(0x11c)])['map'](_0x186c02=>_0x186c02['imex']),_0x30b1b3=_0x1c2af4[_0x2597d4(0xcb)]['records']['map'](_0x3eeaaf=>({..._0x1c2af4['_config']['columns']['filter'](_0x494407=>_0x2597d4(0x112)!==_0x494407[_0x2597d4(0x110)]&&void 0x0!==_0x494407[_0x2597d4(0x11e)]&&void 0x0!==_0x494407['imex']&&!0x0!==_0x494407['hidden'])[_0x2597d4(0xb8)]((_0xb30e6e,_0x40d96b)=>(_0xb30e6e[_0x40d96b['imex'][_0x2597d4(0xa3)]]=_0x40d96b[_0x2597d4(0xa8)]['key']['split']('.')[_0x2597d4(0xb8)]((_0x13dd0c,_0x448495)=>_0x13dd0c&&_0x2597d4(0xf5)!==_0x13dd0c[_0x448495]?_0x13dd0c[_0x448495]:void 0x0,_0x3eeaaf),_0xb30e6e),{})}));if(!_0x290391)return{'header':_0x3b3fe5,'data':_0x30b1b3};store[_0x2597d4(0xda)]({'type':EXPORT,'exportable':{'extension':_0x2597d4(0xa6),'name':_0x41e1a5,'data':{'header':_0x3b3fe5,'data':_0x30b1b3}}});}static async[a0_0x7495ae(0x108)](_0x224270,_0x484276,_0x2fbf0c,_0x5d49e3,_0x44ccf9,_0x1a5866){const _0x350db2=a0_0x7495ae;try{const _0xf35e5f=await client[_0x350db2(0xfe)]({'query':a0_0x2a7828`
11
+ `,'variables':{'name':_0x3c897d},'context':gqlContext()});return!_0x1f42ac[_0x2f63fa(0xdb)]&&_0x1f42ac[_0x2f63fa(0x10c)][_0x2f63fa(0x94)]&&_0x1f42ac[_0x2f63fa(0x10c)][_0x2f63fa(0x94)][_0x2f63fa(0xde)]?_0x1f42ac['data'][_0x2f63fa(0x94)][_0x2f63fa(0xde)][_0x2f63fa(0x116)]((_0x5ce588,_0x18d279)=>_0x5ce588['rank']-_0x18d279[_0x2f63fa(0xb6)]):[];}static async['getCodeSelectorData'](_0x4be19d){const _0x5ba572=a0_0x21c53d;let _0x585fcc=(await ServiceUtil[_0x5ba572(0x10d)](_0x4be19d))[_0x5ba572(0xd3)](_0x22319f=>({'value':_0x22319f[_0x5ba572(0x100)],'display':_0x22319f[_0x5ba572(0xcb)]}));return _0x585fcc[_0x5ba572(0x121)]({'value':'','display':''}),_0x585fcc;}static async[a0_0x21c53d(0xa5)](_0xbb943f,_0x2cd7ef){const _0x4b91c8=a0_0x21c53d;let _0x2a15f5=await ServiceUtil['callScenario'](null,_0xbb943f,_0x2cd7ef,!0x1);if(_0x2a15f5&&_0x2a15f5['data']&&_0x2a15f5['data']['runScenario']&&_0x2a15f5[_0x4b91c8(0x10c)][_0x4b91c8(0x12e)][_0x4b91c8(0xd5)]&&_0x2a15f5[_0x4b91c8(0x10c)]['runScenario'][_0x4b91c8(0xd5)][_0x4b91c8(0xd5)]){let _0x5b89eb=_0x2a15f5[_0x4b91c8(0x10c)]['runScenario'][_0x4b91c8(0xd5)][_0x4b91c8(0xd5)];return _0x5b89eb[_0x4b91c8(0x121)]({'value':'','display':''}),_0x5b89eb['map'](_0x23dd4f=>({'value':_0x23dd4f[_0x4b91c8(0x100)],'display':_0x23dd4f[_0x4b91c8(0xcb)]}));}return[];}static async[a0_0x21c53d(0xa2)]({queryName:_0x4532bd,codeField:_0x1ed444=a0_0x21c53d(0x100),dispField:_0x23e1e9,filters:_0x235d75=[],sorters:_0xb11f69=[]}){const _0x55851a=a0_0x21c53d;let _0x3fb6f2=_0x23e1e9['split'](','),_0x32d9bb=_0x55851a(0x11a)+_0x1ed444+_0x55851a(0x11a)+(_0x23e1e9?_0x3fb6f2[_0x55851a(0x11c)]('\x0a'):'')+_0x55851a(0x124),_0xa0c136=await ServiceUtil[_0x55851a(0xec)](_0x4532bd,_0x235d75,_0xb11f69,0x0,0x0,_0x32d9bb),_0x5d3d94=[{'value':'','display':''}];return _0xa0c136[_0x55851a(0x12b)]['forEach'](_0x188082=>{const _0x5ef427=_0x55851a;let _0x4e1820=_0x188082[_0x1ed444];if(_0x23e1e9){let _0x2d5782=_0x23e1e9[_0x5ef427(0x131)](',');_0x4e1820=_0x188082[_0x2d5782[0x0]],_0x2d5782['length']>0x1&&(_0x4e1820+='('+_0x2d5782[_0x5ef427(0xe3)](0x1)[_0x5ef427(0xd3)](_0x9ef8d3=>_0x188082[_0x9ef8d3])[_0x5ef427(0x11c)](',')+')');}_0x5d3d94[_0x5ef427(0xb0)]({'value':_0x188082[_0x1ed444],'display':_0x4e1820});}),_0x5d3d94;}static async[a0_0x21c53d(0x135)](){const _0x1c0de4=a0_0x21c53d;let _0x314a70=await ServiceUtil[_0x1c0de4(0xcc)]();return null!=_0x314a70?ServiceUtil[_0x1c0de4(0x109)](_0x314a70):null;}static async[a0_0x21c53d(0x9b)](_0x2c2cc2){const _0x50b481=a0_0x21c53d;let _0x214f39=[{'name':_0x50b481(0x8f),'operator':'eq','value':_0x2c2cc2}],_0x39201a=await ServiceUtil[_0x50b481(0xec)](_0x50b481(0x93),_0x214f39,[],0x0,0x0,'id,template');return 0x0==_0x39201a[_0x50b481(0xd1)]?{}:{'id':_0x39201a[_0x50b481(0x12b)][0x0]['id'],'template':JSON['parse'](_0x39201a[_0x50b481(0x12b)][0x0][_0x50b481(0x127)])};}static[a0_0x21c53d(0x109)](_0x5ae1c1){const _0x529562=a0_0x21c53d;let _0x1989a4=[];_0x5ae1c1['forEach'](_0x43663e=>{const _0x378ce5=a0_0x31a7;_0x1989a4['push'](_0x43663e),_0x43663e[_0x378ce5(0xeb)]&&(_0x43663e[_0x378ce5(0xeb)][_0x378ce5(0x116)](function(_0x177fa2,_0x58ab05){const _0x1c47a4=_0x378ce5;return _0x177fa2[_0x1c47a4(0xb6)]-_0x58ab05[_0x1c47a4(0xb6)];}),_0x43663e['children'][_0x378ce5(0xc3)](_0x14fb96=>{const _0x132b06=_0x378ce5;0x1!=_0x14fb96[_0x132b06(0x117)]&&(_0x14fb96['parent']=_0x43663e,_0x1989a4['push'](_0x14fb96));}));});let _0x56b479=_0x1989a4['map'](_0x37a24f=>{const _0x3d1d3b=a0_0x31a7;if(_0x3d1d3b(0xe2)==_0x37a24f[_0x3d1d3b(0x13e)]||_0x3d1d3b(0x102)==_0x37a24f[_0x3d1d3b(0x13e)]){let _0x24a175={'id':_0x37a24f['id'],'parent':!0x0,'name':TermsUtil['tMenu'](_0x37a24f['name']),'icon':_0x37a24f['iconPath'],'type':_0x3d1d3b(0xe2)==_0x37a24f['menuType']?_0x3d1d3b(0xf0):'','menus':[]};return _0x37a24f[_0x3d1d3b(0xbe)]&&(_0x24a175[_0x3d1d3b(0xb2)]=_0x37a24f[_0x3d1d3b(0xbe)]),_0x24a175;}return{'id':'0'};})[_0x529562(0x123)](_0xce7469=>'0'!=_0xce7469['id']),_0x427834=_0x1989a4[_0x529562(0xd3)](_0x2c9c67=>{const _0x3023d7=_0x529562;if(_0x3023d7(0xa7)==_0x2c9c67[_0x3023d7(0x13e)]||_0x3023d7(0xca)==_0x2c9c67[_0x3023d7(0x13e)]){let _0x2f0722=_0x56b479[_0x3023d7(0xa6)](_0x802711=>_0x802711['id']==_0x2c9c67[_0x3023d7(0xe5)]['id']);if(_0x2f0722){let _0x512f8b=TermsUtil[_0x3023d7(0xfd)](_0x2c9c67[_0x3023d7(0x100)]);return _0x3023d7(0xa7)==_0x2c9c67[_0x3023d7(0x13e)]&&_0x2f0722[_0x3023d7(0x12a)][_0x3023d7(0xb0)]({'id':_0x2c9c67['id'],'name':_0x512f8b,'path':_0x2c9c67[_0x3023d7(0xbe)],'icon':_0x2c9c67['iconPath']}),{'id':_0x2c9c67['id'],'parent':!0x1,'parent_id':_0x2f0722['id'],'title':_0x512f8b,'tagname':_0x2c9c67[_0x3023d7(0xae)],'page':_0x2c9c67[_0x3023d7(0xbe)],'template':_0x2c9c67[_0x3023d7(0x105)],'routing_type':_0x2c9c67[_0x3023d7(0x10e)]};}return{'id':'0'};}return _0x3023d7(0xe4)==_0x2c9c67[_0x3023d7(0x13e)]?{'id':_0x2c9c67['id'],'parent':!0x0,'parent_id':null,'title':TermsUtil[_0x3023d7(0xfd)](_0x2c9c67[_0x3023d7(0x100)]),'tagname':_0x2c9c67[_0x3023d7(0xae)],'page':_0x2c9c67[_0x3023d7(0xbe)],'template':_0x2c9c67[_0x3023d7(0x105)],'routing_type':_0x2c9c67['routingType']}:{'id':'0'};})[_0x529562(0x123)](_0x5102b4=>null!=_0x5102b4&&'0'!=_0x5102b4['id']);_0x56b479['filter'](_0x14eaef=>'group'==_0x14eaef[_0x529562(0x101)]&&_0x14eaef[_0x529562(0x12a)]&&_0x14eaef['menus'][_0x529562(0x103)]>0x0)[_0x529562(0xc3)](_0x31ebeb=>{const _0x25259b=_0x529562;let _0xc883fc=_0x56b479['findIndex'](_0x4b0d49=>_0x4b0d49['id']==_0x31ebeb['id'])+0x1;_0x56b479[_0x25259b(0xe3)](_0xc883fc,0x0,..._0x31ebeb[_0x25259b(0x12a)]);});let _0x4bf0b2=0x0;return _0x56b479[_0x529562(0xc3)](_0x1ef030=>{const _0x8bee6=_0x529562;_0x8bee6(0x115)==_0x1ef030[_0x8bee6(0xb2)]?(_0x4bf0b2++,_0x1ef030['badge']=()=>asyncReplace(generateActivitySummary(_0x8bee6(0x10a))),_0x1ef030[_0x8bee6(0x13b)]=({path:_0x4193d4})=>/^activity\//['test'](_0x4193d4)):_0x8bee6(0xd2)==_0x1ef030[_0x8bee6(0xb2)]?(_0x4bf0b2++,_0x1ef030[_0x8bee6(0xff)]=()=>asyncReplace(generateActivitySummary(_0x8bee6(0x99))),_0x1ef030['active']=({path:_0x2d15c7})=>/^activity\//[_0x8bee6(0x129)](_0x2d15c7)):_0x8bee6(0xfa)==_0x1ef030['path']&&(_0x4bf0b2++,_0x1ef030[_0x8bee6(0xff)]=()=>asyncReplace(generateActivitySummary(_0x8bee6(0xf8))));}),_0x4bf0b2>0x0&&startSubscribeActivitySummary(),{'menus':_0x56b479,'routes':_0x427834};}static async[a0_0x21c53d(0xcc)](){const _0x564e86=a0_0x21c53d;let _0x4c7cf0=await ServiceUtil[_0x564e86(0xec)](_0x564e86(0x12a),[{'name':_0x564e86(0x117),'operator':_0x564e86(0xac),'value':!0x0},{'name':_0x564e86(0x13e),'operator':'in','value':[_0x564e86(0xe4),_0x564e86(0x102),'GROUP']}],[{'name':_0x564e86(0xb6)}],0x0,0x0,'\x0a\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20parent\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20name\x0a\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20children{\x0a\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20name\x0a\x20\x20\x20\x20\x20\x20\x20\x20description\x0a\x20\x20\x20\x20\x20\x20\x20\x20menuType\x0a\x20\x20\x20\x20\x20\x20\x20\x20category\x0a\x20\x20\x20\x20\x20\x20\x20\x20routingType\x0a\x20\x20\x20\x20\x20\x20\x20\x20routing\x0a\x20\x20\x20\x20\x20\x20\x20\x20resourceUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20iconPath\x0a\x20\x20\x20\x20\x20\x20\x20\x20hiddenFlag\x0a\x20\x20\x20\x20\x20\x20\x20\x20rank\x0a\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20name\x0a\x20\x20\x20\x20\x20\x20description\x0a\x20\x20\x20\x20\x20\x20menuType\x0a\x20\x20\x20\x20\x20\x20category\x0a\x20\x20\x20\x20\x20\x20routingType\x0a\x20\x20\x20\x20\x20\x20routing\x0a\x20\x20\x20\x20\x20\x20resourceUrl\x0a\x20\x20\x20\x20\x20\x20iconPath\x0a\x20\x20\x20\x20');return _0x4c7cf0?_0x4c7cf0[_0x564e86(0x12b)]:[];}static async[a0_0x21c53d(0x114)](_0x885c46){const _0x9c2322=a0_0x21c53d;if(_0x885c46[_0x9c2322(0xdb)]&&_0x885c46[_0x9c2322(0xdb)][_0x9c2322(0x103)]>0x0){let _0x274f9b=_0x885c46[_0x9c2322(0xdb)][0x0],_0x1bceac=_0x274f9b[_0x9c2322(0x97)],_0x131e8a=_0x274f9b[_0x9c2322(0x97)];_0x274f9b[_0x9c2322(0x112)]&&(_0x131e8a=_0x274f9b['extensions'][_0x9c2322(0x136)]),await UiUtil[_0x9c2322(0x9a)](_0x131e8a,_0x1bceac,_0x9c2322(0x138),_0x9c2322(0x13d));}}static async[a0_0x21c53d(0x10b)](_0x34fb59){const _0x43177a=a0_0x21c53d;_0x34fb59&&(_0x34fb59['networkError']&&_0x34fb59[_0x43177a(0xba)]['result']?await ServiceUtil[_0x43177a(0x114)](_0x34fb59[_0x43177a(0xba)][_0x43177a(0xd5)]):await UiUtil['showAlertPopup'](_0x43177a(0x104),_0x34fb59['message'],_0x43177a(0x138),_0x43177a(0x13d)));}static async['exportableData'](_0x35ccfd,_0x261f93,_0x5dd720){const _0xd9247f=a0_0x21c53d;var _0x483a5f=_0x5dd720[_0xd9247f(0xc0)][_0xd9247f(0x128)][_0xd9247f(0x123)](_0x278c2b=>_0xd9247f(0xf3)!==_0x278c2b[_0xd9247f(0x101)]&&void 0x0!==_0x278c2b['record']&&void 0x0!==_0x278c2b['imex']&&!0x0!==_0x278c2b[_0xd9247f(0x113)])[_0xd9247f(0xd3)](_0x1c7b76=>_0x1c7b76[_0xd9247f(0xb8)]),_0x475b4b=_0x5dd720[_0xd9247f(0x10c)][_0xd9247f(0x12b)][_0xd9247f(0xd3)](_0x18f28a=>({..._0x5dd720[_0xd9247f(0xc0)][_0xd9247f(0x128)]['filter'](_0x1ddeb7=>_0xd9247f(0xf3)!==_0x1ddeb7[_0xd9247f(0x101)]&&void 0x0!==_0x1ddeb7[_0xd9247f(0x11d)]&&void 0x0!==_0x1ddeb7[_0xd9247f(0xb8)]&&!0x0!==_0x1ddeb7[_0xd9247f(0x113)])[_0xd9247f(0xaa)]((_0x37f9db,_0x51d3a4)=>(_0x37f9db[_0x51d3a4[_0xd9247f(0xb8)][_0xd9247f(0x111)]]=_0x51d3a4[_0xd9247f(0xb8)][_0xd9247f(0x111)][_0xd9247f(0x131)]('.')[_0xd9247f(0xaa)]((_0x385ed6,_0x925f76)=>_0x385ed6&&'undefined'!==_0x385ed6[_0x925f76]?_0x385ed6[_0x925f76]:void 0x0,_0x18f28a),_0x37f9db),{})}));if(!_0x35ccfd)return{'header':_0x483a5f,'data':_0x475b4b};store[_0xd9247f(0x13c)]({'type':EXPORT,'exportable':{'extension':'xlsx','name':_0x261f93,'data':{'header':_0x483a5f,'data':_0x475b4b}}});}static async[a0_0x21c53d(0xec)](_0x2d4b81,_0x428d42,_0x43149f,_0x4318f1,_0x2af61e,_0x334048){const _0x8c4425=a0_0x21c53d;try{const _0x14d568=await client[_0x8c4425(0x12d)]({'query':a0_0x262102`
12
12
  query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {
13
- ${_0x224270}(filters: $filters, pagination: $pagination, sortings: $sortings) {
13
+ ${_0x2d4b81}(filters: $filters, pagination: $pagination, sortings: $sortings) {
14
14
  items {
15
- ${_0x1a5866}
15
+ ${_0x334048}
16
16
  }
17
17
  total
18
18
  }
19
19
  }
20
- `,'variables':{'filters':_0x484276,'sortings':_0x2fbf0c,'pagination':{'page':_0x5d49e3,'limit':_0x44ccf9}}});if(!_0xf35e5f[_0x350db2(0xc6)])return{'records':_0xf35e5f[_0x350db2(0xcb)][_0x224270]['items'],'total':_0xf35e5f[_0x350db2(0xcb)][_0x224270][_0x350db2(0x129)]};ServiceUtil[_0x350db2(0xf6)](_0xf35e5f);}catch(_0x7ad4de){ServiceUtil[_0x350db2(0xa7)](_0x7ad4de);}return null;}static async[a0_0x7495ae(0xbd)](_0x1894be,_0x3d60ca,_0xa7c459){const _0x403fa8=a0_0x7495ae;try{let _0x36f340=await client[_0x403fa8(0xfe)]({'query':a0_0x2a7828`
20
+ `,'variables':{'filters':_0x428d42,'sortings':_0x43149f,'pagination':{'page':_0x4318f1,'limit':_0x2af61e}}});if(!_0x14d568[_0x8c4425(0xdb)])return{'records':_0x14d568[_0x8c4425(0x10c)][_0x2d4b81][_0x8c4425(0xc8)],'total':_0x14d568[_0x8c4425(0x10c)][_0x2d4b81]['total']};ServiceUtil[_0x8c4425(0x114)](_0x14d568);}catch(_0x384cc9){ServiceUtil[_0x8c4425(0x10b)](_0x384cc9);}return null;}static async['findOne'](_0x281703,_0x276d02,_0x4d6ce4){const _0x111d55=a0_0x21c53d;try{let _0x4b08d0=await client[_0x111d55(0x12d)]({'query':a0_0x262102`
21
21
  query ($id: String!) {
22
- ${_0x1894be}(id: $id) {
23
- ${_0xa7c459}
22
+ ${_0x281703}(id: $id) {
23
+ ${_0x4d6ce4}
24
24
  }
25
25
  }
26
- `,'variables':{'id':_0x3d60ca}});if(!_0x36f340[_0x403fa8(0xc6)])return _0x36f340[_0x403fa8(0xcb)][_0x1894be]||{};ServiceUtil[_0x403fa8(0xf6)](_0x36f340);}catch(_0x2ca916){ServiceUtil[_0x403fa8(0xa7)](_0x2ca916);}return null;}static[a0_0x7495ae(0xf0)](_0x192e7e,_0x3f45b2){const _0x5274e6=a0_0x7495ae,_0x74433a=_0x192e7e[_0x5274e6(0x114)][_0x5274e6(0xf2)](_0x4e32a5=>_0x4e32a5['id']);return ValueUtil[_0x5274e6(0x12c)](_0x74433a)&&0x1==_0x3f45b2&&UiUtil[_0x5274e6(0xe9)](_0x5274e6(0xe6),_0x5274e6(0xb2),_0x5274e6(0xc0),_0x5274e6(0xfa)),_0x74433a;}static async[a0_0x7495ae(0xed)](_0x388e1e,_0x463bcb){const _0x4b76b3=a0_0x7495ae;let _0x4f4f70=ServiceUtil['getSelectedIdList'](_0x388e1e,!0x0);ValueUtil[_0x4b76b3(0xa4)](_0x4f4f70)&&(await ServiceUtil[_0x4b76b3(0xaa)](_0x4f4f70,_0x463bcb)&&_0x388e1e[_0x4b76b3(0xe4)]());}static async['deleteListByIds'](_0xba69f0,_0x320c67){const _0x23c6c4=a0_0x7495ae;if(!(await UiUtil[_0x23c6c4(0xe9)](_0x23c6c4(0xae),_0x23c6c4(0xd6),'question',_0x23c6c4(0xf1),'cancel'))[_0x23c6c4(0xba)])return!0x1;try{const _0x2c6fb6=await client[_0x23c6c4(0xfe)]({'query':a0_0x2a7828`
27
- mutation {
28
- ${_0x320c67}(${gqlBuilder['buildArgs']({'ids':_0xba69f0})})
26
+ `,'variables':{'id':_0x276d02}});if(!_0x4b08d0['errors'])return _0x4b08d0[_0x111d55(0x10c)][_0x281703]||{};ServiceUtil[_0x111d55(0x114)](_0x4b08d0);}catch(_0x42784e){ServiceUtil[_0x111d55(0x10b)](_0x42784e);}return null;}static async[a0_0x21c53d(0xc9)](_0x186fbc,_0x136060,_0xee8bd){const _0x313cfb=a0_0x21c53d;try{const _0x50fb19=await client[_0x313cfb(0x12d)]({'query':a0_0x262102`
27
+ query ($filters: [Filter!]) {
28
+ ${_0x186fbc}(filters: $filters) {
29
+ ${_0x136060}
30
+ }
29
31
  }
30
- `});if(!_0x2c6fb6[_0x23c6c4(0xc6)])return UiUtil['showToast'](_0x23c6c4(0xc0),TermsUtil[_0x23c6c4(0x127)](_0x23c6c4(0x12e))),!0x0;ServiceUtil['showGraphqlErrorResponse'](_0x2c6fb6);}catch(_0x9945da){ServiceUtil['showGraphqlException'](_0x9945da);}return!0x1;}static async[a0_0x7495ae(0x106)](_0x3374e8,_0x4c80b8){const _0x4d372a=a0_0x7495ae;let _0x3b9732=ServiceUtil['patchesForUpdateMultiple'](_0x3374e8);if(ValueUtil[_0x4d372a(0xa4)](_0x3b9732)){let _0x4584a1=await ServiceUtil[_0x4d372a(0x11d)](_0x4c80b8,_0x3b9732);if(_0x4584a1)return _0x3374e8[_0x4d372a(0xe4)](),_0x4584a1;}return!0x1;}static async['updateMultiple'](_0x527e11,_0x195e30){const _0x2320b6=a0_0x7495ae;try{const _0x2b6f40=await client[_0x2320b6(0xfe)]({'query':a0_0x2a7828`
31
- mutation {
32
- ${_0x527e11}(${gqlBuilder[_0x2320b6(0x126)]({'patches':_0x195e30})}) {
33
- id
32
+ `,'variables':{'filters':_0xee8bd}});if(!_0x50fb19[_0x313cfb(0xdb)])return _0x50fb19['data'][_0x186fbc]||{};ServiceUtil[_0x313cfb(0x114)](_0x50fb19);}catch(_0x3fd689){ServiceUtil[_0x313cfb(0x10b)](_0x3fd689);}return null;}static async[a0_0x21c53d(0xbc)](_0x245135,_0x2f9c96,_0x44a4b7){const _0x56130a=a0_0x21c53d;try{const _0x408e25=await client['query']({'query':a0_0x262102`
33
+ query ($filters: [Filter!], $sortings: [Sorting!]) {
34
+ ${_0x245135}(filters: $filters, sortings: $sortings) {
35
+ items {
36
+ ${_0x2f9c96}
37
+ }
34
38
  }
35
39
  }
36
- `,'context':{'hasUpload':!0x0}});if(!_0x2b6f40[_0x2320b6(0xc6)])return UiUtil[_0x2320b6(0xb6)](_0x2320b6(0xc0),TermsUtil[_0x2320b6(0x127)](_0x2320b6(0xdb))),!0x0;ServiceUtil['showGraphqlErrorResponse'](_0x2b6f40);}catch(_0x552b0e){ServiceUtil[_0x2320b6(0xa7)](_0x552b0e);}return!0x1;}static['patchesForUpdateMultiple'](_0x4083c2,_0x2d146a=!0x1){const _0x54f226=a0_0x7495ae;let _0x306e71=_0x4083c2[_0x54f226(0x122)],_0x41a823={};((_0x4083c2[_0x54f226(0x107)]||{})[_0x54f226(0x104)]||[])[_0x54f226(0x10e)](_0x253f40=>!0x0===(_0x253f40[_0x54f226(0x11e)]||{})['mandatory'])[_0x54f226(0xbf)](_0x24abe2=>{const _0x245bf6=_0x54f226;_0x41a823[_0x24abe2['name']]=_0x24abe2[_0x245bf6(0xe2)];});let _0x2b2b0e=((_0x4083c2[_0x54f226(0x107)]||{})[_0x54f226(0x104)]||[])[_0x54f226(0x10e)](_0x480e2b=>'code-input'===_0x480e2b['type'])['map'](_0x5dc6c1=>_0x5dc6c1[_0x54f226(0x102)]);if(!_0x306e71||0x0==_0x306e71[_0x54f226(0xe1)])return void UiUtil['showAlertPopup']('text.nothing_changed','text.NOTHING_CHANGED',_0x54f226(0xc0),'confirm');let _0x450080=[];for(let _0x1ee1f5 in _0x306e71){let _0x3c9a26=_0x306e71[_0x1ee1f5],_0x3e5426=_0x3c9a26['id']?{'id':_0x3c9a26['id']}:{};for(let _0x313ea5 in _0x41a823)if(void 0x0===_0x3c9a26[_0x313ea5]||''==_0x3c9a26[_0x313ea5])return console[_0x54f226(0x125)](_0x3c9a26),void UiUtil[_0x54f226(0xe9)]('text.check-mandatory',TermsUtil[_0x54f226(0x127)](_0x54f226(0xca),{'x':_0x41a823[_0x313ea5]}),'info','confirm');for(let _0x392f51 in _0x3c9a26)[_0x54f226(0xa5),_0x54f226(0xf9),_0x54f226(0x11f),'updatedAt',_0x54f226(0x128),'__dirtyfields__',_0x54f226(0x115),_0x54f226(0x12f),'__selected__'][_0x54f226(0xfd)](_0x392f51)||(0x0==_0x2b2b0e['includes'](_0x392f51)&&_0x3c9a26[_0x392f51]&&_0x54f226(0x10f)==typeof _0x3c9a26[_0x392f51]&&0x0==_0x2d146a?_0x3e5426[_0x392f51]={'id':_0x3c9a26[_0x392f51]['id']}:_0x3e5426[_0x392f51]=_0x3c9a26[_0x392f51]);_0x3e5426[_0x54f226(0xb9)]=_0x3c9a26[_0x54f226(0x128)],_0x450080[_0x54f226(0x123)](_0x3e5426);}return _0x450080;}static async['callScenario'](_0xf280f3,_0x38f86c,_0x36b40f,_0x47b788=!0x0){const _0x27ee56=a0_0x7495ae;let _0xd5ba6d=!0x0;_0xf280f3&&!0x0===_0x47b788&&(_0xd5ba6d=(await UiUtil[_0x27ee56(0xe9)](_0x27ee56(0xc8)+_0xf280f3,_0x27ee56(0xd6),_0x27ee56(0xfb),'confirm','cancel'))['value']);if(_0xd5ba6d)try{const _0x30b7de=await client[_0x27ee56(0xfe)]({'query':a0_0x2a7828`
40
+ `,'variables':{'filters':_0x44a4b7}});if(!_0x408e25[_0x56130a(0xdb)])return _0x408e25['data'][_0x245135][_0x56130a(0xc8)]||[];ServiceUtil[_0x56130a(0x114)](_0x408e25);}catch(_0x30c1f1){ServiceUtil[_0x56130a(0x10b)](_0x30c1f1);}return null;}static[a0_0x21c53d(0x91)](_0x10b725,_0x3e8fe9){const _0x30b7eb=a0_0x21c53d,_0x196075=_0x10b725[_0x30b7eb(0xf6)]['map'](_0x19d453=>_0x19d453['id']);return ValueUtil['isEmpty'](_0x196075)&&0x1==_0x3e8fe9&&UiUtil['showAlertPopup'](_0x30b7eb(0xc4),'text.there_is_nothing_to_delete',_0x30b7eb(0x9e),'confirm'),_0x196075;}static async[a0_0x21c53d(0xda)](_0x49b396,_0x5c0b44){const _0x3d3971=a0_0x21c53d;let _0x22aa6b=ServiceUtil['getSelectedIdList'](_0x49b396,!0x0);ValueUtil[_0x3d3971(0xb5)](_0x22aa6b)&&(await ServiceUtil[_0x3d3971(0xe9)](_0x22aa6b,_0x5c0b44)&&_0x49b396[_0x3d3971(0xa0)]());}static async[a0_0x21c53d(0xe9)](_0x3d32d4,_0x22a7a8){const _0x2c533d=a0_0x21c53d;if((await UiUtil[_0x2c533d(0x9a)]('button.delete',_0x2c533d(0xf4),_0x2c533d(0x108),'delete',_0x2c533d(0x90)))[_0x2c533d(0xea)])try{const _0x2ff661=await client[_0x2c533d(0x12d)]({'query':a0_0x262102`
41
+ mutation {
42
+ ${_0x22a7a8}(${gqlBuilder[_0x2c533d(0xf1)]({'ids':_0x3d32d4})})
43
+ }`});if(!_0x2ff661[_0x2c533d(0xdb)])return UiUtil[_0x2c533d(0x9f)](_0x2c533d(0x9e),TermsUtil['tText'](_0x2c533d(0xe6))),!0x0;ServiceUtil[_0x2c533d(0x114)](_0x2ff661);}catch(_0x736758){ServiceUtil[_0x2c533d(0x10b)](_0x736758);}return!0x1;}static async['updateMultipleData'](_0x14c921,_0x2124ab){const _0x113f4e=a0_0x21c53d;let _0x3ad1cb=ServiceUtil[_0x113f4e(0xa9)](_0x14c921);if(ValueUtil['isNotEmpty'](_0x3ad1cb)){let _0x229a24=await ServiceUtil[_0x113f4e(0xdf)](_0x2124ab,_0x3ad1cb);if(_0x229a24)return _0x14c921[_0x113f4e(0xa0)](),_0x229a24;}return!0x1;}static async[a0_0x21c53d(0xdf)](_0x4bb8ac,_0x4c11bf){const _0x1e6727=a0_0x21c53d;try{const _0x5b0cab=await client[_0x1e6727(0x12d)]({'query':a0_0x262102`
44
+ mutation {
45
+ ${_0x4bb8ac}(${gqlBuilder[_0x1e6727(0xf1)]({'patches':_0x4c11bf})}) {
46
+ id
47
+ }
48
+ }`,'context':{'hasUpload':!0x0}});if(!_0x5b0cab[_0x1e6727(0xdb)])return UiUtil['showToast']('info',TermsUtil['tText'](_0x1e6727(0x12f))),!0x0;ServiceUtil[_0x1e6727(0x114)](_0x5b0cab);}catch(_0x12b1b6){ServiceUtil[_0x1e6727(0x10b)](_0x12b1b6);}return!0x1;}static[a0_0x21c53d(0xa9)](_0x312f13,_0x2e865d=!0x1){const _0x25b23d=a0_0x21c53d;let _0x46a416=_0x312f13[_0x25b23d(0x107)],_0x260a73={};((_0x312f13['config']||{})[_0x25b23d(0x128)]||[])[_0x25b23d(0x123)](_0x1ac25e=>!0x0===(_0x1ac25e['record']||{})[_0x25b23d(0xb9)])['forEach'](_0x3b9e6f=>{const _0x127544=_0x25b23d;_0x260a73[_0x3b9e6f[_0x127544(0x100)]]=_0x3b9e6f[_0x127544(0x11e)];});let _0x4ff1a0=((_0x312f13[_0x25b23d(0xc2)]||{})['columns']||[])[_0x25b23d(0x123)](_0x32f0ed=>'code-input'===_0x32f0ed[_0x25b23d(0x101)])[_0x25b23d(0xd3)](_0x5d3268=>_0x5d3268['name']);if(!_0x46a416||0x0==_0x46a416[_0x25b23d(0x103)])return void UiUtil[_0x25b23d(0x9a)](_0x25b23d(0xc6),_0x25b23d(0xbf),'info',_0x25b23d(0x13d));let _0x1bbe18=[];for(let _0x4c7008 in _0x46a416){let _0x528d9c=_0x46a416[_0x4c7008],_0x172203=_0x528d9c['id']?{'id':_0x528d9c['id']}:{};for(let _0x23597c in _0x260a73)if(void 0x0===_0x528d9c[_0x23597c]||''==_0x528d9c[_0x23597c])return console[_0x25b23d(0x12c)](_0x528d9c),void UiUtil[_0x25b23d(0x9a)](_0x25b23d(0x9d),TermsUtil[_0x25b23d(0xe8)]('check-mandatory-field',{'x':_0x260a73[_0x23597c]}),_0x25b23d(0x9e),_0x25b23d(0x13d));for(let _0x2cd6e5 in _0x528d9c)[_0x25b23d(0xbd),_0x25b23d(0xa1),_0x25b23d(0x137),_0x25b23d(0xd4),_0x25b23d(0xf5),_0x25b23d(0xf9),_0x25b23d(0xee),_0x25b23d(0x120),_0x25b23d(0x9c)][_0x25b23d(0xd8)](_0x2cd6e5)||(0x0==_0x4ff1a0['includes'](_0x2cd6e5)&&_0x528d9c[_0x2cd6e5]&&_0x25b23d(0xcd)==typeof _0x528d9c[_0x2cd6e5]&&0x0==_0x2e865d?_0x172203[_0x2cd6e5]={'id':_0x528d9c[_0x2cd6e5]['id']}:_0x172203[_0x2cd6e5]=_0x528d9c[_0x2cd6e5]);_0x172203[_0x25b23d(0xbb)]=_0x528d9c[_0x25b23d(0xf5)],_0x1bbe18[_0x25b23d(0xb0)](_0x172203);}return _0x1bbe18;}static async[a0_0x21c53d(0xfe)](_0x50441c,_0x23433a,_0x4b3717){const _0x15738a=a0_0x21c53d;try{let _0x4b3624=a0_0x262102`
49
+ mutation {
50
+ ${_0x50441c}(id: "${_0x23433a}", ${gqlBuilder[_0x15738a(0xf1)]({'patch':_0x4b3717})}) {
51
+ id
52
+ }
53
+ }`;const _0x47fbd2=await client['query']({'query':_0x4b3624,'context':{'hasUpload':!0x0}});if(!_0x47fbd2['errors'])return UiUtil[_0x15738a(0x9f)]('info',TermsUtil['tText'](_0x15738a(0x12f))),!0x0;ServiceUtil[_0x15738a(0x114)](_0x47fbd2);}catch(_0x48cd1b){ServiceUtil['showGraphqlException'](_0x48cd1b);}return!0x1;}static async[a0_0x21c53d(0xc7)](_0x1325b9,_0x3e31f3,_0x2f2ad9){const _0x7e189c=a0_0x21c53d;return _0x7e189c(0x12d)==_0x1325b9[_0x7e189c(0x106)]?await this[_0x7e189c(0x98)](_0x1325b9,_0x3e31f3,_0x2f2ad9):await this['callMutationService'](_0x1325b9,_0x3e31f3,_0x2f2ad9);}static async[a0_0x21c53d(0x98)](_0x24a820,_0x168d16,_0x454dbf){const _0x54d49c=a0_0x21c53d;let _0x1a7961=_0x24a820[_0x54d49c(0x126)],_0x452da8=_0x24a820[_0x54d49c(0x122)],_0x353bce=_0x24a820['select'],_0x48521c=_0x24a820[_0x54d49c(0xef)],_0x498593=_0x24a820['sorters'];if(_0x48521c&&_0x48521c['length']>0x0&&_0x168d16){let _0x7e6b0=Object[_0x54d49c(0xdd)](_0x168d16);_0x48521c[_0x54d49c(0xc3)](_0x54db1b=>{const _0x49a857=_0x54d49c;let _0x1f959e=_0x54db1b[_0x49a857(0xea)];if(_0x49a857(0xb7)==typeof _0x1f959e&&_0x1f959e['startsWith']('$')){let _0x361f7a=_0x1f959e[_0x49a857(0xed)]('$','');_0x7e6b0[_0x49a857(0xd8)](_0x361f7a)&&(_0x54db1b[_0x49a857(0xea)]=_0x168d16[_0x361f7a]);}});}if(_0x48521c&&_0x48521c['length']>0x0&&_0x454dbf){let _0xa2ca55=Array[_0x54d49c(0xb3)](_0x454dbf)?_0x454dbf[0x0]:_0x454dbf,_0xa57981=Object[_0x54d49c(0xdd)](_0xa2ca55);_0x48521c[_0x54d49c(0xc3)](_0x472032=>{const _0x4c81a5=_0x54d49c;let _0x4115bc=_0x472032[_0x4c81a5(0xea)];if('string'==typeof _0x4115bc&&_0x4115bc['startsWith']('$')){let _0x18ed98=_0x4115bc[_0x4c81a5(0xed)]('$','');_0xa57981['includes'](_0x18ed98)&&(_0x472032[_0x4c81a5(0xea)]=_0xa2ca55[_0x18ed98]);}});}if(_0x54d49c(0x132)==_0x1a7961){let _0x310b60=_0x24a820[_0x54d49c(0xaf)],_0x336762=_0x168d16[_0x310b60];if(_0x336762||(_0x336762=Array[_0x54d49c(0xb3)](_0x454dbf)?_0x454dbf[0x0][_0x310b60]:_0x454dbf[_0x310b60]),!_0x336762)throw new Error(_0x54d49c(0x139));return await ServiceUtil['findOne'](_0x452da8,_0x336762,_0x353bce);}if(_0x54d49c(0xe1)==_0x1a7961)return await ServiceUtil[_0x54d49c(0xc9)](_0x452da8,_0x353bce,_0x48521c);if('multi'==_0x1a7961)return await ServiceUtil[_0x54d49c(0xbc)](_0x452da8,_0x353bce,_0x48521c);if(_0x54d49c(0xce)==_0x1a7961){let _0x2c5f7d=0x1,_0x8da5cc=_0x24a820[_0x54d49c(0x11f)];return await ServiceUtil['searchByPagination'](_0x452da8,_0x48521c,_0x498593,_0x2c5f7d,_0x8da5cc,_0x353bce);}throw new Error('invalid\x20queryType\x20['+_0x1a7961+']');}static async[a0_0x21c53d(0xa8)](_0x4cb172,_0x44e544,_0x2f5155){const _0x9813c3=a0_0x21c53d;if(!_0x4cb172[_0x9813c3(0xfc)])throw new Error(_0x9813c3(0x134));if(!_0x4cb172[_0x9813c3(0x8e)])throw new Error(_0x9813c3(0xf2));let _0x5e2d5b=_0x4cb172[_0x9813c3(0x10c)],_0x16378b=Array['isArray'](_0x2f5155)?[]:{};_0x5e2d5b&&(Array[_0x9813c3(0xb3)](_0x16378b)?ValueUtil[_0x9813c3(0xb5)](_0x2f5155)&&_0x2f5155[_0x9813c3(0xc3)](_0x591ec0=>{const _0x7eb6b0=_0x9813c3;let _0x19e617=JSON[_0x7eb6b0(0xe0)](JSON[_0x7eb6b0(0xd6)](_0x5e2d5b)),_0x4b7b3b=ValueUtil[_0x7eb6b0(0xc1)](_0x19e617,_0x591ec0);_0x16378b['push'](_0x4b7b3b);}):ValueUtil[_0x9813c3(0xb5)](_0x2f5155)&&(_0x16378b=ValueUtil[_0x9813c3(0xc1)](_0x5e2d5b,_0x2f5155)),ValueUtil['isEmpty'](_0x16378b)&&(_0x16378b=ValueUtil['replaceVariableObject'](_0x5e2d5b,_0x44e544)));try{let _0x3cdf42=_0x4cb172[_0x9813c3(0xaf)]?ValueUtil[_0x9813c3(0xb5)](_0x44e544)?_0x44e544[_0x4cb172['id_field']]:Array[_0x9813c3(0xb3)](_0x2f5155)?_0x2f5155[0x0][_0x4cb172['id_field']]:_0x2f5155[_0x4cb172['id_field']]:null,_0x9fad08=await ServiceUtil[_0x9813c3(0xdc)](_0x4cb172,_0x3cdf42,ValueUtil[_0x9813c3(0xfb)](_0x16378b)?_0x2f5155:_0x16378b);if(!_0x9fad08[_0x9813c3(0xdb)])return UiUtil[_0x9813c3(0x9f)](_0x9813c3(0x9e),TermsUtil[_0x9813c3(0xe8)](_0x9813c3(0xd9))),_0x9fad08;ServiceUtil[_0x9813c3(0x114)](_0x9fad08);}catch(_0x2c337f){ServiceUtil['showGraphqlException'](_0x2c337f);}}static async['callMutation'](_0x566aed,_0xf477e7,_0x48d483){const _0x20fbc0=a0_0x21c53d;let _0x3d369f=_0x566aed[_0x20fbc0(0x8e)];return'id'==_0x3d369f?await ServiceUtil[_0x20fbc0(0x118)](_0x566aed,_0xf477e7):_0x20fbc0(0x110)==_0x3d369f?await ServiceUtil[_0x20fbc0(0x95)](_0x566aed,_0x48d483):_0x20fbc0(0xb4)==_0x3d369f?await ServiceUtil[_0x20fbc0(0x10f)](_0x566aed,_0xf477e7,_0x48d483):_0x20fbc0(0x10c)==_0x3d369f?await ServiceUtil['callMutationByData'](_0x566aed,_0x48d483):void 0x0;}static async[a0_0x21c53d(0x118)](_0x4e7eca,_0x4ff0a5){const _0x272e18=a0_0x21c53d;if(!_0x4ff0a5)throw new Error(_0x272e18(0x139));let _0x3901da=_0x4e7eca[_0x272e18(0xfc)],_0x4c3e65=_0x4e7eca[_0x272e18(0x13a)];return await client[_0x272e18(0x12d)]({'query':a0_0x262102`
54
+ mutation ($id: String!) {
55
+ ${_0x3901da}(id: $id)
56
+ ${_0x4c3e65?'{'+_0x4c3e65+'}':''}
57
+ }`,'variables':{'id':_0x4ff0a5}});}static async['callMutationByIds'](_0xe013ac,_0x3157a4){const _0x3f41f3=a0_0x21c53d;let _0x1aad3d=_0xe013ac['param_name'];if(!_0x1aad3d)throw new Error(_0x3f41f3(0xe7));let _0x50cfd1=_0x3157a4[_0x3f41f3(0xd3)](_0x1c9bd9=>_0x1c9bd9[_0xe013ac[_0x3f41f3(0xaf)]]),_0x2b04a9=_0xe013ac['mutation_name'],_0x3f0ff6=_0xe013ac[_0x3f41f3(0x13a)];return await client['query']({'query':a0_0x262102`
58
+ mutation ($ids: [String!]!) {
59
+ ${_0x2b04a9}(${_0x1aad3d}: $ids)
60
+ ${_0x3f0ff6?'{'+_0x3f0ff6+'}':''}
61
+ }`,'variables':{'ids':_0x50cfd1}});}static async[a0_0x21c53d(0x10f)](_0x327f90,_0x402cb3,_0x547ab8){const _0x1d80ce=a0_0x21c53d;let _0x493c7d=_0x327f90[_0x1d80ce(0x96)],_0x4a80fb=_0x327f90[_0x1d80ce(0xd0)];if(!_0x4a80fb)throw new Error(_0x1d80ce(0x130));if(!_0x493c7d)throw new Error(_0x1d80ce(0xe7));if(_0x402cb3||(_0x402cb3=_0x547ab8[_0x327f90['id_field']]),!_0x402cb3)throw new Error(_0x1d80ce(0x139));let _0x3b25fb=_0x327f90[_0x1d80ce(0xfc)],_0x43ebd4=_0x327f90[_0x1d80ce(0x13a)];return await client['query']({'query':a0_0x262102`
62
+ mutation ($id: String!, $patch: ${_0x4a80fb}!) {
63
+ ${_0x3b25fb}(id: $id, ${_0x493c7d}: $patch)
64
+ ${_0x43ebd4?'{'+_0x43ebd4+'}':''}
65
+ }`,'variables':{'id':_0x402cb3,'patch':_0x547ab8}});}static async[a0_0x21c53d(0x92)](_0x5d3920,_0x361534){const _0x23d05d=a0_0x21c53d;let _0x2fecb0=_0x5d3920[_0x23d05d(0xd0)],_0x417e22=_0x5d3920[_0x23d05d(0x96)];if(!_0x2fecb0)throw new Error('param\x20type\x20not\x20found');if(!_0x417e22)throw new Error(_0x23d05d(0xe7));let _0x1ea2db=_0x5d3920['mutation_name'],_0x33312e=_0x5d3920['return_fields'];return await client[_0x23d05d(0x12d)]({'query':a0_0x262102`
66
+ mutation ($patch: ${_0x2fecb0}!) {
67
+ ${_0x1ea2db}(${_0x417e22}: $patch)
68
+ ${_0x33312e?'{'+_0x33312e+'}':''}
69
+ }`,'variables':{'patch':_0x361534}});}static async[a0_0x21c53d(0xab)](_0x477bd5,_0x4497d4,_0x5ce1ae,_0x17e2c6=!0x0){const _0xe4da93=a0_0x21c53d;let _0x214eb3=!0x0;_0x477bd5&&!0x0===_0x17e2c6&&(_0x214eb3=(await UiUtil[_0xe4da93(0x9a)]('button.'+_0x477bd5,_0xe4da93(0xf4),_0xe4da93(0x108),_0xe4da93(0x13d),'cancel'))[_0xe4da93(0xea)]);if(_0x214eb3)try{const _0x157ce1=await client[_0xe4da93(0x12d)]({'query':a0_0x262102`
37
70
  mutation ($scenarioName: String!, $variables: Object) {
38
71
  runScenario(scenarioName: $scenarioName, variables: $variables) {
39
72
  state
@@ -42,4 +75,4 @@ function a0_0x2387(_0x1141ed,_0x1aa157){const _0x1b38ad=a0_0x1b38();return a0_0x
42
75
  __typename
43
76
  }
44
77
  }
45
- `,'variables':{'scenarioName':_0x38f86c,'variables':_0x36b40f}});if(_0x30b7de[_0x27ee56(0xc6)])ServiceUtil[_0x27ee56(0xf6)](_0x30b7de);else{if(this['checkClientError'](_0x30b7de))return!0x0===_0x47b788&&UiUtil[_0x27ee56(0xb6)]('info',TermsUtil['tText'](_0x27ee56(0xe7))),_0x30b7de;}}catch(_0xcbb45d){ServiceUtil['showGraphqlException'](_0xcbb45d);}return!0x1;}static[a0_0x7495ae(0xc3)](_0x4c38e0){const _0x322b49=a0_0x7495ae;if(_0x4c38e0&&_0x4c38e0[_0x322b49(0xcb)]&&_0x4c38e0[_0x322b49(0xcb)][_0x322b49(0xb0)]&&_0x4c38e0['data'][_0x322b49(0xb0)][_0x322b49(0xee)]&&_0x4c38e0[_0x322b49(0xcb)][_0x322b49(0xb0)][_0x322b49(0xee)][_0x322b49(0xeb)]){let _0x229aaf=_0x4c38e0[_0x322b49(0xcb)]['runScenario'][_0x322b49(0xee)][_0x322b49(0xeb)];return UiUtil[_0x322b49(0xe9)](_0x229aaf[_0x322b49(0x10b)],_0x229aaf[_0x322b49(0xb4)],_0x322b49(0xeb),_0x322b49(0xfa)),!0x1;}return!0x0;}}
78
+ `,'variables':{'scenarioName':_0x4497d4,'variables':_0x5ce1ae}});if(_0x157ce1[_0xe4da93(0xdb)])ServiceUtil['showGraphqlErrorResponse'](_0x157ce1);else{if(this['checkClientError'](_0x157ce1))return!0x0===_0x17e2c6&&UiUtil[_0xe4da93(0x9f)](_0xe4da93(0x9e),TermsUtil[_0xe4da93(0xe8)](_0xe4da93(0xd9))),_0x157ce1;}}catch(_0x422dd7){ServiceUtil[_0xe4da93(0x10b)](_0x422dd7);}return!0x1;}static['checkClientError'](_0x2e6129){const _0x5abc4e=a0_0x21c53d;if(_0x2e6129&&_0x2e6129[_0x5abc4e(0x10c)]&&_0x2e6129[_0x5abc4e(0x10c)][_0x5abc4e(0x12e)]&&_0x2e6129['data'][_0x5abc4e(0x12e)]['result']&&_0x2e6129[_0x5abc4e(0x10c)][_0x5abc4e(0x12e)][_0x5abc4e(0xd5)]['error']){let _0x76256e=_0x2e6129['data'][_0x5abc4e(0x12e)]['result'][_0x5abc4e(0x138)];return UiUtil[_0x5abc4e(0x9a)](_0x76256e[_0x5abc4e(0xd7)],_0x76256e[_0x5abc4e(0x97)],'error',_0x5abc4e(0x13d)),!0x1;}return!0x0;}}
@@ -1,4 +1,4 @@
1
- const a0_0x91c671=a0_0x4bcf;function a0_0x4bcf(_0x49b676,_0x5d9f10){const _0x4ed7d8=a0_0x4ed7();return a0_0x4bcf=function(_0x4bcfcd,_0x1ad633){_0x4bcfcd=_0x4bcfcd-0x187;let _0x47907b=_0x4ed7d8[_0x4bcfcd];return _0x47907b;},a0_0x4bcf(_0x49b676,_0x5d9f10);}(function(_0x541302,_0x42356b){const _0x4bede2=a0_0x4bcf,_0x6eba4a=_0x541302();while(!![]){try{const _0x2b075c=-parseInt(_0x4bede2(0x187))/0x1+parseInt(_0x4bede2(0x1aa))/0x2*(-parseInt(_0x4bede2(0x199))/0x3)+-parseInt(_0x4bede2(0x192))/0x4+-parseInt(_0x4bede2(0x1a3))/0x5+-parseInt(_0x4bede2(0x18e))/0x6+-parseInt(_0x4bede2(0x1ac))/0x7+parseInt(_0x4bede2(0x195))/0x8*(parseInt(_0x4bede2(0x1a5))/0x9);if(_0x2b075c===_0x42356b)break;else _0x6eba4a['push'](_0x6eba4a['shift']());}catch(_0x115bc5){_0x6eba4a['push'](_0x6eba4a['shift']());}}}(a0_0x4ed7,0x809af));function a0_0x4ed7(){const _0x238688=['tLabel','tButton','4359720jgOgQR','tMenu','META_TERMS','locale','2954688eVbhLw','tError','terminologies','32168bFoPwr','forEach','items','field','261357vmIVLu','replace','tTitle','length','text','keys','error','fetchTerminologies','translate','menu','3219890wGcrDY','downloadTerminologies','10413HgJIED','display','name','title','tText','14ZLlruW','button','4495890hPzUWC','tField','764157ZgFEdZ','category','label','errors','records'];a0_0x4ed7=function(){return _0x238688;};return a0_0x4ed7();}import a0_0x5a9379 from'graphql-tag';import{client}from'@operato/graphql';import{i18next}from'@operato/i18n';export class TermsUtil{['META_TERMS']=null;static async[a0_0x91c671(0x1a4)](_0x855e4d){const _0x41b0cf=a0_0x91c671;let _0x99e88b=(await TermsUtil[_0x41b0cf(0x1a0)](_0x855e4d))[_0x41b0cf(0x18b)];_0x99e88b&&_0x99e88b[_0x41b0cf(0x19c)]>0x0&&(this[_0x41b0cf(0x190)]={},_0x99e88b[_0x41b0cf(0x196)](_0x44290a=>{const _0x1b889b=_0x41b0cf;let _0x4bcf1d=_0x44290a['category']+'.'+_0x44290a[_0x1b889b(0x1a7)];this[_0x1b889b(0x190)][_0x4bcf1d]=_0x44290a[_0x1b889b(0x1a6)];}));}static async[a0_0x91c671(0x1a0)](_0x1b6f4a){const _0x2ece72=a0_0x91c671;let _0x5e1472=[{'name':_0x2ece72(0x191),'operator':'eq','value':_0x1b6f4a}];const _0x39b330=await client['query']({'query':a0_0x5a9379`
1
+ const a0_0x77e408=a0_0xbe22;(function(_0xa2fdd7,_0x52b45d){const _0x31020a=a0_0xbe22,_0x35bcc2=_0xa2fdd7();while(!![]){try{const _0x344c6b=-parseInt(_0x31020a(0x1c6))/0x1+-parseInt(_0x31020a(0x1ce))/0x2*(-parseInt(_0x31020a(0x1b7))/0x3)+-parseInt(_0x31020a(0x1c7))/0x4*(parseInt(_0x31020a(0x1cc))/0x5)+-parseInt(_0x31020a(0x1d0))/0x6*(-parseInt(_0x31020a(0x1b8))/0x7)+-parseInt(_0x31020a(0x1b9))/0x8*(parseInt(_0x31020a(0x1bd))/0x9)+-parseInt(_0x31020a(0x1d7))/0xa+parseInt(_0x31020a(0x1cb))/0xb*(parseInt(_0x31020a(0x1d9))/0xc);if(_0x344c6b===_0x52b45d)break;else _0x35bcc2['push'](_0x35bcc2['shift']());}catch(_0x5c53e0){_0x35bcc2['push'](_0x35bcc2['shift']());}}}(a0_0x2cf1,0x6c9bc));import a0_0x5bf9b9 from'graphql-tag';function a0_0xbe22(_0x1daac9,_0x2767f8){const _0x2cf136=a0_0x2cf1();return a0_0xbe22=function(_0xbe2245,_0x84bee7){_0xbe2245=_0xbe2245-0x1b2;let _0x4f2864=_0x2cf136[_0xbe2245];return _0x4f2864;},a0_0xbe22(_0x1daac9,_0x2767f8);}import{client}from'@operato/graphql';import{i18next}from'@operato/i18n';function a0_0x2cf1(){const _0x368dcc=['tText','terminologies','replace','locale','674450IDtSgL','8rlqQkN','button','downloadTerminologies','tMenu','11Ztmtsb','346360zMdVIJ','records','14RFDLgT','META_TERMS','30EXUCVE','menu','label','tError','text','name','translate','7923600HRbgdV','fetchTerminologies','14263392iembfP','length','display','query','category','items','total','forEach','165138UODzSm','858025UGfETE','8mEawmK','error','title','tTitle','1229391RzbrEa','errors','tLabel','tField','field'];a0_0x2cf1=function(){return _0x368dcc;};return a0_0x2cf1();}export class TermsUtil{[a0_0x77e408(0x1cf)]=null;static async[a0_0x77e408(0x1c9)](_0x37d95a){const _0x1768cd=a0_0x77e408;let _0x4f175a=(await TermsUtil['fetchTerminologies'](_0x37d95a))[_0x1768cd(0x1cd)];_0x4f175a&&_0x4f175a[_0x1768cd(0x1da)]>0x0&&(this['META_TERMS']={},_0x4f175a['forEach'](_0x4f035f=>{const _0x1192c7=_0x1768cd;let _0xd3dd87=_0x4f035f[_0x1192c7(0x1b3)]+'.'+_0x4f035f[_0x1192c7(0x1d5)];this['META_TERMS'][_0xd3dd87]=_0x4f035f[_0x1192c7(0x1db)];}));}static async[a0_0x77e408(0x1d8)](_0x38e66d){const _0x5dfe8d=a0_0x77e408;let _0x38a715=[{'name':_0x5dfe8d(0x1c5),'operator':'eq','value':_0x38e66d}];const _0xd7435e=await client[_0x5dfe8d(0x1b2)]({'query':a0_0x5bf9b9`
2
2
  query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {
3
3
  terminologies(filters: $filters, pagination: $pagination, sortings: $sortings) {
4
4
  items {
@@ -11,4 +11,4 @@ const a0_0x91c671=a0_0x4bcf;function a0_0x4bcf(_0x49b676,_0x5d9f10){const _0x4ed
11
11
  total
12
12
  }
13
13
  }
14
- `,'variables':{'filters':_0x5e1472,'sortings':[{'name':_0x2ece72(0x188)},{'name':_0x2ece72(0x1a7)}],'pagination':{'page':0x0,'limit':0x0}}});if(!_0x39b330[_0x2ece72(0x18a)])return{'records':_0x39b330['data']['terminologies'][_0x2ece72(0x197)]||[],'total':_0x39b330['data'][_0x2ece72(0x194)]['total']||0x0};}static[a0_0x91c671(0x18c)](_0x374994,_0x36dda6){const _0x304240=a0_0x91c671;let _0x52628d=TermsUtil[_0x304240(0x1a1)](_0x304240(0x189),_0x374994,_0x36dda6,null);return _0x52628d||TermsUtil[_0x304240(0x1a1)]('field',_0x374994,_0x36dda6,_0x374994);}static[a0_0x91c671(0x1ad)](_0x3ad693,_0x49c70f){const _0x4223f4=a0_0x91c671;let _0x451f02=TermsUtil[_0x4223f4(0x1a1)](_0x4223f4(0x198),_0x3ad693,_0x49c70f,null);return _0x451f02||TermsUtil['translate'](_0x4223f4(0x198),_0x3ad693,_0x49c70f,_0x3ad693);}static[a0_0x91c671(0x18d)](_0x515c82){const _0x447b7d=a0_0x91c671;return TermsUtil[_0x447b7d(0x1a1)](_0x447b7d(0x1ab),_0x515c82,null,_0x515c82);}static[a0_0x91c671(0x19b)](_0x42bd67,_0x1b0b00){const _0x2a8a55=a0_0x91c671;let _0x26f760=TermsUtil['translate']('title',_0x42bd67,_0x1b0b00,null);return _0x26f760||TermsUtil[_0x2a8a55(0x1a1)](_0x2a8a55(0x1a2),_0x42bd67,_0x1b0b00,_0x42bd67);}static[a0_0x91c671(0x18f)](_0x3a3856){const _0x25fb11=a0_0x91c671;let _0x12ca41=TermsUtil[_0x25fb11(0x1a1)]('menu',_0x3a3856,null,null);return _0x12ca41||TermsUtil[_0x25fb11(0x1a1)](_0x25fb11(0x1a8),_0x3a3856,null,_0x3a3856);}static[a0_0x91c671(0x1a9)](_0x3888dd,_0x4eb316){const _0x3c2605=a0_0x91c671;return TermsUtil['translate'](_0x3c2605(0x19d),_0x3888dd,_0x4eb316,_0x3888dd);}static[a0_0x91c671(0x193)](_0x23ba69,_0x5b63ea){const _0x4c12f2=a0_0x91c671;return TermsUtil['translate'](_0x4c12f2(0x19f),_0x23ba69,_0x5b63ea,_0x23ba69);}static['translate'](_0x2845cb,_0x1bc32a,_0x40db81,_0x4f8b38){let _0x3b36ec=_0x2845cb+'.'+_0x1bc32a;return TermsUtil['t'](_0x3b36ec,_0x40db81,_0x4f8b38);}static['t'](_0x3cfc7e,_0x580272,_0x528195){const _0x48a00b=a0_0x91c671;let _0x11971f=this[_0x48a00b(0x190)]?this[_0x48a00b(0x190)][_0x3cfc7e]:null;return _0x11971f=_0x11971f||i18next['t'](_0x3cfc7e),_0x11971f&&_0x3cfc7e!=_0x11971f?(_0x580272&&Object[_0x48a00b(0x19e)](_0x580272)[_0x48a00b(0x196)](function(_0x335c61){const _0x4be772=_0x48a00b;var _0x4a3ba9='\x5c{'+_0x335c61['replace'](/\$/,'\x5c$')+'\x5c}',_0x5a5c94=new RegExp(_0x4a3ba9,'gi');_0x11971f=_0x11971f[_0x4be772(0x19a)](_0x5a5c94,_0x580272[_0x335c61]);}),_0x11971f):_0x528195;}}
14
+ `,'variables':{'filters':_0x38a715,'sortings':[{'name':'category'},{'name':_0x5dfe8d(0x1d5)}],'pagination':{'page':0x0,'limit':0x0}}});if(!_0xd7435e[_0x5dfe8d(0x1be)])return{'records':_0xd7435e['data'][_0x5dfe8d(0x1c3)][_0x5dfe8d(0x1b4)]||[],'total':_0xd7435e['data'][_0x5dfe8d(0x1c3)][_0x5dfe8d(0x1b5)]||0x0};}static[a0_0x77e408(0x1bf)](_0x3e49c0,_0x3f5145){const _0x2364b6=a0_0x77e408;let _0x380816=TermsUtil[_0x2364b6(0x1d6)](_0x2364b6(0x1d2),_0x3e49c0,_0x3f5145,null);return _0x380816||TermsUtil[_0x2364b6(0x1d6)](_0x2364b6(0x1c1),_0x3e49c0,_0x3f5145,_0x3e49c0);}static[a0_0x77e408(0x1c0)](_0x3d47c5,_0x427c83){const _0x1686dc=a0_0x77e408;let _0x153907=TermsUtil[_0x1686dc(0x1d6)](_0x1686dc(0x1c1),_0x3d47c5,_0x427c83,null);return _0x153907||TermsUtil['translate'](_0x1686dc(0x1c1),_0x3d47c5,_0x427c83,_0x3d47c5);}static['tButton'](_0x363124){const _0x1eec6a=a0_0x77e408;return TermsUtil['translate'](_0x1eec6a(0x1c8),_0x363124,null,_0x363124);}static[a0_0x77e408(0x1bc)](_0x38693b,_0x164efc){const _0x191b7d=a0_0x77e408;let _0x11401f=TermsUtil[_0x191b7d(0x1d6)](_0x191b7d(0x1bb),_0x38693b,_0x164efc,null);return _0x11401f||TermsUtil[_0x191b7d(0x1d6)](_0x191b7d(0x1d1),_0x38693b,_0x164efc,_0x38693b);}static[a0_0x77e408(0x1ca)](_0x4cb9f3){const _0x32c907=a0_0x77e408;let _0x5b097c=TermsUtil[_0x32c907(0x1d6)](_0x32c907(0x1d1),_0x4cb9f3,null,null);return _0x5b097c||TermsUtil[_0x32c907(0x1d6)](_0x32c907(0x1bb),_0x4cb9f3,null,_0x4cb9f3);}static[a0_0x77e408(0x1c2)](_0x54680b,_0x1ba7aa){const _0x3da6a2=a0_0x77e408;return TermsUtil['translate'](_0x3da6a2(0x1d4),_0x54680b,_0x1ba7aa,_0x54680b);}static[a0_0x77e408(0x1d3)](_0x5f15c7,_0xe883ff){const _0x30d2b1=a0_0x77e408;return TermsUtil['translate'](_0x30d2b1(0x1ba),_0x5f15c7,_0xe883ff,_0x5f15c7);}static[a0_0x77e408(0x1d6)](_0x3a5ccc,_0x4e738f,_0x4e3271,_0x2d7b5b){let _0x104419=_0x3a5ccc+'.'+_0x4e738f;return TermsUtil['t'](_0x104419,_0x4e3271,_0x2d7b5b);}static['t'](_0x3f960f,_0x3a55c6,_0x14d24d){const _0x5cd054=a0_0x77e408;let _0x5a8b02=this['META_TERMS']?this[_0x5cd054(0x1cf)][_0x3f960f]:null;return _0x5a8b02=_0x5a8b02||i18next['t'](_0x3f960f),_0x5a8b02&&_0x3f960f!=_0x5a8b02?(_0x3a55c6&&Object['keys'](_0x3a55c6)[_0x5cd054(0x1b6)](function(_0x39ad17){const _0x57cb71=_0x5cd054;var _0x4f44a1='\x5c{'+_0x39ad17[_0x57cb71(0x1c4)](/\$/,'\x5c$')+'\x5c}',_0x2c376b=new RegExp(_0x4f44a1,'gi');_0x5a8b02=_0x5a8b02[_0x57cb71(0x1c4)](_0x2c376b,_0x3a55c6[_0x39ad17]);}),_0x5a8b02):_0x14d24d;}}
@@ -1 +1 @@
1
- const a0_0x578165=a0_0x4097;(function(_0x3d826f,_0x5e7f06){const _0x4e7a51=a0_0x4097,_0x2521ab=_0x3d826f();while(!![]){try{const _0x15dba6=parseInt(_0x4e7a51(0xba))/0x1+parseInt(_0x4e7a51(0xc5))/0x2+-parseInt(_0x4e7a51(0xc1))/0x3+parseInt(_0x4e7a51(0xc4))/0x4+parseInt(_0x4e7a51(0xc2))/0x5+parseInt(_0x4e7a51(0xe2))/0x6+-parseInt(_0x4e7a51(0xe8))/0x7;if(_0x15dba6===_0x5e7f06)break;else _0x2521ab['push'](_0x2521ab['shift']());}catch(_0x14b43b){_0x2521ab['push'](_0x2521ab['shift']());}}}(a0_0x21ee,0x306ee));import{store,CustomAlert,navigate}from'@things-factory/shell';import{openPopup}from'@things-factory/layout-base';function a0_0x21ee(){const _0x4b3d26=['edge','modules','122238DgAMpC','setValueToEditor','[name=\x27','onclosed','renderRoot','filters','860013OOhqem','cancelButton','large','isMobileEnv','ko-KR','showToast','pageNavigate','ox-input-barcode','style','stringify','parent_field','full','length','confirmButton','replace','\x27\x20is_popup=true></','removeChild','openDynamicPopup','getApplicationModuleInfo','getParams','getFilterFormData','input','barcode','cookie','isNotEmpty','getState','indexOf','i18next=','popup_field','template','tagname','textarea','getType','getStore','page','174256QeaiFM','forEach','content','pass=','\x27\x20\x20parent_id=\x27','querySelector','95dvh','1015860iKVHQh','119535cmyMqu','htmlToElement','322408UHcmkx','721446JGKxBC','innerHTML','setSearchFormEditorValue','substring','menu','value','notify','\x20route_name=\x27','tButton','dispatchEvent','openPopupByElement','route','getLeafInput','config','childNodes','ox-input-code','fireCustomEvent','\x27></','currentRouting','i18next','size','editor','code-editor','firstElementChild','ox-select','currentLocale','createCustomElement'];a0_0x21ee=function(){return _0x4b3d26;};return a0_0x21ee();}import{isMobileDevice}from'@things-factory/utils';import{getEditor}from'@operato/data-grist';import{TermsUtil}from'./terms-util';function a0_0x4097(_0x446f9c,_0x2a52d3){const _0x21ee70=a0_0x21ee();return a0_0x4097=function(_0x409798,_0xbff44d){_0x409798=_0x409798-0xb8;let _0x4e5212=_0x21ee70[_0x409798];return _0x4e5212;},a0_0x4097(_0x446f9c,_0x2a52d3);}import{ValueUtil}from'./value-util';import{MetaUiUtil}from'./meta-ui-util';export class UiUtil{static[a0_0x578165(0xeb)](){return isMobileDevice();}static[a0_0x578165(0xde)](){const _0x4d6ebc=a0_0x578165;let _0xadb40c=document[_0x4d6ebc(0xff)];return _0xadb40c=_0xadb40c[_0x4d6ebc(0xc8)](_0xadb40c[_0x4d6ebc(0x102)](_0x4d6ebc(0xd8))),_0xadb40c[_0x4d6ebc(0x102)](';')>-0x1&&(_0xadb40c=_0xadb40c[_0x4d6ebc(0xc8)](0x0,_0xadb40c['indexOf'](';'))),_0xadb40c=_0xadb40c[_0x4d6ebc(0xf6)](_0x4d6ebc(0x103),''),'ko'==_0xadb40c?_0x4d6ebc(0xec):_0xadb40c;}static[a0_0x578165(0xfa)](){const _0x24fe6e=a0_0x578165;let _0x1e8db4=store[_0x24fe6e(0x101)]()['app'][_0x24fe6e(0xe1)];return _0x1e8db4[_0x1e8db4[_0x24fe6e(0xf4)]-0x1];}static[a0_0x578165(0xd7)](){const _0x443e7d=a0_0x578165;return store[_0x443e7d(0x101)]()[_0x443e7d(0xd0)][_0x443e7d(0xb9)];}static[a0_0x578165(0xcf)](_0x549945,_0x2bbc5e,_0x368aff,_0x60232){const _0x18faae=a0_0x578165;return _0x18faae(0xf3)===_0x2bbc5e&&(_0x368aff[_0x18faae(0xf0)]['height']=_0x18faae(0xc0)),openPopup(_0x368aff,{'backdrop':!0x0,'hovering':_0x18faae(0xf3)===_0x2bbc5e?_0x18faae(0xe0):'center','size':_0x18faae(0xf3)===_0x2bbc5e?_0x18faae(0xea):_0x2bbc5e,'title':_0x549945,'backdrop':_0x60232});}static async[a0_0x578165(0xf9)](_0x3cf4e0,_0x361ac6,_0x80f004,_0x44a470){const _0xd12666=a0_0x578165;let _0x11de65=ValueUtil['isNotEmpty'](_0x361ac6[_0xd12666(0xf2)])?ValueUtil[_0xd12666(0xfb)](_0x80f004,..._0x361ac6[_0xd12666(0xf2)]['split']('.')):void 0x0,_0x1e1baf='<'+_0x361ac6[_0xd12666(0x106)]+'\x20route_name=\x27'+_0x361ac6[_0xd12666(0xc9)]+_0xd12666(0xbe)+_0x11de65+_0xd12666(0xf7)+_0x361ac6[_0xd12666(0x106)]+'>',_0x459cde=UiUtil['htmlToElement'](_0x1e1baf);_0x459cde[_0xd12666(0xd2)]=_0x361ac6,ValueUtil[_0xd12666(0x100)](_0x361ac6[_0xd12666(0x104)])&&(_0x459cde[_0x361ac6[_0xd12666(0x104)]]=_0x80f004);let _0x443a78=UiUtil[_0xd12666(0xcf)](_0x3cf4e0,_0x361ac6[_0xd12666(0xd9)],_0x459cde,!0x0);_0x44a470&&(_0x443a78[_0xd12666(0xe5)]=_0x44a470);}static[a0_0x578165(0xdf)](_0x46eb83,_0x2c7626){const _0x363130=a0_0x578165;let _0x4a83f5='<'+_0x46eb83+_0x363130(0xcc)+_0x2c7626+_0x363130(0xd6)+_0x46eb83+'>';return UiUtil[_0x363130(0xc3)](_0x4a83f5);}static['htmlToElement'](_0x3cfc8f){const _0x5cf488=a0_0x578165;var _0x5c6f6b=document['createElement'](_0x5cf488(0x105));_0x5c6f6b[_0x5cf488(0xc6)]=_0x3cfc8f;var _0x4090af=_0x5c6f6b[_0x5cf488(0xbc)][_0x5cf488(0xd3)][0x0];return _0x5c6f6b[_0x5cf488(0xbc)][_0x5cf488(0xf8)](_0x4090af),_0x4090af;}static[a0_0x578165(0xee)](_0x26ad94,_0x1d9bb8){const _0xe015f0=a0_0x578165;let _0x35f62c=_0x1d9bb8?'?':'';_0x1d9bb8&&(_0x35f62c+=_0xe015f0(0xbd)+JSON[_0xe015f0(0xf1)](_0x1d9bb8)),navigate(''+_0x26ad94+_0x35f62c);}static[a0_0x578165(0xb8)](_0x26021d,_0x5673ec,_0x5808ee){const _0x569b36=a0_0x578165;let _0xfd8916=_0xfd8916[_0x569b36(0x101)]();return _0x26021d&&_0x5673ec&&_0x5808ee?_0xfd8916[_0x26021d][_0x5673ec][_0x5808ee]:_0x26021d&&_0x5673ec?_0xfd8916[_0x26021d][_0x5673ec]:_0x26021d?_0xfd8916[_0x26021d]:_0xfd8916;}static[a0_0x578165(0xd5)](_0x435663,_0x23b45){const _0x23e50=a0_0x578165;document[_0x23e50(0xce)](new CustomEvent(_0x435663,{'detail':_0x23b45}));}static[a0_0x578165(0xed)](_0x31e977,_0x17f632){const _0x5293c8=a0_0x578165;document[_0x5293c8(0xce)](new CustomEvent(_0x5293c8(0xcb),{'detail':{'type':_0x31e977,'message':_0x17f632}}));}static async['showAlertPopup'](_0x58fdc6,_0x40123e,_0x38ef2b,_0x324048,_0x2d5845){const _0x426cfa=a0_0x578165;let _0x4db9b5={'title':TermsUtil['t'](_0x58fdc6)||_0x58fdc6,'text':TermsUtil['t'](_0x40123e)||_0x40123e};return _0x38ef2b&&(_0x4db9b5['type']=_0x38ef2b),_0x324048&&(_0x4db9b5[_0x426cfa(0xf5)]=TermsUtil['tButton'](_0x324048)),_0x2d5845&&(_0x4db9b5[_0x426cfa(0xe9)]=TermsUtil[_0x426cfa(0xcd)](_0x2d5845)),await CustomAlert(_0x4db9b5);}static[a0_0x578165(0xfc)](_0x359675){const _0x49bdc6=a0_0x578165;if(ValueUtil['isNotEmpty'](_0x359675)){let _0x548eff=_0x359675[_0x49bdc6(0xe7)]();ValueUtil[_0x49bdc6(0x100)](_0x548eff)&&_0x548eff[_0x49bdc6(0xbb)](_0x5d40b6=>{const _0x32a3c5=_0x49bdc6;ValueUtil['isNotEmpty'](_0x5d40b6[_0x32a3c5(0xca)])&&(item[_0x5d40b6['name']]=_0x5d40b6[_0x32a3c5(0xca)]?_0x5d40b6[_0x32a3c5(0xca)]:null);});}return{};}static[a0_0x578165(0xc7)](_0x32c046,_0x14d1fb,_0x5349c8){const _0x133d5a=a0_0x578165;if(ValueUtil[_0x133d5a(0x100)](_0x32c046)){let _0x352371=_0x32c046[_0x133d5a(0xe6)]?.[_0x133d5a(0xbf)](_0x133d5a(0xe4)+_0x14d1fb+'\x27]');ValueUtil['isNotEmpty'](_0x352371)&&(_0x352371['value']=_0x5349c8);}}static['createEditorHtml'](_0x2c1f45,_0x34db41,_0x5131b3,_0x125f44){return getEditor(_0x2c1f45)('',_0x34db41,_0x5131b3,_0x125f44,{});}static[a0_0x578165(0xe3)](_0x4fce80,_0x5d9436){UiUtil['getLeafInput'](_0x4fce80)['value']=_0x5d9436;}static[a0_0x578165(0xd1)](_0x2ecf57){const _0x15a25a=a0_0x578165;let _0x533d93=_0x2ecf57[_0x15a25a(0x108)]();return _0x15a25a(0xdb)==_0x533d93?_0x2ecf57[_0x15a25a(0xe6)][_0x15a25a(0xbf)](_0x15a25a(0xd4)):_0x15a25a(0x107)==_0x533d93?_0x2ecf57[_0x15a25a(0xe6)][_0x15a25a(0xbf)](_0x15a25a(0x107)):'select-combo'==_0x533d93?_0x2ecf57[_0x15a25a(0xe6)][_0x15a25a(0xbf)](_0x15a25a(0xdd))[_0x15a25a(0xdc)]:_0x15a25a(0xfe)==_0x533d93?_0x2ecf57[_0x15a25a(0xe6)][_0x15a25a(0xbf)](_0x15a25a(0xef))[_0x15a25a(0xe6)][_0x15a25a(0xbf)](_0x15a25a(0xfd)):_0x2ecf57[_0x15a25a(0xe6)][_0x15a25a(0xdc)][_0x15a25a(0xda)];}}
1
+ const a0_0xb924a8=a0_0x12ee;function a0_0x12ee(_0x4c02b5,_0x28bc78){const _0x44a43c=a0_0x44a4();return a0_0x12ee=function(_0x12ee71,_0x9aa7e1){_0x12ee71=_0x12ee71-0x1f1;let _0x417c90=_0x44a43c[_0x12ee71];return _0x417c90;},a0_0x12ee(_0x4c02b5,_0x28bc78);}(function(_0x36557e,_0x20ec05){const _0x6136bf=a0_0x12ee,_0x40ff0e=_0x36557e();while(!![]){try{const _0x218a6a=-parseInt(_0x6136bf(0x210))/0x1+-parseInt(_0x6136bf(0x225))/0x2+-parseInt(_0x6136bf(0x230))/0x3+-parseInt(_0x6136bf(0x224))/0x4+-parseInt(_0x6136bf(0x211))/0x5+-parseInt(_0x6136bf(0x22c))/0x6*(parseInt(_0x6136bf(0x236))/0x7)+parseInt(_0x6136bf(0x22f))/0x8*(parseInt(_0x6136bf(0x231))/0x9);if(_0x218a6a===_0x20ec05)break;else _0x40ff0e['push'](_0x40ff0e['shift']());}catch(_0x30e662){_0x40ff0e['push'](_0x40ff0e['shift']());}}}(a0_0x44a4,0xc585d));import{store,CustomAlert,navigate}from'@things-factory/shell';import{openPopup}from'@things-factory/layout-base';import{isMobileDevice}from'@things-factory/utils';import{getEditor}from'@operato/data-grist';import{TermsUtil}from'./terms-util';function a0_0x44a4(){const _0x1dd2c3=['createEditorHtml','full','isNotEmpty','ox-input-code','type','notify','select-combo','renderRoot','tButton','indexOf','parent_field','\x27\x20parent_id=\x27','openPopupByElement','popup_field','firstElementChild','content','773477cSjcCq','7893885xQqDIE','createElement','app','getType','ko-KR','fireCustomEvent','size','getLeafInput','ox-select','getStore','\x20route_name=\x27','openDynamicPopup','template','currentLocale','tagname','onclosed','setValueToEditor','dispatchEvent','length','4694084UaCZdz','1024770fKvRGX','value','split','forEach','pass=','i18next=','createCustomElement','19662ZWhUKa','page','setSearchFormEditorValue','136LTNIqW','733032uRfipM','3125781NEjbVT','querySelector','removeChild','modules','filters','1736QmpyYw','\x27\x20is_popup=true></','textarea','substring','isMobileEnv','[name=\x27','menu','large','code-editor','getState','95dvh','style','innerHTML','i18next','name','htmlToElement','childNodes','cookie'];a0_0x44a4=function(){return _0x1dd2c3;};return a0_0x44a4();}import{ValueUtil}from'./value-util';import{MetaUiUtil}from'./meta-ui-util';export class UiUtil{static[a0_0xb924a8(0x1f2)](){return isMobileDevice();}static[a0_0xb924a8(0x21e)](){const _0x3d46b1=a0_0xb924a8;let _0x394677=document[_0x3d46b1(0x1ff)];return _0x394677=_0x394677[_0x3d46b1(0x1f1)](_0x394677[_0x3d46b1(0x209)](_0x3d46b1(0x1fb))),_0x394677[_0x3d46b1(0x209)](';')>-0x1&&(_0x394677=_0x394677[_0x3d46b1(0x1f1)](0x0,_0x394677[_0x3d46b1(0x209)](';'))),_0x394677=_0x394677['replace'](_0x3d46b1(0x22a),''),'ko'==_0x394677?_0x3d46b1(0x215):_0x394677;}static['getApplicationModuleInfo'](){const _0x262b8b=a0_0xb924a8;let _0x13bb83=store['getState']()[_0x262b8b(0x213)][_0x262b8b(0x234)];return _0x13bb83[_0x13bb83[_0x262b8b(0x223)]-0x1];}static['currentRouting'](){const _0x36b057=a0_0xb924a8;return store[_0x36b057(0x1f7)]()['route'][_0x36b057(0x22d)];}static[a0_0xb924a8(0x20c)](_0x47271a,_0x49f7d2,_0x148c5d,_0x38f508){const _0x2e3eae=a0_0xb924a8;return'full'===_0x49f7d2&&(_0x148c5d[_0x2e3eae(0x1f9)]['height']=_0x2e3eae(0x1f8)),openPopup(_0x148c5d,{'backdrop':!0x0,'hovering':_0x2e3eae(0x201)===_0x49f7d2?'edge':'center','size':_0x2e3eae(0x201)===_0x49f7d2?_0x2e3eae(0x1f5):_0x49f7d2,'title':_0x47271a,'backdrop':_0x38f508});}static async[a0_0xb924a8(0x21c)](_0x3fae02,_0x557731,_0x1a0c39,_0x38e77b){const _0x1fd490=a0_0xb924a8;let _0x1aba66=ValueUtil[_0x1fd490(0x202)](_0x557731[_0x1fd490(0x20a)])?ValueUtil['getParams'](_0x1a0c39,..._0x557731['parent_field'][_0x1fd490(0x227)]('.')):void 0x0,_0x2900fc='<'+_0x557731['tagname']+_0x1fd490(0x21b)+_0x557731[_0x1fd490(0x1f4)]+_0x1fd490(0x20b)+_0x1aba66+_0x1fd490(0x237)+_0x557731[_0x1fd490(0x21f)]+'>',_0x376c82=UiUtil[_0x1fd490(0x1fd)](_0x2900fc);_0x376c82['config']=_0x557731,ValueUtil[_0x1fd490(0x202)](_0x557731['popup_field'])&&(_0x376c82[_0x557731[_0x1fd490(0x20d)]]=_0x1a0c39);let _0xf2045=UiUtil[_0x1fd490(0x20c)](_0x3fae02,_0x557731[_0x1fd490(0x217)],_0x376c82,!0x0);_0x38e77b&&(_0xf2045[_0x1fd490(0x220)]=_0x38e77b);}static[a0_0xb924a8(0x22b)](_0x469c87,_0x5637a6){const _0x508dcf=a0_0xb924a8;let _0x52ec53='<'+_0x469c87+'\x20route_name=\x27'+_0x5637a6+'\x27></'+_0x469c87+'>';return UiUtil[_0x508dcf(0x1fd)](_0x52ec53);}static['htmlToElement'](_0x36b879){const _0x120a0a=a0_0xb924a8;var _0x1f92a0=document[_0x120a0a(0x212)](_0x120a0a(0x21d));_0x1f92a0[_0x120a0a(0x1fa)]=_0x36b879;var _0x3735aa=_0x1f92a0['content'][_0x120a0a(0x1fe)][0x0];return _0x1f92a0[_0x120a0a(0x20f)][_0x120a0a(0x233)](_0x3735aa),_0x3735aa;}static['pageNavigate'](_0x22645a,_0x22c696){const _0x2ca005=a0_0xb924a8;let _0x4ff123=_0x22c696?'?':'';_0x22c696&&(_0x4ff123+=_0x2ca005(0x229)+JSON['stringify'](_0x22c696)),navigate(''+_0x22645a+_0x4ff123);}static[a0_0xb924a8(0x21a)](_0x42e55a,_0x89a75c,_0x54259c){let _0x18c99e=_0x18c99e['getState']();return _0x42e55a&&_0x89a75c&&_0x54259c?_0x18c99e[_0x42e55a][_0x89a75c][_0x54259c]:_0x42e55a&&_0x89a75c?_0x18c99e[_0x42e55a][_0x89a75c]:_0x42e55a?_0x18c99e[_0x42e55a]:_0x18c99e;}static[a0_0xb924a8(0x216)](_0x1785e8,_0x4cc3fd){const _0xe2159e=a0_0xb924a8;document[_0xe2159e(0x222)](new CustomEvent(_0x1785e8,{'detail':_0x4cc3fd}));}static['showToast'](_0x550741,_0x191c58){const _0x16ae70=a0_0xb924a8;document['dispatchEvent'](new CustomEvent(_0x16ae70(0x205),{'detail':{'type':_0x550741,'message':_0x191c58}}));}static async['showAlertPopup'](_0x44ab2b,_0x5791d6,_0x30d7f9,_0x98a2af,_0x48fa09){const _0x2ffca1=a0_0xb924a8;let _0x5b2e4f={'title':TermsUtil['t'](_0x44ab2b)||_0x44ab2b,'text':TermsUtil['t'](_0x5791d6)||_0x5791d6};return _0x30d7f9&&(_0x5b2e4f[_0x2ffca1(0x204)]=_0x30d7f9),_0x98a2af&&(_0x5b2e4f['confirmButton']=TermsUtil[_0x2ffca1(0x208)](_0x98a2af)),_0x48fa09&&(_0x5b2e4f['cancelButton']=TermsUtil[_0x2ffca1(0x208)](_0x48fa09)),await CustomAlert(_0x5b2e4f);}static['getFilterFormData'](_0xe68ad4){const _0x30beb6=a0_0xb924a8;if(ValueUtil[_0x30beb6(0x202)](_0xe68ad4)){let _0x44d113=_0xe68ad4[_0x30beb6(0x235)]();ValueUtil[_0x30beb6(0x202)](_0x44d113)&&_0x44d113[_0x30beb6(0x228)](_0x220216=>{const _0xc4f9cf=_0x30beb6;ValueUtil[_0xc4f9cf(0x202)](_0x220216[_0xc4f9cf(0x226)])&&(item[_0x220216[_0xc4f9cf(0x1fc)]]=_0x220216[_0xc4f9cf(0x226)]?_0x220216[_0xc4f9cf(0x226)]:null);});}return{};}static[a0_0xb924a8(0x22e)](_0x381ab1,_0x15f2d2,_0x112fe9){const _0x409c52=a0_0xb924a8;if(ValueUtil[_0x409c52(0x202)](_0x381ab1)){let _0x37b48c=_0x381ab1[_0x409c52(0x207)]?.[_0x409c52(0x232)](_0x409c52(0x1f3)+_0x15f2d2+'\x27]');ValueUtil[_0x409c52(0x202)](_0x37b48c)&&(_0x37b48c[_0x409c52(0x226)]=_0x112fe9);}}static[a0_0xb924a8(0x200)](_0x27cf50,_0x5bc5f4,_0x8a3484,_0x4efd0f){return getEditor(_0x27cf50)('',_0x5bc5f4,_0x8a3484,_0x4efd0f,{});}static[a0_0xb924a8(0x221)](_0x44d9c6,_0x4434e6){const _0x1217b4=a0_0xb924a8;UiUtil[_0x1217b4(0x218)](_0x44d9c6)[_0x1217b4(0x226)]=_0x4434e6;}static['getLeafInput'](_0x476613){const _0x4d7ae5=a0_0xb924a8;let _0x610211=_0x476613[_0x4d7ae5(0x214)]();return _0x4d7ae5(0x1f6)==_0x610211?_0x476613['renderRoot']['querySelector'](_0x4d7ae5(0x203)):'textarea'==_0x610211?_0x476613[_0x4d7ae5(0x207)]['querySelector'](_0x4d7ae5(0x238)):_0x4d7ae5(0x206)==_0x610211?_0x476613['renderRoot']['querySelector'](_0x4d7ae5(0x219))[_0x4d7ae5(0x20e)]:'barcode'==_0x610211?_0x476613[_0x4d7ae5(0x207)][_0x4d7ae5(0x232)]('ox-input-barcode')[_0x4d7ae5(0x207)][_0x4d7ae5(0x232)]('input'):_0x476613['renderRoot'][_0x4d7ae5(0x20e)]['editor'];}}
@@ -1 +1 @@
1
- const a0_0x15a8fd=a0_0x3b0f;function a0_0x58ef(){const _0x27d2af=['slice','637030tpsNTl','12FkkuWs','isArray','true','toBoolean','string','length','keys','6369939bszqrL','256522cntqOC','toInteger','forEach','51uLKbuo','setParams','isNotEmpty','3612944iXuitZ','isEmpty','object','number','getParams','TRUE','boolean','336132EZrAPQ','638906bsRLdB','102888LRjjvr','populateArray','10xSipHR','populateObject'];a0_0x58ef=function(){return _0x27d2af;};return a0_0x58ef();}(function(_0x56b204,_0xbd95c9){const _0x4d1c5e=a0_0x3b0f,_0x2d1685=_0x56b204();while(!![]){try{const _0x3b3bb8=parseInt(_0x4d1c5e(0x1c4))/0x1+parseInt(_0x4d1c5e(0x1c5))/0x2+-parseInt(_0x4d1c5e(0x1d7))/0x3*(parseInt(_0x4d1c5e(0x1c6))/0x4)+parseInt(_0x4d1c5e(0x1cb))/0x5*(-parseInt(_0x4d1c5e(0x1cc))/0x6)+parseInt(_0x4d1c5e(0x1d4))/0x7+-parseInt(_0x4d1c5e(0x1da))/0x8+-parseInt(_0x4d1c5e(0x1d3))/0x9*(-parseInt(_0x4d1c5e(0x1c8))/0xa);if(_0x3b3bb8===_0xbd95c9)break;else _0x2d1685['push'](_0x2d1685['shift']());}catch(_0x86dbd2){_0x2d1685['push'](_0x2d1685['shift']());}}}(a0_0x58ef,0x3e92a));import a0_0x500abe from'lodash-es/isEqual';import{TermsUtil}from'./terms-util';function a0_0x3b0f(_0x312e33,_0x19ca1a){const _0x58ef7a=a0_0x58ef();return a0_0x3b0f=function(_0x3b0fd4,_0x44de2a){_0x3b0fd4=_0x3b0fd4-0x1c0;let _0xc9760c=_0x58ef7a[_0x3b0fd4];return _0xc9760c;},a0_0x3b0f(_0x312e33,_0x19ca1a);}export class ValueUtil{static['isEmpty'](_0x2f5f2c){const _0x1dcd83=a0_0x3b0f;if(void 0x0===_0x2f5f2c)return!0x0;if(null===_0x2f5f2c)return!0x0;if(_0x1dcd83(0x1c3)==typeof _0x2f5f2c)return!0x1;if(_0x1dcd83(0x1d0)==typeof _0x2f5f2c||_0x1dcd83(0x1c0)==typeof _0x2f5f2c){if(''==_0x2f5f2c)return!0x0;}else{if(Array[_0x1dcd83(0x1cd)](_0x2f5f2c)){if(0x0==_0x2f5f2c[_0x1dcd83(0x1d1)])return!0x0;}else{if(_0x1dcd83(0x1dc)==typeof _0x2f5f2c&&0x0==Object['keys'](_0x2f5f2c)['length'])return!0x0;}}return!0x1;}static[a0_0x15a8fd(0x1d9)](_0x49a41c){const _0x441c03=a0_0x15a8fd;return!ValueUtil[_0x441c03(0x1db)](_0x49a41c);}static['isEquals'](_0x262189,_0x14950b){return a0_0x500abe(_0x262189,_0x14950b);}static[a0_0x15a8fd(0x1d5)](_0xd2b104,_0xe025ba){const _0x3c0e0a=a0_0x15a8fd;return ValueUtil[_0x3c0e0a(0x1db)](_0xd2b104)?_0xe025ba||0x0:parseInt(_0xd2b104);}static[a0_0x15a8fd(0x1cf)](_0x45f35b){const _0x13d917=a0_0x15a8fd;return!ValueUtil[_0x13d917(0x1db)](_0x45f35b)&&(_0x13d917(0x1ce)==_0x45f35b||'t'==_0x45f35b||_0x13d917(0x1c2)==_0x45f35b||'T'==_0x45f35b||'on'==_0x45f35b||'ON'==_0x45f35b);}static['compareObjectValues'](_0x5e3e48,_0x161e94,_0x5e5fc8){const _0x407702=a0_0x15a8fd;let _0x1f080b=!0x0;return _0x5e5fc8[_0x407702(0x1d6)](_0x5cd0b1=>{const _0x530ab8=_0x407702;let _0x4023d0=_0x5e3e48[_0x5cd0b1];if('*'===_0x4023d0)return;let _0x16b6da=_0x161e94[_0x5cd0b1]||'';ValueUtil[_0x530ab8(0x1db)](_0x4023d0)?ValueUtil[_0x530ab8(0x1d9)](_0x16b6da)&&(_0x1f080b=!0x1):_0x4023d0!=_0x16b6da&&(_0x1f080b=!0x1);}),_0x1f080b;}static[a0_0x15a8fd(0x1d8)](_0x2cb36e,_0x1f2fd2,_0x4a476e,_0x47cfc8){const _0x1c703e=a0_0x15a8fd;let _0x1cbf1e=ValueUtil[_0x1c703e(0x1c1)](_0x1f2fd2,_0x4a476e);return ValueUtil[_0x1c703e(0x1d9)](_0x1cbf1e)&&(_0x2cb36e[_0x4a476e]=!0x0===_0x47cfc8?TermsUtil['t'](_0x1cbf1e):_0x1cbf1e),_0x2cb36e;}static[a0_0x15a8fd(0x1c1)](_0x5d695c,..._0x52a285){const _0x4193cc=a0_0x15a8fd;if(arguments[_0x4193cc(0x1d1)]<=0x1)return;let _0x1e45e5=_0x52a285[0x0];if(ValueUtil['isEmpty'](_0x5d695c[_0x1e45e5]))return;let _0x54c30c=_0x5d695c[_0x1e45e5];return _0x52a285[_0x4193cc(0x1d1)]>0x1?ValueUtil['getParams'](_0x54c30c,..._0x52a285[_0x4193cc(0x1ca)](0x1)):_0x54c30c;}static[a0_0x15a8fd(0x1c7)](_0x317102,_0x105968,..._0x3fdcf3){const _0x4780c2=a0_0x15a8fd;return _0x105968=_0x105968||[],_0x3fdcf3=_0x3fdcf3||Object[_0x4780c2(0x1d2)](_0x317102),ValueUtil[_0x4780c2(0x1d9)](_0x3fdcf3)&&(_0x105968=_0x317102['map']((_0x3559ec,_0x11e12d)=>{const _0x2c78db=_0x4780c2;let _0x5271d8=_0x105968[_0x2c78db(0x1d1)]>_0x11e12d?_0x105968[_0x11e12d]:{};return ValueUtil['populateObject'](_0x3559ec,_0x5271d8,_0x3fdcf3);})),_0x105968;}static[a0_0x15a8fd(0x1c9)](_0xee2f30,_0x123852,..._0x19758d){const _0x3b5c4b=a0_0x15a8fd;return _0x123852=_0x123852||{},_0x19758d=_0x19758d||Object[_0x3b5c4b(0x1d2)](_0xee2f30),ValueUtil[_0x3b5c4b(0x1d9)](_0x19758d)&&_0x19758d[_0x3b5c4b(0x1d6)](_0x5287df=>{_0x123852[_0x5287df]=_0xee2f30[_0x5287df];}),_0x123852;}}
1
+ function a0_0x3560(){const _0x4c0da4=['slice','isEquals','length','isNotEmpty','getParams','isArray','562410BgJnXU','string','true','3wPTmMG','toInteger','forEach','TRUE','populateObject','populateArray','245976zAZVlz','164288ycJuco','30432EjRSsB','setParams','toBoolean','175umDHdV','object','4175532JrQvdK','number','380934yFVPal','map','compareObjectValues','284051CnkrUp','keys','boolean','replace','isEmpty'];a0_0x3560=function(){return _0x4c0da4;};return a0_0x3560();}const a0_0x5d0ecd=a0_0x9f07;(function(_0x1394a3,_0x37d0c3){const _0x34917d=a0_0x9f07,_0x40fcd0=_0x1394a3();while(!![]){try{const _0xde8f0c=-parseInt(_0x34917d(0x162))/0x1+-parseInt(_0x34917d(0x15f))/0x2+parseInt(_0x34917d(0x170))/0x3*(-parseInt(_0x34917d(0x156))/0x4)+parseInt(_0x34917d(0x16d))/0x5+-parseInt(_0x34917d(0x158))/0x6*(-parseInt(_0x34917d(0x15b))/0x7)+-parseInt(_0x34917d(0x157))/0x8+parseInt(_0x34917d(0x15d))/0x9;if(_0xde8f0c===_0x37d0c3)break;else _0x40fcd0['push'](_0x40fcd0['shift']());}catch(_0x109916){_0x40fcd0['push'](_0x40fcd0['shift']());}}}(a0_0x3560,0x23cfa));import a0_0x5cf50a from'lodash-es/isEqual';import{TermsUtil}from'./terms-util';function a0_0x9f07(_0x44050c,_0x4a407f){const _0x3560be=a0_0x3560();return a0_0x9f07=function(_0x9f0724,_0x44db87){_0x9f0724=_0x9f0724-0x156;let _0xb1b8ab=_0x3560be[_0x9f0724];return _0xb1b8ab;},a0_0x9f07(_0x44050c,_0x4a407f);}export class ValueUtil{static[a0_0x5d0ecd(0x166)](_0x578953){const _0x10b424=a0_0x5d0ecd;if(void 0x0===_0x578953)return!0x0;if(null===_0x578953)return!0x0;if(_0x10b424(0x164)==typeof _0x578953)return!0x1;if(_0x10b424(0x16e)==typeof _0x578953||_0x10b424(0x15e)==typeof _0x578953){if(''==_0x578953)return!0x0;}else{if(Array[_0x10b424(0x16c)](_0x578953)){if(0x0==_0x578953[_0x10b424(0x169)])return!0x0;}else{if(_0x10b424(0x15c)==typeof _0x578953&&0x0==Object['keys'](_0x578953)[_0x10b424(0x169)])return!0x0;}}return!0x1;}static[a0_0x5d0ecd(0x16a)](_0x38cbf7){const _0x31f05=a0_0x5d0ecd;return!ValueUtil[_0x31f05(0x166)](_0x38cbf7);}static[a0_0x5d0ecd(0x168)](_0xb0a6f6,_0x49aa7b){return a0_0x5cf50a(_0xb0a6f6,_0x49aa7b);}static[a0_0x5d0ecd(0x171)](_0x5126b5,_0x109958){const _0x10379b=a0_0x5d0ecd;return ValueUtil[_0x10379b(0x166)](_0x5126b5)?_0x109958||0x0:parseInt(_0x5126b5);}static[a0_0x5d0ecd(0x15a)](_0x45eaab){const _0x249fdd=a0_0x5d0ecd;return!ValueUtil[_0x249fdd(0x166)](_0x45eaab)&&(_0x249fdd(0x16f)==_0x45eaab||'t'==_0x45eaab||_0x249fdd(0x173)==_0x45eaab||'T'==_0x45eaab||'on'==_0x45eaab||'ON'==_0x45eaab);}static[a0_0x5d0ecd(0x161)](_0xf3595e,_0x5da256,_0x21c56a){const _0x24eb8a=a0_0x5d0ecd;let _0x3e7a41=!0x0;return _0x21c56a[_0x24eb8a(0x172)](_0x63e4a=>{const _0x34a78a=_0x24eb8a;let _0x57d073=_0xf3595e[_0x63e4a];if('*'===_0x57d073)return;let _0xb826ea=_0x5da256[_0x63e4a]||'';ValueUtil[_0x34a78a(0x166)](_0x57d073)?ValueUtil[_0x34a78a(0x16a)](_0xb826ea)&&(_0x3e7a41=!0x1):_0x57d073!=_0xb826ea&&(_0x3e7a41=!0x1);}),_0x3e7a41;}static[a0_0x5d0ecd(0x159)](_0x1498aa,_0x49a615,_0x14fe3f,_0x4477ca){const _0x17baa4=a0_0x5d0ecd;let _0x13c3d9=ValueUtil[_0x17baa4(0x16b)](_0x49a615,_0x14fe3f);return ValueUtil[_0x17baa4(0x16a)](_0x13c3d9)&&(_0x1498aa[_0x14fe3f]=!0x0===_0x4477ca?TermsUtil['t'](_0x13c3d9):_0x13c3d9),_0x1498aa;}static[a0_0x5d0ecd(0x16b)](_0x59a4e7,..._0x23f3b3){const _0x516bcd=a0_0x5d0ecd;if(arguments[_0x516bcd(0x169)]<=0x1)return;let _0x39916f=_0x23f3b3[0x0];if(ValueUtil[_0x516bcd(0x166)](_0x59a4e7[_0x39916f]))return;let _0x3cb11b=_0x59a4e7[_0x39916f];return _0x23f3b3[_0x516bcd(0x169)]>0x1?ValueUtil[_0x516bcd(0x16b)](_0x3cb11b,..._0x23f3b3[_0x516bcd(0x167)](0x1)):_0x3cb11b;}static[a0_0x5d0ecd(0x175)](_0x45d927,_0x2f255d,..._0x1c450e){const _0xf279b7=a0_0x5d0ecd;return _0x2f255d=_0x2f255d||[],_0x1c450e=_0x1c450e||Object[_0xf279b7(0x163)](_0x45d927),ValueUtil[_0xf279b7(0x16a)](_0x1c450e)&&(_0x2f255d=_0x45d927[_0xf279b7(0x160)]((_0xe6f156,_0xeeffc)=>{const _0x307235=_0xf279b7;let _0x4261bd=_0x2f255d[_0x307235(0x169)]>_0xeeffc?_0x2f255d[_0xeeffc]:{};return ValueUtil[_0x307235(0x174)](_0xe6f156,_0x4261bd,_0x1c450e);})),_0x2f255d;}static['populateObject'](_0x2ced9f,_0x144454,..._0x5e652e){const _0x41a35b=a0_0x5d0ecd;return _0x144454=_0x144454||{},_0x5e652e=_0x5e652e||Object[_0x41a35b(0x163)](_0x2ced9f),ValueUtil['isNotEmpty'](_0x5e652e)&&_0x5e652e[_0x41a35b(0x172)](_0x1aaaa9=>{_0x144454[_0x1aaaa9]=_0x2ced9f[_0x1aaaa9];}),_0x144454;}static['replaceVariableObject'](_0x49859b,_0x5473b1){const _0x1709de=a0_0x5d0ecd;let _0x3e6cf9=Object['keys'](_0x49859b),_0x165fdc=Object[_0x1709de(0x163)](_0x5473b1);return _0x3e6cf9['forEach'](_0x2f95fb=>{const _0x1a428c=_0x1709de;let _0x47bfd3=_0x49859b[_0x2f95fb];if(_0x1a428c(0x16e)==typeof _0x47bfd3&&_0x47bfd3['startsWith']('$')){let _0x4495ac=_0x47bfd3[_0x1a428c(0x165)]('$','');_0x165fdc['includes'](_0x4495ac)&&(_0x49859b[_0x2f95fb]=_0x5473b1[_0x4495ac]);}}),_0x49859b;}}
@@ -1,4 +1,4 @@
1
- function a0_0x22ed(){const _0x510d2f=['198023sQxTnO','4031440ERccfB','2125960ecWvuP','2469456Snrlgk','114TSAfrj','1GlKoto','3353595ZFlWLB','498138rCbJsd','23020002WUGvFx'];a0_0x22ed=function(){return _0x510d2f;};return a0_0x22ed();}(function(_0x4c9461,_0xff9b92){const _0x5f1a68=a0_0x3c8d,_0x5a7482=_0x4c9461();while(!![]){try{const _0x5eee10=-parseInt(_0x5f1a68(0x102))/0x1*(-parseInt(_0x5f1a68(0x104))/0x2)+-parseInt(_0x5f1a68(0x109))/0x3+-parseInt(_0x5f1a68(0x107))/0x4+-parseInt(_0x5f1a68(0x103))/0x5+parseInt(_0x5f1a68(0x10a))/0x6*(parseInt(_0x5f1a68(0x106))/0x7)+-parseInt(_0x5f1a68(0x108))/0x8+parseInt(_0x5f1a68(0x105))/0x9;if(_0x5eee10===_0xff9b92)break;else _0x5a7482['push'](_0x5a7482['shift']());}catch(_0x50414d){_0x5a7482['push'](_0x5a7482['shift']());}}}(a0_0x22ed,0x8cd5e));function a0_0x3c8d(_0x39eb33,_0x232df8){const _0x22ed11=a0_0x22ed();return a0_0x3c8d=function(_0x3c8dc3,_0x29cd73){_0x3c8dc3=_0x3c8dc3-0x102;let _0x1bb006=_0x22ed11[_0x3c8dc3];return _0x1bb006;},a0_0x3c8d(_0x39eb33,_0x232df8);}import{css}from'lit';export const DynamicMenuLandscapeStyles=css`
1
+ (function(_0x3dda07,_0x3f490a){const _0x59465b=a0_0x1b6b,_0xdbacb2=_0x3dda07();while(!![]){try{const _0x3d6d5f=parseInt(_0x59465b(0x171))/0x1*(parseInt(_0x59465b(0x16e))/0x2)+-parseInt(_0x59465b(0x169))/0x3*(parseInt(_0x59465b(0x16a))/0x4)+parseInt(_0x59465b(0x16c))/0x5*(-parseInt(_0x59465b(0x16b))/0x6)+parseInt(_0x59465b(0x172))/0x7+parseInt(_0x59465b(0x16f))/0x8+-parseInt(_0x59465b(0x16d))/0x9+parseInt(_0x59465b(0x170))/0xa;if(_0x3d6d5f===_0x3f490a)break;else _0xdbacb2['push'](_0xdbacb2['shift']());}catch(_0x48a70b){_0xdbacb2['push'](_0xdbacb2['shift']());}}}(a0_0x3792,0xe8762));function a0_0x3792(){const _0x46e067=['2722923TXBKWk','309482ZzBQiD','2370880oNioFm','32352140ljDZSa','2CEBYUh','2508436vsHXje','4756041QJOree','4xCuGbq','679674FFBfVp','60EDqfCM'];a0_0x3792=function(){return _0x46e067;};return a0_0x3792();}function a0_0x1b6b(_0x115271,_0x4d9867){const _0x3792b8=a0_0x3792();return a0_0x1b6b=function(_0x1b6bd3,_0x534712){_0x1b6bd3=_0x1b6bd3-0x169;let _0x3052cf=_0x3792b8[_0x1b6bd3];return _0x3052cf;},a0_0x1b6b(_0x115271,_0x4d9867);}import{css}from'lit';export const DynamicMenuLandscapeStyles=css`
2
2
  :host {
3
3
  overflow-x: auto;
4
4
  background-color: var(--secondary-text-color);
@@ -1,25 +1,25 @@
1
- const a0_0xaae585=a0_0x11f5;(function(_0x1302f9,_0x3b30ec){const _0x1ab875=a0_0x11f5,_0x4ab5df=_0x1302f9();while(!![]){try{const _0x1efb9d=-parseInt(_0x1ab875(0x7f))/0x1+parseInt(_0x1ab875(0x87))/0x2*(parseInt(_0x1ab875(0x6c))/0x3)+-parseInt(_0x1ab875(0x89))/0x4*(-parseInt(_0x1ab875(0x6f))/0x5)+-parseInt(_0x1ab875(0x85))/0x6*(-parseInt(_0x1ab875(0x78))/0x7)+parseInt(_0x1ab875(0x93))/0x8*(parseInt(_0x1ab875(0x7d))/0x9)+parseInt(_0x1ab875(0x92))/0xa*(-parseInt(_0x1ab875(0x91))/0xb)+-parseInt(_0x1ab875(0x82))/0xc;if(_0x1efb9d===_0x3b30ec)break;else _0x4ab5df['push'](_0x4ab5df['shift']());}catch(_0x37f0da){_0x4ab5df['push'](_0x4ab5df['shift']());}}}(a0_0x3548,0x3dcad));function a0_0x3548(){const _0x37779d=['48304ybwGjq','click','detail','active-toplevel','min','submenu','transitionstart','properties','1210CIlqdQ','370lTdbzj','1966088Zhcajo','define','path','currentTarget','stopPropagation','#wrap','14121NqqvPH','removeAttribute','transitionend','205ZRSSjI','bind','description','icon','#force','querySelector','addEventListener','wheelDelta','firstUpdated','230342ykGDov','render','map','name','preventDefault','9IFtHEx','settled','150181OYVLIT','target','max','5695788PqKDXP','href','styles','12tVScWd','renderRoot','32FIEiIU','scrollLeft'];a0_0x3548=function(){return _0x37779d;};return a0_0x3548();}import'@material/mwc-icon';import{html,LitElement}from'lit';import{connect}from'pwa-helpers';function a0_0x11f5(_0x5b998c,_0x2208f6){const _0x35487e=a0_0x3548();return a0_0x11f5=function(_0x11f5a5,_0x3ce572){_0x11f5a5=_0x11f5a5-0x6a;let _0x34757a=_0x35487e[_0x11f5a5];return _0x34757a;},a0_0x11f5(_0x5b998c,_0x2208f6);}import{navigate,store}from'@operato/shell';import{ScrollbarStyles}from'@operato/styles';import{DynamicMenuLandscapeStyles}from'./dynamic-menu-landscape-styles';export class DynamicMenuLandscape extends connect(store)(LitElement){static get[a0_0xaae585(0x84)](){return[ScrollbarStyles,DynamicMenuLandscapeStyles];}static get[a0_0xaae585(0x90)](){return{'menus':Array,'activeTopLevel':Object,'activeMenu':Object,'path':String};}[a0_0xaae585(0x79)](){const _0x4c5f75=a0_0xaae585,{menus:_0x38278d=[],activeTopLevel:_0x14b093,activeMenu:_0x163c76}=this;return html`
1
+ const a0_0x477137=a0_0x90b5;function a0_0x4324(){const _0x3e4cab=['onWheelEvent','1963164prUbXb','icon','renderRoot','submenu','currentTarget','#force','dynamic-menu-landscape','1971FJHwRK','dispatchEvent','min','preventDefault','addEventListener','13hTtnNG','click','575718qMFnND','target','31630Qnwpeg','querySelector','mousewheel','max','menus','16ZRkFRj','removeAttribute','map','scrollLeft','render','1nLrrWA','path','transitionstart','transitionend','description','href','84712PSNfcb','360666QhNFlJ','active-toplevel','properties','70IwpGei','31273032WUolxp','244632vCzAkJ','77tFgEHm','240KqOJfE','settled','#wrap','type'];a0_0x4324=function(){return _0x3e4cab;};return a0_0x4324();}(function(_0x2fe63c,_0x597357){const _0x38707c=a0_0x90b5,_0x1d82e6=_0x2fe63c();while(!![]){try{const _0x12bf79=-parseInt(_0x38707c(0x15f))/0x1*(parseInt(_0x38707c(0x145))/0x2)+-parseInt(_0x38707c(0x16b))/0x3*(-parseInt(_0x38707c(0x15a))/0x4)+parseInt(_0x38707c(0x169))/0x5*(parseInt(_0x38707c(0x166))/0x6)+-parseInt(_0x38707c(0x13f))/0x7*(-parseInt(_0x38707c(0x165))/0x8)+parseInt(_0x38707c(0x14c))/0x9*(-parseInt(_0x38707c(0x155))/0xa)+-parseInt(_0x38707c(0x153))/0xb*(parseInt(_0x38707c(0x140))/0xc)+-parseInt(_0x38707c(0x151))/0xd*(-parseInt(_0x38707c(0x16a))/0xe);if(_0x12bf79===_0x597357)break;else _0x1d82e6['push'](_0x1d82e6['shift']());}catch(_0x4c1cc3){_0x1d82e6['push'](_0x1d82e6['shift']());}}}(a0_0x4324,0xc291e));import'@material/mwc-icon';import{html,LitElement}from'lit';import{connect}from'pwa-helpers';import{navigate,store}from'@operato/shell';import{ScrollbarStyles}from'@operato/styles';function a0_0x90b5(_0x1239e8,_0x5e217a){const _0x432436=a0_0x4324();return a0_0x90b5=function(_0x90b5ea,_0x2e04ce){_0x90b5ea=_0x90b5ea-0x13f;let _0x5453a4=_0x432436[_0x90b5ea];return _0x5453a4;},a0_0x90b5(_0x1239e8,_0x5e217a);}import{DynamicMenuLandscapeStyles}from'./dynamic-menu-landscape-styles';export class DynamicMenuLandscape extends connect(store)(LitElement){static get['styles'](){return[ScrollbarStyles,DynamicMenuLandscapeStyles];}static get[a0_0x477137(0x168)](){return{'menus':Array,'activeTopLevel':Object,'activeMenu':Object,'path':String};}[a0_0x477137(0x15e)](){const _0x20b468=a0_0x477137,{menus:_0x4815df=[],activeTopLevel:_0x132047,activeMenu:_0xe40a23}=this;return html`
2
2
  <div id="wrap">
3
3
  <ul>
4
- ${_0x38278d['map'](_0xfb0108=>'group'==_0xfb0108['type']?html``:html`
5
- <li ?active=${_0xfb0108===_0x14b093}>
6
- <a href=${_0xfb0108['path']||'#'}>
7
- ${_0xfb0108[_0x4c5f75(0x72)]?html`<mwc-icon>${_0xfb0108['icon']}</mwc-icon>`:html``} ${_0xfb0108[_0x4c5f75(0x7b)]}
4
+ ${_0x4815df['map'](_0x3393d4=>'group'==_0x3393d4[_0x20b468(0x143)]?html``:html`
5
+ <li ?active=${_0x3393d4===_0x132047}>
6
+ <a href=${_0x3393d4[_0x20b468(0x160)]||'#'}>
7
+ ${_0x3393d4['icon']?html`<mwc-icon>${_0x3393d4[_0x20b468(0x146)]}</mwc-icon>`:html``} ${_0x3393d4['name']}
8
8
  </a>
9
9
 
10
10
  <ul submenus>
11
- ${_0xfb0108['menus']?.[_0x4c5f75(0x7a)](_0x3f6572=>html`
12
- <li ?active=${_0x3f6572===_0x163c76}>
13
- <a href=${_0x3f6572[_0x4c5f75(0x95)]||'#'}> ${_0x3f6572[_0x4c5f75(0x7b)]} </a>
11
+ ${_0x3393d4[_0x20b468(0x159)]?.[_0x20b468(0x15c)](_0x3db1b7=>html`
12
+ <li ?active=${_0x3db1b7===_0xe40a23}>
13
+ <a href=${_0x3db1b7[_0x20b468(0x160)]||'#'}> ${_0x3db1b7['name']} </a>
14
14
  </li>
15
15
  `)}
16
16
  </ul>
17
17
 
18
18
  <div description>
19
- ${_0xfb0108['icon']?html`<mwc-icon>${_0xfb0108[_0x4c5f75(0x72)]}</mwc-icon>`:html``} ${_0xfb0108[_0x4c5f75(0x71)]||''}
19
+ ${_0x3393d4[_0x20b468(0x146)]?html`<mwc-icon>${_0x3393d4[_0x20b468(0x146)]}</mwc-icon>`:html``} ${_0x3393d4[_0x20b468(0x163)]||''}
20
20
  </div>
21
21
  </li>
22
22
  `)}
23
23
  </ul>
24
24
  </div>
25
- `;}[a0_0xaae585(0x77)](){const _0x1d229e=a0_0xaae585;this[_0x1d229e(0x86)][_0x1d229e(0x74)](_0x1d229e(0x6b))['addEventListener']('mousewheel',this['onWheelEvent'][_0x1d229e(0x70)](this),!0x1),this[_0x1d229e(0x86)][_0x1d229e(0x75)](_0x1d229e(0x8a),_0x461a45=>{const _0x449a42=_0x1d229e;if(_0x461a45['target']['submenu']){_0x461a45[_0x449a42(0x6a)](),_0x461a45[_0x449a42(0x7c)]();let _0x25d967=_0x461a45[_0x449a42(0x80)][_0x449a42(0x8e)];return void this['dispatchEvent'](new CustomEvent(_0x449a42(0x8c),{'bubbles':!0x0,'detail':this['activeTopLevel']===_0x25d967?void 0x0:_0x25d967}));}let _0x591391=_0x461a45[_0x449a42(0x80)]['href'];_0x591391&&location[_0x449a42(0x83)]===_0x591391&&navigate(_0x591391+_0x449a42(0x73),!0x0);}),this['renderRoot'][_0x1d229e(0x75)](_0x1d229e(0x8f),_0x4b3a98=>{const _0x223105=_0x1d229e;_0x4b3a98[_0x223105(0x80)][_0x223105(0x6d)](_0x223105(0x7e));}),this[_0x1d229e(0x86)][_0x1d229e(0x75)](_0x1d229e(0x6e),_0x1a193f=>{const _0x1f792b=_0x1d229e;_0x1a193f[_0x1f792b(0x80)]['setAttribute'](_0x1f792b(0x7e),'');});}['onWheelEvent'](_0x2af939){const _0x4bce23=a0_0xaae585,_0x295653=_0x2af939[_0x4bce23(0x96)];var _0x35d0f2=Math[_0x4bce23(0x81)](-0x1,Math[_0x4bce23(0x8d)](0x1,_0x2af939[_0x4bce23(0x76)]||-_0x2af939[_0x4bce23(0x8b)]));_0x295653[_0x4bce23(0x88)]-=0xa*_0x35d0f2,_0x2af939[_0x4bce23(0x7c)]();}}customElements[a0_0xaae585(0x94)]('dynamic-menu-landscape',DynamicMenuLandscape);
25
+ `;}['firstUpdated'](){const _0x38c4b3=a0_0x477137;this[_0x38c4b3(0x147)][_0x38c4b3(0x156)](_0x38c4b3(0x142))[_0x38c4b3(0x150)](_0x38c4b3(0x157),this[_0x38c4b3(0x144)]['bind'](this),!0x1),this[_0x38c4b3(0x147)][_0x38c4b3(0x150)](_0x38c4b3(0x152),_0x25d862=>{const _0x51f2c4=_0x38c4b3;if(_0x25d862[_0x51f2c4(0x154)][_0x51f2c4(0x148)]){_0x25d862['stopPropagation'](),_0x25d862[_0x51f2c4(0x14f)]();let _0x5a076a=_0x25d862['target'][_0x51f2c4(0x148)];return void this[_0x51f2c4(0x14d)](new CustomEvent(_0x51f2c4(0x167),{'bubbles':!0x0,'detail':this['activeTopLevel']===_0x5a076a?void 0x0:_0x5a076a}));}let _0x16480c=_0x25d862[_0x51f2c4(0x154)][_0x51f2c4(0x164)];_0x16480c&&location[_0x51f2c4(0x164)]===_0x16480c&&navigate(_0x16480c+_0x51f2c4(0x14a),!0x0);}),this[_0x38c4b3(0x147)]['addEventListener'](_0x38c4b3(0x161),_0x4a799e=>{const _0x12352d=_0x38c4b3;_0x4a799e[_0x12352d(0x154)][_0x12352d(0x15b)](_0x12352d(0x141));}),this[_0x38c4b3(0x147)][_0x38c4b3(0x150)](_0x38c4b3(0x162),_0x132800=>{const _0x19f535=_0x38c4b3;_0x132800[_0x19f535(0x154)]['setAttribute'](_0x19f535(0x141),'');});}[a0_0x477137(0x144)](_0x2029fc){const _0x3ec77a=a0_0x477137,_0x321b67=_0x2029fc[_0x3ec77a(0x149)];var _0x14f178=Math[_0x3ec77a(0x158)](-0x1,Math[_0x3ec77a(0x14e)](0x1,_0x2029fc['wheelDelta']||-_0x2029fc['detail']));_0x321b67[_0x3ec77a(0x15d)]-=0xa*_0x14f178,_0x2029fc['preventDefault']();}}customElements['define'](a0_0x477137(0x14b),DynamicMenuLandscape);
@@ -1,4 +1,4 @@
1
- function a0_0x54a1(_0x5cda74,_0x261e08){var _0x1bb1c1=a0_0x1bb1();return a0_0x54a1=function(_0x54a1d7,_0x48e48d){_0x54a1d7=_0x54a1d7-0x1a7;var _0x3e0b28=_0x1bb1c1[_0x54a1d7];return _0x3e0b28;},a0_0x54a1(_0x5cda74,_0x261e08);}var a0_0x2c2ddd=a0_0x54a1;(function(_0x78e83,_0x3b3c5f){var _0x333ceb=a0_0x54a1,_0x3354ca=_0x78e83();while(!![]){try{var _0x1984d1=parseInt(_0x333ceb(0x1c5))/0x1+-parseInt(_0x333ceb(0x1be))/0x2+-parseInt(_0x333ceb(0x1cb))/0x3+parseInt(_0x333ceb(0x1c0))/0x4+parseInt(_0x333ceb(0x1bc))/0x5*(parseInt(_0x333ceb(0x1b5))/0x6)+-parseInt(_0x333ceb(0x1b7))/0x7*(-parseInt(_0x333ceb(0x1b6))/0x8)+-parseInt(_0x333ceb(0x1a7))/0x9;if(_0x1984d1===_0x3b3c5f)break;else _0x3354ca['push'](_0x3354ca['shift']());}catch(_0x478479){_0x3354ca['push'](_0x3354ca['shift']());}}}(a0_0x1bb1,0x509a7));import'@material/mwc-icon';import'./dynamic-menu-portrait';import'./dynamic-menu-landscape';import{css,html,LitElement}from'lit';import{connect}from'pwa-helpers';import{store}from'@operato/shell';import{ScrollbarStyles}from'@operato/styles';function isActiveMenu(_0x5b5287,_0x35295e){var _0x4a7505=a0_0x54a1;return _0x5b5287[_0x4a7505(0x1c3)]?.[_0x4a7505(0x1aa)]('?')[0x0]===_0x35295e||_0x5b5287[_0x4a7505(0x1c4)]&&_0x4a7505(0x1c8)==typeof _0x5b5287['active']&&_0x5b5287[_0x4a7505(0x1c4)][_0x4a7505(0x1c7)](_0x5b5287,{'path':_0x35295e});}export class DynamicMenuPart extends connect(store)(LitElement){static get[a0_0x2c2ddd(0x1ab)](){return{'page':String,'resourceId':String,'menus':Array,'orientation':String,'_activeTopLevel':Object,'_activeMenu':Object,'_path':String};}static get[a0_0x2c2ddd(0x1ba)](){return[ScrollbarStyles,css`
1
+ function a0_0x1ebe(_0x17459f,_0x294e70){var _0x4b2f5e=a0_0x4b2f();return a0_0x1ebe=function(_0x1ebe34,_0x31ecda){_0x1ebe34=_0x1ebe34-0x89;var _0x54d7a4=_0x4b2f5e[_0x1ebe34];return _0x54d7a4;},a0_0x1ebe(_0x17459f,_0x294e70);}var a0_0x558b21=a0_0x1ebe;(function(_0x71c5f7,_0x5a0c1c){var _0x11bbc5=a0_0x1ebe,_0x38b917=_0x71c5f7();while(!![]){try{var _0x3b3e33=parseInt(_0x11bbc5(0xaf))/0x1*(-parseInt(_0x11bbc5(0x97))/0x2)+-parseInt(_0x11bbc5(0x9c))/0x3+-parseInt(_0x11bbc5(0xa1))/0x4*(parseInt(_0x11bbc5(0x95))/0x5)+-parseInt(_0x11bbc5(0x8c))/0x6+parseInt(_0x11bbc5(0x9f))/0x7*(parseInt(_0x11bbc5(0x94))/0x8)+-parseInt(_0x11bbc5(0xa9))/0x9+parseInt(_0x11bbc5(0xad))/0xa;if(_0x3b3e33===_0x5a0c1c)break;else _0x38b917['push'](_0x38b917['shift']());}catch(_0xbf16d1){_0x38b917['push'](_0x38b917['shift']());}}}(a0_0x4b2f,0x27d81));import'@material/mwc-icon';import'./dynamic-menu-portrait';import'./dynamic-menu-landscape';import{css,html,LitElement}from'lit';import{connect}from'pwa-helpers';function a0_0x4b2f(){var _0x487e89=['setAttribute','properties','12568XWzAKk','17205FvDicp','menus','57308lzbfOw','styles','has','metaUI','_findActivePage','539616TDLrzH','active-toplevel','function','175wEfzDc','orientation','276wzANKH','portrait','split','active','_activeMenu','stopPropagation','detail','_path','104436tsipgR','find','resourceId','_activeTopLevel','9196720wbOzNr','route','8gPpbzv','removeAttribute','slotTemplate','page','stateChanged','landscape','825654yWNRkd','preventDefault','define','dynamic-menu-part','renderRoot','replaceChild'];a0_0x4b2f=function(){return _0x487e89;};return a0_0x4b2f();}import{store}from'@operato/shell';import{ScrollbarStyles}from'@operato/styles';function isActiveMenu(_0x54473e,_0x545a06){var _0x2d0b59=a0_0x1ebe;return _0x54473e['path']?.[_0x2d0b59(0xa3)]('?')[0x0]===_0x545a06||_0x54473e[_0x2d0b59(0xa4)]&&_0x2d0b59(0x9e)==typeof _0x54473e[_0x2d0b59(0xa4)]&&_0x54473e[_0x2d0b59(0xa4)]['call'](_0x54473e,{'path':_0x545a06});}export class DynamicMenuPart extends connect(store)(LitElement){static get[a0_0x558b21(0x93)](){return{'page':String,'resourceId':String,'menus':Array,'orientation':String,'_activeTopLevel':Object,'_activeMenu':Object,'_path':String};}static get[a0_0x558b21(0x98)](){return[ScrollbarStyles,css`
2
2
  :host {
3
3
  display: flex;
4
4
  overflow-y: auto;
@@ -27,18 +27,18 @@ function a0_0x54a1(_0x5cda74,_0x261e08){var _0x1bb1c1=a0_0x1bb1();return a0_0x54
27
27
  dynamic-menu-landscape {
28
28
  flex: 1;
29
29
  }
30
- `];}[a0_0x2c2ddd(0x1bf)](){var _0x52616d=a0_0x2c2ddd;return html`
30
+ `];}['render'](){var _0x8f7364=a0_0x558b21;return html`
31
31
  <slot name="head"></slot>
32
- ${_0x52616d(0x1b1)!==this[_0x52616d(0x1c9)]?html`<dynamic-menu-portrait
33
- .menus=${this['menus']}
34
- .activeTopLevel=${this['_activeTopLevel']}
35
- .activeMenu=${this[_0x52616d(0x1b3)]}
36
- .path=${this['_path']}
32
+ ${_0x8f7364(0x8b)!==this[_0x8f7364(0xa0)]?html`<dynamic-menu-portrait
33
+ .menus=${this[_0x8f7364(0x96)]}
34
+ .activeTopLevel=${this[_0x8f7364(0xac)]}
35
+ .activeMenu=${this[_0x8f7364(0xa5)]}
36
+ .path=${this[_0x8f7364(0xa8)]}
37
37
  ></dynamic-menu-portrait>`:html`<dynamic-menu-landscape
38
- .menus=${this[_0x52616d(0x1c1)]}
39
- .activeTopLevel=${this['_activeTopLevel']}
40
- .activeMenu=${this[_0x52616d(0x1b3)]}
41
- .path=${this[_0x52616d(0x1bd)]}
38
+ .menus=${this['menus']}
39
+ .activeTopLevel=${this[_0x8f7364(0xac)]}
40
+ .activeMenu=${this['_activeMenu']}
41
+ .path=${this[_0x8f7364(0xa8)]}
42
42
  ></dynamic-menu-landscape>`}
43
43
  <slot name="tail"></slot>
44
- `;}[a0_0x2c2ddd(0x1cc)](){var _0x7227ef=a0_0x2c2ddd;this[_0x7227ef(0x1a8)]['addEventListener']('active-toplevel',_0x35c2a2=>{var _0x227dd0=_0x7227ef;_0x35c2a2[_0x227dd0(0x1a9)](),_0x35c2a2[_0x227dd0(0x1ae)](),this[_0x227dd0(0x1bb)]=_0x35c2a2[_0x227dd0(0x1d0)];});}[a0_0x2c2ddd(0x1b4)](_0x4eeada){var _0x1a33e4=a0_0x2c2ddd;(_0x4eeada[_0x1a33e4(0x1d2)](_0x1a33e4(0x1c1))||_0x4eeada[_0x1a33e4(0x1d2)]('page')||_0x4eeada[_0x1a33e4(0x1d2)]('resourceId'))&&this[_0x1a33e4(0x1af)](),_0x4eeada['has'](_0x1a33e4(0x1c9))&&(_0x1a33e4(0x1b0)==this[_0x1a33e4(0x1c9)]?this[_0x1a33e4(0x1c6)](_0x1a33e4(0x1b1)):this[_0x1a33e4(0x1ad)](_0x1a33e4(0x1b1),!0x0)),_0x4eeada['has'](_0x1a33e4(0x1ac))&&this[_0x1a33e4(0x1b8)](this[_0x1a33e4(0x1ac)]);}[a0_0x2c2ddd(0x1cf)](_0x295d66){var _0x2ac6c2=a0_0x2c2ddd;this[_0x2ac6c2(0x1d1)]=_0x295d66[_0x2ac6c2(0x1ca)][_0x2ac6c2(0x1d1)],this[_0x2ac6c2(0x1ce)]=_0x295d66['route'][_0x2ac6c2(0x1ce)],this[_0x2ac6c2(0x1c1)]=_0x295d66['metaUI'][_0x2ac6c2(0x1c1)]||[],this[_0x2ac6c2(0x1ac)]=_0x295d66[_0x2ac6c2(0x1b9)][_0x2ac6c2(0x1ac)];}[a0_0x2c2ddd(0x1af)](){var _0x43f920=a0_0x2c2ddd,_0x3fc584,_0x249b87=this[_0x43f920(0x1ce)]?this['page']+'/'+this[_0x43f920(0x1ce)]:this[_0x43f920(0x1d1)],_0x5515bc=this[_0x43f920(0x1c1)]||[];this[_0x43f920(0x1bb)]=_0x5515bc[_0x43f920(0x1b2)](_0x8b6f51=>isActiveMenu(_0x8b6f51,_0x249b87)?(_0x3fc584=_0x8b6f51,!0x0):_0x8b6f51[_0x43f920(0x1c1)]?!!(_0x3fc584=_0x8b6f51['menus'][_0x43f920(0x1b2)](_0x2ca6f0=>isActiveMenu(_0x2ca6f0,_0x249b87))):void 0x0),this[_0x43f920(0x1bd)]=_0x249b87,this[_0x43f920(0x1b3)]=_0x3fc584||this['_activeTopLevel'];}}function a0_0x1bb1(){var _0x5e8bbd=['removeAttribute','call','function','orientation','route','658539Ldbigi','firstUpdated','define','resourceId','stateChanged','detail','page','has','9636507CMgVdm','renderRoot','stopPropagation','split','properties','slotTemplate','setAttribute','preventDefault','_findActivePage','portrait','landscape','find','_activeMenu','updated','1634832CBnzxO','2704fNYtKT','6006ZaXpGY','replaceChild','metaUI','styles','_activeTopLevel','5dOxpeG','_path','236748wUHSxo','render','2429184FBDKKS','menus','dynamic-menu-part','path','active','568989xpscDQ'];a0_0x1bb1=function(){return _0x5e8bbd;};return a0_0x1bb1();}customElements[a0_0x2c2ddd(0x1cd)](a0_0x2c2ddd(0x1c2),DynamicMenuPart);
44
+ `;}['firstUpdated'](){var _0x445765=a0_0x558b21;this[_0x445765(0x90)]['addEventListener'](_0x445765(0x9d),_0x2ff84f=>{var _0x2cc57e=_0x445765;_0x2ff84f[_0x2cc57e(0xa6)](),_0x2ff84f[_0x2cc57e(0x8d)](),this[_0x2cc57e(0xac)]=_0x2ff84f[_0x2cc57e(0xa7)];});}['updated'](_0x409795){var _0xa2caf5=a0_0x558b21;(_0x409795[_0xa2caf5(0x99)]('menus')||_0x409795[_0xa2caf5(0x99)](_0xa2caf5(0x89))||_0x409795[_0xa2caf5(0x99)]('resourceId'))&&this[_0xa2caf5(0x9b)](),_0x409795['has']('orientation')&&(_0xa2caf5(0xa2)==this['orientation']?this[_0xa2caf5(0xb0)]('landscape'):this[_0xa2caf5(0x92)](_0xa2caf5(0x8b),!0x0)),_0x409795['has']('slotTemplate')&&this[_0xa2caf5(0x91)](this[_0xa2caf5(0xb1)]);}[a0_0x558b21(0x8a)](_0x157c1c){var _0x248370=a0_0x558b21;this[_0x248370(0x89)]=_0x157c1c[_0x248370(0xae)]['page'],this[_0x248370(0xab)]=_0x157c1c['route'][_0x248370(0xab)],this[_0x248370(0x96)]=_0x157c1c['metaUI'][_0x248370(0x96)]||[],this[_0x248370(0xb1)]=_0x157c1c[_0x248370(0x9a)][_0x248370(0xb1)];}[a0_0x558b21(0x9b)](){var _0x468fb0=a0_0x558b21,_0x27f86e,_0x23ee3e=this[_0x468fb0(0xab)]?this[_0x468fb0(0x89)]+'/'+this[_0x468fb0(0xab)]:this[_0x468fb0(0x89)],_0x2fd830=this[_0x468fb0(0x96)]||[];this['_activeTopLevel']=_0x2fd830[_0x468fb0(0xaa)](_0x3d8abb=>isActiveMenu(_0x3d8abb,_0x23ee3e)?(_0x27f86e=_0x3d8abb,!0x0):_0x3d8abb[_0x468fb0(0x96)]?!!(_0x27f86e=_0x3d8abb[_0x468fb0(0x96)][_0x468fb0(0xaa)](_0x494713=>isActiveMenu(_0x494713,_0x23ee3e))):void 0x0),this[_0x468fb0(0xa8)]=_0x23ee3e,this['_activeMenu']=_0x27f86e||this[_0x468fb0(0xac)];}}customElements[a0_0x558b21(0x8e)](a0_0x558b21(0x8f),DynamicMenuPart);
@@ -1,4 +1,4 @@
1
- function a0_0x1224(_0x2d6985,_0x52d3a3){const _0x125ba3=a0_0x125b();return a0_0x1224=function(_0x12244b,_0x546c7b){_0x12244b=_0x12244b-0xc1;let _0x43644d=_0x125ba3[_0x12244b];return _0x43644d;},a0_0x1224(_0x2d6985,_0x52d3a3);}(function(_0x5084f9,_0x5d88e4){const _0x3f615d=a0_0x1224,_0x52f67c=_0x5084f9();while(!![]){try{const _0xa47f6e=-parseInt(_0x3f615d(0xc7))/0x1+-parseInt(_0x3f615d(0xc4))/0x2*(parseInt(_0x3f615d(0xc1))/0x3)+-parseInt(_0x3f615d(0xc2))/0x4+parseInt(_0x3f615d(0xca))/0x5+parseInt(_0x3f615d(0xc9))/0x6+-parseInt(_0x3f615d(0xc6))/0x7*(-parseInt(_0x3f615d(0xc3))/0x8)+parseInt(_0x3f615d(0xc8))/0x9*(parseInt(_0x3f615d(0xc5))/0xa);if(_0xa47f6e===_0x5d88e4)break;else _0x52f67c['push'](_0x52f67c['shift']());}catch(_0x30438e){_0x52f67c['push'](_0x52f67c['shift']());}}}(a0_0x125b,0x96af0));import{css}from'lit';function a0_0x125b(){const _0x4585d0=['91780WSvtuo','1030190KdpAxw','985182nMjBwU','2547SyMvWm','1874760fDYVZt','2326600rDTSIw','1893Pjkznh','3401588wKvcZE','8LziHqm','3390gVFToA'];a0_0x125b=function(){return _0x4585d0;};return a0_0x125b();}export const DynamicMenuPortraitStyles=css`
1
+ (function(_0x5ded4f,_0x74f257){const _0x4b11c4=a0_0x3d13,_0x1e3f92=_0x5ded4f();while(!![]){try{const _0x3f1895=parseInt(_0x4b11c4(0x85))/0x1+-parseInt(_0x4b11c4(0x8b))/0x2*(parseInt(_0x4b11c4(0x8d))/0x3)+-parseInt(_0x4b11c4(0x89))/0x4+parseInt(_0x4b11c4(0x88))/0x5*(-parseInt(_0x4b11c4(0x8c))/0x6)+parseInt(_0x4b11c4(0x8e))/0x7+-parseInt(_0x4b11c4(0x8a))/0x8*(-parseInt(_0x4b11c4(0x86))/0x9)+parseInt(_0x4b11c4(0x87))/0xa;if(_0x3f1895===_0x74f257)break;else _0x1e3f92['push'](_0x1e3f92['shift']());}catch(_0xdfbb54){_0x1e3f92['push'](_0x1e3f92['shift']());}}}(a0_0x5c6a,0xc19eb));function a0_0x5c6a(){const _0x3d4b5a=['2675064PyXyav','111096YHIcNF','12iioFHY','26394cJbkOQ','400455VCGYSw','8408813MzKVvA','140829CZsSgw','531NWQqZj','13814310PeOVAU','1455fyGcvC'];a0_0x5c6a=function(){return _0x3d4b5a;};return a0_0x5c6a();}function a0_0x3d13(_0x232164,_0x712f8f){const _0x5c6a94=a0_0x5c6a();return a0_0x3d13=function(_0x3d13d7,_0x50e888){_0x3d13d7=_0x3d13d7-0x85;let _0x8770f6=_0x5c6a94[_0x3d13d7];return _0x8770f6;},a0_0x3d13(_0x232164,_0x712f8f);}import{css}from'lit';export const DynamicMenuPortraitStyles=css`
2
2
  :host {
3
3
  display: flex;
4
4
  overflow-y: auto;