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
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/auto-complete.component';
|
|
1
|
+
export * from './src/auto-complete.component';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { AutoComplete } from 'primeng/autocomplete';
|
|
3
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
4
|
+
import { SuggestionsDTO } from './interfaces';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "aril/ui/lib";
|
|
7
|
+
export declare class AutoCompleteComponent extends BaseInputComponent {
|
|
8
|
+
private http;
|
|
9
|
+
autoCompleteRef: AutoComplete;
|
|
10
|
+
items: import("@angular/core").InputSignal<SuggestionsDTO[], SuggestionsDTO[]>;
|
|
11
|
+
referenceAsset: any;
|
|
12
|
+
placeholder: import("@angular/core").InputSignal<string, string>;
|
|
13
|
+
forceSelection: import("@angular/core").InputSignal<boolean, boolean>;
|
|
14
|
+
optionValue: import("@angular/core").InputSignal<keyof SuggestionsDTO | null, keyof SuggestionsDTO | null>;
|
|
15
|
+
optionLabel: import("@angular/core").InputSignal<keyof SuggestionsDTO, keyof SuggestionsDTO>;
|
|
16
|
+
selectionItems: SuggestionsDTO[];
|
|
17
|
+
filteredSelectionItems: SuggestionsDTO[];
|
|
18
|
+
constructor(http: HttpClient);
|
|
19
|
+
search(event: any): void;
|
|
20
|
+
filterSelection(query: string, selectionItems: SuggestionsDTO[]): SuggestionsDTO[];
|
|
21
|
+
getSelectionItems(): Promise<void>;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoCompleteComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutoCompleteComponent, "aril-auto-complete[formControl], aril-auto-complete[formControlName]", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "referenceAsset": { "alias": "referenceAsset"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "forceSelection": { "alias": "forceSelection"; "required": false; "isSignal": true; }; "optionValue": { "alias": "optionValue"; "required": false; "isSignal": true; }; "optionLabel": { "alias": "optionLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export interface SuggestionsDTO {
|
|
2
|
+
key: number | string | null;
|
|
3
|
+
text: string;
|
|
4
|
+
}
|
|
5
|
+
export interface SelectionItemRequestDTO {
|
|
6
|
+
pager: Pager;
|
|
7
|
+
asset: Asset;
|
|
8
|
+
attributes: AttributeElement[];
|
|
9
|
+
}
|
|
10
|
+
export interface Asset {
|
|
11
|
+
alias: string;
|
|
12
|
+
assetDefinitionCode: string;
|
|
13
|
+
}
|
|
14
|
+
export interface AttributeElement {
|
|
15
|
+
attribute: AttributeAttribute;
|
|
16
|
+
}
|
|
17
|
+
export interface AttributeAttribute {
|
|
18
|
+
alias: string;
|
|
19
|
+
attributeCode: string;
|
|
20
|
+
}
|
|
21
|
+
export interface Pager {
|
|
22
|
+
pageSize: number;
|
|
23
|
+
pageNumber: number;
|
|
24
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/badge.component';
|
|
1
|
+
export * from './src/badge.component';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
type Severity = 'success' | 'secondary' | 'info' | 'warning' | 'danger' | 'contrast' | undefined;
|
|
3
|
+
export declare class BadgeComponent {
|
|
4
|
+
icon: import("@angular/core").InputSignal<string | undefined, string | undefined>;
|
|
5
|
+
value: import("@angular/core").InputSignal<string | undefined, string | undefined>;
|
|
6
|
+
severity: import("@angular/core").InputSignal<Severity, Severity>;
|
|
7
|
+
rounded: import("@angular/core").InputSignal<boolean | undefined, boolean | undefined>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "aril-badge", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "severity": { "alias": "severity"; "required": true; "isSignal": true; }; "rounded": { "alias": "rounded"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
10
|
+
}
|
|
11
|
+
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './src/button.component';
|
|
2
|
-
export * from './src/split-button.component';
|
|
1
|
+
export * from './src/button.component';
|
|
2
|
+
export * from './src/split-button.component';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { PrimeIcon } from 'aril/ui/lib';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
type Size = 'sm' | 'md' | 'lg';
|
|
5
|
+
type Colors = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'help' | 'danger';
|
|
6
|
+
export declare class ButtonComponent {
|
|
7
|
+
label: import("@angular/core").InputSignal<string | undefined, string | undefined>;
|
|
8
|
+
loading: import("@angular/core").InputSignal<boolean, boolean>;
|
|
9
|
+
disabled: import("@angular/core").InputSignal<boolean, boolean>;
|
|
10
|
+
raised: import("@angular/core").InputSignal<boolean, boolean>;
|
|
11
|
+
outlined: import("@angular/core").InputSignal<boolean, boolean>;
|
|
12
|
+
badge: import("@angular/core").InputSignal<string | undefined, string | undefined>;
|
|
13
|
+
size: import("@angular/core").InputSignal<Size, Size>;
|
|
14
|
+
icon: import("@angular/core").InputSignal<PrimeIcon | undefined, PrimeIcon | undefined>;
|
|
15
|
+
color: import("@angular/core").InputSignal<Colors, Colors>;
|
|
16
|
+
clickEvent: EventEmitter<Event>;
|
|
17
|
+
_icon: import("@angular/core").Signal<string>;
|
|
18
|
+
_color: import("@angular/core").Signal<string>;
|
|
19
|
+
_styleClass: import("@angular/core").Signal<string>;
|
|
20
|
+
clickEvnt(e: Event): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "aril-button:not([click])", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "raised": { "alias": "raised"; "required": false; "isSignal": true; }; "outlined": { "alias": "outlined"; "required": false; "isSignal": true; }; "badge": { "alias": "badge"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": true; "isSignal": true; }; }, { "clickEvent": "clickEvent"; }, never, never, true, never>;
|
|
23
|
+
}
|
|
24
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { MenuItem } from 'primeng/api';
|
|
2
|
+
import { ButtonComponent } from './button.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SplitButtonComponent extends ButtonComponent {
|
|
5
|
+
menu: import("@angular/core").InputSignal<MenuItem[], MenuItem[]>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SplitButtonComponent, "aril-split-button", never, { "menu": { "alias": "menu"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/calendar.component';
|
|
1
|
+
export * from './src/calendar.component';
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { AfterViewInit } from '@angular/core';
|
|
3
|
+
import { PrimeNGConfig } from 'primeng/api';
|
|
4
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
5
|
+
import 'aril/util/primitive-extensions';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "aril/ui/lib";
|
|
8
|
+
type View = 'date' | 'month' | 'year';
|
|
9
|
+
type SelectionMode = 'single' | 'multiple' | 'range';
|
|
10
|
+
export declare class CalendarComponent extends BaseInputComponent implements OnInit, AfterViewInit {
|
|
11
|
+
private primeNgConfig;
|
|
12
|
+
constructor(primeNgConfig: PrimeNGConfig);
|
|
13
|
+
private readonly injector;
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
ngAfterViewInit(): void;
|
|
16
|
+
setFormCtrl(value: Date): void;
|
|
17
|
+
model: Date | undefined;
|
|
18
|
+
minDate: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
19
|
+
maxDate: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
20
|
+
inline: import("@angular/core").InputSignal<boolean, boolean>;
|
|
21
|
+
showIcon: import("@angular/core").InputSignal<boolean, boolean>;
|
|
22
|
+
showTime: import("@angular/core").InputSignal<boolean, boolean>;
|
|
23
|
+
showWeek: import("@angular/core").InputSignal<boolean, boolean>;
|
|
24
|
+
showSeconds: import("@angular/core").InputSignal<boolean, boolean>;
|
|
25
|
+
disabledDates: import("@angular/core").InputSignal<number[], number[]>;
|
|
26
|
+
view: import("@angular/core").InputSignal<View, View>;
|
|
27
|
+
selectionMode: import("@angular/core").InputSignal<SelectionMode, SelectionMode>;
|
|
28
|
+
tabindex: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
29
|
+
showOnFocus: import("@angular/core").InputSignal<boolean, boolean>;
|
|
30
|
+
_minJSDate: import("@angular/core").Signal<Date>;
|
|
31
|
+
_maxJSDate: import("@angular/core").Signal<Date>;
|
|
32
|
+
_selectedDisabledDates: import("@angular/core").Signal<Date[]>;
|
|
33
|
+
_dateFormat: import("@angular/core").Signal<"MM/yy" | "yy" | "dd/MM/yy">;
|
|
34
|
+
setLocale(): void;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "aril-calendar[ngModel], aril-calendar[formControl], aril-calendar[formControlName]", never, { "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "inline": { "alias": "inline"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "showTime": { "alias": "showTime"; "required": false; "isSignal": true; }; "showWeek": { "alias": "showWeek"; "required": false; "isSignal": true; }; "showSeconds": { "alias": "showSeconds"; "required": false; "isSignal": true; }; "disabledDates": { "alias": "disabledDates"; "required": false; "isSignal": true; }; "view": { "alias": "view"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; "showOnFocus": { "alias": "showOnFocus"; "required": false; "isSignal": true; }; }, {}, never, ["[header]", "[footer]"], true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
37
|
+
}
|
|
38
|
+
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './src/check-box.component';
|
|
2
|
-
export * from './src/tri-state-checkbox.component';
|
|
1
|
+
export * from './src/check-box.component';
|
|
2
|
+
export * from './src/tri-state-checkbox.component';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
export declare class CheckboxComponent extends BaseInputComponent {
|
|
5
|
+
label: import("@angular/core").InputSignal<string, string>;
|
|
6
|
+
tabindex: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "aril-checkbox[ngModel], aril-checkbox[formControl], aril-checkbox[formControlName]", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
export declare class TriStateCheckboxComponent extends BaseInputComponent {
|
|
5
|
+
label: import("@angular/core").InputSignal<string, string>;
|
|
6
|
+
tabindex: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TriStateCheckboxComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TriStateCheckboxComponent, "aril-tri-state-checkbox[ngModel], aril-tri-state-checkbox[formControl], aril-tri-state-checkbox[formControlName]", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
9
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/dx-field.component';
|
|
1
|
+
export * from './src/dx-field.component';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class DxFieldComponent {
|
|
3
|
+
label: import("@angular/core").InputSignal<string | undefined, string | undefined>;
|
|
4
|
+
color: import("@angular/core").InputSignal<string, string>;
|
|
5
|
+
labelWidth: import("@angular/core").InputSignal<number, number>;
|
|
6
|
+
valueWidth: import("@angular/core").InputSignal<number, number>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxFieldComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxFieldComponent, "aril-dx-field", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "labelWidth": { "alias": "labelWidth"; "required": false; "isSignal": true; }; "valueWidth": { "alias": "valueWidth"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
9
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/field.component';
|
|
1
|
+
export * from './src/field.component';
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Types } from 'aril/util/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
type LabelPositions = 'top' | 'left';
|
|
4
|
+
interface ColumnSizeTypes {
|
|
5
|
+
xl?: Types.NumberRange<1, 13>;
|
|
6
|
+
lg?: Types.NumberRange<1, 13>;
|
|
7
|
+
md?: Types.NumberRange<1, 13>;
|
|
8
|
+
sm?: Types.NumberRange<1, 13>;
|
|
9
|
+
default?: Types.NumberRange<1, 13>;
|
|
10
|
+
}
|
|
11
|
+
export declare class FieldComponent {
|
|
12
|
+
constructor();
|
|
13
|
+
label: import("@angular/core").InputSignal<string | undefined, string | undefined>;
|
|
14
|
+
color: import("@angular/core").InputSignal<string, string>;
|
|
15
|
+
labelWidth: import("@angular/core").InputSignal<number, number>;
|
|
16
|
+
valueWidth: import("@angular/core").InputSignal<number, number>;
|
|
17
|
+
labelPos: import("@angular/core").InputSignal<LabelPositions, LabelPositions>;
|
|
18
|
+
markAsRequired: import("@angular/core").InputSignal<boolean, boolean>;
|
|
19
|
+
cols: import("@angular/core").InputSignal<ColumnSizeTypes, ColumnSizeTypes>;
|
|
20
|
+
hostClass: string;
|
|
21
|
+
padding: string;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldComponent, "aril-field", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "labelWidth": { "alias": "labelWidth"; "required": false; "isSignal": true; }; "valueWidth": { "alias": "valueWidth"; "required": false; "isSignal": true; }; "labelPos": { "alias": "labelPos"; "required": false; "isSignal": true; }; "markAsRequired": { "alias": "markAsRequired"; "required": false; "isSignal": true; }; "cols": { "alias": "cols"; "required": true; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/file-upload.component';
|
|
1
|
+
export * from './src/file-upload.component';
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { HttpEvent } from '@angular/common/http';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { MessageService } from 'primeng/api';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
interface UploadEvent {
|
|
6
|
+
originalEvent: HttpEvent<any>;
|
|
7
|
+
files: File[];
|
|
8
|
+
}
|
|
9
|
+
interface UploadFile {
|
|
10
|
+
name: string;
|
|
11
|
+
size: number;
|
|
12
|
+
type: string;
|
|
13
|
+
objectURL?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare class FileUploadComponent {
|
|
16
|
+
private messageService;
|
|
17
|
+
constructor(messageService: MessageService);
|
|
18
|
+
name: import("@angular/core").InputSignal<string | undefined, string | undefined>;
|
|
19
|
+
url: import("@angular/core").InputSignal<string, string>;
|
|
20
|
+
multiple: import("@angular/core").InputSignal<boolean, boolean>;
|
|
21
|
+
accept: import("@angular/core").InputSignal<string, string>;
|
|
22
|
+
disabled: import("@angular/core").InputSignal<boolean, boolean>;
|
|
23
|
+
auto: import("@angular/core").InputSignal<boolean, boolean>;
|
|
24
|
+
maxFileSize: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
25
|
+
tabindex: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
26
|
+
withCredentials: import("@angular/core").InputSignal<boolean, boolean>;
|
|
27
|
+
showUploadButton: import("@angular/core").InputSignal<boolean, boolean>;
|
|
28
|
+
showCancelButton: import("@angular/core").InputSignal<boolean, boolean>;
|
|
29
|
+
cancelLabel: import("@angular/core").InputSignal<string, string>;
|
|
30
|
+
chooseLabel: import("@angular/core").InputSignal<string, string>;
|
|
31
|
+
uploadLabel: import("@angular/core").InputSignal<string, string>;
|
|
32
|
+
invalidFileTypeMessageSummary: import("@angular/core").InputSignal<string, string>;
|
|
33
|
+
invalidFileTypeMessageDetail: import("@angular/core").InputSignal<string, string>;
|
|
34
|
+
invalidFileSizeMessageSummary: import("@angular/core").InputSignal<string, string>;
|
|
35
|
+
invalidFileSizeMessageDetail: import("@angular/core").InputSignal<string, string>;
|
|
36
|
+
beforeSend: EventEmitter<unknown>;
|
|
37
|
+
upload: EventEmitter<unknown>;
|
|
38
|
+
errors: EventEmitter<unknown>;
|
|
39
|
+
selects: EventEmitter<unknown>;
|
|
40
|
+
clear: EventEmitter<unknown>;
|
|
41
|
+
uploadedFiles: UploadFile[];
|
|
42
|
+
onUpload(event: UploadEvent): void;
|
|
43
|
+
onError(event: any): void;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "aril-file-upload", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "url": { "alias": "url"; "required": true; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "auto": { "alias": "auto"; "required": false; "isSignal": true; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; "withCredentials": { "alias": "withCredentials"; "required": false; "isSignal": true; }; "showUploadButton": { "alias": "showUploadButton"; "required": false; "isSignal": true; }; "showCancelButton": { "alias": "showCancelButton"; "required": false; "isSignal": true; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; "isSignal": true; }; "chooseLabel": { "alias": "chooseLabel"; "required": false; "isSignal": true; }; "uploadLabel": { "alias": "uploadLabel"; "required": false; "isSignal": true; }; "invalidFileTypeMessageSummary": { "alias": "invalidFileTypeMessageSummary"; "required": false; "isSignal": true; }; "invalidFileTypeMessageDetail": { "alias": "invalidFileTypeMessageDetail"; "required": false; "isSignal": true; }; "invalidFileSizeMessageSummary": { "alias": "invalidFileSizeMessageSummary"; "required": false; "isSignal": true; }; "invalidFileSizeMessageDetail": { "alias": "invalidFileSizeMessageDetail"; "required": false; "isSignal": true; }; }, { "beforeSend": "beforeSend"; "upload": "upload"; "errors": "errors"; "selects": "selects"; "clear": "clear"; }, never, never, true, never>;
|
|
46
|
+
}
|
|
47
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./src/form.component";
|
|
3
|
+
import * as i2 from "./src/form-submit-button.component";
|
|
4
|
+
import * as i3 from "aril/ui/button";
|
|
5
|
+
export * from './src/form.component';
|
|
6
|
+
export * from './src/form-submit-button.component';
|
|
7
|
+
export declare class ARiLFormModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ARiLFormModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ARiLFormModule, [typeof i1.FormComponent, typeof i2.FormSubmitButtonComponent], [typeof i3.ButtonComponent], [typeof i1.FormComponent, typeof i2.FormSubmitButtonComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ARiLFormModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { MessageService } from 'primeng/api';
|
|
4
|
+
import { ButtonComponent } from 'aril/ui/button';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FormSubmitButtonComponent extends ButtonComponent {
|
|
7
|
+
formGroup: import("@angular/core").InputSignal<FormGroup<any>, FormGroup<any>>;
|
|
8
|
+
validEvent: EventEmitter<never>;
|
|
9
|
+
inValidEvent: EventEmitter<never>;
|
|
10
|
+
messageService: MessageService;
|
|
11
|
+
submit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormSubmitButtonComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormSubmitButtonComponent, "aril-form-submit:not([click])", never, { "formGroup": { "alias": "formGroup"; "required": true; "isSignal": true; }; }, { "validEvent": "validEvent"; "inValidEvent": "inValidEvent"; }, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FormGroup } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
export declare class FormComponent {
|
|
5
|
+
formGroup: import("@angular/core").InputSignal<FormGroup<any>, FormGroup<any>>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "aril-form", never, { "formGroup": { "alias": "formGroup"; "required": true; "isSignal": true; }; }, {}, never, ["*"], false, [{ directive: typeof i1.FlexGridDirective; inputs: {}; outputs: {}; }, { directive: typeof i1.FormErrorMessageDirective; inputs: { "formErrorMessage": "formGroup"; }; outputs: {}; }]>;
|
|
8
|
+
}
|
package/ui/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const aril_ui = "ARiL-UI";
|
|
@@ -1,16 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
export * from './src/form/form-
|
|
3
|
-
export * from './src/form/form-
|
|
4
|
-
export * from './src/
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export * from './src/
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
export * from './src/input/
|
|
11
|
-
export * from './src/input/
|
|
12
|
-
export * from './src/input/dx-input-error-message.pipe';
|
|
13
|
-
export * from './src/input/input-disabled.directive';
|
|
14
|
-
export * from './src/input/input-error-message.pipe';
|
|
15
|
-
export * from './src/input/input-transforms';
|
|
16
|
-
export * from './src/input/value-accessor.directive';
|
|
1
|
+
export * from './src/form/form-error-message.directive';
|
|
2
|
+
export * from './src/form/form-validation';
|
|
3
|
+
export * from './src/form/form-field-builder';
|
|
4
|
+
export * from './src/grid/flex-grid.directive';
|
|
5
|
+
export * from './src/input/baseInput';
|
|
6
|
+
export * from './src/input/common-input-validators.service';
|
|
7
|
+
export * from './src/input/dx-input-error-message.pipe';
|
|
8
|
+
export * from './src/input/input-disabled.directive';
|
|
9
|
+
export * from './src/input/input-error-message.pipe';
|
|
10
|
+
export * from './src/input/input-transforms';
|
|
11
|
+
export * from './src/input/value-accessor.directive';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ValidationErrors } from '@angular/forms';
|
|
2
|
+
import { Message } from 'primeng/api';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FormErrorMessagesComponent {
|
|
5
|
+
_pMessages: Message[];
|
|
6
|
+
set messages(messages: ValidationErrors | null);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormErrorMessagesComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormErrorMessagesComponent, "ng-component", never, { "messages": { "alias": "messages"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ComponentRef, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { FormErrorMessagesComponent } from './form-error-message.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FormErrorMessageDirective implements OnInit {
|
|
6
|
+
private viewContainerRef;
|
|
7
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
8
|
+
formErrorMessage: import("@angular/core").InputSignal<FormGroup<any>, FormGroup<any>>;
|
|
9
|
+
errorKeys: string[];
|
|
10
|
+
componentRef: ComponentRef<FormErrorMessagesComponent>;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormErrorMessageDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FormErrorMessageDirective, "[formErrorMessage]", never, { "formErrorMessage": { "alias": "formErrorMessage"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FormGroup, ValidatorFn } from '@angular/forms';
|
|
2
|
+
export declare const addControlsWithValidation: (form: FormGroup, controls: {
|
|
3
|
+
name: string;
|
|
4
|
+
validator?: ValidatorFn;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
}[]) => void;
|
|
7
|
+
export declare const removeControls: (form: FormGroup, controlNames: string[]) => void;
|
|
8
|
+
export declare const updateValueAndValidities: (form: FormGroup, controlNames: string[]) => void;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FlexGridDirective {
|
|
3
|
+
hostClass: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlexGridDirective, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FlexGridDirective, "[flexGrid]", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FormControlDirective, FormControlName, NgModel } from '@angular/forms';
|
|
2
|
+
import { TooltipOptions } from 'primeng/api';
|
|
3
|
+
export declare abstract class BaseInputComponent {
|
|
4
|
+
ngControl: NgModel | FormControlName | FormControlDirective;
|
|
5
|
+
tooltipOptions: TooltipOptions;
|
|
6
|
+
}
|
|
7
|
+
export declare function injectNgControl(): NgModel | FormControlName | FormControlDirective;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ValidatorFn } from '@angular/forms';
|
|
2
|
+
import 'aril/util/primitive-extensions';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
type DateRangeFormat = 'minute' | 'hour' | 'day' | 'month' | 'year';
|
|
5
|
+
export declare class CommonInputValidatorsService {
|
|
6
|
+
/**
|
|
7
|
+
* @param sdCtrlName - name of the start date form control
|
|
8
|
+
* @param edCtrlName - name of the end date form control
|
|
9
|
+
* @param rangeValue - range between start and end date. Default value is 1
|
|
10
|
+
* @param rangeFormat - format of the range. Default value is "day"
|
|
11
|
+
*/
|
|
12
|
+
dateRange(sdCtrlName: string, edCtrlName: string, rangeValue?: number, rangeFormat?: DateRangeFormat): ValidatorFn;
|
|
13
|
+
/**
|
|
14
|
+
* @description - pasword match vs.
|
|
15
|
+
*/
|
|
16
|
+
strictMatch(controlName: string, matchingControlName: string): ValidatorFn;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommonInputValidatorsService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CommonInputValidatorsService>;
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { InputErrorMessagePipe } from './input-error-message.pipe';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DXInputErrorMessagePipe implements PipeTransform {
|
|
5
|
+
errorMsgPipe: InputErrorMessagePipe;
|
|
6
|
+
transform(value: any, ...args: any[]): {
|
|
7
|
+
message: string;
|
|
8
|
+
};
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DXInputErrorMessagePipe, never>;
|
|
10
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<DXInputErrorMessagePipe, "dxInputErrorMessage", true>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { NgControl } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class InputDisabledDirective {
|
|
4
|
+
private ngControl;
|
|
5
|
+
constructor(ngControl: NgControl);
|
|
6
|
+
set arilDisabled(condition: boolean);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputDisabledDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<InputDisabledDirective, "[arilDisabled]", never, { "arilDisabled": { "alias": "arilDisabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class InputErrorMessagePipe implements PipeTransform {
|
|
4
|
+
transform(value: any, ...args: any[]): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputErrorMessagePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<InputErrorMessagePipe, "inputErrorMessage", true>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { PrimeIcons } from 'primeng/api';
|
|
2
|
+
export type PrimeIcon = Exclude<keyof typeof PrimeIcons, 'prototype'>;
|
|
3
|
+
export declare function iconTransform(icon: PrimeIcon): string;
|
|
4
|
+
export type IconPosTypes = 'right' | 'left';
|
|
5
|
+
export declare function iconPosTransform(pos: IconPosTypes): string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ValueAccessorDirective implements ControlValueAccessor {
|
|
4
|
+
writeValue(obj: any): void;
|
|
5
|
+
registerOnChange(fn: any): void;
|
|
6
|
+
registerOnTouched(fn: any): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValueAccessorDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ValueAccessorDirective, never, never, {}, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/mask.component';
|
|
1
|
+
export * from './src/mask.component';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
/**
|
|
5
|
+
* a - alphabetic characters
|
|
6
|
+
* 9 - numeric characters
|
|
7
|
+
* * - alphanumeric characters
|
|
8
|
+
* ? - optional characters
|
|
9
|
+
* formatting characters -> (), -
|
|
10
|
+
*/
|
|
11
|
+
export declare class MaskComponent extends BaseInputComponent {
|
|
12
|
+
mask: import("@angular/core").InputSignal<string, string>;
|
|
13
|
+
slotChar: import("@angular/core").InputSignal<string, string>;
|
|
14
|
+
placeholder: import("@angular/core").InputSignal<string, string>;
|
|
15
|
+
maxlength: import("@angular/core").InputSignal<number, number>;
|
|
16
|
+
usageInGrid: import("@angular/core").InputSignal<boolean, boolean>;
|
|
17
|
+
tabindex: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
18
|
+
showTooltip: boolean;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaskComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MaskComponent, "aril-mask[ngModel], aril-mask[formControl], aril-mask[formControlName]", never, { "mask": { "alias": "mask"; "required": true; "isSignal": true; }; "slotChar": { "alias": "slotChar"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "usageInGrid": { "alias": "usageInGrid"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
21
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/number.component';
|
|
1
|
+
export * from './src/number.component';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
type ButtonLayouts = 'stacked' | 'horizontal' | 'vertical';
|
|
5
|
+
export declare class NumberComponent extends BaseInputComponent {
|
|
6
|
+
min: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
7
|
+
max: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
8
|
+
showButtons: import("@angular/core").InputSignal<boolean, boolean>;
|
|
9
|
+
placeholder: import("@angular/core").InputSignal<string, string>;
|
|
10
|
+
prefix: import("@angular/core").InputSignal<string | undefined, string | undefined>;
|
|
11
|
+
suffix: import("@angular/core").InputSignal<string | undefined, string | undefined>;
|
|
12
|
+
maxlength: import("@angular/core").InputSignal<any, any>;
|
|
13
|
+
showClear: import("@angular/core").InputSignal<boolean, boolean>;
|
|
14
|
+
useGrouping: import("@angular/core").InputSignal<boolean, boolean>;
|
|
15
|
+
maxDigits: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
16
|
+
minDigits: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
17
|
+
tabindex: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
18
|
+
buttonLayout: import("@angular/core").InputSignal<ButtonLayouts, ButtonLayouts>;
|
|
19
|
+
_style: import("@angular/core").Signal<{
|
|
20
|
+
width: string;
|
|
21
|
+
} | {
|
|
22
|
+
width?: undefined;
|
|
23
|
+
}>;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumberComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumberComponent, "aril-number[ngModel], aril-number[formControl], aril-number[formControlName]", never, { "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "showButtons": { "alias": "showButtons"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "prefix": { "alias": "prefix"; "required": false; "isSignal": true; }; "suffix": { "alias": "suffix"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "showClear": { "alias": "showClear"; "required": false; "isSignal": true; }; "useGrouping": { "alias": "useGrouping"; "required": false; "isSignal": true; }; "maxDigits": { "alias": "maxDigits"; "required": false; "isSignal": true; }; "minDigits": { "alias": "minDigits"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; "buttonLayout": { "alias": "buttonLayout"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
26
|
+
}
|
|
27
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/overlay-panel.component';
|
|
1
|
+
export * from './src/overlay-panel.component';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OverlayPanel } from 'primeng/overlaypanel';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class OverlayPanelComponent {
|
|
4
|
+
dismissable: import("@angular/core").InputSignal<boolean, boolean>;
|
|
5
|
+
ref: OverlayPanel;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayPanelComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverlayPanelComponent, "aril-overlay-panel", never, { "dismissable": { "alias": "dismissable"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/panel.component';
|
|
1
|
+
export * from './src/panel.component';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PanelComponent {
|
|
3
|
+
toggleable: import("@angular/core").InputSignal<boolean, boolean>;
|
|
4
|
+
canFullScreen: import("@angular/core").InputSignal<boolean, boolean>;
|
|
5
|
+
showFooter: import("@angular/core").InputSignal<boolean, boolean>;
|
|
6
|
+
isFullScreen: boolean;
|
|
7
|
+
toggleFullScreen(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PanelComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "aril-panel", never, { "toggleable": { "alias": "toggleable"; "required": false; "isSignal": true; }; "canFullScreen": { "alias": "canFullScreen"; "required": false; "isSignal": true; }; "showFooter": { "alias": "showFooter"; "required": false; "isSignal": true; }; }, {}, never, ["[header]", "[tools]", "[body]", "[footer]"], true, never>;
|
|
10
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/password.component';
|
|
1
|
+
export * from './src/password.component';
|