aril 0.0.46 → 0.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/boot/config/api/{index.ts → index.d.ts} +1 -1
- package/boot/config/api/src/api.service.d.ts +14 -0
- package/boot/config/api/src/interfaces.d.ts +9 -0
- package/boot/config/apps/{index.ts → index.d.ts} +2 -2
- package/boot/config/apps/src/apps.service.d.ts +16 -0
- package/boot/config/apps/src/interfaces.d.ts +23 -0
- package/boot/config/apps/src/showdowDOMWrapper.d.ts +10 -0
- package/boot/config/plugins/{index.ts → index.d.ts} +2 -2
- package/boot/config/plugins/src/getNgZone.d.ts +5 -0
- package/boot/config/plugins/src/interfaces.d.ts +18 -0
- package/boot/config/plugins/src/plugins.service.d.ts +9 -0
- package/boot/host/{index.ts → index.d.ts} +1 -1
- package/boot/host/src/app.component.d.ts +8 -0
- package/boot/host/src/bootstrap.d.ts +2 -0
- package/boot/index.d.ts +1 -0
- package/boot/mfe/{index.ts → index.d.ts} +1 -1
- package/boot/mfe/src/app.component.d.ts +12 -0
- package/boot/mfe/src/appComponentLoader.d.ts +1 -0
- package/boot/mfe/src/bootstrap.d.ts +6 -0
- package/boot/mfe/src/loadStyles.d.ts +3 -0
- package/esm2022/aril.mjs +5 -0
- package/esm2022/boot/aril-boot.mjs +5 -0
- package/esm2022/boot/config/api/aril-boot-config-api.mjs +5 -0
- package/esm2022/boot/config/api/index.mjs +2 -0
- package/esm2022/boot/config/api/src/api.service.mjs +42 -0
- package/esm2022/boot/config/api/src/interfaces.mjs +11 -0
- package/esm2022/boot/config/apps/aril-boot-config-apps.mjs +5 -0
- package/esm2022/boot/config/apps/index.mjs +3 -0
- package/esm2022/boot/config/apps/src/apps.service.mjs +51 -0
- package/esm2022/boot/config/apps/src/interfaces.mjs +17 -0
- package/esm2022/boot/config/apps/src/showdowDOMWrapper.mjs +35 -0
- package/esm2022/boot/config/plugins/aril-boot-config-plugins.mjs +5 -0
- package/esm2022/boot/config/plugins/index.mjs +3 -0
- package/esm2022/boot/config/plugins/src/getNgZone.mjs +12 -0
- package/esm2022/boot/config/plugins/src/interfaces.mjs +3 -0
- package/esm2022/boot/config/plugins/src/plugins.service.mjs +65 -0
- package/esm2022/boot/host/aril-boot-host.mjs +5 -0
- package/esm2022/boot/host/index.mjs +2 -0
- package/esm2022/boot/host/src/app.component.mjs +32 -0
- package/esm2022/boot/host/src/bootstrap.mjs +50 -0
- package/esm2022/boot/index.mjs +2 -0
- package/esm2022/boot/mfe/aril-boot-mfe.mjs +5 -0
- package/esm2022/boot/mfe/index.mjs +2 -0
- package/esm2022/boot/mfe/src/app.component.mjs +60 -0
- package/esm2022/boot/mfe/src/appComponentLoader.mjs +5 -0
- package/esm2022/boot/mfe/src/bootstrap.mjs +64 -0
- package/esm2022/boot/mfe/src/loadStyles.mjs +16 -0
- package/esm2022/http/aril-http.mjs +5 -0
- package/esm2022/http/index.mjs +12 -0
- package/esm2022/http/lib/enums.mjs +16 -0
- package/esm2022/http/lib/interfaces.mjs +15 -0
- package/esm2022/http/src/httpBackend.mjs +17 -0
- package/esm2022/http/src/httpClient.mjs +14 -0
- package/esm2022/http/src/interceptor/state-machine.interceptor.mjs +8 -0
- package/esm2022/http/src/serviceBase.mjs +60 -0
- package/esm2022/http/src/serviceMockBase.mjs +5 -0
- package/esm2022/http/src/serviceRequest.mjs +21 -0
- package/esm2022/http/src/serviceStateMethods.mjs +118 -0
- package/esm2022/i18n/aril-i18n.mjs +5 -0
- package/esm2022/i18n/index.mjs +6 -0
- package/esm2022/i18n/src/folder-name-token.mjs +3 -0
- package/esm2022/i18n/src/i18n.module.mjs +17 -0
- package/esm2022/i18n/src/loader.mjs +20 -0
- package/esm2022/i18n/src/provideI18n.mjs +16 -0
- package/esm2022/i18n/src/provideScope.mjs +18 -0
- package/esm2022/keycloak/aril-keycloak.mjs +5 -0
- package/esm2022/keycloak/index.mjs +4 -0
- package/esm2022/keycloak/src/auth.guard.mjs +39 -0
- package/esm2022/keycloak/src/auth.interceptor.mjs +10 -0
- package/esm2022/keycloak/src/keycloak.manager.mjs +76 -0
- package/esm2022/public-api.mjs +3 -0
- package/esm2022/theme/aril-theme.mjs +5 -0
- package/esm2022/theme/index.mjs +2 -0
- package/esm2022/theme/layout/app/breadcrumb/app.breadcrumb.component.mjs +41 -0
- package/esm2022/theme/layout/app/config/app.config.component.mjs +132 -0
- package/esm2022/theme/layout/app/layout/app.layout.component.mjs +147 -0
- package/esm2022/theme/layout/app/layout/mfe.layout.component.mjs +67 -0
- package/esm2022/theme/layout/app/menu/app.menu.component.mjs +398 -0
- package/esm2022/theme/layout/app/profileSidebar/app.profilesidebar.component.mjs +28 -0
- package/esm2022/theme/layout/app/sidebar/app.sidebar.component.mjs +41 -0
- package/esm2022/theme/layout/app/topbar/app.topbar.component.mjs +34 -0
- package/esm2022/theme/layout/aril-theme-layout.mjs +5 -0
- package/esm2022/theme/layout/index.mjs +4 -0
- package/esm2022/theme/layout/service/app.layout.service.mjs +127 -0
- package/esm2022/theme/layout/service/app.menu.service.mjs +53 -0
- package/esm2022/theme/layout/service/menuchangeevent.mjs +2 -0
- package/esm2022/ui/aril-ui.mjs +5 -0
- package/esm2022/ui/autoComplete/aril-ui-autoComplete.mjs +5 -0
- package/esm2022/ui/autoComplete/index.mjs +2 -0
- package/esm2022/ui/autoComplete/src/auto-complete.component.mjs +81 -0
- package/esm2022/ui/autoComplete/src/interfaces.mjs +2 -0
- package/esm2022/ui/badge/aril-ui-badge.mjs +5 -0
- package/esm2022/ui/badge/index.mjs +2 -0
- package/esm2022/ui/badge/src/badge.component.mjs +19 -0
- package/esm2022/ui/button/aril-ui-button.mjs +5 -0
- package/esm2022/ui/button/index.mjs +3 -0
- package/esm2022/ui/button/src/button.component.mjs +37 -0
- package/esm2022/ui/button/src/split-button.component.mjs +18 -0
- package/esm2022/ui/calendar/aril-ui-calendar.mjs +5 -0
- package/esm2022/ui/calendar/index.mjs +2 -0
- package/esm2022/ui/calendar/src/calendar.component.mjs +119 -0
- package/esm2022/ui/checkbox/aril-ui-checkbox.mjs +5 -0
- package/esm2022/ui/checkbox/index.mjs +3 -0
- package/esm2022/ui/checkbox/src/check-box.component.mjs +24 -0
- package/esm2022/ui/checkbox/src/tri-state-checkbox.component.mjs +24 -0
- package/esm2022/ui/dxField/aril-ui-dxField.mjs +5 -0
- package/esm2022/ui/dxField/index.mjs +2 -0
- package/esm2022/ui/dxField/src/dx-field.component.mjs +18 -0
- package/esm2022/ui/field/aril-ui-field.mjs +5 -0
- package/esm2022/ui/field/index.mjs +2 -0
- package/esm2022/ui/field/src/field.component.mjs +39 -0
- package/esm2022/ui/fileUpload/aril-ui-fileUpload.mjs +5 -0
- package/esm2022/ui/fileUpload/index.mjs +2 -0
- package/esm2022/ui/fileUpload/src/file-upload.component.mjs +61 -0
- package/esm2022/ui/form/aril-ui-form.mjs +5 -0
- package/esm2022/ui/form/index.mjs +22 -0
- package/esm2022/ui/form/src/form-submit-button.component.mjs +40 -0
- package/esm2022/ui/form/src/form.component.mjs +27 -0
- package/esm2022/ui/index.mjs +2 -0
- package/esm2022/ui/lib/aril-ui-lib.mjs +5 -0
- package/esm2022/ui/lib/index.mjs +15 -0
- package/esm2022/ui/lib/src/form/form-error-message.component.mjs +33 -0
- package/esm2022/ui/lib/src/form/form-error-message.directive.mjs +34 -0
- package/esm2022/ui/lib/src/form/form-field-builder.mjs +23 -0
- package/esm2022/ui/lib/src/form/form-validation.mjs +14 -0
- package/esm2022/ui/lib/src/grid/flex-grid.directive.mjs +21 -0
- package/esm2022/ui/lib/src/input/baseInput.mjs +24 -0
- package/esm2022/ui/lib/src/input/common-input-validators.service.mjs +49 -0
- package/esm2022/ui/lib/src/input/dx-input-error-message.pipe.mjs +22 -0
- package/esm2022/ui/lib/src/input/input-disabled.directive.mjs +25 -0
- package/esm2022/ui/lib/src/input/input-error-message.pipe.mjs +42 -0
- package/esm2022/ui/lib/src/input/input-transforms.mjs +8 -0
- package/esm2022/ui/lib/src/input/value-accessor.directive.mjs +38 -0
- package/esm2022/ui/mask/aril-ui-mask.mjs +5 -0
- package/esm2022/ui/mask/index.mjs +2 -0
- package/esm2022/ui/mask/src/mask.component.mjs +35 -0
- package/esm2022/ui/number/aril-ui-number.mjs +5 -0
- package/esm2022/ui/number/index.mjs +2 -0
- package/esm2022/ui/number/src/number.component.mjs +36 -0
- package/esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs +5 -0
- package/esm2022/ui/overlayPanel/index.mjs +2 -0
- package/esm2022/ui/overlayPanel/src/overlay-panel.component.mjs +20 -0
- package/esm2022/ui/panel/aril-ui-panel.mjs +5 -0
- package/esm2022/ui/panel/index.mjs +2 -0
- package/esm2022/ui/panel/src/panel.component.mjs +24 -0
- package/esm2022/ui/password/aril-ui-password.mjs +5 -0
- package/esm2022/ui/password/index.mjs +2 -0
- package/esm2022/ui/password/src/password.component.mjs +29 -0
- package/esm2022/ui/radioButton/aril-ui-radioButton.mjs +5 -0
- package/esm2022/ui/radioButton/index.mjs +2 -0
- package/esm2022/ui/radioButton/src/radio-button.component.mjs +30 -0
- package/esm2022/ui/selectBox/aril-ui-selectBox.mjs +5 -0
- package/esm2022/ui/selectBox/index.mjs +2 -0
- package/esm2022/ui/selectBox/src/interfaces.mjs +2 -0
- package/esm2022/ui/selectBox/src/select-box.component.mjs +54 -0
- package/esm2022/ui/switch/aril-ui-switch.mjs +5 -0
- package/esm2022/ui/switch/index.mjs +2 -0
- package/esm2022/ui/switch/src/switch.component.mjs +23 -0
- package/esm2022/ui/table/aril-ui-table.mjs +5 -0
- package/esm2022/ui/table/index.mjs +49 -0
- package/esm2022/ui/table/src/i18n.mjs +56 -0
- package/esm2022/ui/table/src/table-column.component.mjs +23 -0
- package/esm2022/ui/table/src/table.component.mjs +94 -0
- package/esm2022/ui/tagBox/aril-ui-tagBox.mjs +5 -0
- package/esm2022/ui/tagBox/index.mjs +2 -0
- package/esm2022/ui/tagBox/src/tag-box.component.mjs +50 -0
- package/esm2022/ui/text/aril-ui-text.mjs +5 -0
- package/esm2022/ui/text/index.mjs +2 -0
- package/esm2022/ui/text/src/text.component.mjs +40 -0
- package/esm2022/ui/textArea/aril-ui-textArea.mjs +5 -0
- package/esm2022/ui/textArea/index.mjs +2 -0
- package/esm2022/ui/textArea/src/text-area.component.mjs +26 -0
- package/esm2022/ui/toggle-button/aril-ui-toggle-button.mjs +5 -0
- package/esm2022/ui/toggle-button/index.mjs +2 -0
- package/esm2022/ui/toggle-button/src/toggle-button.component.mjs +25 -0
- package/esm2022/ui/tree/aril-ui-tree.mjs +5 -0
- package/esm2022/ui/tree/index.mjs +2 -0
- package/esm2022/ui/tree/src/tree.component.mjs +34 -0
- package/esm2022/ui/treeTable/aril-ui-treeTable.mjs +5 -0
- package/esm2022/ui/treeTable/index.mjs +2 -0
- package/esm2022/ui/treeTable/src/tree-table.component.mjs +55 -0
- package/esm2022/ui/value/aril-ui-value.mjs +5 -0
- package/esm2022/ui/value/index.mjs +2 -0
- package/esm2022/ui/value/src/value.component.mjs +35 -0
- package/esm2022/util/aril-util.mjs +5 -0
- package/esm2022/util/block/aril-util-block.mjs +5 -0
- package/esm2022/util/block/index.mjs +2 -0
- package/esm2022/util/block/src/block.mjs +64 -0
- package/esm2022/util/custom_pages/aril-util-custom_pages.mjs +5 -0
- package/esm2022/util/custom_pages/index.mjs +2 -0
- package/esm2022/util/custom_pages/src/notFound.component.mjs +65 -0
- package/esm2022/util/index.mjs +2 -0
- package/esm2022/util/init-event/aril-util-init-event.mjs +5 -0
- package/esm2022/util/init-event/index.mjs +2 -0
- package/esm2022/util/init-event/src/init-event.directive.mjs +22 -0
- package/esm2022/util/lib/aril-util-lib.mjs +5 -0
- package/esm2022/util/lib/index.mjs +4 -0
- package/esm2022/util/lib/src/interfaces.mjs +4 -0
- package/esm2022/util/lib/src/module-router.mjs +17 -0
- package/esm2022/util/lib/src/types.mjs +3 -0
- package/esm2022/util/loaders/aril-util-loaders.mjs +5 -0
- package/esm2022/util/loaders/index.mjs +3 -0
- package/esm2022/util/loaders/script/script.loader.service.mjs +61 -0
- package/esm2022/util/loaders/style/style.loader.service.mjs +61 -0
- package/esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs +5 -0
- package/esm2022/util/primitive-extensions/index.mjs +5 -0
- package/esm2022/util/primitive-extensions/src/boolean.extensions.mjs +2 -0
- package/esm2022/util/primitive-extensions/src/date.extensions.mjs +116 -0
- package/esm2022/util/primitive-extensions/src/number.extensions.mjs +39 -0
- package/esm2022/util/primitive-extensions/src/string.extensions.mjs +23 -0
- package/esm2022/util/pub-sub/aril-util-pub-sub.mjs +5 -0
- package/esm2022/util/pub-sub/index.mjs +2 -0
- package/esm2022/util/pub-sub/src/pub-sub.service.mjs +29 -0
- package/fesm2022/aril-app.component-c363Er6g.mjs +76 -0
- package/fesm2022/aril-app.component-c363Er6g.mjs.map +1 -0
- package/fesm2022/aril-boot-config-api.mjs +59 -0
- package/fesm2022/aril-boot-config-api.mjs.map +1 -0
- package/fesm2022/aril-boot-config-apps.mjs +106 -0
- package/fesm2022/aril-boot-config-apps.mjs.map +1 -0
- package/fesm2022/aril-boot-config-plugins.mjs +84 -0
- package/fesm2022/aril-boot-config-plugins.mjs.map +1 -0
- package/fesm2022/aril-boot-host.mjs +86 -0
- package/fesm2022/aril-boot-host.mjs.map +1 -0
- package/fesm2022/aril-boot-mfe-app.component-WWRmTfs5.mjs +75 -0
- package/fesm2022/aril-boot-mfe-app.component-WWRmTfs5.mjs.map +1 -0
- package/fesm2022/aril-boot-mfe-aril-boot-mfe-PwAGdNZE.mjs +90 -0
- package/fesm2022/aril-boot-mfe-aril-boot-mfe-PwAGdNZE.mjs.map +1 -0
- package/fesm2022/aril-boot-mfe.mjs +16 -0
- package/fesm2022/aril-boot-mfe.mjs.map +1 -0
- package/fesm2022/aril-boot.mjs +8 -0
- package/fesm2022/aril-boot.mjs.map +1 -0
- package/fesm2022/aril-http.mjs +273 -0
- package/fesm2022/aril-http.mjs.map +1 -0
- package/fesm2022/aril-i18n.mjs +72 -0
- package/fesm2022/aril-i18n.mjs.map +1 -0
- package/fesm2022/aril-keycloak.mjs +129 -0
- package/fesm2022/aril-keycloak.mjs.map +1 -0
- package/fesm2022/aril-theme-layout.mjs +1010 -0
- package/fesm2022/aril-theme-layout.mjs.map +1 -0
- package/fesm2022/aril-theme.mjs +8 -0
- package/fesm2022/aril-theme.mjs.map +1 -0
- package/fesm2022/aril-ui-autoComplete.mjs +88 -0
- package/fesm2022/aril-ui-autoComplete.mjs.map +1 -0
- package/fesm2022/aril-ui-badge.mjs +26 -0
- package/fesm2022/aril-ui-badge.mjs.map +1 -0
- package/fesm2022/aril-ui-button.mjs +59 -0
- package/fesm2022/aril-ui-button.mjs.map +1 -0
- package/fesm2022/aril-ui-calendar.mjs +125 -0
- package/fesm2022/aril-ui-calendar.mjs.map +1 -0
- package/fesm2022/aril-ui-checkbox.mjs +47 -0
- package/fesm2022/aril-ui-checkbox.mjs.map +1 -0
- package/fesm2022/aril-ui-dxField.mjs +25 -0
- package/fesm2022/aril-ui-dxField.mjs.map +1 -0
- package/fesm2022/aril-ui-field.mjs +46 -0
- package/fesm2022/aril-ui-field.mjs.map +1 -0
- package/fesm2022/aril-ui-fileUpload.mjs +68 -0
- package/fesm2022/aril-ui-fileUpload.mjs.map +1 -0
- package/fesm2022/aril-ui-form.mjs +86 -0
- package/fesm2022/aril-ui-form.mjs.map +1 -0
- package/fesm2022/aril-ui-lib.mjs +322 -0
- package/fesm2022/aril-ui-lib.mjs.map +1 -0
- package/fesm2022/aril-ui-mask.mjs +42 -0
- package/fesm2022/aril-ui-mask.mjs.map +1 -0
- package/fesm2022/aril-ui-number.mjs +43 -0
- package/fesm2022/aril-ui-number.mjs.map +1 -0
- package/fesm2022/aril-ui-overlayPanel.mjs +27 -0
- package/fesm2022/aril-ui-overlayPanel.mjs.map +1 -0
- package/fesm2022/aril-ui-panel.mjs +31 -0
- package/fesm2022/aril-ui-panel.mjs.map +1 -0
- package/fesm2022/aril-ui-password.mjs +36 -0
- package/fesm2022/aril-ui-password.mjs.map +1 -0
- package/fesm2022/aril-ui-radioButton.mjs +37 -0
- package/fesm2022/aril-ui-radioButton.mjs.map +1 -0
- package/fesm2022/aril-ui-selectBox.mjs +61 -0
- package/fesm2022/aril-ui-selectBox.mjs.map +1 -0
- package/fesm2022/aril-ui-switch.mjs +30 -0
- package/fesm2022/aril-ui-switch.mjs.map +1 -0
- package/fesm2022/aril-ui-table.mjs +219 -0
- package/fesm2022/aril-ui-table.mjs.map +1 -0
- package/fesm2022/aril-ui-tagBox.mjs +57 -0
- package/fesm2022/aril-ui-tagBox.mjs.map +1 -0
- package/fesm2022/aril-ui-text.mjs +47 -0
- package/fesm2022/aril-ui-text.mjs.map +1 -0
- package/fesm2022/aril-ui-textArea.mjs +33 -0
- package/fesm2022/aril-ui-textArea.mjs.map +1 -0
- package/fesm2022/aril-ui-toggle-button.mjs +32 -0
- package/fesm2022/aril-ui-toggle-button.mjs.map +1 -0
- package/fesm2022/aril-ui-tree.mjs +41 -0
- package/fesm2022/aril-ui-tree.mjs.map +1 -0
- package/fesm2022/aril-ui-treeTable.mjs +62 -0
- package/fesm2022/aril-ui-treeTable.mjs.map +1 -0
- package/fesm2022/aril-ui-value.mjs +42 -0
- package/fesm2022/aril-ui-value.mjs.map +1 -0
- package/fesm2022/aril-ui.mjs +8 -0
- package/fesm2022/aril-ui.mjs.map +1 -0
- package/fesm2022/aril-util-block.mjs +71 -0
- package/fesm2022/aril-util-block.mjs.map +1 -0
- package/fesm2022/aril-util-custom_pages.mjs +72 -0
- package/fesm2022/aril-util-custom_pages.mjs.map +1 -0
- package/fesm2022/aril-util-init-event.mjs +29 -0
- package/fesm2022/aril-util-init-event.mjs.map +1 -0
- package/fesm2022/aril-util-lib.mjs +29 -0
- package/fesm2022/aril-util-lib.mjs.map +1 -0
- package/fesm2022/aril-util-loaders.mjs +126 -0
- package/fesm2022/aril-util-loaders.mjs.map +1 -0
- package/fesm2022/aril-util-primitive-extensions.mjs +179 -0
- package/fesm2022/aril-util-primitive-extensions.mjs.map +1 -0
- package/fesm2022/aril-util-pub-sub.mjs +36 -0
- package/fesm2022/aril-util-pub-sub.mjs.map +1 -0
- package/fesm2022/aril-util.mjs +8 -0
- package/fesm2022/aril-util.mjs.map +1 -0
- package/fesm2022/aril.mjs +157 -0
- package/fesm2022/aril.mjs.map +1 -0
- package/http/{index.ts → index.d.ts} +8 -13
- package/http/lib/enums.d.ts +13 -0
- package/http/lib/interfaces.d.ts +21 -0
- package/http/src/httpBackend.d.ts +8 -0
- package/http/src/httpClient.d.ts +8 -0
- package/http/src/interceptor/state-machine.interceptor.d.ts +2 -0
- package/http/src/serviceBase.d.ts +5 -0
- package/http/src/serviceMockBase.d.ts +6 -0
- package/http/src/serviceRequest.d.ts +4 -0
- package/http/src/serviceStateMethods.d.ts +14 -0
- package/i18n/{index.ts → index.d.ts} +5 -5
- package/i18n/src/folder-name-token.d.ts +2 -0
- package/i18n/src/i18n.module.d.ts +7 -0
- package/i18n/src/loader.d.ts +9 -0
- package/i18n/src/provideI18n.d.ts +2 -0
- package/i18n/src/provideScope.d.ts +5 -0
- package/index.d.ts +5 -0
- package/keycloak/{index.ts → index.d.ts} +3 -3
- package/keycloak/src/auth.guard.d.ts +11 -0
- package/keycloak/src/auth.interceptor.d.ts +2 -0
- package/keycloak/src/keycloak.manager.d.ts +25 -0
- package/package.json +314 -31
- package/{public-api.ts → public-api.d.ts} +2 -2
- package/theme/index.d.ts +1 -0
- package/theme/layout/app/breadcrumb/app.breadcrumb.component.d.ts +16 -0
- package/theme/layout/app/config/app.config.component.d.ts +36 -0
- package/theme/layout/app/layout/app.layout.component.d.ts +48 -0
- package/theme/layout/app/layout/mfe.layout.component.d.ts +8 -0
- package/theme/layout/app/menu/app.menu.component.d.ts +50 -0
- package/theme/layout/app/profileSidebar/app.profilesidebar.component.d.ts +13 -0
- package/theme/layout/app/sidebar/app.sidebar.component.d.ts +15 -0
- package/theme/layout/app/topbar/app.topbar.component.d.ts +16 -0
- package/theme/layout/index.d.ts +3 -0
- package/theme/layout/service/app.layout.service.d.ts +51 -0
- package/theme/layout/service/app.menu.service.d.ts +23 -0
- package/theme/layout/service/menuchangeevent.d.ts +4 -0
- package/ui/autoComplete/{index.ts → index.d.ts} +1 -1
- package/ui/autoComplete/src/auto-complete.component.d.ts +24 -0
- package/ui/autoComplete/src/interfaces.d.ts +24 -0
- package/ui/badge/{index.ts → index.d.ts} +1 -1
- package/ui/badge/src/badge.component.d.ts +11 -0
- package/ui/button/{index.ts → index.d.ts} +2 -2
- package/ui/button/src/button.component.d.ts +24 -0
- package/ui/button/src/split-button.component.d.ts +8 -0
- package/ui/calendar/{index.ts → index.d.ts} +1 -1
- package/ui/calendar/src/calendar.component.d.ts +38 -0
- package/ui/checkbox/{index.ts → index.d.ts} +2 -2
- package/ui/checkbox/src/check-box.component.d.ts +9 -0
- package/ui/checkbox/src/tri-state-checkbox.component.d.ts +9 -0
- package/ui/dxField/{index.ts → index.d.ts} +1 -1
- package/ui/dxField/src/dx-field.component.d.ts +9 -0
- package/ui/field/{index.ts → index.d.ts} +1 -1
- package/ui/field/src/field.component.d.ts +25 -0
- package/ui/fileUpload/{index.ts → index.d.ts} +1 -1
- package/ui/fileUpload/src/file-upload.component.d.ts +47 -0
- package/ui/form/index.d.ts +11 -0
- package/ui/form/src/form-submit-button.component.d.ts +14 -0
- package/ui/form/src/form.component.d.ts +8 -0
- package/ui/index.d.ts +1 -0
- package/ui/lib/{index.ts → index.d.ts} +11 -16
- package/ui/lib/src/form/form-error-message.component.d.ts +9 -0
- package/ui/lib/src/form/form-error-message.directive.d.ts +14 -0
- package/ui/lib/src/form/form-field-builder.d.ts +8 -0
- package/ui/lib/src/form/form-validation.d.ts +2 -0
- package/ui/lib/src/grid/flex-grid.directive.d.ts +6 -0
- package/ui/lib/src/input/baseInput.d.ts +7 -0
- package/ui/lib/src/input/common-input-validators.service.d.ts +20 -0
- package/ui/lib/src/input/dx-input-error-message.pipe.d.ts +11 -0
- package/ui/lib/src/input/input-disabled.directive.d.ts +9 -0
- package/ui/lib/src/input/input-error-message.pipe.d.ts +7 -0
- package/ui/lib/src/input/input-transforms.d.ts +5 -0
- package/ui/lib/src/input/value-accessor.directive.d.ts +9 -0
- package/ui/mask/{index.ts → index.d.ts} +1 -1
- package/ui/mask/src/mask.component.d.ts +21 -0
- package/ui/number/{index.ts → index.d.ts} +1 -1
- package/ui/number/src/number.component.d.ts +27 -0
- package/ui/overlayPanel/{index.ts → index.d.ts} +1 -1
- package/ui/overlayPanel/src/overlay-panel.component.d.ts +8 -0
- package/ui/panel/{index.ts → index.d.ts} +1 -1
- package/ui/panel/src/panel.component.d.ts +10 -0
- package/ui/password/{index.ts → index.d.ts} +1 -1
- package/ui/password/src/password.component.d.ts +11 -0
- package/ui/radioButton/{index.ts → index.d.ts} +1 -1
- package/ui/radioButton/src/radio-button.component.d.ts +20 -0
- package/ui/selectBox/{index.ts → index.d.ts} +1 -1
- package/ui/selectBox/src/interfaces.d.ts +32 -0
- package/ui/selectBox/src/select-box.component.d.ts +25 -0
- package/ui/switch/{index.ts → index.d.ts} +1 -1
- package/ui/switch/src/switch.component.d.ts +8 -0
- package/ui/table/index.d.ts +16 -0
- package/ui/table/src/i18n.d.ts +42 -0
- package/ui/table/src/table-column.component.d.ts +24 -0
- package/ui/table/src/table.component.d.ts +41 -0
- package/ui/tagBox/{index.ts → index.d.ts} +1 -1
- package/ui/tagBox/src/tag-box.component.d.ts +15 -0
- package/ui/text/{index.ts → index.d.ts} +1 -1
- package/ui/text/src/text.component.d.ts +17 -0
- package/ui/textArea/{index.ts → index.d.ts} +1 -1
- package/ui/textArea/src/text-area.component.d.ts +11 -0
- package/ui/toggle-button/index.d.ts +1 -0
- package/ui/toggle-button/src/toggle-button.component.d.ts +10 -0
- package/ui/tree/{index.ts → index.d.ts} +1 -1
- package/ui/tree/src/tree.component.d.ts +19 -0
- package/ui/treeTable/{index.ts → index.d.ts} +1 -1
- package/ui/treeTable/src/tree-table.component.d.ts +21 -0
- package/ui/value/{index.ts → index.d.ts} +1 -1
- package/ui/value/src/value.component.d.ts +13 -0
- package/util/block/{index.ts → index.d.ts} +1 -1
- package/util/block/src/block.d.ts +28 -0
- package/util/custom_pages/{index.ts → index.d.ts} +1 -1
- package/util/custom_pages/src/notFound.component.d.ts +5 -0
- package/util/index.d.ts +1 -0
- package/util/init-event/{index.ts → index.d.ts} +1 -1
- package/util/init-event/src/init-event.directive.d.ts +8 -0
- package/util/lib/{index.ts → index.d.ts} +3 -3
- package/util/lib/src/interfaces.d.ts +41 -0
- package/util/lib/src/module-router.d.ts +5 -0
- package/util/lib/src/types.d.ts +29 -0
- package/util/loaders/{index.ts → index.d.ts} +2 -2
- package/util/loaders/script/script.loader.service.d.ts +13 -0
- package/util/loaders/style/style.loader.service.d.ts +13 -0
- package/util/primitive-extensions/{index.ts → index.d.ts} +4 -4
- package/util/primitive-extensions/src/{boolean.extensions.ts → boolean.extensions.d.ts} +1 -1
- package/util/primitive-extensions/src/date.extensions.d.ts +8 -0
- package/util/primitive-extensions/src/number.extensions.d.ts +12 -0
- package/util/primitive-extensions/src/string.extensions.d.ts +11 -0
- package/util/pub-sub/{index.ts → index.d.ts} +1 -1
- package/util/pub-sub/src/pub-sub.service.d.ts +20 -0
- package/.eslintrc.json +0 -41
- package/boot/config/api/ng-package.json +0 -6
- package/boot/config/api/src/api.service.ts +0 -57
- package/boot/config/api/src/interfaces.ts +0 -13
- package/boot/config/apps/ng-package.json +0 -6
- package/boot/config/apps/src/apps.service.ts +0 -64
- package/boot/config/apps/src/interfaces.ts +0 -27
- package/boot/config/apps/src/showdowDOMWrapper.ts +0 -28
- package/boot/config/plugins/ng-package.json +0 -6
- package/boot/config/plugins/src/getNgZone.ts +0 -9
- package/boot/config/plugins/src/interfaces.ts +0 -11
- package/boot/config/plugins/src/plugins.service.ts +0 -82
- package/boot/host/ng-package.json +0 -6
- package/boot/host/src/app.component.ts +0 -27
- package/boot/host/src/bootstrap.ts +0 -61
- package/boot/index.ts +0 -1
- package/boot/mfe/ng-package.json +0 -6
- package/boot/mfe/src/app.component.ts +0 -57
- package/boot/mfe/src/appComponentLoader.ts +0 -4
- package/boot/mfe/src/bootstrap.ts +0 -78
- package/boot/mfe/src/loadStyles.ts +0 -19
- package/boot/ng-package.json +0 -6
- package/http/lib/enums.ts +0 -13
- package/http/lib/interfaces.ts +0 -38
- package/http/ng-package.json +0 -6
- package/http/src/httpBackend.ts +0 -12
- package/http/src/httpClient.ts +0 -20
- package/http/src/interceptor/state-machine.interceptor.ts +0 -9
- package/http/src/serviceBase.ts +0 -91
- package/http/src/serviceMockBase.ts +0 -12
- package/http/src/serviceRequest.ts +0 -26
- package/http/src/serviceStateMethods.ts +0 -155
- package/i18n/ng-package.json +0 -6
- package/i18n/src/folder-name-token.ts +0 -3
- package/i18n/src/i18n.module.ts +0 -11
- package/i18n/src/loader.ts +0 -16
- package/i18n/src/provideI18n.ts +0 -18
- package/i18n/src/provideScope.ts +0 -20
- package/keycloak/ng-package.json +0 -6
- package/keycloak/src/auth.guard.ts +0 -37
- package/keycloak/src/auth.interceptor.ts +0 -13
- package/keycloak/src/keycloak.manager.ts +0 -89
- package/ng-package.json +0 -14
- package/project.json +0 -39
- package/tsconfig.lib.json +0 -12
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -9
- package/ui/autoComplete/ng-package.json +0 -6
- package/ui/autoComplete/src/auto-complete.component.html +0 -11
- package/ui/autoComplete/src/auto-complete.component.ts +0 -92
- package/ui/autoComplete/src/interfaces.ts +0 -30
- package/ui/badge/ng-package.json +0 -6
- package/ui/badge/src/badge.component.html +0 -3
- package/ui/badge/src/badge.component.ts +0 -19
- package/ui/button/ng-package.json +0 -6
- package/ui/button/src/button.component.html +0 -10
- package/ui/button/src/button.component.ts +0 -43
- package/ui/button/src/split-button.component.html +0 -2
- package/ui/button/src/split-button.component.ts +0 -17
- package/ui/calendar/ng-package.json +0 -6
- package/ui/calendar/src/calendar.component.html +0 -31
- package/ui/calendar/src/calendar.component.ts +0 -136
- package/ui/checkbox/ng-package.json +0 -6
- package/ui/checkbox/src/check-box.component.html +0 -9
- package/ui/checkbox/src/check-box.component.ts +0 -19
- package/ui/checkbox/src/tri-state-checkbox.component.html +0 -7
- package/ui/checkbox/src/tri-state-checkbox.component.ts +0 -20
- package/ui/dxField/ng-package.json +0 -6
- package/ui/dxField/src/dx-field.component.html +0 -8
- package/ui/dxField/src/dx-field.component.ts +0 -16
- package/ui/field/ng-package.json +0 -6
- package/ui/field/src/field.component.html +0 -22
- package/ui/field/src/field.component.ts +0 -46
- package/ui/fileUpload/ng-package.json +0 -6
- package/ui/fileUpload/src/file-upload.component.html +0 -38
- package/ui/fileUpload/src/file-upload.component.ts +0 -72
- package/ui/form/index.ts +0 -18
- package/ui/form/ng-package.json +0 -6
- package/ui/form/src/form-submit-button.component.html +0 -12
- package/ui/form/src/form-submit-button.component.ts +0 -36
- package/ui/form/src/form.component.ts +0 -20
- package/ui/index.ts +0 -1
- package/ui/lib/ng-package.json +0 -6
- package/ui/lib/src/form/form-error-message.component.ts +0 -25
- package/ui/lib/src/form/form-error-message.directive.ts +0 -32
- package/ui/lib/src/form/form-field-builder.ts +0 -31
- package/ui/lib/src/form/form-validation.ts +0 -14
- package/ui/lib/src/grid/flex-grid.directive.ts +0 -10
- package/ui/lib/src/input/baseInput.ts +0 -30
- package/ui/lib/src/input/common-input-validators.service.ts +0 -57
- package/ui/lib/src/input/dx-input-error-message.pipe.ts +0 -16
- package/ui/lib/src/input/input-disabled.directive.ts +0 -15
- package/ui/lib/src/input/input-error-message.pipe.ts +0 -39
- package/ui/lib/src/input/input-transforms.ts +0 -11
- package/ui/lib/src/input/value-accessor.directive.ts +0 -27
- package/ui/mask/ng-package.json +0 -6
- package/ui/mask/src/mask.component.css +0 -23
- package/ui/mask/src/mask.component.html +0 -17
- package/ui/mask/src/mask.component.ts +0 -34
- package/ui/ng-package.json +0 -6
- package/ui/number/ng-package.json +0 -6
- package/ui/number/src/number.component.html +0 -25
- package/ui/number/src/number.component.ts +0 -34
- package/ui/overlayPanel/ng-package.json +0 -6
- package/ui/overlayPanel/src/overlay-panel.component.html +0 -5
- package/ui/overlayPanel/src/overlay-panel.component.ts +0 -16
- package/ui/panel/ng-package.json +0 -6
- package/ui/panel/src/panel.component.css +0 -25
- package/ui/panel/src/panel.component.html +0 -38
- package/ui/panel/src/panel.component.ts +0 -24
- package/ui/password/ng-package.json +0 -6
- package/ui/password/src/password.component.html +0 -24
- package/ui/password/src/password.component.ts +0 -22
- package/ui/radioButton/ng-package.json +0 -6
- package/ui/radioButton/src/radio-button.component.html +0 -17
- package/ui/radioButton/src/radio-button.component.ts +0 -36
- package/ui/selectBox/ng-package.json +0 -6
- package/ui/selectBox/src/interfaces.ts +0 -41
- package/ui/selectBox/src/select-box.component.html +0 -17
- package/ui/selectBox/src/select-box.component.ts +0 -69
- package/ui/switch/ng-package.json +0 -6
- package/ui/switch/src/switch.component.html +0 -7
- package/ui/switch/src/switch.component.ts +0 -18
- package/ui/table/index.ts +0 -34
- package/ui/table/ng-package.json +0 -6
- package/ui/table/src/i18n.ts +0 -55
- package/ui/table/src/table-column.component.ts +0 -28
- package/ui/table/src/table.component.html +0 -136
- package/ui/table/src/table.component.ts +0 -99
- package/ui/tagBox/ng-package.json +0 -6
- package/ui/tagBox/src/tag-box.component.html +0 -21
- package/ui/tagBox/src/tag-box.component.ts +0 -53
- package/ui/text/ng-package.json +0 -6
- package/ui/text/src/text.component.html +0 -21
- package/ui/text/src/text.component.ts +0 -47
- package/ui/textArea/ng-package.json +0 -6
- package/ui/textArea/src/text-area.component.html +0 -11
- package/ui/textArea/src/text-area.component.ts +0 -21
- package/ui/toggle-button/index.ts +0 -1
- package/ui/toggle-button/ng-package.json +0 -6
- package/ui/toggle-button/src/toggle-button.component.html +0 -13
- package/ui/toggle-button/src/toggle-button.component.scss +0 -19
- package/ui/toggle-button/src/toggle-button.component.ts +0 -22
- package/ui/tree/ng-package.json +0 -6
- package/ui/tree/src/tree.component.html +0 -16
- package/ui/tree/src/tree.component.ts +0 -52
- package/ui/treeTable/ng-package.json +0 -6
- package/ui/treeTable/src/tree-table.component.html +0 -88
- package/ui/treeTable/src/tree-table.component.ts +0 -57
- package/ui/value/ng-package.json +0 -6
- package/ui/value/src/value.component.html +0 -19
- package/ui/value/src/value.component.ts +0 -39
- package/util/block/ng-package.json +0 -6
- package/util/block/src/block.ts +0 -65
- package/util/custom_pages/ng-package.json +0 -6
- package/util/custom_pages/src/notFound.component.ts +0 -34
- package/util/index.ts +0 -1
- package/util/init-event/ng-package.json +0 -6
- package/util/init-event/src/init-event.directive.ts +0 -13
- package/util/lib/ng-package.json +0 -6
- package/util/lib/src/interfaces.ts +0 -44
- package/util/lib/src/module-router.ts +0 -10
- package/util/lib/src/types.ts +0 -49
- package/util/loaders/ng-package.json +0 -6
- package/util/loaders/script/script.loader.service.ts +0 -69
- package/util/loaders/style/style.loader.service.ts +0 -69
- package/util/ng-package.json +0 -6
- package/util/primitive-extensions/ng-package.json +0 -6
- package/util/primitive-extensions/src/date.extensions.ts +0 -135
- package/util/primitive-extensions/src/number.extensions.ts +0 -57
- package/util/primitive-extensions/src/string.extensions.ts +0 -39
- package/util/pub-sub/ng-package.json +0 -6
- package/util/pub-sub/src/pub-sub.service.ts +0 -34
- /package/boot/config/{api/src/api.sample.json → api.sample.json} +0 -0
- /package/{util/block/src → scripts/util}/blockui.min.js +0 -0
- /package/{ui/styles → styles/ui}/ui.common.scss +0 -0
- /package/{util/block/src → styles/util}/blockui.css +0 -0
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { Apps } from 'aril/boot/config/apps';
|
|
2
|
-
import { StyleLoaderService } from 'aril/util/loaders';
|
|
3
|
-
|
|
4
|
-
export function loadStyles(styleLoaderService: StyleLoaderService, appName: Apps): () => Promise<any> {
|
|
5
|
-
const styles = [
|
|
6
|
-
'layout.css',
|
|
7
|
-
'ui.common.css',
|
|
8
|
-
'preloading.css',
|
|
9
|
-
'primeng.min.css',
|
|
10
|
-
'theme.light.indigo.css',
|
|
11
|
-
'dx.fluent.saas.light.css',
|
|
12
|
-
`assets/${appName}/styles/primeflex/primeflex.min.css`,
|
|
13
|
-
`assets/${appName}/styles/primeicons/primeicons.css`
|
|
14
|
-
];
|
|
15
|
-
|
|
16
|
-
if ((<any>globalThis).isHostMode) return () => Promise.resolve();
|
|
17
|
-
|
|
18
|
-
return () => styleLoaderService.load(styles);
|
|
19
|
-
}
|
package/boot/ng-package.json
DELETED
package/http/lib/enums.ts
DELETED
package/http/lib/interfaces.ts
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
-
|
|
3
|
-
/* eslint-disable @typescript-eslint/ban-types */
|
|
4
|
-
import { HttpErrorResponse } from '@angular/common/http';
|
|
5
|
-
|
|
6
|
-
import { ProxyTypes } from './enums';
|
|
7
|
-
|
|
8
|
-
export interface ServiceCallStates {
|
|
9
|
-
serviceCalled: boolean;
|
|
10
|
-
waitingForResponse: boolean;
|
|
11
|
-
responseIsRecieved: boolean;
|
|
12
|
-
serviceCallFailed: boolean;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export type ServiceCallStateMap<T> = {
|
|
16
|
-
[K in keyof T]?: T[K] extends Function ? ServiceCallStates : never;
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
export class ErrorResponse {
|
|
20
|
-
error: HttpErrorResponse | undefined;
|
|
21
|
-
|
|
22
|
-
constructor(err: HttpErrorResponse | undefined) {
|
|
23
|
-
this.error = err;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export class ServiceResponse<T> extends ErrorResponse {
|
|
28
|
-
request: any;
|
|
29
|
-
response: T;
|
|
30
|
-
proxy: ProxyTypes;
|
|
31
|
-
|
|
32
|
-
constructor(request: any, response: T, proxy: ProxyTypes) {
|
|
33
|
-
super(undefined);
|
|
34
|
-
this.request = request;
|
|
35
|
-
this.response = response;
|
|
36
|
-
this.proxy = proxy;
|
|
37
|
-
}
|
|
38
|
-
}
|
package/http/ng-package.json
DELETED
package/http/src/httpBackend.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { HttpBackend, HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Injectable } from '@angular/core';
|
|
3
|
-
|
|
4
|
-
// WithoutInterceptorHttpClient
|
|
5
|
-
@Injectable({ providedIn: 'root' })
|
|
6
|
-
export class HttpBackendService {
|
|
7
|
-
public httpClient: HttpClient;
|
|
8
|
-
|
|
9
|
-
constructor(handler: HttpBackend) {
|
|
10
|
-
this.httpClient = new HttpClient(handler);
|
|
11
|
-
}
|
|
12
|
-
}
|
package/http/src/httpClient.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
-
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import { Injector, inject } from '@angular/core';
|
|
4
|
-
|
|
5
|
-
import { MessageService } from 'primeng/api';
|
|
6
|
-
|
|
7
|
-
import { TranslocoService } from '@ngneat/transloco';
|
|
8
|
-
|
|
9
|
-
// import { KeycloakService } from 'keycloak-angular';
|
|
10
|
-
import { ServiceCallStateMap } from '../lib/interfaces';
|
|
11
|
-
|
|
12
|
-
export abstract class RestClient {
|
|
13
|
-
private readonly httpClient = inject(HttpClient);
|
|
14
|
-
private readonly injector = inject(Injector);
|
|
15
|
-
private readonly messageService = inject(MessageService);
|
|
16
|
-
private readonly translocoService = inject(TranslocoService);
|
|
17
|
-
// private readonly keycloak = inject(KeycloakService);
|
|
18
|
-
|
|
19
|
-
abstract states: ServiceCallStateMap<any>;
|
|
20
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { HttpHandlerFn, HttpInterceptorFn, HttpRequest } from '@angular/common/http';
|
|
2
|
-
|
|
3
|
-
export const stateMachineInterceptor: HttpInterceptorFn = (req: HttpRequest<unknown>, next: HttpHandlerFn) => {
|
|
4
|
-
let clone = req;
|
|
5
|
-
if (req.url.includes('state-machine/v1')) {
|
|
6
|
-
clone = req.clone({ url: req.url.split('/host/v1').join('') });
|
|
7
|
-
}
|
|
8
|
-
return next(clone);
|
|
9
|
-
};
|
package/http/src/serviceBase.ts
DELETED
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
-
import { HttpClient, HttpErrorResponse, HttpParams } from '@angular/common/http';
|
|
3
|
-
import { runInInjectionContext } from '@angular/core';
|
|
4
|
-
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
|
5
|
-
|
|
6
|
-
import { Observable, of } from 'rxjs';
|
|
7
|
-
import { catchError, map, tap } from 'rxjs/operators';
|
|
8
|
-
|
|
9
|
-
import { API_CONFIGS } from 'aril/boot/config/api';
|
|
10
|
-
|
|
11
|
-
import { HTTPMethods, ProxyTypes } from '../lib/enums';
|
|
12
|
-
import { ErrorResponse, ServiceCallStateMap, ServiceResponse } from '../lib/interfaces';
|
|
13
|
-
import { getRequest } from './serviceRequest';
|
|
14
|
-
import { callState, errorState, successState } from './serviceStateMethods';
|
|
15
|
-
|
|
16
|
-
export function ServiceCall(
|
|
17
|
-
httpMethod: HTTPMethods,
|
|
18
|
-
proxy: ProxyTypes,
|
|
19
|
-
serviceURL: string,
|
|
20
|
-
message?: { success?: string; error?: string },
|
|
21
|
-
remoteAPI?: string,
|
|
22
|
-
isMockAPI = false
|
|
23
|
-
): MethodDecorator {
|
|
24
|
-
return function (serviceClass: object, serviceName: string | symbol, descriptor: PropertyDescriptor) {
|
|
25
|
-
// const originalFunction = descriptor.value;
|
|
26
|
-
|
|
27
|
-
descriptor.value = function (...args: any[]) {
|
|
28
|
-
return runInInjectionContext((<any>this).injector, () => {
|
|
29
|
-
const httpClient: HttpClient = (<any>this).httpClient;
|
|
30
|
-
|
|
31
|
-
let api = '';
|
|
32
|
-
if (isMockAPI) api = <string>remoteAPI;
|
|
33
|
-
else if (remoteAPI) {
|
|
34
|
-
const url = new URL(API_CONFIGS.api);
|
|
35
|
-
api = url.origin + '/' + remoteAPI;
|
|
36
|
-
} else api = API_CONFIGS.api;
|
|
37
|
-
|
|
38
|
-
const endPoint = api + '/' + serviceURL;
|
|
39
|
-
const request = getRequest(httpMethod, args);
|
|
40
|
-
const states: ServiceCallStateMap<any> = (<any>this).states;
|
|
41
|
-
|
|
42
|
-
callState(states, serviceName);
|
|
43
|
-
|
|
44
|
-
let observable: Observable<any> = new Observable<any>();
|
|
45
|
-
|
|
46
|
-
switch (httpMethod) {
|
|
47
|
-
case HTTPMethods.GET:
|
|
48
|
-
let getReq = args.length ? '/' + args[0] : '';
|
|
49
|
-
observable = httpClient.get<any>(endPoint + getReq, { responseType: 'json' });
|
|
50
|
-
break;
|
|
51
|
-
case HTTPMethods.GETBYPARAMS:
|
|
52
|
-
observable = httpClient.get<any>(endPoint, { params: request as HttpParams, responseType: 'json' });
|
|
53
|
-
break;
|
|
54
|
-
case HTTPMethods.POST:
|
|
55
|
-
observable = httpClient.post<any>(endPoint, args[0], { responseType: 'json' });
|
|
56
|
-
break;
|
|
57
|
-
case HTTPMethods.PUT:
|
|
58
|
-
observable = httpClient.put<any>(endPoint + '/' + args[0], request, { responseType: 'json' });
|
|
59
|
-
break;
|
|
60
|
-
case HTTPMethods.DELETE:
|
|
61
|
-
observable = httpClient.delete<any>(endPoint + '/' + args[0], { responseType: 'json' });
|
|
62
|
-
break;
|
|
63
|
-
case HTTPMethods.DELETEBYPARAMS:
|
|
64
|
-
observable = httpClient.delete<any>(endPoint, { params: request as HttpParams, responseType: 'json' });
|
|
65
|
-
break;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
observable = observable.pipe(
|
|
69
|
-
map((response) => new ServiceResponse(request, response, proxy)),
|
|
70
|
-
tap((resp) =>
|
|
71
|
-
successState(
|
|
72
|
-
states,
|
|
73
|
-
serviceName,
|
|
74
|
-
(<any>this).translocoService,
|
|
75
|
-
(<any>this).messageService,
|
|
76
|
-
message,
|
|
77
|
-
resp.response
|
|
78
|
-
)
|
|
79
|
-
),
|
|
80
|
-
catchError((error: HttpErrorResponse) => {
|
|
81
|
-
errorState(states, serviceName, error, (<any>this).translocoService, (<any>this).messageService, message);
|
|
82
|
-
return of(new ErrorResponse(error));
|
|
83
|
-
}),
|
|
84
|
-
takeUntilDestroyed()
|
|
85
|
-
);
|
|
86
|
-
|
|
87
|
-
return observable;
|
|
88
|
-
});
|
|
89
|
-
};
|
|
90
|
-
};
|
|
91
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { HTTPMethods, ProxyTypes } from '../lib/enums';
|
|
2
|
-
import { ServiceCall } from './serviceBase';
|
|
3
|
-
|
|
4
|
-
export function ServiceCallMock(
|
|
5
|
-
httpMethod: HTTPMethods,
|
|
6
|
-
proxy: ProxyTypes,
|
|
7
|
-
serviceURL: string,
|
|
8
|
-
mockAPI: string,
|
|
9
|
-
message?: { success?: string; error?: string; useDefault: boolean }
|
|
10
|
-
) {
|
|
11
|
-
return ServiceCall(httpMethod, proxy, serviceURL, message, mockAPI, true);
|
|
12
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { HttpParams } from '@angular/common/http';
|
|
2
|
-
|
|
3
|
-
import { Interfaces } from 'aril/util/lib';
|
|
4
|
-
|
|
5
|
-
import { HTTPMethods } from '../lib/enums';
|
|
6
|
-
|
|
7
|
-
export function getRequest(httpMethod: HTTPMethods, args: any[]): HttpParams | Interfaces.MapStringAny | undefined {
|
|
8
|
-
if (!args.length) return undefined;
|
|
9
|
-
|
|
10
|
-
switch (httpMethod) {
|
|
11
|
-
case HTTPMethods.PUT:
|
|
12
|
-
return args[1];
|
|
13
|
-
case HTTPMethods.GETBYPARAMS:
|
|
14
|
-
case HTTPMethods.DELETEBYPARAMS:
|
|
15
|
-
const dto = args[0];
|
|
16
|
-
let queryParams = new HttpParams();
|
|
17
|
-
|
|
18
|
-
for (const [key, value] of Object.entries(dto)) {
|
|
19
|
-
queryParams = queryParams.append(key, value as any);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
return queryParams;
|
|
23
|
-
default:
|
|
24
|
-
return args[0];
|
|
25
|
-
}
|
|
26
|
-
}
|
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
-
import { HttpErrorResponse } from '@angular/common/http';
|
|
3
|
-
|
|
4
|
-
import { MessageService } from 'primeng/api';
|
|
5
|
-
|
|
6
|
-
import { TranslocoService } from '@ngneat/transloco';
|
|
7
|
-
|
|
8
|
-
import { ServiceCallStateMap } from '../lib/interfaces';
|
|
9
|
-
|
|
10
|
-
export const callState = (states: ServiceCallStateMap<any>, serviceName: any): void => {
|
|
11
|
-
states[serviceName] = {
|
|
12
|
-
serviceCalled: true,
|
|
13
|
-
waitingForResponse: true,
|
|
14
|
-
responseIsRecieved: false,
|
|
15
|
-
serviceCallFailed: false
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
export const successState = (
|
|
20
|
-
states: ServiceCallStateMap<any>,
|
|
21
|
-
serviceName: any,
|
|
22
|
-
translocoService: TranslocoService,
|
|
23
|
-
messageService: MessageService,
|
|
24
|
-
message?: { success?: string; error?: string },
|
|
25
|
-
response?: any
|
|
26
|
-
): void => {
|
|
27
|
-
states[serviceName] = {
|
|
28
|
-
serviceCalled: true,
|
|
29
|
-
waitingForResponse: false,
|
|
30
|
-
responseIsRecieved: true,
|
|
31
|
-
serviceCallFailed: false
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
if (message?.success) {
|
|
35
|
-
messageService.add({
|
|
36
|
-
key: 'toast-root',
|
|
37
|
-
severity: 'success',
|
|
38
|
-
summary: getTranslatedMessage(<string>message.success, translocoService, response)
|
|
39
|
-
});
|
|
40
|
-
}
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
export const errorState = (
|
|
44
|
-
states: ServiceCallStateMap<any>,
|
|
45
|
-
serviceName: any,
|
|
46
|
-
error: HttpErrorResponse,
|
|
47
|
-
translocoService: TranslocoService,
|
|
48
|
-
messageService: MessageService,
|
|
49
|
-
message?: { success?: string; error?: string, display?:string }
|
|
50
|
-
): void => {
|
|
51
|
-
states[serviceName] = {
|
|
52
|
-
serviceCalled: true,
|
|
53
|
-
waitingForResponse: false,
|
|
54
|
-
responseIsRecieved: true,
|
|
55
|
-
serviceCallFailed: true
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
let httpError: string;
|
|
59
|
-
|
|
60
|
-
switch (error.status) {
|
|
61
|
-
case 400:
|
|
62
|
-
httpError = 'Bad Request';
|
|
63
|
-
break;
|
|
64
|
-
case 401:
|
|
65
|
-
httpError = 'Unauthorized';
|
|
66
|
-
break;
|
|
67
|
-
case 403:
|
|
68
|
-
httpError = 'Forbidden';
|
|
69
|
-
break;
|
|
70
|
-
case 404:
|
|
71
|
-
httpError = 'Not Found';
|
|
72
|
-
break;
|
|
73
|
-
case 405:
|
|
74
|
-
httpError = 'Method Not Allowed';
|
|
75
|
-
break;
|
|
76
|
-
case 406:
|
|
77
|
-
httpError = 'Not Acceptable';
|
|
78
|
-
break;
|
|
79
|
-
case 408:
|
|
80
|
-
httpError = 'Request Timeout';
|
|
81
|
-
break;
|
|
82
|
-
case 409:
|
|
83
|
-
httpError = 'Conflict';
|
|
84
|
-
break;
|
|
85
|
-
case 500:
|
|
86
|
-
httpError = 'Internal Server Error';
|
|
87
|
-
break;
|
|
88
|
-
case 501:
|
|
89
|
-
httpError = 'Not Implemented';
|
|
90
|
-
break;
|
|
91
|
-
case 502:
|
|
92
|
-
httpError = 'Bad Gateway';
|
|
93
|
-
break;
|
|
94
|
-
case 503:
|
|
95
|
-
httpError = 'Service Unavailable';
|
|
96
|
-
break;
|
|
97
|
-
case 504:
|
|
98
|
-
httpError = 'Gateway Timeout';
|
|
99
|
-
break;
|
|
100
|
-
case 505:
|
|
101
|
-
httpError = 'HTTP Version Not Supported';
|
|
102
|
-
break;
|
|
103
|
-
case 511:
|
|
104
|
-
httpError = 'Network Authentication Required';
|
|
105
|
-
break;
|
|
106
|
-
default:
|
|
107
|
-
httpError = error?.error?.message;
|
|
108
|
-
break;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
messageService.add({
|
|
112
|
-
key: 'toast-root',
|
|
113
|
-
severity: 'error',
|
|
114
|
-
summary: httpError,
|
|
115
|
-
detail: error?.error?.display ? error?.error?.display : error?.error?.message
|
|
116
|
-
});
|
|
117
|
-
|
|
118
|
-
if (message?.error) {
|
|
119
|
-
messageService.add({
|
|
120
|
-
key: 'toast-root',
|
|
121
|
-
severity: 'error',
|
|
122
|
-
summary: error?.error?.display ? error?.error?.display : getTranslatedMessage(<string>message.error, translocoService)
|
|
123
|
-
});
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
};
|
|
127
|
-
|
|
128
|
-
const getTranslatedMessage = (messageCode: string, translocoService: TranslocoService, response?: any): string => {
|
|
129
|
-
const translateObject = translocoService.getTranslation().get(translocoService.getActiveLang());
|
|
130
|
-
let translatedMessage = translateObject?.[messageCode] ?? messageCode;
|
|
131
|
-
|
|
132
|
-
const paramStartSymbol = '{{';
|
|
133
|
-
const paramEndSymbol = '}}';
|
|
134
|
-
|
|
135
|
-
if (response && translatedMessage.includes(paramStartSymbol) && translatedMessage.includes(paramEndSymbol)) {
|
|
136
|
-
do {
|
|
137
|
-
let paramStartIndex = translatedMessage.indexOf(paramStartSymbol);
|
|
138
|
-
let paramEndIndex = translatedMessage.indexOf(paramEndSymbol);
|
|
139
|
-
let paramKey = translatedMessage.slice(paramStartIndex + paramStartSymbol.length, paramEndIndex);
|
|
140
|
-
|
|
141
|
-
// Splitting the key to get nested object values
|
|
142
|
-
let paramKeyList = paramKey.split('.');
|
|
143
|
-
let paramValue;
|
|
144
|
-
|
|
145
|
-
for (let key of paramKeyList) {
|
|
146
|
-
paramValue = paramValue ? paramValue[key] : response[key];
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
let replacePattern = `${paramStartSymbol}${paramKey}${paramEndSymbol}`;
|
|
150
|
-
translatedMessage = translatedMessage.replace(replacePattern, paramValue);
|
|
151
|
-
} while (translatedMessage.includes(paramStartSymbol));
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
return translatedMessage;
|
|
155
|
-
};
|
package/i18n/ng-package.json
DELETED
package/i18n/src/i18n.module.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
import { TranslocoModule } from '@ngneat/transloco';
|
|
4
|
-
|
|
5
|
-
import { i18nProvider } from './provideI18n';
|
|
6
|
-
|
|
7
|
-
@NgModule({
|
|
8
|
-
exports: [TranslocoModule],
|
|
9
|
-
providers: [i18nProvider()]
|
|
10
|
-
})
|
|
11
|
-
export class i18nModule {}
|
package/i18n/src/loader.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Injectable, inject } from '@angular/core';
|
|
3
|
-
|
|
4
|
-
import { Translation, TranslocoLoader } from '@ngneat/transloco';
|
|
5
|
-
|
|
6
|
-
import { i18nFolderName } from './folder-name-token';
|
|
7
|
-
|
|
8
|
-
@Injectable({ providedIn: 'root' })
|
|
9
|
-
export class TranslocoHttpLoader implements TranslocoLoader {
|
|
10
|
-
private http = inject(HttpClient);
|
|
11
|
-
private folderUrl = inject(i18nFolderName);
|
|
12
|
-
|
|
13
|
-
getTranslation(lang: string) {
|
|
14
|
-
return this.http.get<Translation>(`./assets/${this.folderUrl}/i18n/${lang}.json`);
|
|
15
|
-
}
|
|
16
|
-
}
|
package/i18n/src/provideI18n.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { EnvironmentProviders, isDevMode } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
import { provideTransloco } from '@ngneat/transloco';
|
|
4
|
-
|
|
5
|
-
import { TranslocoHttpLoader } from './loader';
|
|
6
|
-
|
|
7
|
-
export const i18nProvider = (): EnvironmentProviders[] => {
|
|
8
|
-
return provideTransloco({
|
|
9
|
-
config: {
|
|
10
|
-
availableLangs: ['tr', 'en'],
|
|
11
|
-
defaultLang: 'tr',
|
|
12
|
-
fallbackLang: 'tr',
|
|
13
|
-
reRenderOnLangChange: true,
|
|
14
|
-
prodMode: !isDevMode()
|
|
15
|
-
},
|
|
16
|
-
loader: TranslocoHttpLoader
|
|
17
|
-
});
|
|
18
|
-
};
|
package/i18n/src/provideScope.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { provideTranslocoScope } from '@ngneat/transloco';
|
|
2
|
-
|
|
3
|
-
const languages = ['tr', 'en'];
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* @param loader `(lang: string) => import(`./i18n/${lang}.json`)` to create a relative import to the correct dir
|
|
7
|
-
*/
|
|
8
|
-
function i18nLoaderFactory(loader: (lang: string) => Promise<any>) {
|
|
9
|
-
return languages.reduce((acc: any, lang) => {
|
|
10
|
-
acc[lang] = () => loader(lang);
|
|
11
|
-
return acc;
|
|
12
|
-
}, {});
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export const providei18nScope = (scopeName: string, loader: (lang: string) => Promise<any>) => {
|
|
16
|
-
return provideTranslocoScope({
|
|
17
|
-
scope: scopeName,
|
|
18
|
-
loader: i18nLoaderFactory(loader)
|
|
19
|
-
});
|
|
20
|
-
};
|
package/keycloak/ng-package.json
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { ActivatedRouteSnapshot, Router, RouterStateSnapshot } from '@angular/router';
|
|
3
|
-
|
|
4
|
-
import { KeycloakAuthGuard, KeycloakService } from 'keycloak-angular';
|
|
5
|
-
|
|
6
|
-
@Injectable({
|
|
7
|
-
providedIn: 'root'
|
|
8
|
-
})
|
|
9
|
-
export class AuthGuard extends KeycloakAuthGuard {
|
|
10
|
-
constructor(
|
|
11
|
-
protected override readonly router: Router,
|
|
12
|
-
protected readonly keycloak: KeycloakService
|
|
13
|
-
) {
|
|
14
|
-
super(router, keycloak);
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
public async isAccessAllowed(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {
|
|
18
|
-
if (!this.authenticated) {
|
|
19
|
-
await this.keycloak.login({
|
|
20
|
-
redirectUri: window.location.origin + state.url
|
|
21
|
-
});
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
const requiredRoles = route.data['roles'];
|
|
25
|
-
|
|
26
|
-
if (!Array.isArray(requiredRoles) || requiredRoles.length === 0) {
|
|
27
|
-
return true;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
const authorized = requiredRoles.every((role) => this.roles.includes(role));
|
|
31
|
-
|
|
32
|
-
if (!authorized) {
|
|
33
|
-
console.error('User not authorized to access this route');
|
|
34
|
-
return false;
|
|
35
|
-
} else return true;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { HttpHandlerFn, HttpInterceptorFn, HttpRequest } from '@angular/common/http';
|
|
2
|
-
|
|
3
|
-
export const authInterceptor: HttpInterceptorFn = (req: HttpRequest<unknown>, next: HttpHandlerFn) => {
|
|
4
|
-
const token = (<any>globalThis).keycloakService?._instance?.token;
|
|
5
|
-
|
|
6
|
-
const authReq = req.clone({
|
|
7
|
-
setHeaders: {
|
|
8
|
-
Authorization: `Bearer ${token}`
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
return next(authReq);
|
|
13
|
-
};
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
import { HttpHeaders } from '@angular/common/http';
|
|
2
|
-
import { Injectable, inject } from '@angular/core';
|
|
3
|
-
|
|
4
|
-
import { KeycloakEventType, KeycloakOptions, KeycloakService } from 'keycloak-angular';
|
|
5
|
-
import { KeycloakLoginOptions } from 'keycloak-js';
|
|
6
|
-
import { Observable } from 'rxjs';
|
|
7
|
-
|
|
8
|
-
@Injectable({ providedIn: 'root' })
|
|
9
|
-
export class KeycloakManager {
|
|
10
|
-
constructor() {
|
|
11
|
-
this.keycloak.keycloakEvents$.subscribe((event) => {
|
|
12
|
-
console.log('keycloakEvents', event);
|
|
13
|
-
|
|
14
|
-
switch (event.type) {
|
|
15
|
-
case KeycloakEventType.OnReady:
|
|
16
|
-
(<any>globalThis).keycloakService = this.keycloak;
|
|
17
|
-
break;
|
|
18
|
-
case KeycloakEventType.OnAuthError:
|
|
19
|
-
case KeycloakEventType.OnAuthLogout:
|
|
20
|
-
case KeycloakEventType.OnAuthRefreshError:
|
|
21
|
-
(<any>globalThis).keycloakService = null;
|
|
22
|
-
// this.keycloak.clearToken();
|
|
23
|
-
break;
|
|
24
|
-
// case KeycloakEventType.OnTokenExpired:
|
|
25
|
-
// this.keycloak.updateToken();
|
|
26
|
-
// break;
|
|
27
|
-
}
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
public readonly keycloak = inject(KeycloakService);
|
|
31
|
-
|
|
32
|
-
private defaultOptions: KeycloakOptions = {
|
|
33
|
-
loadUserProfileAtStartUp: true,
|
|
34
|
-
initOptions: { onLoad: 'login-required' },
|
|
35
|
-
bearerExcludedUrls: ['/assets']
|
|
36
|
-
};
|
|
37
|
-
|
|
38
|
-
init(configs: any): Promise<boolean> {
|
|
39
|
-
return this.keycloak.init({ ...this.defaultOptions, config: configs });
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
login(options?: KeycloakLoginOptions): Promise<void> {
|
|
43
|
-
return this.keycloak.login(options);
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
logout(redirectUri?: string): Promise<void> {
|
|
47
|
-
return this.keycloak.logout(redirectUri); // window.location.origin
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
isUserInRole(role: string, resource?: string): boolean {
|
|
51
|
-
return this.keycloak.isUserInRole(role, resource);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
getUserRoles(realmRoles?: boolean, resource?: string): string[] {
|
|
55
|
-
return this.keycloak.getUserRoles(realmRoles, resource);
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
isLoggedIn(): boolean {
|
|
59
|
-
return this.keycloak.isLoggedIn();
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
isTokenExpired(minValidity?: number): boolean {
|
|
63
|
-
return this.keycloak.isTokenExpired(minValidity);
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
updateToken(minValidity?: number): Promise<boolean> {
|
|
67
|
-
return this.keycloak.updateToken(minValidity);
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
loadUserProfile(forceReload?: boolean): Promise<any> {
|
|
71
|
-
return this.keycloak.loadUserProfile(forceReload);
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
getToken(): Promise<string> {
|
|
75
|
-
return this.keycloak.getToken();
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
getUsername(): string {
|
|
79
|
-
return this.keycloak.getUsername();
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
clearToken(): void {
|
|
83
|
-
this.keycloak.clearToken();
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
addTokenToHeader(headers?: HttpHeaders): Observable<HttpHeaders> {
|
|
87
|
-
return this.keycloak.addTokenToHeader(headers);
|
|
88
|
-
}
|
|
89
|
-
}
|
package/ng-package.json
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
|
|
3
|
-
"dest": "../../dist",
|
|
4
|
-
"lib": {
|
|
5
|
-
"entryFile": "./public-api.ts"
|
|
6
|
-
},
|
|
7
|
-
"assets": [
|
|
8
|
-
{ "glob": "**/*", "input": "theme", "output": "theme" },
|
|
9
|
-
{ "glob": "ui.common.scss", "input": "ui/styles", "output": "/styles/ui" },
|
|
10
|
-
{ "glob": "blockui.css", "input": "util/block/src", "output": "/styles/util" },
|
|
11
|
-
{ "glob": "blockui.min.js", "input": "util/block/src", "output": "/scripts/util" },
|
|
12
|
-
{ "glob": "api.sample.json", "input": "boot/config/api/src", "output": "/boot/config" }
|
|
13
|
-
]
|
|
14
|
-
}
|