aril 0.0.49 → 0.0.51
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 +62 -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 +81 -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 -81
- 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
package/package.json
CHANGED
|
@@ -1,31 +1,314 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "aril",
|
|
3
|
+
"version": "0.0.51",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^17.1.0",
|
|
6
|
+
"@angular/core": "^17.1.0",
|
|
7
|
+
"@ngneat/transloco": "^6.0.4",
|
|
8
|
+
"primeflex": "^3.3.1",
|
|
9
|
+
"primeicons": "^6.0.1",
|
|
10
|
+
"primeng": "^17.4.0",
|
|
11
|
+
"devextreme": "^23.2.4",
|
|
12
|
+
"devextreme-angular": "^23.2.4",
|
|
13
|
+
"number-format.js": "^2.0.9",
|
|
14
|
+
"file-saver": "^2.0.5",
|
|
15
|
+
"xlsx": "^0.18.5",
|
|
16
|
+
"keycloak-js": "^24.0.2",
|
|
17
|
+
"keycloak-angular": "^15.2.1",
|
|
18
|
+
"jspdf": "^2.4.0",
|
|
19
|
+
"jspdf-autotable": "^3.8.2"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"tslib": "^2.3.0"
|
|
23
|
+
},
|
|
24
|
+
"sideEffects": false,
|
|
25
|
+
"module": "fesm2022/aril.mjs",
|
|
26
|
+
"typings": "index.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
"./package.json": {
|
|
29
|
+
"default": "./package.json"
|
|
30
|
+
},
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./index.d.ts",
|
|
33
|
+
"esm2022": "./esm2022/aril.mjs",
|
|
34
|
+
"esm": "./esm2022/aril.mjs",
|
|
35
|
+
"default": "./fesm2022/aril.mjs"
|
|
36
|
+
},
|
|
37
|
+
"./boot": {
|
|
38
|
+
"types": "./boot/index.d.ts",
|
|
39
|
+
"esm2022": "./esm2022/boot/aril-boot.mjs",
|
|
40
|
+
"esm": "./esm2022/boot/aril-boot.mjs",
|
|
41
|
+
"default": "./fesm2022/aril-boot.mjs"
|
|
42
|
+
},
|
|
43
|
+
"./http": {
|
|
44
|
+
"types": "./http/index.d.ts",
|
|
45
|
+
"esm2022": "./esm2022/http/aril-http.mjs",
|
|
46
|
+
"esm": "./esm2022/http/aril-http.mjs",
|
|
47
|
+
"default": "./fesm2022/aril-http.mjs"
|
|
48
|
+
},
|
|
49
|
+
"./i18n": {
|
|
50
|
+
"types": "./i18n/index.d.ts",
|
|
51
|
+
"esm2022": "./esm2022/i18n/aril-i18n.mjs",
|
|
52
|
+
"esm": "./esm2022/i18n/aril-i18n.mjs",
|
|
53
|
+
"default": "./fesm2022/aril-i18n.mjs"
|
|
54
|
+
},
|
|
55
|
+
"./keycloak": {
|
|
56
|
+
"types": "./keycloak/index.d.ts",
|
|
57
|
+
"esm2022": "./esm2022/keycloak/aril-keycloak.mjs",
|
|
58
|
+
"esm": "./esm2022/keycloak/aril-keycloak.mjs",
|
|
59
|
+
"default": "./fesm2022/aril-keycloak.mjs"
|
|
60
|
+
},
|
|
61
|
+
"./theme": {
|
|
62
|
+
"types": "./theme/index.d.ts",
|
|
63
|
+
"esm2022": "./esm2022/theme/aril-theme.mjs",
|
|
64
|
+
"esm": "./esm2022/theme/aril-theme.mjs",
|
|
65
|
+
"default": "./fesm2022/aril-theme.mjs"
|
|
66
|
+
},
|
|
67
|
+
"./ui": {
|
|
68
|
+
"types": "./ui/index.d.ts",
|
|
69
|
+
"esm2022": "./esm2022/ui/aril-ui.mjs",
|
|
70
|
+
"esm": "./esm2022/ui/aril-ui.mjs",
|
|
71
|
+
"default": "./fesm2022/aril-ui.mjs"
|
|
72
|
+
},
|
|
73
|
+
"./util": {
|
|
74
|
+
"types": "./util/index.d.ts",
|
|
75
|
+
"esm2022": "./esm2022/util/aril-util.mjs",
|
|
76
|
+
"esm": "./esm2022/util/aril-util.mjs",
|
|
77
|
+
"default": "./fesm2022/aril-util.mjs"
|
|
78
|
+
},
|
|
79
|
+
"./boot/host": {
|
|
80
|
+
"types": "./boot/host/index.d.ts",
|
|
81
|
+
"esm2022": "./esm2022/boot/host/aril-boot-host.mjs",
|
|
82
|
+
"esm": "./esm2022/boot/host/aril-boot-host.mjs",
|
|
83
|
+
"default": "./fesm2022/aril-boot-host.mjs"
|
|
84
|
+
},
|
|
85
|
+
"./boot/mfe": {
|
|
86
|
+
"types": "./boot/mfe/index.d.ts",
|
|
87
|
+
"esm2022": "./esm2022/boot/mfe/aril-boot-mfe.mjs",
|
|
88
|
+
"esm": "./esm2022/boot/mfe/aril-boot-mfe.mjs",
|
|
89
|
+
"default": "./fesm2022/aril-boot-mfe.mjs"
|
|
90
|
+
},
|
|
91
|
+
"./theme/layout": {
|
|
92
|
+
"types": "./theme/layout/index.d.ts",
|
|
93
|
+
"esm2022": "./esm2022/theme/layout/aril-theme-layout.mjs",
|
|
94
|
+
"esm": "./esm2022/theme/layout/aril-theme-layout.mjs",
|
|
95
|
+
"default": "./fesm2022/aril-theme-layout.mjs"
|
|
96
|
+
},
|
|
97
|
+
"./ui/autoComplete": {
|
|
98
|
+
"types": "./ui/autoComplete/index.d.ts",
|
|
99
|
+
"esm2022": "./esm2022/ui/autoComplete/aril-ui-autoComplete.mjs",
|
|
100
|
+
"esm": "./esm2022/ui/autoComplete/aril-ui-autoComplete.mjs",
|
|
101
|
+
"default": "./fesm2022/aril-ui-autoComplete.mjs"
|
|
102
|
+
},
|
|
103
|
+
"./ui/badge": {
|
|
104
|
+
"types": "./ui/badge/index.d.ts",
|
|
105
|
+
"esm2022": "./esm2022/ui/badge/aril-ui-badge.mjs",
|
|
106
|
+
"esm": "./esm2022/ui/badge/aril-ui-badge.mjs",
|
|
107
|
+
"default": "./fesm2022/aril-ui-badge.mjs"
|
|
108
|
+
},
|
|
109
|
+
"./ui/button": {
|
|
110
|
+
"types": "./ui/button/index.d.ts",
|
|
111
|
+
"esm2022": "./esm2022/ui/button/aril-ui-button.mjs",
|
|
112
|
+
"esm": "./esm2022/ui/button/aril-ui-button.mjs",
|
|
113
|
+
"default": "./fesm2022/aril-ui-button.mjs"
|
|
114
|
+
},
|
|
115
|
+
"./ui/calendar": {
|
|
116
|
+
"types": "./ui/calendar/index.d.ts",
|
|
117
|
+
"esm2022": "./esm2022/ui/calendar/aril-ui-calendar.mjs",
|
|
118
|
+
"esm": "./esm2022/ui/calendar/aril-ui-calendar.mjs",
|
|
119
|
+
"default": "./fesm2022/aril-ui-calendar.mjs"
|
|
120
|
+
},
|
|
121
|
+
"./ui/checkbox": {
|
|
122
|
+
"types": "./ui/checkbox/index.d.ts",
|
|
123
|
+
"esm2022": "./esm2022/ui/checkbox/aril-ui-checkbox.mjs",
|
|
124
|
+
"esm": "./esm2022/ui/checkbox/aril-ui-checkbox.mjs",
|
|
125
|
+
"default": "./fesm2022/aril-ui-checkbox.mjs"
|
|
126
|
+
},
|
|
127
|
+
"./ui/dxField": {
|
|
128
|
+
"types": "./ui/dxField/index.d.ts",
|
|
129
|
+
"esm2022": "./esm2022/ui/dxField/aril-ui-dxField.mjs",
|
|
130
|
+
"esm": "./esm2022/ui/dxField/aril-ui-dxField.mjs",
|
|
131
|
+
"default": "./fesm2022/aril-ui-dxField.mjs"
|
|
132
|
+
},
|
|
133
|
+
"./ui/field": {
|
|
134
|
+
"types": "./ui/field/index.d.ts",
|
|
135
|
+
"esm2022": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
136
|
+
"esm": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
137
|
+
"default": "./fesm2022/aril-ui-field.mjs"
|
|
138
|
+
},
|
|
139
|
+
"./ui/fileUpload": {
|
|
140
|
+
"types": "./ui/fileUpload/index.d.ts",
|
|
141
|
+
"esm2022": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
142
|
+
"esm": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
143
|
+
"default": "./fesm2022/aril-ui-fileUpload.mjs"
|
|
144
|
+
},
|
|
145
|
+
"./ui/form": {
|
|
146
|
+
"types": "./ui/form/index.d.ts",
|
|
147
|
+
"esm2022": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
148
|
+
"esm": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
149
|
+
"default": "./fesm2022/aril-ui-form.mjs"
|
|
150
|
+
},
|
|
151
|
+
"./ui/lib": {
|
|
152
|
+
"types": "./ui/lib/index.d.ts",
|
|
153
|
+
"esm2022": "./esm2022/ui/lib/aril-ui-lib.mjs",
|
|
154
|
+
"esm": "./esm2022/ui/lib/aril-ui-lib.mjs",
|
|
155
|
+
"default": "./fesm2022/aril-ui-lib.mjs"
|
|
156
|
+
},
|
|
157
|
+
"./ui/mask": {
|
|
158
|
+
"types": "./ui/mask/index.d.ts",
|
|
159
|
+
"esm2022": "./esm2022/ui/mask/aril-ui-mask.mjs",
|
|
160
|
+
"esm": "./esm2022/ui/mask/aril-ui-mask.mjs",
|
|
161
|
+
"default": "./fesm2022/aril-ui-mask.mjs"
|
|
162
|
+
},
|
|
163
|
+
"./ui/number": {
|
|
164
|
+
"types": "./ui/number/index.d.ts",
|
|
165
|
+
"esm2022": "./esm2022/ui/number/aril-ui-number.mjs",
|
|
166
|
+
"esm": "./esm2022/ui/number/aril-ui-number.mjs",
|
|
167
|
+
"default": "./fesm2022/aril-ui-number.mjs"
|
|
168
|
+
},
|
|
169
|
+
"./ui/overlayPanel": {
|
|
170
|
+
"types": "./ui/overlayPanel/index.d.ts",
|
|
171
|
+
"esm2022": "./esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs",
|
|
172
|
+
"esm": "./esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs",
|
|
173
|
+
"default": "./fesm2022/aril-ui-overlayPanel.mjs"
|
|
174
|
+
},
|
|
175
|
+
"./ui/panel": {
|
|
176
|
+
"types": "./ui/panel/index.d.ts",
|
|
177
|
+
"esm2022": "./esm2022/ui/panel/aril-ui-panel.mjs",
|
|
178
|
+
"esm": "./esm2022/ui/panel/aril-ui-panel.mjs",
|
|
179
|
+
"default": "./fesm2022/aril-ui-panel.mjs"
|
|
180
|
+
},
|
|
181
|
+
"./ui/password": {
|
|
182
|
+
"types": "./ui/password/index.d.ts",
|
|
183
|
+
"esm2022": "./esm2022/ui/password/aril-ui-password.mjs",
|
|
184
|
+
"esm": "./esm2022/ui/password/aril-ui-password.mjs",
|
|
185
|
+
"default": "./fesm2022/aril-ui-password.mjs"
|
|
186
|
+
},
|
|
187
|
+
"./ui/radioButton": {
|
|
188
|
+
"types": "./ui/radioButton/index.d.ts",
|
|
189
|
+
"esm2022": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
190
|
+
"esm": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
191
|
+
"default": "./fesm2022/aril-ui-radioButton.mjs"
|
|
192
|
+
},
|
|
193
|
+
"./ui/selectBox": {
|
|
194
|
+
"types": "./ui/selectBox/index.d.ts",
|
|
195
|
+
"esm2022": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
196
|
+
"esm": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
197
|
+
"default": "./fesm2022/aril-ui-selectBox.mjs"
|
|
198
|
+
},
|
|
199
|
+
"./ui/switch": {
|
|
200
|
+
"types": "./ui/switch/index.d.ts",
|
|
201
|
+
"esm2022": "./esm2022/ui/switch/aril-ui-switch.mjs",
|
|
202
|
+
"esm": "./esm2022/ui/switch/aril-ui-switch.mjs",
|
|
203
|
+
"default": "./fesm2022/aril-ui-switch.mjs"
|
|
204
|
+
},
|
|
205
|
+
"./ui/table": {
|
|
206
|
+
"types": "./ui/table/index.d.ts",
|
|
207
|
+
"esm2022": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
208
|
+
"esm": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
209
|
+
"default": "./fesm2022/aril-ui-table.mjs"
|
|
210
|
+
},
|
|
211
|
+
"./ui/tagBox": {
|
|
212
|
+
"types": "./ui/tagBox/index.d.ts",
|
|
213
|
+
"esm2022": "./esm2022/ui/tagBox/aril-ui-tagBox.mjs",
|
|
214
|
+
"esm": "./esm2022/ui/tagBox/aril-ui-tagBox.mjs",
|
|
215
|
+
"default": "./fesm2022/aril-ui-tagBox.mjs"
|
|
216
|
+
},
|
|
217
|
+
"./ui/textArea": {
|
|
218
|
+
"types": "./ui/textArea/index.d.ts",
|
|
219
|
+
"esm2022": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
220
|
+
"esm": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
221
|
+
"default": "./fesm2022/aril-ui-textArea.mjs"
|
|
222
|
+
},
|
|
223
|
+
"./ui/toggle-button": {
|
|
224
|
+
"types": "./ui/toggle-button/index.d.ts",
|
|
225
|
+
"esm2022": "./esm2022/ui/toggle-button/aril-ui-toggle-button.mjs",
|
|
226
|
+
"esm": "./esm2022/ui/toggle-button/aril-ui-toggle-button.mjs",
|
|
227
|
+
"default": "./fesm2022/aril-ui-toggle-button.mjs"
|
|
228
|
+
},
|
|
229
|
+
"./ui/text": {
|
|
230
|
+
"types": "./ui/text/index.d.ts",
|
|
231
|
+
"esm2022": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
232
|
+
"esm": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
233
|
+
"default": "./fesm2022/aril-ui-text.mjs"
|
|
234
|
+
},
|
|
235
|
+
"./ui/treeTable": {
|
|
236
|
+
"types": "./ui/treeTable/index.d.ts",
|
|
237
|
+
"esm2022": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
238
|
+
"esm": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
239
|
+
"default": "./fesm2022/aril-ui-treeTable.mjs"
|
|
240
|
+
},
|
|
241
|
+
"./ui/tree": {
|
|
242
|
+
"types": "./ui/tree/index.d.ts",
|
|
243
|
+
"esm2022": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
244
|
+
"esm": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
245
|
+
"default": "./fesm2022/aril-ui-tree.mjs"
|
|
246
|
+
},
|
|
247
|
+
"./util/custom_pages": {
|
|
248
|
+
"types": "./util/custom_pages/index.d.ts",
|
|
249
|
+
"esm2022": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
250
|
+
"esm": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
251
|
+
"default": "./fesm2022/aril-util-custom_pages.mjs"
|
|
252
|
+
},
|
|
253
|
+
"./ui/value": {
|
|
254
|
+
"types": "./ui/value/index.d.ts",
|
|
255
|
+
"esm2022": "./esm2022/ui/value/aril-ui-value.mjs",
|
|
256
|
+
"esm": "./esm2022/ui/value/aril-ui-value.mjs",
|
|
257
|
+
"default": "./fesm2022/aril-ui-value.mjs"
|
|
258
|
+
},
|
|
259
|
+
"./util/block": {
|
|
260
|
+
"types": "./util/block/index.d.ts",
|
|
261
|
+
"esm2022": "./esm2022/util/block/aril-util-block.mjs",
|
|
262
|
+
"esm": "./esm2022/util/block/aril-util-block.mjs",
|
|
263
|
+
"default": "./fesm2022/aril-util-block.mjs"
|
|
264
|
+
},
|
|
265
|
+
"./util/lib": {
|
|
266
|
+
"types": "./util/lib/index.d.ts",
|
|
267
|
+
"esm2022": "./esm2022/util/lib/aril-util-lib.mjs",
|
|
268
|
+
"esm": "./esm2022/util/lib/aril-util-lib.mjs",
|
|
269
|
+
"default": "./fesm2022/aril-util-lib.mjs"
|
|
270
|
+
},
|
|
271
|
+
"./util/init-event": {
|
|
272
|
+
"types": "./util/init-event/index.d.ts",
|
|
273
|
+
"esm2022": "./esm2022/util/init-event/aril-util-init-event.mjs",
|
|
274
|
+
"esm": "./esm2022/util/init-event/aril-util-init-event.mjs",
|
|
275
|
+
"default": "./fesm2022/aril-util-init-event.mjs"
|
|
276
|
+
},
|
|
277
|
+
"./util/pub-sub": {
|
|
278
|
+
"types": "./util/pub-sub/index.d.ts",
|
|
279
|
+
"esm2022": "./esm2022/util/pub-sub/aril-util-pub-sub.mjs",
|
|
280
|
+
"esm": "./esm2022/util/pub-sub/aril-util-pub-sub.mjs",
|
|
281
|
+
"default": "./fesm2022/aril-util-pub-sub.mjs"
|
|
282
|
+
},
|
|
283
|
+
"./util/loaders": {
|
|
284
|
+
"types": "./util/loaders/index.d.ts",
|
|
285
|
+
"esm2022": "./esm2022/util/loaders/aril-util-loaders.mjs",
|
|
286
|
+
"esm": "./esm2022/util/loaders/aril-util-loaders.mjs",
|
|
287
|
+
"default": "./fesm2022/aril-util-loaders.mjs"
|
|
288
|
+
},
|
|
289
|
+
"./util/primitive-extensions": {
|
|
290
|
+
"types": "./util/primitive-extensions/index.d.ts",
|
|
291
|
+
"esm2022": "./esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs",
|
|
292
|
+
"esm": "./esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs",
|
|
293
|
+
"default": "./fesm2022/aril-util-primitive-extensions.mjs"
|
|
294
|
+
},
|
|
295
|
+
"./boot/config/api": {
|
|
296
|
+
"types": "./boot/config/api/index.d.ts",
|
|
297
|
+
"esm2022": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
298
|
+
"esm": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
299
|
+
"default": "./fesm2022/aril-boot-config-api.mjs"
|
|
300
|
+
},
|
|
301
|
+
"./boot/config/apps": {
|
|
302
|
+
"types": "./boot/config/apps/index.d.ts",
|
|
303
|
+
"esm2022": "./esm2022/boot/config/apps/aril-boot-config-apps.mjs",
|
|
304
|
+
"esm": "./esm2022/boot/config/apps/aril-boot-config-apps.mjs",
|
|
305
|
+
"default": "./fesm2022/aril-boot-config-apps.mjs"
|
|
306
|
+
},
|
|
307
|
+
"./boot/config/plugins": {
|
|
308
|
+
"types": "./boot/config/plugins/index.d.ts",
|
|
309
|
+
"esm2022": "./esm2022/boot/config/plugins/aril-boot-config-plugins.mjs",
|
|
310
|
+
"esm": "./esm2022/boot/config/plugins/aril-boot-config-plugins.mjs",
|
|
311
|
+
"default": "./fesm2022/aril-boot-config-plugins.mjs"
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import './boot/host/index';
|
|
2
|
-
import './boot/mfe/index';
|
|
1
|
+
import './boot/host/index';
|
|
2
|
+
import './boot/mfe/index';
|
package/theme/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const aril_theme = "ARiL-THEME";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
interface Breadcrumb {
|
|
4
|
+
label: string;
|
|
5
|
+
url?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare class AppBreadcrumbComponent {
|
|
8
|
+
private router;
|
|
9
|
+
private readonly _breadcrumbs$;
|
|
10
|
+
readonly breadcrumbs$: import("rxjs").Observable<Breadcrumb[]>;
|
|
11
|
+
constructor(router: Router);
|
|
12
|
+
private addBreadcrumb;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppBreadcrumbComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppBreadcrumbComponent, "app-breadcrumb", never, {}, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ColorScheme, LayoutService, MenuColorScheme, MenuMode } from '../../service/app.layout.service';
|
|
3
|
+
import { AppMenuService } from '../../service/app.menu.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AppConfigComponent implements OnInit {
|
|
6
|
+
layoutService: LayoutService;
|
|
7
|
+
menuService: AppMenuService;
|
|
8
|
+
minimal: boolean;
|
|
9
|
+
componentThemes: any[];
|
|
10
|
+
scales: number[];
|
|
11
|
+
constructor(layoutService: LayoutService, menuService: AppMenuService);
|
|
12
|
+
get visible(): boolean;
|
|
13
|
+
set visible(_val: boolean);
|
|
14
|
+
get scale(): number;
|
|
15
|
+
set scale(_val: number);
|
|
16
|
+
get menuMode(): MenuMode;
|
|
17
|
+
set menuMode(_val: MenuMode);
|
|
18
|
+
get colorScheme(): ColorScheme;
|
|
19
|
+
set colorScheme(_val: ColorScheme);
|
|
20
|
+
get inputStyle(): string;
|
|
21
|
+
set inputStyle(_val: string);
|
|
22
|
+
get ripple(): boolean;
|
|
23
|
+
set ripple(_val: boolean);
|
|
24
|
+
get menuTheme(): MenuColorScheme;
|
|
25
|
+
set menuTheme(_val: MenuColorScheme);
|
|
26
|
+
get theme(): string;
|
|
27
|
+
set theme(_val: string);
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
onConfigButtonClick(): void;
|
|
30
|
+
changeColorScheme(colorScheme: ColorScheme): void;
|
|
31
|
+
changeTheme(theme: string): void;
|
|
32
|
+
decrementScale(): void;
|
|
33
|
+
incrementScale(): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppConfigComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppConfigComponent, "app-config", never, { "minimal": { "alias": "minimal"; "required": false; }; }, {}, never, never, true, never>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { OnDestroy, Renderer2 } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import { LayoutService } from '../../service/app.layout.service';
|
|
5
|
+
import { AppMenuService } from '../../service/app.menu.service';
|
|
6
|
+
import { AppSidebarComponent } from '../sidebar/app.sidebar.component';
|
|
7
|
+
import { AppTopbarComponent } from '../topbar/app.topbar.component';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class AppLayoutComponent implements OnDestroy {
|
|
10
|
+
private menuService;
|
|
11
|
+
layoutService: LayoutService;
|
|
12
|
+
renderer: Renderer2;
|
|
13
|
+
router: Router;
|
|
14
|
+
overlayMenuOpenSubscription: Subscription;
|
|
15
|
+
menuOutsideClickListener: any;
|
|
16
|
+
menuScrollListener: any;
|
|
17
|
+
appSidebar: AppSidebarComponent;
|
|
18
|
+
appTopbar: AppTopbarComponent;
|
|
19
|
+
constructor(menuService: AppMenuService, layoutService: LayoutService, renderer: Renderer2, router: Router);
|
|
20
|
+
blockBodyScroll(): void;
|
|
21
|
+
unblockBodyScroll(): void;
|
|
22
|
+
hideMenu(): void;
|
|
23
|
+
get containerClass(): {
|
|
24
|
+
'layout-light': boolean;
|
|
25
|
+
'layout-dim': boolean;
|
|
26
|
+
'layout-dark': boolean;
|
|
27
|
+
'layout-colorscheme-menu': boolean;
|
|
28
|
+
'layout-primarycolor-menu': boolean;
|
|
29
|
+
'layout-transparent-menu': boolean;
|
|
30
|
+
'layout-overlay': boolean;
|
|
31
|
+
'layout-static': boolean;
|
|
32
|
+
'layout-slim': boolean;
|
|
33
|
+
'layout-slim-plus': boolean;
|
|
34
|
+
'layout-horizontal': boolean;
|
|
35
|
+
'layout-reveal': boolean;
|
|
36
|
+
'layout-drawer': boolean;
|
|
37
|
+
'layout-static-inactive': boolean;
|
|
38
|
+
'layout-overlay-active': boolean;
|
|
39
|
+
'layout-mobile-active': boolean;
|
|
40
|
+
'p-input-filled': boolean;
|
|
41
|
+
'p-ripple-disabled': boolean;
|
|
42
|
+
'layout-sidebar-active': boolean;
|
|
43
|
+
'layout-sidebar-anchored': boolean;
|
|
44
|
+
};
|
|
45
|
+
ngOnDestroy(): void;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppLayoutComponent, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppLayoutComponent, "app-layout", never, {}, {}, never, never, true, never>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MFELayoutComponent implements AfterViewInit, OnDestroy {
|
|
4
|
+
ngAfterViewInit(): void;
|
|
5
|
+
ngOnDestroy(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MFELayoutComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MFELayoutComponent, "mfe-layout", never, {}, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { AnimationEvent } from '@angular/animations';
|
|
2
|
+
import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { MenuItem } from 'primeng/api';
|
|
5
|
+
import { Subscription } from 'rxjs';
|
|
6
|
+
import { LayoutService } from '../../service/app.layout.service';
|
|
7
|
+
import { AppMenuService } from '../../service/app.menu.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class AppMenuItemComponent implements OnInit, OnDestroy {
|
|
10
|
+
layoutService: LayoutService;
|
|
11
|
+
private cd;
|
|
12
|
+
router: Router;
|
|
13
|
+
private menuService;
|
|
14
|
+
item: MenuItem;
|
|
15
|
+
index: number;
|
|
16
|
+
root: boolean;
|
|
17
|
+
parentKey: string;
|
|
18
|
+
submenu: ElementRef;
|
|
19
|
+
active: boolean;
|
|
20
|
+
menuSourceSubscription: Subscription;
|
|
21
|
+
menuResetSubscription: Subscription;
|
|
22
|
+
key: string;
|
|
23
|
+
constructor(layoutService: LayoutService, cd: ChangeDetectorRef, router: Router, menuService: AppMenuService);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
ngAfterViewChecked(): void;
|
|
26
|
+
updateActiveStateFromRoute(): void;
|
|
27
|
+
onSubmenuAnimated(event: AnimationEvent): void;
|
|
28
|
+
calculatePosition(overlay: HTMLElement, target: HTMLElement): void;
|
|
29
|
+
itemClick(event: Event): void;
|
|
30
|
+
onMouseEnter(): void;
|
|
31
|
+
get submenuAnimation(): "collapsed" | "expanded" | "hidden" | "visible";
|
|
32
|
+
get isHorizontal(): boolean;
|
|
33
|
+
get isSlim(): boolean;
|
|
34
|
+
get isSlimPlus(): boolean;
|
|
35
|
+
get activeClass(): boolean;
|
|
36
|
+
ngOnDestroy(): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppMenuItemComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppMenuItemComponent, "[app-menuitem]", never, { "item": { "alias": "item"; "required": false; }; "index": { "alias": "index"; "required": false; }; "root": { "alias": "root"; "required": false; }; "parentKey": { "alias": "parentKey"; "required": false; }; }, {}, never, never, true, never>;
|
|
39
|
+
}
|
|
40
|
+
export declare class AppMenuComponent {
|
|
41
|
+
menuService: AppMenuService;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppMenuComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppMenuComponent, "app-menu", never, {}, {}, never, never, true, never>;
|
|
44
|
+
}
|
|
45
|
+
export declare class AppSubMenuComponent {
|
|
46
|
+
menuService: AppMenuService;
|
|
47
|
+
get id(): string;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppSubMenuComponent, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppSubMenuComponent, "app-sub-menu", never, {}, {}, never, never, true, never>;
|
|
50
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { LayoutService } from '../../service/app.layout.service';
|
|
2
|
+
import { KeycloakManager } from 'aril/keycloak';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AppProfileSidebarComponent {
|
|
5
|
+
layoutService: LayoutService;
|
|
6
|
+
keyCloakManager: KeycloakManager;
|
|
7
|
+
username: any;
|
|
8
|
+
constructor(layoutService: LayoutService);
|
|
9
|
+
get visible(): boolean;
|
|
10
|
+
set visible(_val: boolean);
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppProfileSidebarComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppProfileSidebarComponent, "app-profilemenu", never, {}, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { LayoutService } from '../../service/app.layout.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AppSidebarComponent {
|
|
5
|
+
layoutService: LayoutService;
|
|
6
|
+
el: ElementRef;
|
|
7
|
+
constructor(layoutService: LayoutService, el: ElementRef);
|
|
8
|
+
timeout: any;
|
|
9
|
+
menuContainer: ElementRef;
|
|
10
|
+
onMouseEnter(): void;
|
|
11
|
+
onMouseLeave(): void;
|
|
12
|
+
anchor(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppSidebarComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppSidebarComponent, "app-sidebar", never, {}, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { KeycloakManager } from 'aril/keycloak';
|
|
3
|
+
import { LayoutService } from '../../service/app.layout.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AppTopbarComponent {
|
|
6
|
+
menuButton: ElementRef;
|
|
7
|
+
username: string;
|
|
8
|
+
layoutService: LayoutService;
|
|
9
|
+
keyCloakManager: KeycloakManager;
|
|
10
|
+
constructor();
|
|
11
|
+
onMenuButtonClick(): void;
|
|
12
|
+
onProfileButtonClick(): void;
|
|
13
|
+
onConfigButtonClick(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppTopbarComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppTopbarComponent, "app-topbar", never, {}, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export type MenuMode = 'static' | 'overlay' | 'horizontal' | 'slim' | 'slim-plus' | 'reveal' | 'drawer';
|
|
3
|
+
export type ColorScheme = 'light' | 'dark' | 'dim';
|
|
4
|
+
export type MenuColorScheme = 'colorScheme' | 'primaryColor' | 'transparent';
|
|
5
|
+
export interface AppConfig {
|
|
6
|
+
inputStyle: string;
|
|
7
|
+
colorScheme: ColorScheme;
|
|
8
|
+
theme: string;
|
|
9
|
+
ripple: boolean;
|
|
10
|
+
menuMode: MenuMode;
|
|
11
|
+
scale: number;
|
|
12
|
+
menuTheme: MenuColorScheme;
|
|
13
|
+
}
|
|
14
|
+
interface LayoutState {
|
|
15
|
+
staticMenuDesktopInactive: boolean;
|
|
16
|
+
overlayMenuActive: boolean;
|
|
17
|
+
profileSidebarVisible: boolean;
|
|
18
|
+
configSidebarVisible: boolean;
|
|
19
|
+
staticMenuMobileActive: boolean;
|
|
20
|
+
menuHoverActive: boolean;
|
|
21
|
+
sidebarActive: boolean;
|
|
22
|
+
anchored: boolean;
|
|
23
|
+
}
|
|
24
|
+
export declare class LayoutService {
|
|
25
|
+
_config: AppConfig;
|
|
26
|
+
config: import("@angular/core").WritableSignal<AppConfig>;
|
|
27
|
+
state: LayoutState;
|
|
28
|
+
private configUpdate;
|
|
29
|
+
private overlayOpen;
|
|
30
|
+
configUpdate$: import("rxjs").Observable<AppConfig>;
|
|
31
|
+
overlayOpen$: import("rxjs").Observable<any>;
|
|
32
|
+
constructor();
|
|
33
|
+
updateStyle(config: AppConfig): boolean;
|
|
34
|
+
onMenuToggle(): void;
|
|
35
|
+
onOverlaySubmenuOpen(): void;
|
|
36
|
+
showProfileSidebar(): void;
|
|
37
|
+
showConfigSidebar(): void;
|
|
38
|
+
isOverlay(): boolean;
|
|
39
|
+
isDesktop(): boolean;
|
|
40
|
+
isSlim(): boolean;
|
|
41
|
+
isSlimPlus(): boolean;
|
|
42
|
+
isHorizontal(): boolean;
|
|
43
|
+
isMobile(): boolean;
|
|
44
|
+
onConfigUpdate(): void;
|
|
45
|
+
changeTheme(): void;
|
|
46
|
+
replaceThemeLink(href: string): void;
|
|
47
|
+
changeScale(value: number): void;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutService, never>;
|
|
49
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LayoutService>;
|
|
50
|
+
}
|
|
51
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { MenuItem } from 'primeng/api';
|
|
2
|
+
import { MenuChangeEvent } from './menuchangeevent';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
interface MenuConfig {
|
|
5
|
+
items: MenuItem[];
|
|
6
|
+
prefix?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class AppMenuService {
|
|
9
|
+
private menuSource;
|
|
10
|
+
private resetSource;
|
|
11
|
+
menuConfig: import("@angular/core").WritableSignal<MenuConfig>;
|
|
12
|
+
subMenuConfig: import("@angular/core").WritableSignal<MenuConfig>;
|
|
13
|
+
menuItems: import("@angular/core").Signal<MenuItem[]>;
|
|
14
|
+
subMenuItems: import("@angular/core").Signal<MenuItem[]>;
|
|
15
|
+
menuSource$: import("rxjs").Observable<MenuChangeEvent>;
|
|
16
|
+
resetSource$: import("rxjs").Observable<unknown>;
|
|
17
|
+
addPrefix(menuItem: MenuItem, appPrefix: string | undefined): MenuItem;
|
|
18
|
+
onMenuStateChange(event: MenuChangeEvent): void;
|
|
19
|
+
reset(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppMenuService, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppMenuService>;
|
|
22
|
+
}
|
|
23
|
+
export {};
|