aril 0.0.46 → 0.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/boot/config/api/{index.ts → index.d.ts} +1 -1
- package/boot/config/api/src/api.service.d.ts +14 -0
- package/boot/config/api/src/interfaces.d.ts +9 -0
- package/boot/config/apps/{index.ts → index.d.ts} +2 -2
- package/boot/config/apps/src/apps.service.d.ts +16 -0
- package/boot/config/apps/src/interfaces.d.ts +23 -0
- package/boot/config/apps/src/showdowDOMWrapper.d.ts +10 -0
- package/boot/config/plugins/{index.ts → index.d.ts} +2 -2
- package/boot/config/plugins/src/getNgZone.d.ts +5 -0
- package/boot/config/plugins/src/interfaces.d.ts +18 -0
- package/boot/config/plugins/src/plugins.service.d.ts +9 -0
- package/boot/host/{index.ts → index.d.ts} +1 -1
- package/boot/host/src/app.component.d.ts +8 -0
- package/boot/host/src/bootstrap.d.ts +2 -0
- package/boot/index.d.ts +1 -0
- package/boot/mfe/{index.ts → index.d.ts} +1 -1
- package/boot/mfe/src/app.component.d.ts +12 -0
- package/boot/mfe/src/appComponentLoader.d.ts +1 -0
- package/boot/mfe/src/bootstrap.d.ts +6 -0
- package/boot/mfe/src/loadStyles.d.ts +3 -0
- package/esm2022/aril.mjs +5 -0
- package/esm2022/boot/aril-boot.mjs +5 -0
- package/esm2022/boot/config/api/aril-boot-config-api.mjs +5 -0
- package/esm2022/boot/config/api/index.mjs +2 -0
- package/esm2022/boot/config/api/src/api.service.mjs +42 -0
- package/esm2022/boot/config/api/src/interfaces.mjs +11 -0
- package/esm2022/boot/config/apps/aril-boot-config-apps.mjs +5 -0
- package/esm2022/boot/config/apps/index.mjs +3 -0
- package/esm2022/boot/config/apps/src/apps.service.mjs +51 -0
- package/esm2022/boot/config/apps/src/interfaces.mjs +17 -0
- package/esm2022/boot/config/apps/src/showdowDOMWrapper.mjs +35 -0
- package/esm2022/boot/config/plugins/aril-boot-config-plugins.mjs +5 -0
- package/esm2022/boot/config/plugins/index.mjs +3 -0
- package/esm2022/boot/config/plugins/src/getNgZone.mjs +12 -0
- package/esm2022/boot/config/plugins/src/interfaces.mjs +3 -0
- package/esm2022/boot/config/plugins/src/plugins.service.mjs +65 -0
- package/esm2022/boot/host/aril-boot-host.mjs +5 -0
- package/esm2022/boot/host/index.mjs +2 -0
- package/esm2022/boot/host/src/app.component.mjs +32 -0
- package/esm2022/boot/host/src/bootstrap.mjs +50 -0
- package/esm2022/boot/index.mjs +2 -0
- package/esm2022/boot/mfe/aril-boot-mfe.mjs +5 -0
- package/esm2022/boot/mfe/index.mjs +2 -0
- package/esm2022/boot/mfe/src/app.component.mjs +60 -0
- package/esm2022/boot/mfe/src/appComponentLoader.mjs +5 -0
- package/esm2022/boot/mfe/src/bootstrap.mjs +64 -0
- package/esm2022/boot/mfe/src/loadStyles.mjs +16 -0
- package/esm2022/http/aril-http.mjs +5 -0
- package/esm2022/http/index.mjs +12 -0
- package/esm2022/http/lib/enums.mjs +16 -0
- package/esm2022/http/lib/interfaces.mjs +15 -0
- package/esm2022/http/src/httpBackend.mjs +17 -0
- package/esm2022/http/src/httpClient.mjs +14 -0
- package/esm2022/http/src/interceptor/state-machine.interceptor.mjs +8 -0
- package/esm2022/http/src/serviceBase.mjs +60 -0
- package/esm2022/http/src/serviceMockBase.mjs +5 -0
- package/esm2022/http/src/serviceRequest.mjs +21 -0
- package/esm2022/http/src/serviceStateMethods.mjs +118 -0
- package/esm2022/i18n/aril-i18n.mjs +5 -0
- package/esm2022/i18n/index.mjs +6 -0
- package/esm2022/i18n/src/folder-name-token.mjs +3 -0
- package/esm2022/i18n/src/i18n.module.mjs +17 -0
- package/esm2022/i18n/src/loader.mjs +20 -0
- package/esm2022/i18n/src/provideI18n.mjs +16 -0
- package/esm2022/i18n/src/provideScope.mjs +18 -0
- package/esm2022/keycloak/aril-keycloak.mjs +5 -0
- package/esm2022/keycloak/index.mjs +4 -0
- package/esm2022/keycloak/src/auth.guard.mjs +39 -0
- package/esm2022/keycloak/src/auth.interceptor.mjs +10 -0
- package/esm2022/keycloak/src/keycloak.manager.mjs +76 -0
- package/esm2022/public-api.mjs +3 -0
- package/esm2022/theme/aril-theme.mjs +5 -0
- package/esm2022/theme/index.mjs +2 -0
- package/esm2022/theme/layout/app/breadcrumb/app.breadcrumb.component.mjs +41 -0
- package/esm2022/theme/layout/app/config/app.config.component.mjs +132 -0
- package/esm2022/theme/layout/app/layout/app.layout.component.mjs +147 -0
- package/esm2022/theme/layout/app/layout/mfe.layout.component.mjs +67 -0
- package/esm2022/theme/layout/app/menu/app.menu.component.mjs +398 -0
- package/esm2022/theme/layout/app/profileSidebar/app.profilesidebar.component.mjs +28 -0
- package/esm2022/theme/layout/app/sidebar/app.sidebar.component.mjs +41 -0
- package/esm2022/theme/layout/app/topbar/app.topbar.component.mjs +34 -0
- package/esm2022/theme/layout/aril-theme-layout.mjs +5 -0
- package/esm2022/theme/layout/index.mjs +4 -0
- package/esm2022/theme/layout/service/app.layout.service.mjs +127 -0
- package/esm2022/theme/layout/service/app.menu.service.mjs +53 -0
- package/esm2022/theme/layout/service/menuchangeevent.mjs +2 -0
- package/esm2022/ui/aril-ui.mjs +5 -0
- package/esm2022/ui/autoComplete/aril-ui-autoComplete.mjs +5 -0
- package/esm2022/ui/autoComplete/index.mjs +2 -0
- package/esm2022/ui/autoComplete/src/auto-complete.component.mjs +81 -0
- package/esm2022/ui/autoComplete/src/interfaces.mjs +2 -0
- package/esm2022/ui/badge/aril-ui-badge.mjs +5 -0
- package/esm2022/ui/badge/index.mjs +2 -0
- package/esm2022/ui/badge/src/badge.component.mjs +19 -0
- package/esm2022/ui/button/aril-ui-button.mjs +5 -0
- package/esm2022/ui/button/index.mjs +3 -0
- package/esm2022/ui/button/src/button.component.mjs +37 -0
- package/esm2022/ui/button/src/split-button.component.mjs +18 -0
- package/esm2022/ui/calendar/aril-ui-calendar.mjs +5 -0
- package/esm2022/ui/calendar/index.mjs +2 -0
- package/esm2022/ui/calendar/src/calendar.component.mjs +119 -0
- package/esm2022/ui/checkbox/aril-ui-checkbox.mjs +5 -0
- package/esm2022/ui/checkbox/index.mjs +3 -0
- package/esm2022/ui/checkbox/src/check-box.component.mjs +24 -0
- package/esm2022/ui/checkbox/src/tri-state-checkbox.component.mjs +24 -0
- package/esm2022/ui/dxField/aril-ui-dxField.mjs +5 -0
- package/esm2022/ui/dxField/index.mjs +2 -0
- package/esm2022/ui/dxField/src/dx-field.component.mjs +18 -0
- package/esm2022/ui/field/aril-ui-field.mjs +5 -0
- package/esm2022/ui/field/index.mjs +2 -0
- package/esm2022/ui/field/src/field.component.mjs +39 -0
- package/esm2022/ui/fileUpload/aril-ui-fileUpload.mjs +5 -0
- package/esm2022/ui/fileUpload/index.mjs +2 -0
- package/esm2022/ui/fileUpload/src/file-upload.component.mjs +61 -0
- package/esm2022/ui/form/aril-ui-form.mjs +5 -0
- package/esm2022/ui/form/index.mjs +22 -0
- package/esm2022/ui/form/src/form-submit-button.component.mjs +40 -0
- package/esm2022/ui/form/src/form.component.mjs +27 -0
- package/esm2022/ui/index.mjs +2 -0
- package/esm2022/ui/lib/aril-ui-lib.mjs +5 -0
- package/esm2022/ui/lib/index.mjs +15 -0
- package/esm2022/ui/lib/src/form/form-error-message.component.mjs +33 -0
- package/esm2022/ui/lib/src/form/form-error-message.directive.mjs +34 -0
- package/esm2022/ui/lib/src/form/form-field-builder.mjs +23 -0
- package/esm2022/ui/lib/src/form/form-validation.mjs +14 -0
- package/esm2022/ui/lib/src/grid/flex-grid.directive.mjs +21 -0
- package/esm2022/ui/lib/src/input/baseInput.mjs +24 -0
- package/esm2022/ui/lib/src/input/common-input-validators.service.mjs +49 -0
- package/esm2022/ui/lib/src/input/dx-input-error-message.pipe.mjs +22 -0
- package/esm2022/ui/lib/src/input/input-disabled.directive.mjs +25 -0
- package/esm2022/ui/lib/src/input/input-error-message.pipe.mjs +42 -0
- package/esm2022/ui/lib/src/input/input-transforms.mjs +8 -0
- package/esm2022/ui/lib/src/input/value-accessor.directive.mjs +38 -0
- package/esm2022/ui/mask/aril-ui-mask.mjs +5 -0
- package/esm2022/ui/mask/index.mjs +2 -0
- package/esm2022/ui/mask/src/mask.component.mjs +35 -0
- package/esm2022/ui/number/aril-ui-number.mjs +5 -0
- package/esm2022/ui/number/index.mjs +2 -0
- package/esm2022/ui/number/src/number.component.mjs +36 -0
- package/esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs +5 -0
- package/esm2022/ui/overlayPanel/index.mjs +2 -0
- package/esm2022/ui/overlayPanel/src/overlay-panel.component.mjs +20 -0
- package/esm2022/ui/panel/aril-ui-panel.mjs +5 -0
- package/esm2022/ui/panel/index.mjs +2 -0
- package/esm2022/ui/panel/src/panel.component.mjs +24 -0
- package/esm2022/ui/password/aril-ui-password.mjs +5 -0
- package/esm2022/ui/password/index.mjs +2 -0
- package/esm2022/ui/password/src/password.component.mjs +29 -0
- package/esm2022/ui/radioButton/aril-ui-radioButton.mjs +5 -0
- package/esm2022/ui/radioButton/index.mjs +2 -0
- package/esm2022/ui/radioButton/src/radio-button.component.mjs +30 -0
- package/esm2022/ui/selectBox/aril-ui-selectBox.mjs +5 -0
- package/esm2022/ui/selectBox/index.mjs +2 -0
- package/esm2022/ui/selectBox/src/interfaces.mjs +2 -0
- package/esm2022/ui/selectBox/src/select-box.component.mjs +54 -0
- package/esm2022/ui/switch/aril-ui-switch.mjs +5 -0
- package/esm2022/ui/switch/index.mjs +2 -0
- package/esm2022/ui/switch/src/switch.component.mjs +23 -0
- package/esm2022/ui/table/aril-ui-table.mjs +5 -0
- package/esm2022/ui/table/index.mjs +49 -0
- package/esm2022/ui/table/src/i18n.mjs +56 -0
- package/esm2022/ui/table/src/table-column.component.mjs +23 -0
- package/esm2022/ui/table/src/table.component.mjs +94 -0
- package/esm2022/ui/tagBox/aril-ui-tagBox.mjs +5 -0
- package/esm2022/ui/tagBox/index.mjs +2 -0
- package/esm2022/ui/tagBox/src/tag-box.component.mjs +50 -0
- package/esm2022/ui/text/aril-ui-text.mjs +5 -0
- package/esm2022/ui/text/index.mjs +2 -0
- package/esm2022/ui/text/src/text.component.mjs +40 -0
- package/esm2022/ui/textArea/aril-ui-textArea.mjs +5 -0
- package/esm2022/ui/textArea/index.mjs +2 -0
- package/esm2022/ui/textArea/src/text-area.component.mjs +26 -0
- package/esm2022/ui/toggle-button/aril-ui-toggle-button.mjs +5 -0
- package/esm2022/ui/toggle-button/index.mjs +2 -0
- package/esm2022/ui/toggle-button/src/toggle-button.component.mjs +25 -0
- package/esm2022/ui/tree/aril-ui-tree.mjs +5 -0
- package/esm2022/ui/tree/index.mjs +2 -0
- package/esm2022/ui/tree/src/tree.component.mjs +34 -0
- package/esm2022/ui/treeTable/aril-ui-treeTable.mjs +5 -0
- package/esm2022/ui/treeTable/index.mjs +2 -0
- package/esm2022/ui/treeTable/src/tree-table.component.mjs +55 -0
- package/esm2022/ui/value/aril-ui-value.mjs +5 -0
- package/esm2022/ui/value/index.mjs +2 -0
- package/esm2022/ui/value/src/value.component.mjs +35 -0
- package/esm2022/util/aril-util.mjs +5 -0
- package/esm2022/util/block/aril-util-block.mjs +5 -0
- package/esm2022/util/block/index.mjs +2 -0
- package/esm2022/util/block/src/block.mjs +64 -0
- package/esm2022/util/custom_pages/aril-util-custom_pages.mjs +5 -0
- package/esm2022/util/custom_pages/index.mjs +2 -0
- package/esm2022/util/custom_pages/src/notFound.component.mjs +65 -0
- package/esm2022/util/index.mjs +2 -0
- package/esm2022/util/init-event/aril-util-init-event.mjs +5 -0
- package/esm2022/util/init-event/index.mjs +2 -0
- package/esm2022/util/init-event/src/init-event.directive.mjs +22 -0
- package/esm2022/util/lib/aril-util-lib.mjs +5 -0
- package/esm2022/util/lib/index.mjs +4 -0
- package/esm2022/util/lib/src/interfaces.mjs +4 -0
- package/esm2022/util/lib/src/module-router.mjs +17 -0
- package/esm2022/util/lib/src/types.mjs +3 -0
- package/esm2022/util/loaders/aril-util-loaders.mjs +5 -0
- package/esm2022/util/loaders/index.mjs +3 -0
- package/esm2022/util/loaders/script/script.loader.service.mjs +61 -0
- package/esm2022/util/loaders/style/style.loader.service.mjs +61 -0
- package/esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs +5 -0
- package/esm2022/util/primitive-extensions/index.mjs +5 -0
- package/esm2022/util/primitive-extensions/src/boolean.extensions.mjs +2 -0
- package/esm2022/util/primitive-extensions/src/date.extensions.mjs +116 -0
- package/esm2022/util/primitive-extensions/src/number.extensions.mjs +39 -0
- package/esm2022/util/primitive-extensions/src/string.extensions.mjs +23 -0
- package/esm2022/util/pub-sub/aril-util-pub-sub.mjs +5 -0
- package/esm2022/util/pub-sub/index.mjs +2 -0
- package/esm2022/util/pub-sub/src/pub-sub.service.mjs +29 -0
- package/fesm2022/aril-app.component-c363Er6g.mjs +76 -0
- package/fesm2022/aril-app.component-c363Er6g.mjs.map +1 -0
- package/fesm2022/aril-boot-config-api.mjs +59 -0
- package/fesm2022/aril-boot-config-api.mjs.map +1 -0
- package/fesm2022/aril-boot-config-apps.mjs +106 -0
- package/fesm2022/aril-boot-config-apps.mjs.map +1 -0
- package/fesm2022/aril-boot-config-plugins.mjs +84 -0
- package/fesm2022/aril-boot-config-plugins.mjs.map +1 -0
- package/fesm2022/aril-boot-host.mjs +86 -0
- package/fesm2022/aril-boot-host.mjs.map +1 -0
- package/fesm2022/aril-boot-mfe-app.component-WWRmTfs5.mjs +75 -0
- package/fesm2022/aril-boot-mfe-app.component-WWRmTfs5.mjs.map +1 -0
- package/fesm2022/aril-boot-mfe-aril-boot-mfe-PwAGdNZE.mjs +90 -0
- package/fesm2022/aril-boot-mfe-aril-boot-mfe-PwAGdNZE.mjs.map +1 -0
- package/fesm2022/aril-boot-mfe.mjs +16 -0
- package/fesm2022/aril-boot-mfe.mjs.map +1 -0
- package/fesm2022/aril-boot.mjs +8 -0
- package/fesm2022/aril-boot.mjs.map +1 -0
- package/fesm2022/aril-http.mjs +273 -0
- package/fesm2022/aril-http.mjs.map +1 -0
- package/fesm2022/aril-i18n.mjs +72 -0
- package/fesm2022/aril-i18n.mjs.map +1 -0
- package/fesm2022/aril-keycloak.mjs +129 -0
- package/fesm2022/aril-keycloak.mjs.map +1 -0
- package/fesm2022/aril-theme-layout.mjs +1010 -0
- package/fesm2022/aril-theme-layout.mjs.map +1 -0
- package/fesm2022/aril-theme.mjs +8 -0
- package/fesm2022/aril-theme.mjs.map +1 -0
- package/fesm2022/aril-ui-autoComplete.mjs +88 -0
- package/fesm2022/aril-ui-autoComplete.mjs.map +1 -0
- package/fesm2022/aril-ui-badge.mjs +26 -0
- package/fesm2022/aril-ui-badge.mjs.map +1 -0
- package/fesm2022/aril-ui-button.mjs +59 -0
- package/fesm2022/aril-ui-button.mjs.map +1 -0
- package/fesm2022/aril-ui-calendar.mjs +125 -0
- package/fesm2022/aril-ui-calendar.mjs.map +1 -0
- package/fesm2022/aril-ui-checkbox.mjs +47 -0
- package/fesm2022/aril-ui-checkbox.mjs.map +1 -0
- package/fesm2022/aril-ui-dxField.mjs +25 -0
- package/fesm2022/aril-ui-dxField.mjs.map +1 -0
- package/fesm2022/aril-ui-field.mjs +46 -0
- package/fesm2022/aril-ui-field.mjs.map +1 -0
- package/fesm2022/aril-ui-fileUpload.mjs +68 -0
- package/fesm2022/aril-ui-fileUpload.mjs.map +1 -0
- package/fesm2022/aril-ui-form.mjs +86 -0
- package/fesm2022/aril-ui-form.mjs.map +1 -0
- package/fesm2022/aril-ui-lib.mjs +322 -0
- package/fesm2022/aril-ui-lib.mjs.map +1 -0
- package/fesm2022/aril-ui-mask.mjs +42 -0
- package/fesm2022/aril-ui-mask.mjs.map +1 -0
- package/fesm2022/aril-ui-number.mjs +43 -0
- package/fesm2022/aril-ui-number.mjs.map +1 -0
- package/fesm2022/aril-ui-overlayPanel.mjs +27 -0
- package/fesm2022/aril-ui-overlayPanel.mjs.map +1 -0
- package/fesm2022/aril-ui-panel.mjs +31 -0
- package/fesm2022/aril-ui-panel.mjs.map +1 -0
- package/fesm2022/aril-ui-password.mjs +36 -0
- package/fesm2022/aril-ui-password.mjs.map +1 -0
- package/fesm2022/aril-ui-radioButton.mjs +37 -0
- package/fesm2022/aril-ui-radioButton.mjs.map +1 -0
- package/fesm2022/aril-ui-selectBox.mjs +61 -0
- package/fesm2022/aril-ui-selectBox.mjs.map +1 -0
- package/fesm2022/aril-ui-switch.mjs +30 -0
- package/fesm2022/aril-ui-switch.mjs.map +1 -0
- package/fesm2022/aril-ui-table.mjs +219 -0
- package/fesm2022/aril-ui-table.mjs.map +1 -0
- package/fesm2022/aril-ui-tagBox.mjs +57 -0
- package/fesm2022/aril-ui-tagBox.mjs.map +1 -0
- package/fesm2022/aril-ui-text.mjs +47 -0
- package/fesm2022/aril-ui-text.mjs.map +1 -0
- package/fesm2022/aril-ui-textArea.mjs +33 -0
- package/fesm2022/aril-ui-textArea.mjs.map +1 -0
- package/fesm2022/aril-ui-toggle-button.mjs +32 -0
- package/fesm2022/aril-ui-toggle-button.mjs.map +1 -0
- package/fesm2022/aril-ui-tree.mjs +41 -0
- package/fesm2022/aril-ui-tree.mjs.map +1 -0
- package/fesm2022/aril-ui-treeTable.mjs +62 -0
- package/fesm2022/aril-ui-treeTable.mjs.map +1 -0
- package/fesm2022/aril-ui-value.mjs +42 -0
- package/fesm2022/aril-ui-value.mjs.map +1 -0
- package/fesm2022/aril-ui.mjs +8 -0
- package/fesm2022/aril-ui.mjs.map +1 -0
- package/fesm2022/aril-util-block.mjs +71 -0
- package/fesm2022/aril-util-block.mjs.map +1 -0
- package/fesm2022/aril-util-custom_pages.mjs +72 -0
- package/fesm2022/aril-util-custom_pages.mjs.map +1 -0
- package/fesm2022/aril-util-init-event.mjs +29 -0
- package/fesm2022/aril-util-init-event.mjs.map +1 -0
- package/fesm2022/aril-util-lib.mjs +29 -0
- package/fesm2022/aril-util-lib.mjs.map +1 -0
- package/fesm2022/aril-util-loaders.mjs +126 -0
- package/fesm2022/aril-util-loaders.mjs.map +1 -0
- package/fesm2022/aril-util-primitive-extensions.mjs +179 -0
- package/fesm2022/aril-util-primitive-extensions.mjs.map +1 -0
- package/fesm2022/aril-util-pub-sub.mjs +36 -0
- package/fesm2022/aril-util-pub-sub.mjs.map +1 -0
- package/fesm2022/aril-util.mjs +8 -0
- package/fesm2022/aril-util.mjs.map +1 -0
- package/fesm2022/aril.mjs +157 -0
- package/fesm2022/aril.mjs.map +1 -0
- package/http/{index.ts → index.d.ts} +8 -13
- package/http/lib/enums.d.ts +13 -0
- package/http/lib/interfaces.d.ts +21 -0
- package/http/src/httpBackend.d.ts +8 -0
- package/http/src/httpClient.d.ts +8 -0
- package/http/src/interceptor/state-machine.interceptor.d.ts +2 -0
- package/http/src/serviceBase.d.ts +5 -0
- package/http/src/serviceMockBase.d.ts +6 -0
- package/http/src/serviceRequest.d.ts +4 -0
- package/http/src/serviceStateMethods.d.ts +14 -0
- package/i18n/{index.ts → index.d.ts} +5 -5
- package/i18n/src/folder-name-token.d.ts +2 -0
- package/i18n/src/i18n.module.d.ts +7 -0
- package/i18n/src/loader.d.ts +9 -0
- package/i18n/src/provideI18n.d.ts +2 -0
- package/i18n/src/provideScope.d.ts +5 -0
- package/index.d.ts +5 -0
- package/keycloak/{index.ts → index.d.ts} +3 -3
- package/keycloak/src/auth.guard.d.ts +11 -0
- package/keycloak/src/auth.interceptor.d.ts +2 -0
- package/keycloak/src/keycloak.manager.d.ts +25 -0
- package/package.json +314 -31
- package/{public-api.ts → public-api.d.ts} +2 -2
- package/theme/index.d.ts +1 -0
- package/theme/layout/app/breadcrumb/app.breadcrumb.component.d.ts +16 -0
- package/theme/layout/app/config/app.config.component.d.ts +36 -0
- package/theme/layout/app/layout/app.layout.component.d.ts +48 -0
- package/theme/layout/app/layout/mfe.layout.component.d.ts +8 -0
- package/theme/layout/app/menu/app.menu.component.d.ts +50 -0
- package/theme/layout/app/profileSidebar/app.profilesidebar.component.d.ts +13 -0
- package/theme/layout/app/sidebar/app.sidebar.component.d.ts +15 -0
- package/theme/layout/app/topbar/app.topbar.component.d.ts +16 -0
- package/theme/layout/index.d.ts +3 -0
- package/theme/layout/service/app.layout.service.d.ts +51 -0
- package/theme/layout/service/app.menu.service.d.ts +23 -0
- package/theme/layout/service/menuchangeevent.d.ts +4 -0
- package/ui/autoComplete/{index.ts → index.d.ts} +1 -1
- package/ui/autoComplete/src/auto-complete.component.d.ts +24 -0
- package/ui/autoComplete/src/interfaces.d.ts +24 -0
- package/ui/badge/{index.ts → index.d.ts} +1 -1
- package/ui/badge/src/badge.component.d.ts +11 -0
- package/ui/button/{index.ts → index.d.ts} +2 -2
- package/ui/button/src/button.component.d.ts +24 -0
- package/ui/button/src/split-button.component.d.ts +8 -0
- package/ui/calendar/{index.ts → index.d.ts} +1 -1
- package/ui/calendar/src/calendar.component.d.ts +38 -0
- package/ui/checkbox/{index.ts → index.d.ts} +2 -2
- package/ui/checkbox/src/check-box.component.d.ts +9 -0
- package/ui/checkbox/src/tri-state-checkbox.component.d.ts +9 -0
- package/ui/dxField/{index.ts → index.d.ts} +1 -1
- package/ui/dxField/src/dx-field.component.d.ts +9 -0
- package/ui/field/{index.ts → index.d.ts} +1 -1
- package/ui/field/src/field.component.d.ts +25 -0
- package/ui/fileUpload/{index.ts → index.d.ts} +1 -1
- package/ui/fileUpload/src/file-upload.component.d.ts +47 -0
- package/ui/form/index.d.ts +11 -0
- package/ui/form/src/form-submit-button.component.d.ts +14 -0
- package/ui/form/src/form.component.d.ts +8 -0
- package/ui/index.d.ts +1 -0
- package/ui/lib/{index.ts → index.d.ts} +11 -16
- package/ui/lib/src/form/form-error-message.component.d.ts +9 -0
- package/ui/lib/src/form/form-error-message.directive.d.ts +14 -0
- package/ui/lib/src/form/form-field-builder.d.ts +8 -0
- package/ui/lib/src/form/form-validation.d.ts +2 -0
- package/ui/lib/src/grid/flex-grid.directive.d.ts +6 -0
- package/ui/lib/src/input/baseInput.d.ts +7 -0
- package/ui/lib/src/input/common-input-validators.service.d.ts +20 -0
- package/ui/lib/src/input/dx-input-error-message.pipe.d.ts +11 -0
- package/ui/lib/src/input/input-disabled.directive.d.ts +9 -0
- package/ui/lib/src/input/input-error-message.pipe.d.ts +7 -0
- package/ui/lib/src/input/input-transforms.d.ts +5 -0
- package/ui/lib/src/input/value-accessor.directive.d.ts +9 -0
- package/ui/mask/{index.ts → index.d.ts} +1 -1
- package/ui/mask/src/mask.component.d.ts +21 -0
- package/ui/number/{index.ts → index.d.ts} +1 -1
- package/ui/number/src/number.component.d.ts +27 -0
- package/ui/overlayPanel/{index.ts → index.d.ts} +1 -1
- package/ui/overlayPanel/src/overlay-panel.component.d.ts +8 -0
- package/ui/panel/{index.ts → index.d.ts} +1 -1
- package/ui/panel/src/panel.component.d.ts +10 -0
- package/ui/password/{index.ts → index.d.ts} +1 -1
- package/ui/password/src/password.component.d.ts +11 -0
- package/ui/radioButton/{index.ts → index.d.ts} +1 -1
- package/ui/radioButton/src/radio-button.component.d.ts +20 -0
- package/ui/selectBox/{index.ts → index.d.ts} +1 -1
- package/ui/selectBox/src/interfaces.d.ts +32 -0
- package/ui/selectBox/src/select-box.component.d.ts +25 -0
- package/ui/switch/{index.ts → index.d.ts} +1 -1
- package/ui/switch/src/switch.component.d.ts +8 -0
- package/ui/table/index.d.ts +16 -0
- package/ui/table/src/i18n.d.ts +42 -0
- package/ui/table/src/table-column.component.d.ts +24 -0
- package/ui/table/src/table.component.d.ts +41 -0
- package/ui/tagBox/{index.ts → index.d.ts} +1 -1
- package/ui/tagBox/src/tag-box.component.d.ts +15 -0
- package/ui/text/{index.ts → index.d.ts} +1 -1
- package/ui/text/src/text.component.d.ts +17 -0
- package/ui/textArea/{index.ts → index.d.ts} +1 -1
- package/ui/textArea/src/text-area.component.d.ts +11 -0
- package/ui/toggle-button/index.d.ts +1 -0
- package/ui/toggle-button/src/toggle-button.component.d.ts +10 -0
- package/ui/tree/{index.ts → index.d.ts} +1 -1
- package/ui/tree/src/tree.component.d.ts +19 -0
- package/ui/treeTable/{index.ts → index.d.ts} +1 -1
- package/ui/treeTable/src/tree-table.component.d.ts +21 -0
- package/ui/value/{index.ts → index.d.ts} +1 -1
- package/ui/value/src/value.component.d.ts +13 -0
- package/util/block/{index.ts → index.d.ts} +1 -1
- package/util/block/src/block.d.ts +28 -0
- package/util/custom_pages/{index.ts → index.d.ts} +1 -1
- package/util/custom_pages/src/notFound.component.d.ts +5 -0
- package/util/index.d.ts +1 -0
- package/util/init-event/{index.ts → index.d.ts} +1 -1
- package/util/init-event/src/init-event.directive.d.ts +8 -0
- package/util/lib/{index.ts → index.d.ts} +3 -3
- package/util/lib/src/interfaces.d.ts +41 -0
- package/util/lib/src/module-router.d.ts +5 -0
- package/util/lib/src/types.d.ts +29 -0
- package/util/loaders/{index.ts → index.d.ts} +2 -2
- package/util/loaders/script/script.loader.service.d.ts +13 -0
- package/util/loaders/style/style.loader.service.d.ts +13 -0
- package/util/primitive-extensions/{index.ts → index.d.ts} +4 -4
- package/util/primitive-extensions/src/{boolean.extensions.ts → boolean.extensions.d.ts} +1 -1
- package/util/primitive-extensions/src/date.extensions.d.ts +8 -0
- package/util/primitive-extensions/src/number.extensions.d.ts +12 -0
- package/util/primitive-extensions/src/string.extensions.d.ts +11 -0
- package/util/pub-sub/{index.ts → index.d.ts} +1 -1
- package/util/pub-sub/src/pub-sub.service.d.ts +20 -0
- package/.eslintrc.json +0 -41
- package/boot/config/api/ng-package.json +0 -6
- package/boot/config/api/src/api.service.ts +0 -57
- package/boot/config/api/src/interfaces.ts +0 -13
- package/boot/config/apps/ng-package.json +0 -6
- package/boot/config/apps/src/apps.service.ts +0 -64
- package/boot/config/apps/src/interfaces.ts +0 -27
- package/boot/config/apps/src/showdowDOMWrapper.ts +0 -28
- package/boot/config/plugins/ng-package.json +0 -6
- package/boot/config/plugins/src/getNgZone.ts +0 -9
- package/boot/config/plugins/src/interfaces.ts +0 -11
- package/boot/config/plugins/src/plugins.service.ts +0 -82
- package/boot/host/ng-package.json +0 -6
- package/boot/host/src/app.component.ts +0 -27
- package/boot/host/src/bootstrap.ts +0 -61
- package/boot/index.ts +0 -1
- package/boot/mfe/ng-package.json +0 -6
- package/boot/mfe/src/app.component.ts +0 -57
- package/boot/mfe/src/appComponentLoader.ts +0 -4
- package/boot/mfe/src/bootstrap.ts +0 -78
- package/boot/mfe/src/loadStyles.ts +0 -19
- package/boot/ng-package.json +0 -6
- package/http/lib/enums.ts +0 -13
- package/http/lib/interfaces.ts +0 -38
- package/http/ng-package.json +0 -6
- package/http/src/httpBackend.ts +0 -12
- package/http/src/httpClient.ts +0 -20
- package/http/src/interceptor/state-machine.interceptor.ts +0 -9
- package/http/src/serviceBase.ts +0 -91
- package/http/src/serviceMockBase.ts +0 -12
- package/http/src/serviceRequest.ts +0 -26
- package/http/src/serviceStateMethods.ts +0 -155
- package/i18n/ng-package.json +0 -6
- package/i18n/src/folder-name-token.ts +0 -3
- package/i18n/src/i18n.module.ts +0 -11
- package/i18n/src/loader.ts +0 -16
- package/i18n/src/provideI18n.ts +0 -18
- package/i18n/src/provideScope.ts +0 -20
- package/keycloak/ng-package.json +0 -6
- package/keycloak/src/auth.guard.ts +0 -37
- package/keycloak/src/auth.interceptor.ts +0 -13
- package/keycloak/src/keycloak.manager.ts +0 -89
- package/ng-package.json +0 -14
- package/project.json +0 -39
- package/tsconfig.lib.json +0 -12
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -9
- package/ui/autoComplete/ng-package.json +0 -6
- package/ui/autoComplete/src/auto-complete.component.html +0 -11
- package/ui/autoComplete/src/auto-complete.component.ts +0 -92
- package/ui/autoComplete/src/interfaces.ts +0 -30
- package/ui/badge/ng-package.json +0 -6
- package/ui/badge/src/badge.component.html +0 -3
- package/ui/badge/src/badge.component.ts +0 -19
- package/ui/button/ng-package.json +0 -6
- package/ui/button/src/button.component.html +0 -10
- package/ui/button/src/button.component.ts +0 -43
- package/ui/button/src/split-button.component.html +0 -2
- package/ui/button/src/split-button.component.ts +0 -17
- package/ui/calendar/ng-package.json +0 -6
- package/ui/calendar/src/calendar.component.html +0 -31
- package/ui/calendar/src/calendar.component.ts +0 -136
- package/ui/checkbox/ng-package.json +0 -6
- package/ui/checkbox/src/check-box.component.html +0 -9
- package/ui/checkbox/src/check-box.component.ts +0 -19
- package/ui/checkbox/src/tri-state-checkbox.component.html +0 -7
- package/ui/checkbox/src/tri-state-checkbox.component.ts +0 -20
- package/ui/dxField/ng-package.json +0 -6
- package/ui/dxField/src/dx-field.component.html +0 -8
- package/ui/dxField/src/dx-field.component.ts +0 -16
- package/ui/field/ng-package.json +0 -6
- package/ui/field/src/field.component.html +0 -22
- package/ui/field/src/field.component.ts +0 -46
- package/ui/fileUpload/ng-package.json +0 -6
- package/ui/fileUpload/src/file-upload.component.html +0 -38
- package/ui/fileUpload/src/file-upload.component.ts +0 -72
- package/ui/form/index.ts +0 -18
- package/ui/form/ng-package.json +0 -6
- package/ui/form/src/form-submit-button.component.html +0 -12
- package/ui/form/src/form-submit-button.component.ts +0 -36
- package/ui/form/src/form.component.ts +0 -20
- package/ui/index.ts +0 -1
- package/ui/lib/ng-package.json +0 -6
- package/ui/lib/src/form/form-error-message.component.ts +0 -25
- package/ui/lib/src/form/form-error-message.directive.ts +0 -32
- package/ui/lib/src/form/form-field-builder.ts +0 -31
- package/ui/lib/src/form/form-validation.ts +0 -14
- package/ui/lib/src/grid/flex-grid.directive.ts +0 -10
- package/ui/lib/src/input/baseInput.ts +0 -30
- package/ui/lib/src/input/common-input-validators.service.ts +0 -57
- package/ui/lib/src/input/dx-input-error-message.pipe.ts +0 -16
- package/ui/lib/src/input/input-disabled.directive.ts +0 -15
- package/ui/lib/src/input/input-error-message.pipe.ts +0 -39
- package/ui/lib/src/input/input-transforms.ts +0 -11
- package/ui/lib/src/input/value-accessor.directive.ts +0 -27
- package/ui/mask/ng-package.json +0 -6
- package/ui/mask/src/mask.component.css +0 -23
- package/ui/mask/src/mask.component.html +0 -17
- package/ui/mask/src/mask.component.ts +0 -34
- package/ui/ng-package.json +0 -6
- package/ui/number/ng-package.json +0 -6
- package/ui/number/src/number.component.html +0 -25
- package/ui/number/src/number.component.ts +0 -34
- package/ui/overlayPanel/ng-package.json +0 -6
- package/ui/overlayPanel/src/overlay-panel.component.html +0 -5
- package/ui/overlayPanel/src/overlay-panel.component.ts +0 -16
- package/ui/panel/ng-package.json +0 -6
- package/ui/panel/src/panel.component.css +0 -25
- package/ui/panel/src/panel.component.html +0 -38
- package/ui/panel/src/panel.component.ts +0 -24
- package/ui/password/ng-package.json +0 -6
- package/ui/password/src/password.component.html +0 -24
- package/ui/password/src/password.component.ts +0 -22
- package/ui/radioButton/ng-package.json +0 -6
- package/ui/radioButton/src/radio-button.component.html +0 -17
- package/ui/radioButton/src/radio-button.component.ts +0 -36
- package/ui/selectBox/ng-package.json +0 -6
- package/ui/selectBox/src/interfaces.ts +0 -41
- package/ui/selectBox/src/select-box.component.html +0 -17
- package/ui/selectBox/src/select-box.component.ts +0 -69
- package/ui/switch/ng-package.json +0 -6
- package/ui/switch/src/switch.component.html +0 -7
- package/ui/switch/src/switch.component.ts +0 -18
- package/ui/table/index.ts +0 -34
- package/ui/table/ng-package.json +0 -6
- package/ui/table/src/i18n.ts +0 -55
- package/ui/table/src/table-column.component.ts +0 -28
- package/ui/table/src/table.component.html +0 -136
- package/ui/table/src/table.component.ts +0 -99
- package/ui/tagBox/ng-package.json +0 -6
- package/ui/tagBox/src/tag-box.component.html +0 -21
- package/ui/tagBox/src/tag-box.component.ts +0 -53
- package/ui/text/ng-package.json +0 -6
- package/ui/text/src/text.component.html +0 -21
- package/ui/text/src/text.component.ts +0 -47
- package/ui/textArea/ng-package.json +0 -6
- package/ui/textArea/src/text-area.component.html +0 -11
- package/ui/textArea/src/text-area.component.ts +0 -21
- package/ui/toggle-button/index.ts +0 -1
- package/ui/toggle-button/ng-package.json +0 -6
- package/ui/toggle-button/src/toggle-button.component.html +0 -13
- package/ui/toggle-button/src/toggle-button.component.scss +0 -19
- package/ui/toggle-button/src/toggle-button.component.ts +0 -22
- package/ui/tree/ng-package.json +0 -6
- package/ui/tree/src/tree.component.html +0 -16
- package/ui/tree/src/tree.component.ts +0 -52
- package/ui/treeTable/ng-package.json +0 -6
- package/ui/treeTable/src/tree-table.component.html +0 -88
- package/ui/treeTable/src/tree-table.component.ts +0 -57
- package/ui/value/ng-package.json +0 -6
- package/ui/value/src/value.component.html +0 -19
- package/ui/value/src/value.component.ts +0 -39
- package/util/block/ng-package.json +0 -6
- package/util/block/src/block.ts +0 -65
- package/util/custom_pages/ng-package.json +0 -6
- package/util/custom_pages/src/notFound.component.ts +0 -34
- package/util/index.ts +0 -1
- package/util/init-event/ng-package.json +0 -6
- package/util/init-event/src/init-event.directive.ts +0 -13
- package/util/lib/ng-package.json +0 -6
- package/util/lib/src/interfaces.ts +0 -44
- package/util/lib/src/module-router.ts +0 -10
- package/util/lib/src/types.ts +0 -49
- package/util/loaders/ng-package.json +0 -6
- package/util/loaders/script/script.loader.service.ts +0 -69
- package/util/loaders/style/style.loader.service.ts +0 -69
- package/util/ng-package.json +0 -6
- package/util/primitive-extensions/ng-package.json +0 -6
- package/util/primitive-extensions/src/date.extensions.ts +0 -135
- package/util/primitive-extensions/src/number.extensions.ts +0 -57
- package/util/primitive-extensions/src/string.extensions.ts +0 -39
- package/util/pub-sub/ng-package.json +0 -6
- package/util/pub-sub/src/pub-sub.service.ts +0 -34
- /package/boot/config/{api/src/api.sample.json → api.sample.json} +0 -0
- /package/{util/block/src → scripts/util}/blockui.min.js +0 -0
- /package/{ui/styles → styles/ui}/ui.common.scss +0 -0
- /package/{util/block/src → styles/util}/blockui.css +0 -0
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { NgStyle } from '@angular/common';
|
|
2
|
-
import { Component, input } from '@angular/core';
|
|
3
|
-
import { ReactiveFormsModule } from '@angular/forms';
|
|
4
|
-
|
|
5
|
-
import { InputMaskModule } from 'primeng/inputmask';
|
|
6
|
-
|
|
7
|
-
import { BaseInputComponent, InputErrorMessagePipe, ValueAccessorDirective } from 'aril/ui/lib';
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* a - alphabetic characters
|
|
11
|
-
* 9 - numeric characters
|
|
12
|
-
* * - alphanumeric characters
|
|
13
|
-
* ? - optional characters
|
|
14
|
-
* formatting characters -> (), -
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
@Component({
|
|
18
|
-
standalone: true,
|
|
19
|
-
selector: 'aril-mask[ngModel], aril-mask[formControl], aril-mask[formControlName]',
|
|
20
|
-
templateUrl: './mask.component.html',
|
|
21
|
-
styleUrl: './mask.component.css',
|
|
22
|
-
imports: [ReactiveFormsModule, NgStyle, InputMaskModule, InputErrorMessagePipe],
|
|
23
|
-
hostDirectives: [ValueAccessorDirective]
|
|
24
|
-
})
|
|
25
|
-
export class MaskComponent extends BaseInputComponent {
|
|
26
|
-
mask = input.required<string>();
|
|
27
|
-
slotChar = input<string>('_');
|
|
28
|
-
placeholder = input<string>('');
|
|
29
|
-
maxlength = input<number>(100);
|
|
30
|
-
usageInGrid = input<boolean>(true);
|
|
31
|
-
tabindex = input<number>();
|
|
32
|
-
|
|
33
|
-
showTooltip = false;
|
|
34
|
-
}
|
package/ui/ng-package.json
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
<p-inputNumber
|
|
2
|
-
[min]="min()"
|
|
3
|
-
[max]="max()"
|
|
4
|
-
mode="decimal"
|
|
5
|
-
locale="en-US"
|
|
6
|
-
[prefix]="prefix()"
|
|
7
|
-
[suffix]="suffix()"
|
|
8
|
-
[maxlength]="maxlength()"
|
|
9
|
-
[showClear]="showClear()"
|
|
10
|
-
[style]="_style()"
|
|
11
|
-
[tabindex]="tabindex()"
|
|
12
|
-
spinnerMode="vertical"
|
|
13
|
-
[useGrouping]="useGrouping()"
|
|
14
|
-
[placeholder]="placeholder()"
|
|
15
|
-
[showButtons]="showButtons()"
|
|
16
|
-
[maxFractionDigits]="maxDigits()"
|
|
17
|
-
[minFractionDigits]="minDigits()"
|
|
18
|
-
[buttonLayout]="buttonLayout()"
|
|
19
|
-
incrementButtonClass="p-button-info"
|
|
20
|
-
decrementButtonClass="p-button-danger"
|
|
21
|
-
[pTooltip]="ngControl.invalid ? (ngControl.control.value | inputErrorMessage: ngControl) : ''"
|
|
22
|
-
[tooltipOptions]="tooltipOptions"
|
|
23
|
-
[formControl]="ngControl.control"
|
|
24
|
-
(ngModelChange)="ngControl.viewToModelUpdate($event)">
|
|
25
|
-
</p-inputNumber>
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { Component, computed, input } from '@angular/core';
|
|
2
|
-
import { ReactiveFormsModule } from '@angular/forms';
|
|
3
|
-
|
|
4
|
-
import { InputNumberModule } from 'primeng/inputnumber';
|
|
5
|
-
import { TooltipModule } from 'primeng/tooltip';
|
|
6
|
-
|
|
7
|
-
import { BaseInputComponent, InputErrorMessagePipe, ValueAccessorDirective } from 'aril/ui/lib';
|
|
8
|
-
|
|
9
|
-
type ButtonLayouts = 'stacked' | 'horizontal' | 'vertical';
|
|
10
|
-
|
|
11
|
-
@Component({
|
|
12
|
-
standalone: true,
|
|
13
|
-
selector: 'aril-number[ngModel], aril-number[formControl], aril-number[formControlName]',
|
|
14
|
-
templateUrl: './number.component.html',
|
|
15
|
-
imports: [ReactiveFormsModule, InputNumberModule, TooltipModule, InputErrorMessagePipe],
|
|
16
|
-
hostDirectives: [ValueAccessorDirective]
|
|
17
|
-
})
|
|
18
|
-
export class NumberComponent extends BaseInputComponent {
|
|
19
|
-
min = input<number>();
|
|
20
|
-
max = input<number>();
|
|
21
|
-
showButtons = input(false);
|
|
22
|
-
placeholder = input<string>('');
|
|
23
|
-
prefix = input<string>();
|
|
24
|
-
suffix = input<string>();
|
|
25
|
-
maxlength = input<any>();
|
|
26
|
-
showClear = input(false);
|
|
27
|
-
useGrouping = input(true);
|
|
28
|
-
maxDigits = input<number>();
|
|
29
|
-
minDigits = input<number>();
|
|
30
|
-
tabindex = input<number>();
|
|
31
|
-
buttonLayout = input<ButtonLayouts>('stacked');
|
|
32
|
-
|
|
33
|
-
_style = computed(() => (this.buttonLayout() == 'vertical' ? { width: '3rem' } : {}));
|
|
34
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, ViewChild, input } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
import { OverlayPanel, OverlayPanelModule } from 'primeng/overlaypanel';
|
|
4
|
-
|
|
5
|
-
@Component({
|
|
6
|
-
standalone: true,
|
|
7
|
-
selector: 'aril-overlay-panel',
|
|
8
|
-
templateUrl: './overlay-panel.component.html',
|
|
9
|
-
imports: [OverlayPanelModule],
|
|
10
|
-
changeDetection: ChangeDetectionStrategy.OnPush
|
|
11
|
-
})
|
|
12
|
-
export class OverlayPanelComponent {
|
|
13
|
-
dismissable = input<boolean>(true);
|
|
14
|
-
|
|
15
|
-
@ViewChild('ref') ref!: OverlayPanel;
|
|
16
|
-
}
|
package/ui/panel/ng-package.json
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
.full-screen {
|
|
2
|
-
position: fixed;
|
|
3
|
-
top: 0;
|
|
4
|
-
left: 0;
|
|
5
|
-
right: 0;
|
|
6
|
-
bottom: 0;
|
|
7
|
-
z-index: 99999999;
|
|
8
|
-
overflow-y: auto;
|
|
9
|
-
box-sizing: border-box;
|
|
10
|
-
width: 100%;
|
|
11
|
-
height: 100vh;
|
|
12
|
-
background: #fff;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.panel-header {
|
|
16
|
-
width: 100%;
|
|
17
|
-
display: flex;
|
|
18
|
-
justify-content: space-between;
|
|
19
|
-
align-items: center;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.header-icon {
|
|
23
|
-
cursor: pointer;
|
|
24
|
-
width: 1.5rem;
|
|
25
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
<div [ngClass]="{ 'full-screen': isFullScreen && canFullScreen }">
|
|
2
|
-
<p-panel [toggleable]="toggleable()" [collapseIcon]="'pi pi-chevron-up'" [expandIcon]="'pi pi-chevron-down'">
|
|
3
|
-
<!-- header -->
|
|
4
|
-
<ng-template pTemplate="header">
|
|
5
|
-
<div class="panel-header" style="width: fit-content">
|
|
6
|
-
<ng-content select="[header]"></ng-content>
|
|
7
|
-
</div>
|
|
8
|
-
</ng-template>
|
|
9
|
-
|
|
10
|
-
<!-- header-tools -->
|
|
11
|
-
<ng-template class="flex" pTemplate="icons">
|
|
12
|
-
<ng-content class="flex" select="[tools]"></ng-content>
|
|
13
|
-
|
|
14
|
-
@if (canFullScreen()) {
|
|
15
|
-
<div class="panel-icons" style="display: flex">
|
|
16
|
-
<i
|
|
17
|
-
[attr.role]="'none'"
|
|
18
|
-
class="pi mr-1 header-icon"
|
|
19
|
-
[ngClass]="{
|
|
20
|
-
'pi-window-maximize': !isFullScreen,
|
|
21
|
-
'pi-window-minimize': isFullScreen
|
|
22
|
-
}"
|
|
23
|
-
(click)="toggleFullScreen()"></i>
|
|
24
|
-
</div>
|
|
25
|
-
}
|
|
26
|
-
</ng-template>
|
|
27
|
-
|
|
28
|
-
<!-- body -->
|
|
29
|
-
<ng-content select="[body]"></ng-content>
|
|
30
|
-
|
|
31
|
-
<!-- footer -->
|
|
32
|
-
@if (showFooter()) {
|
|
33
|
-
<ng-template pTemplate="footer">
|
|
34
|
-
<ng-content select="[footer]"></ng-content>
|
|
35
|
-
</ng-template>
|
|
36
|
-
}
|
|
37
|
-
</p-panel>
|
|
38
|
-
</div>
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { NgClass } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, input } from '@angular/core';
|
|
3
|
-
|
|
4
|
-
import { PanelModule } from 'primeng/panel';
|
|
5
|
-
|
|
6
|
-
@Component({
|
|
7
|
-
standalone: true,
|
|
8
|
-
selector: 'aril-panel',
|
|
9
|
-
templateUrl: './panel.component.html',
|
|
10
|
-
styleUrl: './panel.component.css',
|
|
11
|
-
imports: [PanelModule, NgClass],
|
|
12
|
-
changeDetection: ChangeDetectionStrategy.OnPush
|
|
13
|
-
})
|
|
14
|
-
export class PanelComponent {
|
|
15
|
-
toggleable = input<boolean>(true);
|
|
16
|
-
canFullScreen = input<boolean>(true);
|
|
17
|
-
showFooter = input<boolean>(false);
|
|
18
|
-
|
|
19
|
-
isFullScreen = false;
|
|
20
|
-
|
|
21
|
-
toggleFullScreen() {
|
|
22
|
-
this.isFullScreen = !this.isFullScreen;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<p-password
|
|
2
|
-
[feedback]="feedback()"
|
|
3
|
-
[toggleMask]="true"
|
|
4
|
-
[placeholder]="placeholder()"
|
|
5
|
-
[tabindex]="tabindex"
|
|
6
|
-
[pTooltip]="ngControl.invalid ? (ngControl.control.value | inputErrorMessage: ngControl) : ''"
|
|
7
|
-
[tooltipOptions]="tooltipOptions"
|
|
8
|
-
[formControl]="ngControl.control"
|
|
9
|
-
(ngModelChange)="ngControl.viewToModelUpdate($event)">
|
|
10
|
-
@if (passwordCriterias()?.length) {
|
|
11
|
-
<ng-template pTemplate="header">
|
|
12
|
-
<h6>Şifre Oluştur</h6>
|
|
13
|
-
</ng-template>
|
|
14
|
-
<ng-template pTemplate="footer">
|
|
15
|
-
<p-divider></p-divider>
|
|
16
|
-
<p class="mt-2">Şartlar</p>
|
|
17
|
-
<ul class="pl-2 ml-2 mt-0" style="line-height: 1.5">
|
|
18
|
-
@for (criteria of passwordCriterias(); track criteria) {
|
|
19
|
-
<li>{{ criteria }}</li>
|
|
20
|
-
}
|
|
21
|
-
</ul>
|
|
22
|
-
</ng-template>
|
|
23
|
-
}
|
|
24
|
-
</p-password>
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { Component, input } from '@angular/core';
|
|
2
|
-
import { ReactiveFormsModule } from '@angular/forms';
|
|
3
|
-
|
|
4
|
-
import { DividerModule } from 'primeng/divider';
|
|
5
|
-
import { PasswordModule } from 'primeng/password';
|
|
6
|
-
import { TooltipModule } from 'primeng/tooltip';
|
|
7
|
-
|
|
8
|
-
import { BaseInputComponent, InputErrorMessagePipe, ValueAccessorDirective } from 'aril/ui/lib';
|
|
9
|
-
|
|
10
|
-
@Component({
|
|
11
|
-
standalone: true,
|
|
12
|
-
selector: 'aril-password[ngModel], aril-password[formControl], aril-password[formControlName]',
|
|
13
|
-
templateUrl: './password.component.html',
|
|
14
|
-
imports: [ReactiveFormsModule, PasswordModule, DividerModule, TooltipModule, InputErrorMessagePipe],
|
|
15
|
-
hostDirectives: [ValueAccessorDirective]
|
|
16
|
-
})
|
|
17
|
-
export class PasswordComponent extends BaseInputComponent {
|
|
18
|
-
feedback = input(false);
|
|
19
|
-
passwordCriterias = input<string[]>();
|
|
20
|
-
placeholder = input<string>('');
|
|
21
|
-
tabindex = input<number>();
|
|
22
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<div [class]="_pAlign()">
|
|
2
|
-
@for (item of options(); track item) {
|
|
3
|
-
<div [class]="_cAlign()">
|
|
4
|
-
<p-radioButton
|
|
5
|
-
[value]="item.key"
|
|
6
|
-
[inputId]="item.key"
|
|
7
|
-
[tabindex]="tabindex()"
|
|
8
|
-
[pTooltip]="ngControl.invalid ? (ngControl.control.value | inputErrorMessage: ngControl) : ''"
|
|
9
|
-
[tooltipOptions]="tooltipOptions"
|
|
10
|
-
[formControl]="ngControl.control"
|
|
11
|
-
(ngModelChange)="ngControl.viewToModelUpdate($event)">
|
|
12
|
-
</p-radioButton
|
|
13
|
-
>
|
|
14
|
-
<span class="ml-2">{{ item.label }}</span>
|
|
15
|
-
</div>
|
|
16
|
-
}
|
|
17
|
-
</div>
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
-
import { Component, Signal, computed, input, signal } from '@angular/core';
|
|
3
|
-
import { ReactiveFormsModule } from '@angular/forms';
|
|
4
|
-
|
|
5
|
-
import { RadioButtonModule } from 'primeng/radiobutton';
|
|
6
|
-
import { TooltipModule } from 'primeng/tooltip';
|
|
7
|
-
|
|
8
|
-
import { BaseInputComponent, InputErrorMessagePipe, ValueAccessorDirective } from 'aril/ui/lib';
|
|
9
|
-
|
|
10
|
-
type Aligns = 'horizontal' | 'vertical';
|
|
11
|
-
interface RadioButtonOption {
|
|
12
|
-
key: any;
|
|
13
|
-
label: string;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
@Component({
|
|
17
|
-
standalone: true,
|
|
18
|
-
selector: 'aril-radio-button[ngModel], aril-radio-button[formControl], aril-radio-button[formControlName]',
|
|
19
|
-
templateUrl: './radio-button.component.html',
|
|
20
|
-
imports: [ReactiveFormsModule, RadioButtonModule, TooltipModule, InputErrorMessagePipe],
|
|
21
|
-
hostDirectives: [ValueAccessorDirective]
|
|
22
|
-
})
|
|
23
|
-
export class RadioButtonComponent extends BaseInputComponent {
|
|
24
|
-
constructor() {
|
|
25
|
-
super();
|
|
26
|
-
this._pAlign = computed(() => (this.align() == 'horizontal' ? 'flex flex-wrap gap-3' : 'flex flex-column'));
|
|
27
|
-
this._cAlign = computed(() => (this.align() == 'horizontal' ? 'flex align-items-center' : 'field-checkbox'));
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
options = input.required<RadioButtonOption[]>();
|
|
31
|
-
tabindex = input<number>();
|
|
32
|
-
align = input<Aligns>('horizontal');
|
|
33
|
-
|
|
34
|
-
_pAlign: Signal<string> = signal('flex flex-wrap gap-3');
|
|
35
|
-
_cAlign: Signal<string> = signal('flex align-items-center');
|
|
36
|
-
}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { Interfaces } from 'aril/util/lib';
|
|
2
|
-
|
|
3
|
-
export type SelectBoxItem =
|
|
4
|
-
| Interfaces.MapStringString
|
|
5
|
-
| Interfaces.MapStringNumber
|
|
6
|
-
| Interfaces.MapNumberString
|
|
7
|
-
| Interfaces.MapNumberNumber;
|
|
8
|
-
|
|
9
|
-
export interface SelectionRequestDTO {
|
|
10
|
-
groupName: string;
|
|
11
|
-
parameters?: Parameters;
|
|
12
|
-
parentSelectionKey: string | null;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export interface Parameters {
|
|
16
|
-
additionalProp1: AdditionalProp;
|
|
17
|
-
additionalProp2: AdditionalProp;
|
|
18
|
-
additionalProp3: AdditionalProp;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export interface AdditionalProp {}
|
|
22
|
-
|
|
23
|
-
export interface SelectionGroupDTO {
|
|
24
|
-
id: number;
|
|
25
|
-
groupName: string;
|
|
26
|
-
groupDescription: string;
|
|
27
|
-
groupComment: string;
|
|
28
|
-
loadStrategy: string;
|
|
29
|
-
dynamicQuery: string;
|
|
30
|
-
parentGroupId: number;
|
|
31
|
-
selectionItems: SelectionItem[];
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export interface SelectionItem {
|
|
35
|
-
id: number;
|
|
36
|
-
groupId: number;
|
|
37
|
-
selectionKey: string;
|
|
38
|
-
selectionDisplay: string;
|
|
39
|
-
showOrder: number;
|
|
40
|
-
parentSelectionKey: string;
|
|
41
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<dx-select-box
|
|
2
|
-
[items]="selectionItems() || items()"
|
|
3
|
-
[valueExpr]="itemKey()"
|
|
4
|
-
[displayExpr]="itemText()"
|
|
5
|
-
[searchEnabled]="true"
|
|
6
|
-
[searchExpr]="searchExpr()"
|
|
7
|
-
[tabIndex]="tabindex()"
|
|
8
|
-
[grouped]="grouped()"
|
|
9
|
-
[placeholder]="placeholder()"
|
|
10
|
-
[showClearButton]="true"
|
|
11
|
-
[isValid]="ngControl?.control?.valid || ngControl?.control?.pristine || ngControl?.control?.disabled || false"
|
|
12
|
-
[validationError]="ngControl?.control?.errors | dxInputErrorMessage: ngControl?.control"
|
|
13
|
-
validationMessagePosition="top"
|
|
14
|
-
[formControl]="ngControl.control"
|
|
15
|
-
(ngModelChange)="ngControl.viewToModelUpdate($event)"
|
|
16
|
-
(onSelectionChanged)="onSelectionChanged.emit($event.selectedItem)">
|
|
17
|
-
</dx-select-box>
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, EventEmitter, Output, effect, input, signal } from '@angular/core';
|
|
3
|
-
import { ReactiveFormsModule } from '@angular/forms';
|
|
4
|
-
|
|
5
|
-
import { DxSelectBoxModule } from 'devextreme-angular/ui/select-box';
|
|
6
|
-
import { firstValueFrom } from 'rxjs';
|
|
7
|
-
|
|
8
|
-
import { API_CONFIGS } from 'aril/boot/config/api';
|
|
9
|
-
import {
|
|
10
|
-
BaseInputComponent,
|
|
11
|
-
DXInputErrorMessagePipe,
|
|
12
|
-
InputErrorMessagePipe,
|
|
13
|
-
ValueAccessorDirective
|
|
14
|
-
} from 'aril/ui/lib';
|
|
15
|
-
|
|
16
|
-
import { SelectBoxItem, SelectionGroupDTO, SelectionRequestDTO } from './interfaces';
|
|
17
|
-
|
|
18
|
-
@Component({
|
|
19
|
-
standalone: true,
|
|
20
|
-
selector: 'aril-select-box[formControl], aril-select-box[formControlName]',
|
|
21
|
-
templateUrl: './select-box.component.html',
|
|
22
|
-
imports: [ReactiveFormsModule, DxSelectBoxModule, DXInputErrorMessagePipe],
|
|
23
|
-
providers: [InputErrorMessagePipe],
|
|
24
|
-
hostDirectives: [ValueAccessorDirective],
|
|
25
|
-
changeDetection: ChangeDetectionStrategy.OnPush
|
|
26
|
-
})
|
|
27
|
-
export class SelectBoxComponent extends BaseInputComponent {
|
|
28
|
-
itemKey = input('key');
|
|
29
|
-
itemText = input('text');
|
|
30
|
-
groupName = input('');
|
|
31
|
-
parentSelectionKey = input(null);
|
|
32
|
-
tabindex = input<number>(0);
|
|
33
|
-
items = input.required<SelectBoxItem[]>();
|
|
34
|
-
|
|
35
|
-
selectionItems = signal<SelectBoxItem[] | null>(null);
|
|
36
|
-
|
|
37
|
-
/** * @description when grouped = true, option item structure { key:string, items:[] } */
|
|
38
|
-
grouped = input(false);
|
|
39
|
-
placeholder = input<string>('');
|
|
40
|
-
searchExpr = input<string | string[]>('');
|
|
41
|
-
|
|
42
|
-
@Output() onSelectionChanged = new EventEmitter<SelectBoxItem>();
|
|
43
|
-
|
|
44
|
-
constructor(private http: HttpClient) {
|
|
45
|
-
super();
|
|
46
|
-
effect(() => {
|
|
47
|
-
if (this.groupName() || this.parentSelectionKey()) this.getSelectionItems();
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
async getSelectionItems() {
|
|
52
|
-
const payload: SelectionRequestDTO = {
|
|
53
|
-
groupName: this.groupName(),
|
|
54
|
-
parentSelectionKey: this.parentSelectionKey()
|
|
55
|
-
};
|
|
56
|
-
|
|
57
|
-
const selectionGroup = await firstValueFrom(
|
|
58
|
-
this.http.post<SelectionGroupDTO>(API_CONFIGS.api + '/selection-group/load', payload)
|
|
59
|
-
);
|
|
60
|
-
|
|
61
|
-
this.selectionItems.set(
|
|
62
|
-
selectionGroup?.selectionItems.map((item) => ({
|
|
63
|
-
key: item.selectionKey,
|
|
64
|
-
text: item.selectionDisplay,
|
|
65
|
-
parentSelectionKey: item.parentSelectionKey
|
|
66
|
-
}))
|
|
67
|
-
);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<p-inputSwitch
|
|
2
|
-
[tabindex]="tabindex()"
|
|
3
|
-
[pTooltip]="ngControl.invalid ? (ngControl.control.value | inputErrorMessage: ngControl) : ''"
|
|
4
|
-
[tooltipOptions]="tooltipOptions"
|
|
5
|
-
[formControl]="ngControl.control"
|
|
6
|
-
(ngModelChange)="ngControl.viewToModelUpdate($event)">
|
|
7
|
-
</p-inputSwitch>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Component, input } from '@angular/core';
|
|
2
|
-
import { ReactiveFormsModule } from '@angular/forms';
|
|
3
|
-
|
|
4
|
-
import { InputSwitchModule } from 'primeng/inputswitch';
|
|
5
|
-
import { TooltipModule } from 'primeng/tooltip';
|
|
6
|
-
|
|
7
|
-
import { BaseInputComponent, InputErrorMessagePipe, ValueAccessorDirective } from 'aril/ui/lib';
|
|
8
|
-
|
|
9
|
-
@Component({
|
|
10
|
-
standalone: true,
|
|
11
|
-
selector: 'aril-switch[ngModel], aril-switch[formControl], aril-switch[formControlName]',
|
|
12
|
-
templateUrl: './switch.component.html',
|
|
13
|
-
imports: [ReactiveFormsModule, InputSwitchModule, TooltipModule, InputErrorMessagePipe],
|
|
14
|
-
hostDirectives: [ValueAccessorDirective]
|
|
15
|
-
})
|
|
16
|
-
export class SwitchComponent extends BaseInputComponent {
|
|
17
|
-
tabindex = input<number>();
|
|
18
|
-
}
|
package/ui/table/index.ts
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { NgFor, NgForOf, NgStyle, NgTemplateOutlet } from '@angular/common';
|
|
2
|
-
import { NgModule } from '@angular/core';
|
|
3
|
-
import { FormsModule } from '@angular/forms';
|
|
4
|
-
|
|
5
|
-
import { TableModule } from 'primeng/table';
|
|
6
|
-
import { TooltipModule } from 'primeng/tooltip';
|
|
7
|
-
|
|
8
|
-
import { ButtonComponent } from 'aril/ui/button';
|
|
9
|
-
import { TextComponent } from 'aril/ui/text';
|
|
10
|
-
|
|
11
|
-
import { TableColumnComponent } from './src/table-column.component';
|
|
12
|
-
import { TableComponent } from './src/table.component';
|
|
13
|
-
|
|
14
|
-
export * from './src/table.component';
|
|
15
|
-
export * from './src/table-column.component';
|
|
16
|
-
|
|
17
|
-
const components = [TableComponent, TableColumnComponent];
|
|
18
|
-
|
|
19
|
-
@NgModule({
|
|
20
|
-
imports: [
|
|
21
|
-
TableModule,
|
|
22
|
-
TooltipModule,
|
|
23
|
-
ButtonComponent,
|
|
24
|
-
TextComponent,
|
|
25
|
-
FormsModule,
|
|
26
|
-
NgFor,
|
|
27
|
-
NgForOf,
|
|
28
|
-
NgStyle,
|
|
29
|
-
NgTemplateOutlet
|
|
30
|
-
],
|
|
31
|
-
exports: [components],
|
|
32
|
-
declarations: [components]
|
|
33
|
-
})
|
|
34
|
-
export class ARiLTableModule {}
|
package/ui/table/ng-package.json
DELETED
package/ui/table/src/i18n.ts
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
export const tranlations = {
|
|
2
|
-
matchAll: 'Tümü',
|
|
3
|
-
matchAny: 'Herhangi biri',
|
|
4
|
-
startsWith: 'İle başlar',
|
|
5
|
-
contains: 'İçerir',
|
|
6
|
-
notContains: 'İçermez',
|
|
7
|
-
notEquals: 'Eşit değildir',
|
|
8
|
-
endsWith: 'İle biter',
|
|
9
|
-
equals: 'Eşittir',
|
|
10
|
-
lt: 'Eşit değildir',
|
|
11
|
-
lte: 'Küçük eşittir',
|
|
12
|
-
gt: 'Büyüktür',
|
|
13
|
-
gte: 'Büyük eşittir',
|
|
14
|
-
is: 'Eşittir',
|
|
15
|
-
isNot: 'Eşit değildir',
|
|
16
|
-
before: 'Önce',
|
|
17
|
-
after: 'Sonra',
|
|
18
|
-
clear: 'Temizle',
|
|
19
|
-
apply: 'Uygula',
|
|
20
|
-
addRule: 'Kural Ekle',
|
|
21
|
-
removeRule: 'Kural Kaldır',
|
|
22
|
-
accept: 'Kabul',
|
|
23
|
-
reject: 'Reddet',
|
|
24
|
-
choose: 'Seç',
|
|
25
|
-
upload: 'Yükle',
|
|
26
|
-
cancel: 'İptal',
|
|
27
|
-
dayNames: ['Pazar', 'Pazartesi', 'Salı', 'Çarşamba', 'Perşembe', 'Cuma', 'Cumartesi'],
|
|
28
|
-
dayNamesShort: ['Paz', 'Pzt', 'Sal', 'Çar', 'Per', 'Cum', 'Cmt'],
|
|
29
|
-
dayNamesMin: ['Pz', 'Pt', 'Sa', 'Ça', 'Pe', 'Cu', 'Ct'],
|
|
30
|
-
monthNames: [
|
|
31
|
-
'Ocak',
|
|
32
|
-
'Şubat',
|
|
33
|
-
'Mart',
|
|
34
|
-
'Nisan',
|
|
35
|
-
'Mayıs',
|
|
36
|
-
'Haziran',
|
|
37
|
-
'Temmuz',
|
|
38
|
-
'Ağustos',
|
|
39
|
-
'Eylül',
|
|
40
|
-
'Ekim',
|
|
41
|
-
'Kasım',
|
|
42
|
-
'Aralık'
|
|
43
|
-
],
|
|
44
|
-
monthNamesShort: ['Oca', 'Şub', 'Mar', 'Nis', 'May', 'Haz', 'Tem', 'Ağu', 'Eyl', 'Eki', 'Kas', 'Ara'],
|
|
45
|
-
dateFormat: 'dd.mm.yy',
|
|
46
|
-
firstDayOfWeek: 1,
|
|
47
|
-
today: 'Bugün',
|
|
48
|
-
weekHeader: 'Hf',
|
|
49
|
-
weak: 'Zayıf',
|
|
50
|
-
medium: 'Orta',
|
|
51
|
-
strong: 'Güçlü',
|
|
52
|
-
passwordPrompt: 'Şifre',
|
|
53
|
-
emptyMessage: 'Kayıt bulunamadı',
|
|
54
|
-
emptyFilterMessage: 'Eşleşen kayıt bulunamadı'
|
|
55
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { Component, ContentChild, TemplateRef, input } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
type ValueTypes = 'text' | 'numeric' | 'date' | 'boolean' | 'custom' | 'operations';
|
|
4
|
-
export type AlignTypes = 'left' | 'right' | 'center';
|
|
5
|
-
|
|
6
|
-
export interface TableColumns {
|
|
7
|
-
_results: Array<TableColumn>;
|
|
8
|
-
}
|
|
9
|
-
interface TableColumn {
|
|
10
|
-
field: string;
|
|
11
|
-
header: string;
|
|
12
|
-
type: ValueTypes;
|
|
13
|
-
isOperation?: boolean;
|
|
14
|
-
template: TemplateRef<any>;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@Component({
|
|
18
|
-
selector: 'aril-table-column',
|
|
19
|
-
template: ` <ng-content></ng-content> `
|
|
20
|
-
})
|
|
21
|
-
export class TableColumnComponent {
|
|
22
|
-
type = input<ValueTypes>('text');
|
|
23
|
-
field = input.required<string>();
|
|
24
|
-
header = input.required<string>();
|
|
25
|
-
tAlign = input<AlignTypes>();
|
|
26
|
-
|
|
27
|
-
@ContentChild(TemplateRef) template: any;
|
|
28
|
-
}
|