aril 0.0.45 → 0.0.47
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/.eslintrc.json +41 -0
- package/README.md +48 -48
- package/boot/config/api/{index.d.ts → index.ts} +1 -1
- package/boot/config/api/ng-package.json +6 -0
- package/boot/config/api/src/api.service.ts +57 -0
- package/boot/config/api/src/interfaces.ts +13 -0
- package/boot/config/apps/{index.d.ts → index.ts} +2 -2
- package/boot/config/apps/ng-package.json +6 -0
- package/boot/config/apps/src/apps.service.ts +64 -0
- package/boot/config/apps/src/interfaces.ts +27 -0
- package/boot/config/apps/src/showdowDOMWrapper.ts +28 -0
- package/boot/config/plugins/{index.d.ts → index.ts} +2 -2
- package/boot/config/plugins/ng-package.json +6 -0
- package/boot/config/plugins/src/getNgZone.ts +9 -0
- package/boot/config/plugins/src/interfaces.ts +11 -0
- package/boot/config/plugins/src/plugins.service.ts +82 -0
- package/boot/host/{index.d.ts → index.ts} +1 -1
- package/boot/host/ng-package.json +6 -0
- package/boot/host/src/app.component.ts +27 -0
- package/boot/host/src/bootstrap.ts +61 -0
- package/boot/index.ts +1 -0
- package/boot/mfe/{index.d.ts → index.ts} +1 -1
- package/boot/mfe/ng-package.json +6 -0
- package/boot/mfe/src/app.component.ts +57 -0
- package/boot/mfe/src/appComponentLoader.ts +4 -0
- package/boot/mfe/src/bootstrap.ts +78 -0
- package/boot/mfe/src/loadStyles.ts +19 -0
- package/boot/ng-package.json +6 -0
- package/http/{index.d.ts → index.ts} +13 -8
- package/http/lib/enums.ts +13 -0
- package/http/lib/interfaces.ts +38 -0
- package/http/ng-package.json +6 -0
- package/http/src/httpBackend.ts +12 -0
- package/http/src/httpClient.ts +20 -0
- package/http/src/interceptor/state-machine.interceptor.ts +9 -0
- package/http/src/serviceBase.ts +91 -0
- package/http/src/serviceMockBase.ts +12 -0
- package/http/src/serviceRequest.ts +26 -0
- package/http/src/serviceStateMethods.ts +155 -0
- package/i18n/{index.d.ts → index.ts} +5 -5
- package/i18n/ng-package.json +6 -0
- package/i18n/src/folder-name-token.ts +3 -0
- package/i18n/src/i18n.module.ts +11 -0
- package/i18n/src/loader.ts +16 -0
- package/i18n/src/provideI18n.ts +18 -0
- package/i18n/src/provideScope.ts +20 -0
- package/keycloak/{index.d.ts → index.ts} +3 -3
- package/keycloak/ng-package.json +6 -0
- package/keycloak/src/auth.guard.ts +37 -0
- package/keycloak/src/auth.interceptor.ts +13 -0
- package/keycloak/src/keycloak.manager.ts +89 -0
- package/ng-package.json +14 -0
- package/package.json +31 -314
- package/project.json +39 -0
- package/{public-api.d.ts → public-api.ts} +2 -2
- package/theme/index.ts +1 -1
- package/theme/layout/app/breadcrumb/app.breadcrumb.component.html +17 -10
- package/theme/layout/app/breadcrumb/app.breadcrumb.component.ts +50 -50
- package/theme/layout/app/config/app.config.component.html +142 -142
- package/theme/layout/app/config/app.config.component.ts +143 -143
- package/theme/layout/app/layout/app.layout.component.html +19 -19
- package/theme/layout/app/layout/app.layout.component.ts +170 -170
- package/theme/layout/app/layout/mfe.layout.component.ts +49 -49
- package/theme/layout/app/menu/app.menu.component.html +9 -9
- package/theme/layout/app/menu/app.menu.component.ts +356 -356
- package/theme/layout/app/menu/app.sub.menu.component.html +13 -13
- package/theme/layout/app/sidebar/app.sidebar.component.ts +44 -44
- package/theme/layout/app/topbar/app.topbar.component.html +1 -1
- package/theme/layout/index.ts +3 -3
- package/theme/layout/ng-package.json +6 -6
- package/theme/layout/service/menuchangeevent.ts +4 -4
- package/theme/ng-package.json +6 -6
- package/theme/styles/layout/_animation.scss +53 -53
- package/theme/styles/layout/_breadcrumb.scss +21 -21
- package/theme/styles/layout/_config.scss +42 -42
- package/theme/styles/layout/_content.scss +3 -3
- package/theme/styles/layout/_fonts.scss +40 -40
- package/theme/styles/layout/_layout_dark.scss +5 -5
- package/theme/styles/layout/_layout_dim.scss +5 -5
- package/theme/styles/layout/_layout_light.scss +5 -5
- package/theme/styles/layout/_main.scss +28 -28
- package/theme/styles/layout/_profile.scss +10 -10
- package/theme/styles/layout/_responsive.scss +111 -111
- package/theme/styles/layout/_sidebar_drawer.scss +234 -234
- package/theme/styles/layout/_sidebar_horizontal.scss +163 -163
- package/theme/styles/layout/_sidebar_reveal.scss +201 -201
- package/theme/styles/layout/_sidebar_slim.scss +144 -144
- package/theme/styles/layout/_sidebar_slim_plus.scss +162 -162
- package/theme/styles/layout/_sidebar_vertical.scss +153 -153
- package/theme/styles/layout/_typography.scss +68 -68
- package/theme/styles/layout/_utils.scss +24 -24
- package/theme/styles/layout/layout.scss +24 -24
- package/theme/styles/layout/menutheme/_colorscheme.scss +11 -11
- package/theme/styles/layout/menutheme/_menutheme.scss +3 -3
- package/theme/styles/layout/menutheme/_primarycolor.scss +16 -16
- package/theme/styles/layout/menutheme/_transparent.scss +26 -26
- package/theme/styles/layout/preloading.scss +84 -84
- package/theme/styles/theme/base/_colors.scss +17 -17
- package/theme/styles/theme/base/_common.scss +76 -76
- package/theme/styles/theme/base/_components.scss +106 -106
- package/theme/styles/theme/base/_mixins.scss +337 -337
- package/theme/styles/theme/base/components/button/_button.scss +576 -576
- package/theme/styles/theme/base/components/button/_speeddial.scss +96 -96
- package/theme/styles/theme/base/components/button/_splitbutton.scss +348 -348
- package/theme/styles/theme/base/components/data/_carousel.scss +37 -37
- package/theme/styles/theme/base/components/data/_datatable.scss +338 -338
- package/theme/styles/theme/base/components/data/_dataview.scss +46 -46
- package/theme/styles/theme/base/components/data/_filter.scss +137 -137
- package/theme/styles/theme/base/components/data/_orderlist.scss +114 -114
- package/theme/styles/theme/base/components/data/_organizationchart.scss +50 -50
- package/theme/styles/theme/base/components/data/_paginator.scss +92 -92
- package/theme/styles/theme/base/components/data/_picklist.scss +114 -114
- package/theme/styles/theme/base/components/data/_timeline.scss +35 -35
- package/theme/styles/theme/base/components/data/_tree.scss +150 -150
- package/theme/styles/theme/base/components/data/_treetable.scss +255 -255
- package/theme/styles/theme/base/components/data/_virtualscroller.scss +28 -28
- package/theme/styles/theme/base/components/file/_fileupload.scss +64 -64
- package/theme/styles/theme/base/components/input/_autocomplete.scss +136 -136
- package/theme/styles/theme/base/components/input/_calendar.scss +267 -267
- package/theme/styles/theme/base/components/input/_cascadeselect.scss +135 -135
- package/theme/styles/theme/base/components/input/_checkbox.scss +94 -94
- package/theme/styles/theme/base/components/input/_chips.scss +65 -65
- package/theme/styles/theme/base/components/input/_colorpicker.scss +19 -19
- package/theme/styles/theme/base/components/input/_dropdown.scss +151 -151
- package/theme/styles/theme/base/components/input/_editor.scss +122 -122
- package/theme/styles/theme/base/components/input/_inputgroup.scss +75 -75
- package/theme/styles/theme/base/components/input/_inputmask.scss +16 -16
- package/theme/styles/theme/base/components/input/_inputnumber.scss +28 -28
- package/theme/styles/theme/base/components/input/_inputswitch.scss +60 -60
- package/theme/styles/theme/base/components/input/_inputtext.scss +100 -100
- package/theme/styles/theme/base/components/input/_listbox.scss +97 -97
- package/theme/styles/theme/base/components/input/_multiselect.scss +177 -177
- package/theme/styles/theme/base/components/input/_password.scss +52 -52
- package/theme/styles/theme/base/components/input/_radiobutton.scss +78 -78
- package/theme/styles/theme/base/components/input/_rating.scss +60 -60
- package/theme/styles/theme/base/components/input/_selectbutton.scss +50 -50
- package/theme/styles/theme/base/components/input/_slider.scss +75 -75
- package/theme/styles/theme/base/components/input/_togglebutton.scss +48 -48
- package/theme/styles/theme/base/components/input/_treeselect.scss +139 -139
- package/theme/styles/theme/base/components/menu/_breadcrumb.scss +42 -42
- package/theme/styles/theme/base/components/menu/_contextmenu.scss +39 -39
- package/theme/styles/theme/base/components/menu/_dock.scss +95 -95
- package/theme/styles/theme/base/components/menu/_megamenu.scss +55 -55
- package/theme/styles/theme/base/components/menu/_menu.scss +37 -37
- package/theme/styles/theme/base/components/menu/_menubar.scss +140 -140
- package/theme/styles/theme/base/components/menu/_panelmenu.scss +153 -153
- package/theme/styles/theme/base/components/menu/_slidemenu.scss +59 -59
- package/theme/styles/theme/base/components/menu/_steps.scss +56 -56
- package/theme/styles/theme/base/components/menu/_tabmenu.scss +73 -73
- package/theme/styles/theme/base/components/menu/_tieredmenu.scss +43 -43
- package/theme/styles/theme/base/components/messages/_inlinemessage.scss +69 -69
- package/theme/styles/theme/base/components/messages/_message.scss +107 -107
- package/theme/styles/theme/base/components/messages/_toast.scss +99 -99
- package/theme/styles/theme/base/components/misc/_avatar.scss +30 -30
- package/theme/styles/theme/base/components/misc/_badge.scss +48 -48
- package/theme/styles/theme/base/components/misc/_chip.scss +42 -42
- package/theme/styles/theme/base/components/misc/_inplace.scss +16 -16
- package/theme/styles/theme/base/components/misc/_progressbar.scss +17 -17
- package/theme/styles/theme/base/components/misc/_scrolltop.scss +25 -25
- package/theme/styles/theme/base/components/misc/_skeleton.scss +8 -8
- package/theme/styles/theme/base/components/misc/_tag.scss +40 -40
- package/theme/styles/theme/base/components/misc/_terminal.scss +12 -12
- package/theme/styles/theme/base/components/multimedia/_galleria.scss +155 -155
- package/theme/styles/theme/base/components/multimedia/_image.scss +49 -49
- package/theme/styles/theme/base/components/overlay/_confirmpopup.scss +70 -70
- package/theme/styles/theme/base/components/overlay/_dialog.scss +69 -69
- package/theme/styles/theme/base/components/overlay/_overlaypanel.scss +62 -62
- package/theme/styles/theme/base/components/overlay/_sidebar.scss +27 -27
- package/theme/styles/theme/base/components/overlay/_tooltip.scss +33 -33
- package/theme/styles/theme/base/components/panel/_accordion.scss +119 -119
- package/theme/styles/theme/base/components/panel/_card.scss +30 -30
- package/theme/styles/theme/base/components/panel/_divider.scss +31 -31
- package/theme/styles/theme/base/components/panel/_fieldset.scss +47 -47
- package/theme/styles/theme/base/components/panel/_panel.scss +69 -63
- package/theme/styles/theme/base/components/panel/_scrollpanel.scss +6 -6
- package/theme/styles/theme/base/components/panel/_splitter.scss +19 -19
- package/theme/styles/theme/base/components/panel/_tabview.scss +82 -82
- package/theme/styles/theme/base/components/panel/_toolbar.scss +11 -11
- package/theme/styles/theme/dark/_extensions.scss +134 -134
- package/theme/styles/theme/dark/_variables.scss +918 -918
- package/theme/styles/theme/dark/blue/theme.scss +14 -14
- package/theme/styles/theme/dark/indigo/theme.scss +14 -14
- package/theme/styles/theme/light/_extensions.scss +116 -116
- package/theme/styles/theme/light/_variables.scss +911 -911
- package/theme/styles/theme/light/blue/theme.scss +14 -14
- package/theme/styles/theme/light/indigo/theme.scss +14 -14
- package/tsconfig.lib.json +12 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +9 -0
- package/ui/autoComplete/{index.d.ts → index.ts} +1 -1
- package/ui/autoComplete/ng-package.json +6 -0
- package/ui/autoComplete/src/auto-complete.component.html +11 -0
- package/ui/autoComplete/src/auto-complete.component.ts +92 -0
- package/ui/autoComplete/src/interfaces.ts +30 -0
- package/ui/badge/{index.d.ts → index.ts} +1 -1
- package/ui/badge/ng-package.json +6 -0
- package/ui/badge/src/badge.component.html +3 -0
- package/ui/badge/src/badge.component.ts +19 -0
- package/ui/button/{index.d.ts → index.ts} +2 -2
- package/ui/button/ng-package.json +6 -0
- package/ui/button/src/button.component.html +10 -0
- package/ui/button/src/button.component.ts +43 -0
- package/ui/button/src/split-button.component.html +2 -0
- package/ui/button/src/split-button.component.ts +17 -0
- package/ui/calendar/{index.d.ts → index.ts} +1 -1
- package/ui/calendar/ng-package.json +6 -0
- package/ui/calendar/src/calendar.component.html +31 -0
- package/ui/calendar/src/calendar.component.ts +136 -0
- package/ui/checkbox/{index.d.ts → index.ts} +2 -2
- package/ui/checkbox/ng-package.json +6 -0
- package/ui/checkbox/src/check-box.component.html +9 -0
- package/ui/checkbox/src/check-box.component.ts +19 -0
- package/ui/checkbox/src/tri-state-checkbox.component.html +7 -0
- package/ui/checkbox/src/tri-state-checkbox.component.ts +20 -0
- package/ui/dxField/{index.d.ts → index.ts} +1 -1
- package/ui/dxField/ng-package.json +6 -0
- package/ui/dxField/src/dx-field.component.html +8 -0
- package/ui/dxField/src/dx-field.component.ts +16 -0
- package/ui/field/{index.d.ts → index.ts} +1 -1
- package/ui/field/ng-package.json +6 -0
- package/ui/field/src/field.component.html +22 -0
- package/ui/field/src/field.component.ts +46 -0
- package/ui/fileUpload/{index.d.ts → index.ts} +1 -1
- package/ui/fileUpload/ng-package.json +6 -0
- package/ui/fileUpload/src/file-upload.component.html +38 -0
- package/ui/fileUpload/src/file-upload.component.ts +72 -0
- package/ui/form/index.ts +18 -0
- package/ui/form/ng-package.json +6 -0
- package/ui/form/src/form-submit-button.component.html +12 -0
- package/ui/form/src/form-submit-button.component.ts +36 -0
- package/ui/form/src/form.component.ts +20 -0
- package/ui/index.ts +1 -0
- package/ui/lib/{index.d.ts → index.ts} +16 -11
- package/ui/lib/ng-package.json +6 -0
- package/ui/lib/src/form/form-error-message.component.ts +25 -0
- package/ui/lib/src/form/form-error-message.directive.ts +32 -0
- package/ui/lib/src/form/form-field-builder.ts +31 -0
- package/ui/lib/src/form/form-validation.ts +14 -0
- package/ui/lib/src/grid/flex-grid.directive.ts +10 -0
- package/ui/lib/src/input/baseInput.ts +30 -0
- package/ui/lib/src/input/common-input-validators.service.ts +57 -0
- package/ui/lib/src/input/dx-input-error-message.pipe.ts +16 -0
- package/ui/lib/src/input/input-disabled.directive.ts +15 -0
- package/ui/lib/src/input/input-error-message.pipe.ts +39 -0
- package/ui/lib/src/input/input-transforms.ts +11 -0
- package/ui/lib/src/input/value-accessor.directive.ts +27 -0
- package/ui/mask/{index.d.ts → index.ts} +1 -1
- package/ui/mask/ng-package.json +6 -0
- package/ui/mask/src/mask.component.css +23 -0
- package/ui/mask/src/mask.component.html +17 -0
- package/ui/mask/src/mask.component.ts +34 -0
- package/ui/ng-package.json +6 -0
- package/ui/number/{index.d.ts → index.ts} +1 -1
- package/ui/number/ng-package.json +6 -0
- package/ui/number/src/number.component.html +25 -0
- package/ui/number/src/number.component.ts +34 -0
- package/ui/overlayPanel/{index.d.ts → index.ts} +1 -1
- package/ui/overlayPanel/ng-package.json +6 -0
- package/ui/overlayPanel/src/overlay-panel.component.html +5 -0
- package/ui/overlayPanel/src/overlay-panel.component.ts +16 -0
- package/ui/panel/{index.d.ts → index.ts} +1 -1
- package/ui/panel/ng-package.json +6 -0
- package/ui/panel/src/panel.component.css +25 -0
- package/ui/panel/src/panel.component.html +38 -0
- package/ui/panel/src/panel.component.ts +24 -0
- package/ui/password/{index.d.ts → index.ts} +1 -1
- package/ui/password/ng-package.json +6 -0
- package/ui/password/src/password.component.html +24 -0
- package/ui/password/src/password.component.ts +22 -0
- package/ui/radioButton/{index.d.ts → index.ts} +1 -1
- package/ui/radioButton/ng-package.json +6 -0
- package/ui/radioButton/src/radio-button.component.html +17 -0
- package/ui/radioButton/src/radio-button.component.ts +36 -0
- package/ui/selectBox/{index.d.ts → index.ts} +1 -1
- package/ui/selectBox/ng-package.json +6 -0
- package/ui/selectBox/src/interfaces.ts +41 -0
- package/ui/selectBox/src/select-box.component.html +17 -0
- package/ui/selectBox/src/select-box.component.ts +69 -0
- package/{styles/ui → ui/styles}/ui.common.scss +24 -24
- package/ui/switch/{index.d.ts → index.ts} +1 -1
- package/ui/switch/ng-package.json +6 -0
- package/ui/switch/src/switch.component.html +7 -0
- package/ui/switch/src/switch.component.ts +18 -0
- package/ui/table/index.ts +34 -0
- package/ui/table/ng-package.json +6 -0
- package/ui/table/src/i18n.ts +55 -0
- package/ui/table/src/table-column.component.ts +28 -0
- package/ui/table/src/table.component.html +136 -0
- package/ui/table/src/table.component.ts +99 -0
- package/ui/tagBox/{index.d.ts → index.ts} +1 -1
- package/ui/tagBox/ng-package.json +6 -0
- package/ui/tagBox/src/tag-box.component.html +21 -0
- package/ui/tagBox/src/tag-box.component.ts +53 -0
- package/ui/text/{index.d.ts → index.ts} +1 -1
- package/ui/text/ng-package.json +6 -0
- package/ui/text/src/text.component.html +21 -0
- package/ui/text/src/text.component.ts +47 -0
- package/ui/textArea/{index.d.ts → index.ts} +1 -1
- package/ui/textArea/ng-package.json +6 -0
- package/ui/textArea/src/text-area.component.html +11 -0
- package/ui/textArea/src/text-area.component.ts +21 -0
- package/ui/toggle-button/index.ts +1 -0
- package/ui/toggle-button/ng-package.json +6 -0
- package/ui/toggle-button/src/toggle-button.component.html +13 -0
- package/ui/toggle-button/src/toggle-button.component.scss +19 -0
- package/ui/toggle-button/src/toggle-button.component.ts +22 -0
- package/ui/tree/{index.d.ts → index.ts} +1 -1
- package/ui/tree/ng-package.json +6 -0
- package/ui/tree/src/tree.component.html +16 -0
- package/ui/tree/src/tree.component.ts +52 -0
- package/ui/treeTable/{index.d.ts → index.ts} +1 -1
- package/ui/treeTable/ng-package.json +6 -0
- package/ui/treeTable/src/tree-table.component.html +88 -0
- package/ui/treeTable/src/tree-table.component.ts +57 -0
- package/ui/value/{index.d.ts → index.ts} +1 -1
- package/ui/value/ng-package.json +6 -0
- package/ui/value/src/value.component.html +19 -0
- package/ui/value/src/value.component.ts +39 -0
- package/util/block/{index.d.ts → index.ts} +1 -1
- package/util/block/ng-package.json +6 -0
- package/util/block/src/block.ts +65 -0
- package/util/custom_pages/{index.d.ts → index.ts} +1 -1
- package/util/custom_pages/ng-package.json +6 -0
- package/util/custom_pages/src/notFound.component.ts +34 -0
- package/util/index.ts +1 -0
- package/util/init-event/{index.d.ts → index.ts} +1 -1
- package/util/init-event/ng-package.json +6 -0
- package/util/init-event/src/init-event.directive.ts +13 -0
- package/util/lib/{index.d.ts → index.ts} +3 -3
- package/util/lib/ng-package.json +6 -0
- package/util/lib/src/interfaces.ts +44 -0
- package/util/lib/src/module-router.ts +10 -0
- package/util/lib/src/types.ts +49 -0
- package/util/loaders/{index.d.ts → index.ts} +2 -2
- package/util/loaders/ng-package.json +6 -0
- package/util/loaders/script/script.loader.service.ts +69 -0
- package/util/loaders/style/style.loader.service.ts +69 -0
- package/util/ng-package.json +6 -0
- package/util/primitive-extensions/{index.d.ts → index.ts} +4 -4
- package/util/primitive-extensions/ng-package.json +6 -0
- package/util/primitive-extensions/src/{boolean.extensions.d.ts → boolean.extensions.ts} +1 -1
- package/util/primitive-extensions/src/date.extensions.ts +135 -0
- package/util/primitive-extensions/src/number.extensions.ts +57 -0
- package/util/primitive-extensions/src/string.extensions.ts +39 -0
- package/util/pub-sub/{index.d.ts → index.ts} +1 -1
- package/util/pub-sub/ng-package.json +6 -0
- package/util/pub-sub/src/pub-sub.service.ts +34 -0
- package/boot/config/api/src/api.service.d.ts +0 -14
- package/boot/config/api/src/interfaces.d.ts +0 -9
- package/boot/config/apps/src/apps.service.d.ts +0 -16
- package/boot/config/apps/src/interfaces.d.ts +0 -23
- package/boot/config/apps/src/showdowDOMWrapper.d.ts +0 -10
- package/boot/config/plugins/src/getNgZone.d.ts +0 -5
- package/boot/config/plugins/src/interfaces.d.ts +0 -18
- package/boot/config/plugins/src/plugins.service.d.ts +0 -9
- package/boot/host/src/app.component.d.ts +0 -8
- package/boot/host/src/bootstrap.d.ts +0 -2
- package/boot/index.d.ts +0 -1
- package/boot/mfe/src/app.component.d.ts +0 -12
- package/boot/mfe/src/appComponentLoader.d.ts +0 -1
- package/boot/mfe/src/bootstrap.d.ts +0 -6
- package/boot/mfe/src/loadStyles.d.ts +0 -3
- package/esm2022/aril.mjs +0 -5
- package/esm2022/boot/aril-boot.mjs +0 -5
- package/esm2022/boot/config/api/aril-boot-config-api.mjs +0 -5
- package/esm2022/boot/config/api/index.mjs +0 -2
- package/esm2022/boot/config/api/src/api.service.mjs +0 -42
- package/esm2022/boot/config/api/src/interfaces.mjs +0 -11
- package/esm2022/boot/config/apps/aril-boot-config-apps.mjs +0 -5
- package/esm2022/boot/config/apps/index.mjs +0 -3
- package/esm2022/boot/config/apps/src/apps.service.mjs +0 -51
- package/esm2022/boot/config/apps/src/interfaces.mjs +0 -17
- package/esm2022/boot/config/apps/src/showdowDOMWrapper.mjs +0 -35
- package/esm2022/boot/config/plugins/aril-boot-config-plugins.mjs +0 -5
- package/esm2022/boot/config/plugins/index.mjs +0 -3
- package/esm2022/boot/config/plugins/src/getNgZone.mjs +0 -12
- package/esm2022/boot/config/plugins/src/interfaces.mjs +0 -3
- package/esm2022/boot/config/plugins/src/plugins.service.mjs +0 -65
- package/esm2022/boot/host/aril-boot-host.mjs +0 -5
- package/esm2022/boot/host/index.mjs +0 -2
- package/esm2022/boot/host/src/app.component.mjs +0 -32
- package/esm2022/boot/host/src/bootstrap.mjs +0 -50
- package/esm2022/boot/index.mjs +0 -2
- package/esm2022/boot/mfe/aril-boot-mfe.mjs +0 -5
- package/esm2022/boot/mfe/index.mjs +0 -2
- package/esm2022/boot/mfe/src/app.component.mjs +0 -60
- package/esm2022/boot/mfe/src/appComponentLoader.mjs +0 -5
- package/esm2022/boot/mfe/src/bootstrap.mjs +0 -64
- package/esm2022/boot/mfe/src/loadStyles.mjs +0 -16
- package/esm2022/http/aril-http.mjs +0 -5
- package/esm2022/http/index.mjs +0 -12
- package/esm2022/http/lib/enums.mjs +0 -16
- package/esm2022/http/lib/interfaces.mjs +0 -15
- package/esm2022/http/src/httpBackend.mjs +0 -17
- package/esm2022/http/src/httpClient.mjs +0 -14
- package/esm2022/http/src/interceptor/state-machine.interceptor.mjs +0 -8
- package/esm2022/http/src/serviceBase.mjs +0 -58
- package/esm2022/http/src/serviceMockBase.mjs +0 -5
- package/esm2022/http/src/serviceRequest.mjs +0 -21
- package/esm2022/http/src/serviceStateMethods.mjs +0 -119
- package/esm2022/i18n/aril-i18n.mjs +0 -5
- package/esm2022/i18n/index.mjs +0 -6
- package/esm2022/i18n/src/folder-name-token.mjs +0 -3
- package/esm2022/i18n/src/i18n.module.mjs +0 -17
- package/esm2022/i18n/src/loader.mjs +0 -20
- package/esm2022/i18n/src/provideI18n.mjs +0 -16
- package/esm2022/i18n/src/provideScope.mjs +0 -18
- package/esm2022/keycloak/aril-keycloak.mjs +0 -5
- package/esm2022/keycloak/index.mjs +0 -4
- package/esm2022/keycloak/src/auth.guard.mjs +0 -39
- package/esm2022/keycloak/src/auth.interceptor.mjs +0 -10
- package/esm2022/keycloak/src/keycloak.manager.mjs +0 -76
- package/esm2022/public-api.mjs +0 -3
- package/esm2022/theme/aril-theme.mjs +0 -5
- package/esm2022/theme/index.mjs +0 -2
- package/esm2022/theme/layout/app/breadcrumb/app.breadcrumb.component.mjs +0 -41
- package/esm2022/theme/layout/app/config/app.config.component.mjs +0 -132
- package/esm2022/theme/layout/app/layout/app.layout.component.mjs +0 -147
- package/esm2022/theme/layout/app/layout/mfe.layout.component.mjs +0 -67
- package/esm2022/theme/layout/app/menu/app.menu.component.mjs +0 -398
- package/esm2022/theme/layout/app/profileSidebar/app.profilesidebar.component.mjs +0 -28
- package/esm2022/theme/layout/app/sidebar/app.sidebar.component.mjs +0 -41
- package/esm2022/theme/layout/app/topbar/app.topbar.component.mjs +0 -34
- package/esm2022/theme/layout/aril-theme-layout.mjs +0 -5
- package/esm2022/theme/layout/index.mjs +0 -4
- package/esm2022/theme/layout/service/app.layout.service.mjs +0 -127
- package/esm2022/theme/layout/service/app.menu.service.mjs +0 -53
- package/esm2022/theme/layout/service/menuchangeevent.mjs +0 -2
- package/esm2022/ui/aril-ui.mjs +0 -5
- package/esm2022/ui/autoComplete/aril-ui-autoComplete.mjs +0 -5
- package/esm2022/ui/autoComplete/index.mjs +0 -2
- package/esm2022/ui/autoComplete/src/auto-complete.component.mjs +0 -81
- package/esm2022/ui/autoComplete/src/interfaces.mjs +0 -2
- package/esm2022/ui/badge/aril-ui-badge.mjs +0 -5
- package/esm2022/ui/badge/index.mjs +0 -2
- package/esm2022/ui/badge/src/badge.component.mjs +0 -19
- package/esm2022/ui/button/aril-ui-button.mjs +0 -5
- package/esm2022/ui/button/index.mjs +0 -3
- package/esm2022/ui/button/src/button.component.mjs +0 -37
- package/esm2022/ui/button/src/split-button.component.mjs +0 -18
- package/esm2022/ui/calendar/aril-ui-calendar.mjs +0 -5
- package/esm2022/ui/calendar/index.mjs +0 -2
- package/esm2022/ui/calendar/src/calendar.component.mjs +0 -115
- package/esm2022/ui/checkbox/aril-ui-checkbox.mjs +0 -5
- package/esm2022/ui/checkbox/index.mjs +0 -3
- package/esm2022/ui/checkbox/src/check-box.component.mjs +0 -24
- package/esm2022/ui/checkbox/src/tri-state-checkbox.component.mjs +0 -24
- package/esm2022/ui/dxField/aril-ui-dxField.mjs +0 -5
- package/esm2022/ui/dxField/index.mjs +0 -2
- package/esm2022/ui/dxField/src/dx-field.component.mjs +0 -18
- package/esm2022/ui/field/aril-ui-field.mjs +0 -5
- package/esm2022/ui/field/index.mjs +0 -2
- package/esm2022/ui/field/src/field.component.mjs +0 -39
- package/esm2022/ui/fileUpload/aril-ui-fileUpload.mjs +0 -5
- package/esm2022/ui/fileUpload/index.mjs +0 -2
- package/esm2022/ui/fileUpload/src/file-upload.component.mjs +0 -61
- package/esm2022/ui/form/aril-ui-form.mjs +0 -5
- package/esm2022/ui/form/index.mjs +0 -22
- package/esm2022/ui/form/src/form-submit-button.component.mjs +0 -40
- package/esm2022/ui/form/src/form.component.mjs +0 -27
- package/esm2022/ui/index.mjs +0 -2
- package/esm2022/ui/lib/aril-ui-lib.mjs +0 -5
- package/esm2022/ui/lib/index.mjs +0 -15
- package/esm2022/ui/lib/src/form/form-error-message.component.mjs +0 -33
- package/esm2022/ui/lib/src/form/form-error-message.directive.mjs +0 -34
- package/esm2022/ui/lib/src/form/form-field-builder.mjs +0 -23
- package/esm2022/ui/lib/src/form/form-validation.mjs +0 -14
- package/esm2022/ui/lib/src/grid/flex-grid.directive.mjs +0 -21
- package/esm2022/ui/lib/src/input/baseInput.mjs +0 -24
- package/esm2022/ui/lib/src/input/common-input-validators.service.mjs +0 -49
- package/esm2022/ui/lib/src/input/dx-input-error-message.pipe.mjs +0 -22
- package/esm2022/ui/lib/src/input/input-disabled.directive.mjs +0 -25
- package/esm2022/ui/lib/src/input/input-error-message.pipe.mjs +0 -42
- package/esm2022/ui/lib/src/input/input-transforms.mjs +0 -8
- package/esm2022/ui/lib/src/input/value-accessor.directive.mjs +0 -38
- package/esm2022/ui/mask/aril-ui-mask.mjs +0 -5
- package/esm2022/ui/mask/index.mjs +0 -2
- package/esm2022/ui/mask/src/mask.component.mjs +0 -35
- package/esm2022/ui/number/aril-ui-number.mjs +0 -5
- package/esm2022/ui/number/index.mjs +0 -2
- package/esm2022/ui/number/src/number.component.mjs +0 -36
- package/esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs +0 -5
- package/esm2022/ui/overlayPanel/index.mjs +0 -2
- package/esm2022/ui/overlayPanel/src/overlay-panel.component.mjs +0 -20
- package/esm2022/ui/panel/aril-ui-panel.mjs +0 -5
- package/esm2022/ui/panel/index.mjs +0 -2
- package/esm2022/ui/panel/src/panel.component.mjs +0 -24
- package/esm2022/ui/password/aril-ui-password.mjs +0 -5
- package/esm2022/ui/password/index.mjs +0 -2
- package/esm2022/ui/password/src/password.component.mjs +0 -29
- package/esm2022/ui/radioButton/aril-ui-radioButton.mjs +0 -5
- package/esm2022/ui/radioButton/index.mjs +0 -2
- package/esm2022/ui/radioButton/src/radio-button.component.mjs +0 -30
- package/esm2022/ui/selectBox/aril-ui-selectBox.mjs +0 -5
- package/esm2022/ui/selectBox/index.mjs +0 -2
- package/esm2022/ui/selectBox/src/interfaces.mjs +0 -2
- package/esm2022/ui/selectBox/src/select-box.component.mjs +0 -54
- package/esm2022/ui/switch/aril-ui-switch.mjs +0 -5
- package/esm2022/ui/switch/index.mjs +0 -2
- package/esm2022/ui/switch/src/switch.component.mjs +0 -23
- package/esm2022/ui/table/aril-ui-table.mjs +0 -5
- package/esm2022/ui/table/index.mjs +0 -49
- package/esm2022/ui/table/src/i18n.mjs +0 -56
- package/esm2022/ui/table/src/table-column.component.mjs +0 -23
- package/esm2022/ui/table/src/table.component.mjs +0 -88
- package/esm2022/ui/tagBox/aril-ui-tagBox.mjs +0 -5
- package/esm2022/ui/tagBox/index.mjs +0 -2
- package/esm2022/ui/tagBox/src/tag-box.component.mjs +0 -50
- package/esm2022/ui/text/aril-ui-text.mjs +0 -5
- package/esm2022/ui/text/index.mjs +0 -2
- package/esm2022/ui/text/src/text.component.mjs +0 -40
- package/esm2022/ui/textArea/aril-ui-textArea.mjs +0 -5
- package/esm2022/ui/textArea/index.mjs +0 -2
- package/esm2022/ui/textArea/src/text-area.component.mjs +0 -26
- package/esm2022/ui/toggle-button/aril-ui-toggle-button.mjs +0 -5
- package/esm2022/ui/toggle-button/index.mjs +0 -2
- package/esm2022/ui/toggle-button/src/toggle-button.component.mjs +0 -25
- package/esm2022/ui/tree/aril-ui-tree.mjs +0 -5
- package/esm2022/ui/tree/index.mjs +0 -2
- package/esm2022/ui/tree/src/tree.component.mjs +0 -34
- package/esm2022/ui/treeTable/aril-ui-treeTable.mjs +0 -5
- package/esm2022/ui/treeTable/index.mjs +0 -2
- package/esm2022/ui/treeTable/src/tree-table.component.mjs +0 -55
- package/esm2022/ui/value/aril-ui-value.mjs +0 -5
- package/esm2022/ui/value/index.mjs +0 -2
- package/esm2022/ui/value/src/value.component.mjs +0 -35
- package/esm2022/util/aril-util.mjs +0 -5
- package/esm2022/util/block/aril-util-block.mjs +0 -5
- package/esm2022/util/block/index.mjs +0 -2
- package/esm2022/util/block/src/block.mjs +0 -64
- package/esm2022/util/custom_pages/aril-util-custom_pages.mjs +0 -5
- package/esm2022/util/custom_pages/index.mjs +0 -2
- package/esm2022/util/custom_pages/src/notFound.component.mjs +0 -65
- package/esm2022/util/index.mjs +0 -2
- package/esm2022/util/init-event/aril-util-init-event.mjs +0 -5
- package/esm2022/util/init-event/index.mjs +0 -2
- package/esm2022/util/init-event/src/init-event.directive.mjs +0 -22
- package/esm2022/util/lib/aril-util-lib.mjs +0 -5
- package/esm2022/util/lib/index.mjs +0 -4
- package/esm2022/util/lib/src/interfaces.mjs +0 -4
- package/esm2022/util/lib/src/module-router.mjs +0 -17
- package/esm2022/util/lib/src/types.mjs +0 -3
- package/esm2022/util/loaders/aril-util-loaders.mjs +0 -5
- package/esm2022/util/loaders/index.mjs +0 -3
- package/esm2022/util/loaders/script/script.loader.service.mjs +0 -61
- package/esm2022/util/loaders/style/style.loader.service.mjs +0 -61
- package/esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs +0 -5
- package/esm2022/util/primitive-extensions/index.mjs +0 -5
- package/esm2022/util/primitive-extensions/src/boolean.extensions.mjs +0 -2
- package/esm2022/util/primitive-extensions/src/date.extensions.mjs +0 -116
- package/esm2022/util/primitive-extensions/src/number.extensions.mjs +0 -39
- package/esm2022/util/primitive-extensions/src/string.extensions.mjs +0 -23
- package/esm2022/util/pub-sub/aril-util-pub-sub.mjs +0 -5
- package/esm2022/util/pub-sub/index.mjs +0 -2
- package/esm2022/util/pub-sub/src/pub-sub.service.mjs +0 -29
- package/fesm2022/aril-app.component-dMGRlhy4.mjs +0 -76
- package/fesm2022/aril-app.component-dMGRlhy4.mjs.map +0 -1
- package/fesm2022/aril-boot-config-api.mjs +0 -59
- package/fesm2022/aril-boot-config-api.mjs.map +0 -1
- package/fesm2022/aril-boot-config-apps.mjs +0 -106
- package/fesm2022/aril-boot-config-apps.mjs.map +0 -1
- package/fesm2022/aril-boot-config-plugins.mjs +0 -84
- package/fesm2022/aril-boot-config-plugins.mjs.map +0 -1
- package/fesm2022/aril-boot-host.mjs +0 -86
- package/fesm2022/aril-boot-host.mjs.map +0 -1
- package/fesm2022/aril-boot-mfe-app.component-DpjkfQLt.mjs +0 -75
- package/fesm2022/aril-boot-mfe-app.component-DpjkfQLt.mjs.map +0 -1
- package/fesm2022/aril-boot-mfe-aril-boot-mfe-QV9dIrGu.mjs +0 -90
- package/fesm2022/aril-boot-mfe-aril-boot-mfe-QV9dIrGu.mjs.map +0 -1
- package/fesm2022/aril-boot-mfe.mjs +0 -16
- package/fesm2022/aril-boot-mfe.mjs.map +0 -1
- package/fesm2022/aril-boot.mjs +0 -8
- package/fesm2022/aril-boot.mjs.map +0 -1
- package/fesm2022/aril-http.mjs +0 -272
- package/fesm2022/aril-http.mjs.map +0 -1
- package/fesm2022/aril-i18n.mjs +0 -72
- package/fesm2022/aril-i18n.mjs.map +0 -1
- package/fesm2022/aril-keycloak.mjs +0 -129
- package/fesm2022/aril-keycloak.mjs.map +0 -1
- package/fesm2022/aril-theme-layout.mjs +0 -1010
- package/fesm2022/aril-theme-layout.mjs.map +0 -1
- package/fesm2022/aril-theme.mjs +0 -8
- package/fesm2022/aril-theme.mjs.map +0 -1
- package/fesm2022/aril-ui-autoComplete.mjs +0 -88
- package/fesm2022/aril-ui-autoComplete.mjs.map +0 -1
- package/fesm2022/aril-ui-badge.mjs +0 -26
- package/fesm2022/aril-ui-badge.mjs.map +0 -1
- package/fesm2022/aril-ui-button.mjs +0 -59
- package/fesm2022/aril-ui-button.mjs.map +0 -1
- package/fesm2022/aril-ui-calendar.mjs +0 -121
- package/fesm2022/aril-ui-calendar.mjs.map +0 -1
- package/fesm2022/aril-ui-checkbox.mjs +0 -47
- package/fesm2022/aril-ui-checkbox.mjs.map +0 -1
- package/fesm2022/aril-ui-dxField.mjs +0 -25
- package/fesm2022/aril-ui-dxField.mjs.map +0 -1
- package/fesm2022/aril-ui-field.mjs +0 -46
- package/fesm2022/aril-ui-field.mjs.map +0 -1
- package/fesm2022/aril-ui-fileUpload.mjs +0 -68
- package/fesm2022/aril-ui-fileUpload.mjs.map +0 -1
- package/fesm2022/aril-ui-form.mjs +0 -86
- package/fesm2022/aril-ui-form.mjs.map +0 -1
- package/fesm2022/aril-ui-lib.mjs +0 -322
- package/fesm2022/aril-ui-lib.mjs.map +0 -1
- package/fesm2022/aril-ui-mask.mjs +0 -42
- package/fesm2022/aril-ui-mask.mjs.map +0 -1
- package/fesm2022/aril-ui-number.mjs +0 -43
- package/fesm2022/aril-ui-number.mjs.map +0 -1
- package/fesm2022/aril-ui-overlayPanel.mjs +0 -27
- package/fesm2022/aril-ui-overlayPanel.mjs.map +0 -1
- package/fesm2022/aril-ui-panel.mjs +0 -31
- package/fesm2022/aril-ui-panel.mjs.map +0 -1
- package/fesm2022/aril-ui-password.mjs +0 -36
- package/fesm2022/aril-ui-password.mjs.map +0 -1
- package/fesm2022/aril-ui-radioButton.mjs +0 -37
- package/fesm2022/aril-ui-radioButton.mjs.map +0 -1
- package/fesm2022/aril-ui-selectBox.mjs +0 -61
- package/fesm2022/aril-ui-selectBox.mjs.map +0 -1
- package/fesm2022/aril-ui-switch.mjs +0 -30
- package/fesm2022/aril-ui-switch.mjs.map +0 -1
- package/fesm2022/aril-ui-table.mjs +0 -213
- package/fesm2022/aril-ui-table.mjs.map +0 -1
- package/fesm2022/aril-ui-tagBox.mjs +0 -57
- package/fesm2022/aril-ui-tagBox.mjs.map +0 -1
- package/fesm2022/aril-ui-text.mjs +0 -47
- package/fesm2022/aril-ui-text.mjs.map +0 -1
- package/fesm2022/aril-ui-textArea.mjs +0 -33
- package/fesm2022/aril-ui-textArea.mjs.map +0 -1
- package/fesm2022/aril-ui-toggle-button.mjs +0 -32
- package/fesm2022/aril-ui-toggle-button.mjs.map +0 -1
- package/fesm2022/aril-ui-tree.mjs +0 -41
- package/fesm2022/aril-ui-tree.mjs.map +0 -1
- package/fesm2022/aril-ui-treeTable.mjs +0 -62
- package/fesm2022/aril-ui-treeTable.mjs.map +0 -1
- package/fesm2022/aril-ui-value.mjs +0 -42
- package/fesm2022/aril-ui-value.mjs.map +0 -1
- package/fesm2022/aril-ui.mjs +0 -8
- package/fesm2022/aril-ui.mjs.map +0 -1
- package/fesm2022/aril-util-block.mjs +0 -71
- package/fesm2022/aril-util-block.mjs.map +0 -1
- package/fesm2022/aril-util-custom_pages.mjs +0 -72
- package/fesm2022/aril-util-custom_pages.mjs.map +0 -1
- package/fesm2022/aril-util-init-event.mjs +0 -29
- package/fesm2022/aril-util-init-event.mjs.map +0 -1
- package/fesm2022/aril-util-lib.mjs +0 -29
- package/fesm2022/aril-util-lib.mjs.map +0 -1
- package/fesm2022/aril-util-loaders.mjs +0 -126
- package/fesm2022/aril-util-loaders.mjs.map +0 -1
- package/fesm2022/aril-util-primitive-extensions.mjs +0 -179
- package/fesm2022/aril-util-primitive-extensions.mjs.map +0 -1
- package/fesm2022/aril-util-pub-sub.mjs +0 -36
- package/fesm2022/aril-util-pub-sub.mjs.map +0 -1
- package/fesm2022/aril-util.mjs +0 -8
- package/fesm2022/aril-util.mjs.map +0 -1
- package/fesm2022/aril.mjs +0 -157
- package/fesm2022/aril.mjs.map +0 -1
- package/http/lib/enums.d.ts +0 -13
- package/http/lib/interfaces.d.ts +0 -21
- package/http/src/httpBackend.d.ts +0 -8
- package/http/src/httpClient.d.ts +0 -8
- package/http/src/interceptor/state-machine.interceptor.d.ts +0 -2
- package/http/src/serviceBase.d.ts +0 -5
- package/http/src/serviceMockBase.d.ts +0 -6
- package/http/src/serviceRequest.d.ts +0 -4
- package/http/src/serviceStateMethods.d.ts +0 -13
- package/i18n/src/folder-name-token.d.ts +0 -2
- package/i18n/src/i18n.module.d.ts +0 -7
- package/i18n/src/loader.d.ts +0 -9
- package/i18n/src/provideI18n.d.ts +0 -2
- package/i18n/src/provideScope.d.ts +0 -5
- package/index.d.ts +0 -5
- package/keycloak/src/auth.guard.d.ts +0 -11
- package/keycloak/src/auth.interceptor.d.ts +0 -2
- package/keycloak/src/keycloak.manager.d.ts +0 -25
- package/theme/index.d.ts +0 -1
- package/theme/layout/app/breadcrumb/app.breadcrumb.component.d.ts +0 -16
- package/theme/layout/app/config/app.config.component.d.ts +0 -36
- package/theme/layout/app/layout/app.layout.component.d.ts +0 -48
- package/theme/layout/app/layout/mfe.layout.component.d.ts +0 -8
- package/theme/layout/app/menu/app.menu.component.d.ts +0 -50
- package/theme/layout/app/profileSidebar/app.profilesidebar.component.d.ts +0 -13
- package/theme/layout/app/sidebar/app.sidebar.component.d.ts +0 -15
- package/theme/layout/app/topbar/app.topbar.component.d.ts +0 -16
- package/theme/layout/index.d.ts +0 -3
- package/theme/layout/service/app.layout.service.d.ts +0 -51
- package/theme/layout/service/app.menu.service.d.ts +0 -23
- package/theme/layout/service/menuchangeevent.d.ts +0 -4
- package/ui/autoComplete/src/auto-complete.component.d.ts +0 -24
- package/ui/autoComplete/src/interfaces.d.ts +0 -24
- package/ui/badge/src/badge.component.d.ts +0 -11
- package/ui/button/src/button.component.d.ts +0 -24
- package/ui/button/src/split-button.component.d.ts +0 -8
- package/ui/calendar/src/calendar.component.d.ts +0 -37
- package/ui/checkbox/src/check-box.component.d.ts +0 -9
- package/ui/checkbox/src/tri-state-checkbox.component.d.ts +0 -9
- package/ui/dxField/src/dx-field.component.d.ts +0 -9
- package/ui/field/src/field.component.d.ts +0 -25
- package/ui/fileUpload/src/file-upload.component.d.ts +0 -47
- package/ui/form/index.d.ts +0 -11
- package/ui/form/src/form-submit-button.component.d.ts +0 -14
- package/ui/form/src/form.component.d.ts +0 -8
- package/ui/index.d.ts +0 -1
- package/ui/lib/src/form/form-error-message.component.d.ts +0 -9
- package/ui/lib/src/form/form-error-message.directive.d.ts +0 -14
- package/ui/lib/src/form/form-field-builder.d.ts +0 -8
- package/ui/lib/src/form/form-validation.d.ts +0 -2
- package/ui/lib/src/grid/flex-grid.directive.d.ts +0 -6
- package/ui/lib/src/input/baseInput.d.ts +0 -7
- package/ui/lib/src/input/common-input-validators.service.d.ts +0 -20
- package/ui/lib/src/input/dx-input-error-message.pipe.d.ts +0 -11
- package/ui/lib/src/input/input-disabled.directive.d.ts +0 -9
- package/ui/lib/src/input/input-error-message.pipe.d.ts +0 -7
- package/ui/lib/src/input/input-transforms.d.ts +0 -5
- package/ui/lib/src/input/value-accessor.directive.d.ts +0 -9
- package/ui/mask/src/mask.component.d.ts +0 -21
- package/ui/number/src/number.component.d.ts +0 -27
- package/ui/overlayPanel/src/overlay-panel.component.d.ts +0 -8
- package/ui/panel/src/panel.component.d.ts +0 -10
- package/ui/password/src/password.component.d.ts +0 -11
- package/ui/radioButton/src/radio-button.component.d.ts +0 -20
- package/ui/selectBox/src/interfaces.d.ts +0 -32
- package/ui/selectBox/src/select-box.component.d.ts +0 -25
- package/ui/switch/src/switch.component.d.ts +0 -8
- package/ui/table/index.d.ts +0 -16
- package/ui/table/src/i18n.d.ts +0 -42
- package/ui/table/src/table-column.component.d.ts +0 -24
- package/ui/table/src/table.component.d.ts +0 -39
- package/ui/tagBox/src/tag-box.component.d.ts +0 -15
- package/ui/text/src/text.component.d.ts +0 -17
- package/ui/textArea/src/text-area.component.d.ts +0 -11
- package/ui/toggle-button/index.d.ts +0 -1
- package/ui/toggle-button/src/toggle-button.component.d.ts +0 -10
- package/ui/tree/src/tree.component.d.ts +0 -19
- package/ui/treeTable/src/tree-table.component.d.ts +0 -21
- package/ui/value/src/value.component.d.ts +0 -13
- package/util/block/src/block.d.ts +0 -28
- package/util/custom_pages/src/notFound.component.d.ts +0 -5
- package/util/index.d.ts +0 -1
- package/util/init-event/src/init-event.directive.d.ts +0 -8
- package/util/lib/src/interfaces.d.ts +0 -41
- package/util/lib/src/module-router.d.ts +0 -5
- package/util/lib/src/types.d.ts +0 -29
- package/util/loaders/script/script.loader.service.d.ts +0 -13
- package/util/loaders/style/style.loader.service.d.ts +0 -13
- package/util/primitive-extensions/src/date.extensions.d.ts +0 -8
- package/util/primitive-extensions/src/number.extensions.d.ts +0 -12
- package/util/primitive-extensions/src/string.extensions.d.ts +0 -11
- package/util/pub-sub/src/pub-sub.service.d.ts +0 -20
- /package/boot/config/{api.sample.json → api/src/api.sample.json} +0 -0
- /package/{styles/util → util/block/src}/blockui.css +0 -0
- /package/{scripts/util → util/block/src}/blockui.min.js +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { HttpHandlerFn, HttpInterceptorFn, HttpRequest } from '@angular/common/http';
|
|
2
|
+
|
|
3
|
+
export const authInterceptor: HttpInterceptorFn = (req: HttpRequest<unknown>, next: HttpHandlerFn) => {
|
|
4
|
+
const token = (<any>globalThis).keycloakService?._instance?.token;
|
|
5
|
+
|
|
6
|
+
const authReq = req.clone({
|
|
7
|
+
setHeaders: {
|
|
8
|
+
Authorization: `Bearer ${token}`
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
return next(authReq);
|
|
13
|
+
};
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { HttpHeaders } from '@angular/common/http';
|
|
2
|
+
import { Injectable, inject } from '@angular/core';
|
|
3
|
+
|
|
4
|
+
import { KeycloakEventType, KeycloakOptions, KeycloakService } from 'keycloak-angular';
|
|
5
|
+
import { KeycloakLoginOptions } from 'keycloak-js';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
7
|
+
|
|
8
|
+
@Injectable({ providedIn: 'root' })
|
|
9
|
+
export class KeycloakManager {
|
|
10
|
+
constructor() {
|
|
11
|
+
this.keycloak.keycloakEvents$.subscribe((event) => {
|
|
12
|
+
console.log('keycloakEvents', event);
|
|
13
|
+
|
|
14
|
+
switch (event.type) {
|
|
15
|
+
case KeycloakEventType.OnReady:
|
|
16
|
+
(<any>globalThis).keycloakService = this.keycloak;
|
|
17
|
+
break;
|
|
18
|
+
case KeycloakEventType.OnAuthError:
|
|
19
|
+
case KeycloakEventType.OnAuthLogout:
|
|
20
|
+
case KeycloakEventType.OnAuthRefreshError:
|
|
21
|
+
(<any>globalThis).keycloakService = null;
|
|
22
|
+
// this.keycloak.clearToken();
|
|
23
|
+
break;
|
|
24
|
+
// case KeycloakEventType.OnTokenExpired:
|
|
25
|
+
// this.keycloak.updateToken();
|
|
26
|
+
// break;
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
public readonly keycloak = inject(KeycloakService);
|
|
31
|
+
|
|
32
|
+
private defaultOptions: KeycloakOptions = {
|
|
33
|
+
loadUserProfileAtStartUp: true,
|
|
34
|
+
initOptions: { onLoad: 'login-required' },
|
|
35
|
+
bearerExcludedUrls: ['/assets']
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
init(configs: any): Promise<boolean> {
|
|
39
|
+
return this.keycloak.init({ ...this.defaultOptions, config: configs });
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
login(options?: KeycloakLoginOptions): Promise<void> {
|
|
43
|
+
return this.keycloak.login(options);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
logout(redirectUri?: string): Promise<void> {
|
|
47
|
+
return this.keycloak.logout(redirectUri); // window.location.origin
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
isUserInRole(role: string, resource?: string): boolean {
|
|
51
|
+
return this.keycloak.isUserInRole(role, resource);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
getUserRoles(realmRoles?: boolean, resource?: string): string[] {
|
|
55
|
+
return this.keycloak.getUserRoles(realmRoles, resource);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
isLoggedIn(): boolean {
|
|
59
|
+
return this.keycloak.isLoggedIn();
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
isTokenExpired(minValidity?: number): boolean {
|
|
63
|
+
return this.keycloak.isTokenExpired(minValidity);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
updateToken(minValidity?: number): Promise<boolean> {
|
|
67
|
+
return this.keycloak.updateToken(minValidity);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
loadUserProfile(forceReload?: boolean): Promise<any> {
|
|
71
|
+
return this.keycloak.loadUserProfile(forceReload);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
getToken(): Promise<string> {
|
|
75
|
+
return this.keycloak.getToken();
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
getUsername(): string {
|
|
79
|
+
return this.keycloak.getUsername();
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
clearToken(): void {
|
|
83
|
+
this.keycloak.clearToken();
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
addTokenToHeader(headers?: HttpHeaders): Observable<HttpHeaders> {
|
|
87
|
+
return this.keycloak.addTokenToHeader(headers);
|
|
88
|
+
}
|
|
89
|
+
}
|
package/ng-package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
|
|
3
|
+
"dest": "../../dist",
|
|
4
|
+
"lib": {
|
|
5
|
+
"entryFile": "./public-api.ts"
|
|
6
|
+
},
|
|
7
|
+
"assets": [
|
|
8
|
+
{ "glob": "**/*", "input": "theme", "output": "theme" },
|
|
9
|
+
{ "glob": "ui.common.scss", "input": "ui/styles", "output": "/styles/ui" },
|
|
10
|
+
{ "glob": "blockui.css", "input": "util/block/src", "output": "/styles/util" },
|
|
11
|
+
{ "glob": "blockui.min.js", "input": "util/block/src", "output": "/scripts/util" },
|
|
12
|
+
{ "glob": "api.sample.json", "input": "boot/config/api/src", "output": "/boot/config" }
|
|
13
|
+
]
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,314 +1,31 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"types": "./index.d.ts",
|
|
33
|
-
"esm2022": "./esm2022/aril.mjs",
|
|
34
|
-
"esm": "./esm2022/aril.mjs",
|
|
35
|
-
"default": "./fesm2022/aril.mjs"
|
|
36
|
-
},
|
|
37
|
-
"./boot": {
|
|
38
|
-
"types": "./boot/index.d.ts",
|
|
39
|
-
"esm2022": "./esm2022/boot/aril-boot.mjs",
|
|
40
|
-
"esm": "./esm2022/boot/aril-boot.mjs",
|
|
41
|
-
"default": "./fesm2022/aril-boot.mjs"
|
|
42
|
-
},
|
|
43
|
-
"./http": {
|
|
44
|
-
"types": "./http/index.d.ts",
|
|
45
|
-
"esm2022": "./esm2022/http/aril-http.mjs",
|
|
46
|
-
"esm": "./esm2022/http/aril-http.mjs",
|
|
47
|
-
"default": "./fesm2022/aril-http.mjs"
|
|
48
|
-
},
|
|
49
|
-
"./i18n": {
|
|
50
|
-
"types": "./i18n/index.d.ts",
|
|
51
|
-
"esm2022": "./esm2022/i18n/aril-i18n.mjs",
|
|
52
|
-
"esm": "./esm2022/i18n/aril-i18n.mjs",
|
|
53
|
-
"default": "./fesm2022/aril-i18n.mjs"
|
|
54
|
-
},
|
|
55
|
-
"./keycloak": {
|
|
56
|
-
"types": "./keycloak/index.d.ts",
|
|
57
|
-
"esm2022": "./esm2022/keycloak/aril-keycloak.mjs",
|
|
58
|
-
"esm": "./esm2022/keycloak/aril-keycloak.mjs",
|
|
59
|
-
"default": "./fesm2022/aril-keycloak.mjs"
|
|
60
|
-
},
|
|
61
|
-
"./theme": {
|
|
62
|
-
"types": "./theme/index.d.ts",
|
|
63
|
-
"esm2022": "./esm2022/theme/aril-theme.mjs",
|
|
64
|
-
"esm": "./esm2022/theme/aril-theme.mjs",
|
|
65
|
-
"default": "./fesm2022/aril-theme.mjs"
|
|
66
|
-
},
|
|
67
|
-
"./ui": {
|
|
68
|
-
"types": "./ui/index.d.ts",
|
|
69
|
-
"esm2022": "./esm2022/ui/aril-ui.mjs",
|
|
70
|
-
"esm": "./esm2022/ui/aril-ui.mjs",
|
|
71
|
-
"default": "./fesm2022/aril-ui.mjs"
|
|
72
|
-
},
|
|
73
|
-
"./util": {
|
|
74
|
-
"types": "./util/index.d.ts",
|
|
75
|
-
"esm2022": "./esm2022/util/aril-util.mjs",
|
|
76
|
-
"esm": "./esm2022/util/aril-util.mjs",
|
|
77
|
-
"default": "./fesm2022/aril-util.mjs"
|
|
78
|
-
},
|
|
79
|
-
"./boot/host": {
|
|
80
|
-
"types": "./boot/host/index.d.ts",
|
|
81
|
-
"esm2022": "./esm2022/boot/host/aril-boot-host.mjs",
|
|
82
|
-
"esm": "./esm2022/boot/host/aril-boot-host.mjs",
|
|
83
|
-
"default": "./fesm2022/aril-boot-host.mjs"
|
|
84
|
-
},
|
|
85
|
-
"./boot/mfe": {
|
|
86
|
-
"types": "./boot/mfe/index.d.ts",
|
|
87
|
-
"esm2022": "./esm2022/boot/mfe/aril-boot-mfe.mjs",
|
|
88
|
-
"esm": "./esm2022/boot/mfe/aril-boot-mfe.mjs",
|
|
89
|
-
"default": "./fesm2022/aril-boot-mfe.mjs"
|
|
90
|
-
},
|
|
91
|
-
"./theme/layout": {
|
|
92
|
-
"types": "./theme/layout/index.d.ts",
|
|
93
|
-
"esm2022": "./esm2022/theme/layout/aril-theme-layout.mjs",
|
|
94
|
-
"esm": "./esm2022/theme/layout/aril-theme-layout.mjs",
|
|
95
|
-
"default": "./fesm2022/aril-theme-layout.mjs"
|
|
96
|
-
},
|
|
97
|
-
"./ui/autoComplete": {
|
|
98
|
-
"types": "./ui/autoComplete/index.d.ts",
|
|
99
|
-
"esm2022": "./esm2022/ui/autoComplete/aril-ui-autoComplete.mjs",
|
|
100
|
-
"esm": "./esm2022/ui/autoComplete/aril-ui-autoComplete.mjs",
|
|
101
|
-
"default": "./fesm2022/aril-ui-autoComplete.mjs"
|
|
102
|
-
},
|
|
103
|
-
"./ui/badge": {
|
|
104
|
-
"types": "./ui/badge/index.d.ts",
|
|
105
|
-
"esm2022": "./esm2022/ui/badge/aril-ui-badge.mjs",
|
|
106
|
-
"esm": "./esm2022/ui/badge/aril-ui-badge.mjs",
|
|
107
|
-
"default": "./fesm2022/aril-ui-badge.mjs"
|
|
108
|
-
},
|
|
109
|
-
"./ui/button": {
|
|
110
|
-
"types": "./ui/button/index.d.ts",
|
|
111
|
-
"esm2022": "./esm2022/ui/button/aril-ui-button.mjs",
|
|
112
|
-
"esm": "./esm2022/ui/button/aril-ui-button.mjs",
|
|
113
|
-
"default": "./fesm2022/aril-ui-button.mjs"
|
|
114
|
-
},
|
|
115
|
-
"./ui/calendar": {
|
|
116
|
-
"types": "./ui/calendar/index.d.ts",
|
|
117
|
-
"esm2022": "./esm2022/ui/calendar/aril-ui-calendar.mjs",
|
|
118
|
-
"esm": "./esm2022/ui/calendar/aril-ui-calendar.mjs",
|
|
119
|
-
"default": "./fesm2022/aril-ui-calendar.mjs"
|
|
120
|
-
},
|
|
121
|
-
"./ui/checkbox": {
|
|
122
|
-
"types": "./ui/checkbox/index.d.ts",
|
|
123
|
-
"esm2022": "./esm2022/ui/checkbox/aril-ui-checkbox.mjs",
|
|
124
|
-
"esm": "./esm2022/ui/checkbox/aril-ui-checkbox.mjs",
|
|
125
|
-
"default": "./fesm2022/aril-ui-checkbox.mjs"
|
|
126
|
-
},
|
|
127
|
-
"./ui/dxField": {
|
|
128
|
-
"types": "./ui/dxField/index.d.ts",
|
|
129
|
-
"esm2022": "./esm2022/ui/dxField/aril-ui-dxField.mjs",
|
|
130
|
-
"esm": "./esm2022/ui/dxField/aril-ui-dxField.mjs",
|
|
131
|
-
"default": "./fesm2022/aril-ui-dxField.mjs"
|
|
132
|
-
},
|
|
133
|
-
"./ui/field": {
|
|
134
|
-
"types": "./ui/field/index.d.ts",
|
|
135
|
-
"esm2022": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
136
|
-
"esm": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
137
|
-
"default": "./fesm2022/aril-ui-field.mjs"
|
|
138
|
-
},
|
|
139
|
-
"./ui/fileUpload": {
|
|
140
|
-
"types": "./ui/fileUpload/index.d.ts",
|
|
141
|
-
"esm2022": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
142
|
-
"esm": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
143
|
-
"default": "./fesm2022/aril-ui-fileUpload.mjs"
|
|
144
|
-
},
|
|
145
|
-
"./ui/form": {
|
|
146
|
-
"types": "./ui/form/index.d.ts",
|
|
147
|
-
"esm2022": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
148
|
-
"esm": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
149
|
-
"default": "./fesm2022/aril-ui-form.mjs"
|
|
150
|
-
},
|
|
151
|
-
"./ui/lib": {
|
|
152
|
-
"types": "./ui/lib/index.d.ts",
|
|
153
|
-
"esm2022": "./esm2022/ui/lib/aril-ui-lib.mjs",
|
|
154
|
-
"esm": "./esm2022/ui/lib/aril-ui-lib.mjs",
|
|
155
|
-
"default": "./fesm2022/aril-ui-lib.mjs"
|
|
156
|
-
},
|
|
157
|
-
"./ui/mask": {
|
|
158
|
-
"types": "./ui/mask/index.d.ts",
|
|
159
|
-
"esm2022": "./esm2022/ui/mask/aril-ui-mask.mjs",
|
|
160
|
-
"esm": "./esm2022/ui/mask/aril-ui-mask.mjs",
|
|
161
|
-
"default": "./fesm2022/aril-ui-mask.mjs"
|
|
162
|
-
},
|
|
163
|
-
"./ui/number": {
|
|
164
|
-
"types": "./ui/number/index.d.ts",
|
|
165
|
-
"esm2022": "./esm2022/ui/number/aril-ui-number.mjs",
|
|
166
|
-
"esm": "./esm2022/ui/number/aril-ui-number.mjs",
|
|
167
|
-
"default": "./fesm2022/aril-ui-number.mjs"
|
|
168
|
-
},
|
|
169
|
-
"./ui/overlayPanel": {
|
|
170
|
-
"types": "./ui/overlayPanel/index.d.ts",
|
|
171
|
-
"esm2022": "./esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs",
|
|
172
|
-
"esm": "./esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs",
|
|
173
|
-
"default": "./fesm2022/aril-ui-overlayPanel.mjs"
|
|
174
|
-
},
|
|
175
|
-
"./ui/panel": {
|
|
176
|
-
"types": "./ui/panel/index.d.ts",
|
|
177
|
-
"esm2022": "./esm2022/ui/panel/aril-ui-panel.mjs",
|
|
178
|
-
"esm": "./esm2022/ui/panel/aril-ui-panel.mjs",
|
|
179
|
-
"default": "./fesm2022/aril-ui-panel.mjs"
|
|
180
|
-
},
|
|
181
|
-
"./ui/radioButton": {
|
|
182
|
-
"types": "./ui/radioButton/index.d.ts",
|
|
183
|
-
"esm2022": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
184
|
-
"esm": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
185
|
-
"default": "./fesm2022/aril-ui-radioButton.mjs"
|
|
186
|
-
},
|
|
187
|
-
"./ui/password": {
|
|
188
|
-
"types": "./ui/password/index.d.ts",
|
|
189
|
-
"esm2022": "./esm2022/ui/password/aril-ui-password.mjs",
|
|
190
|
-
"esm": "./esm2022/ui/password/aril-ui-password.mjs",
|
|
191
|
-
"default": "./fesm2022/aril-ui-password.mjs"
|
|
192
|
-
},
|
|
193
|
-
"./ui/selectBox": {
|
|
194
|
-
"types": "./ui/selectBox/index.d.ts",
|
|
195
|
-
"esm2022": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
196
|
-
"esm": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
197
|
-
"default": "./fesm2022/aril-ui-selectBox.mjs"
|
|
198
|
-
},
|
|
199
|
-
"./ui/table": {
|
|
200
|
-
"types": "./ui/table/index.d.ts",
|
|
201
|
-
"esm2022": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
202
|
-
"esm": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
203
|
-
"default": "./fesm2022/aril-ui-table.mjs"
|
|
204
|
-
},
|
|
205
|
-
"./ui/switch": {
|
|
206
|
-
"types": "./ui/switch/index.d.ts",
|
|
207
|
-
"esm2022": "./esm2022/ui/switch/aril-ui-switch.mjs",
|
|
208
|
-
"esm": "./esm2022/ui/switch/aril-ui-switch.mjs",
|
|
209
|
-
"default": "./fesm2022/aril-ui-switch.mjs"
|
|
210
|
-
},
|
|
211
|
-
"./ui/tagBox": {
|
|
212
|
-
"types": "./ui/tagBox/index.d.ts",
|
|
213
|
-
"esm2022": "./esm2022/ui/tagBox/aril-ui-tagBox.mjs",
|
|
214
|
-
"esm": "./esm2022/ui/tagBox/aril-ui-tagBox.mjs",
|
|
215
|
-
"default": "./fesm2022/aril-ui-tagBox.mjs"
|
|
216
|
-
},
|
|
217
|
-
"./ui/text": {
|
|
218
|
-
"types": "./ui/text/index.d.ts",
|
|
219
|
-
"esm2022": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
220
|
-
"esm": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
221
|
-
"default": "./fesm2022/aril-ui-text.mjs"
|
|
222
|
-
},
|
|
223
|
-
"./ui/textArea": {
|
|
224
|
-
"types": "./ui/textArea/index.d.ts",
|
|
225
|
-
"esm2022": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
226
|
-
"esm": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
227
|
-
"default": "./fesm2022/aril-ui-textArea.mjs"
|
|
228
|
-
},
|
|
229
|
-
"./ui/toggle-button": {
|
|
230
|
-
"types": "./ui/toggle-button/index.d.ts",
|
|
231
|
-
"esm2022": "./esm2022/ui/toggle-button/aril-ui-toggle-button.mjs",
|
|
232
|
-
"esm": "./esm2022/ui/toggle-button/aril-ui-toggle-button.mjs",
|
|
233
|
-
"default": "./fesm2022/aril-ui-toggle-button.mjs"
|
|
234
|
-
},
|
|
235
|
-
"./ui/tree": {
|
|
236
|
-
"types": "./ui/tree/index.d.ts",
|
|
237
|
-
"esm2022": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
238
|
-
"esm": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
239
|
-
"default": "./fesm2022/aril-ui-tree.mjs"
|
|
240
|
-
},
|
|
241
|
-
"./ui/treeTable": {
|
|
242
|
-
"types": "./ui/treeTable/index.d.ts",
|
|
243
|
-
"esm2022": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
244
|
-
"esm": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
245
|
-
"default": "./fesm2022/aril-ui-treeTable.mjs"
|
|
246
|
-
},
|
|
247
|
-
"./ui/value": {
|
|
248
|
-
"types": "./ui/value/index.d.ts",
|
|
249
|
-
"esm2022": "./esm2022/ui/value/aril-ui-value.mjs",
|
|
250
|
-
"esm": "./esm2022/ui/value/aril-ui-value.mjs",
|
|
251
|
-
"default": "./fesm2022/aril-ui-value.mjs"
|
|
252
|
-
},
|
|
253
|
-
"./util/custom_pages": {
|
|
254
|
-
"types": "./util/custom_pages/index.d.ts",
|
|
255
|
-
"esm2022": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
256
|
-
"esm": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
257
|
-
"default": "./fesm2022/aril-util-custom_pages.mjs"
|
|
258
|
-
},
|
|
259
|
-
"./util/block": {
|
|
260
|
-
"types": "./util/block/index.d.ts",
|
|
261
|
-
"esm2022": "./esm2022/util/block/aril-util-block.mjs",
|
|
262
|
-
"esm": "./esm2022/util/block/aril-util-block.mjs",
|
|
263
|
-
"default": "./fesm2022/aril-util-block.mjs"
|
|
264
|
-
},
|
|
265
|
-
"./util/init-event": {
|
|
266
|
-
"types": "./util/init-event/index.d.ts",
|
|
267
|
-
"esm2022": "./esm2022/util/init-event/aril-util-init-event.mjs",
|
|
268
|
-
"esm": "./esm2022/util/init-event/aril-util-init-event.mjs",
|
|
269
|
-
"default": "./fesm2022/aril-util-init-event.mjs"
|
|
270
|
-
},
|
|
271
|
-
"./util/lib": {
|
|
272
|
-
"types": "./util/lib/index.d.ts",
|
|
273
|
-
"esm2022": "./esm2022/util/lib/aril-util-lib.mjs",
|
|
274
|
-
"esm": "./esm2022/util/lib/aril-util-lib.mjs",
|
|
275
|
-
"default": "./fesm2022/aril-util-lib.mjs"
|
|
276
|
-
},
|
|
277
|
-
"./util/loaders": {
|
|
278
|
-
"types": "./util/loaders/index.d.ts",
|
|
279
|
-
"esm2022": "./esm2022/util/loaders/aril-util-loaders.mjs",
|
|
280
|
-
"esm": "./esm2022/util/loaders/aril-util-loaders.mjs",
|
|
281
|
-
"default": "./fesm2022/aril-util-loaders.mjs"
|
|
282
|
-
},
|
|
283
|
-
"./util/primitive-extensions": {
|
|
284
|
-
"types": "./util/primitive-extensions/index.d.ts",
|
|
285
|
-
"esm2022": "./esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs",
|
|
286
|
-
"esm": "./esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs",
|
|
287
|
-
"default": "./fesm2022/aril-util-primitive-extensions.mjs"
|
|
288
|
-
},
|
|
289
|
-
"./util/pub-sub": {
|
|
290
|
-
"types": "./util/pub-sub/index.d.ts",
|
|
291
|
-
"esm2022": "./esm2022/util/pub-sub/aril-util-pub-sub.mjs",
|
|
292
|
-
"esm": "./esm2022/util/pub-sub/aril-util-pub-sub.mjs",
|
|
293
|
-
"default": "./fesm2022/aril-util-pub-sub.mjs"
|
|
294
|
-
},
|
|
295
|
-
"./boot/config/api": {
|
|
296
|
-
"types": "./boot/config/api/index.d.ts",
|
|
297
|
-
"esm2022": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
298
|
-
"esm": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
299
|
-
"default": "./fesm2022/aril-boot-config-api.mjs"
|
|
300
|
-
},
|
|
301
|
-
"./boot/config/apps": {
|
|
302
|
-
"types": "./boot/config/apps/index.d.ts",
|
|
303
|
-
"esm2022": "./esm2022/boot/config/apps/aril-boot-config-apps.mjs",
|
|
304
|
-
"esm": "./esm2022/boot/config/apps/aril-boot-config-apps.mjs",
|
|
305
|
-
"default": "./fesm2022/aril-boot-config-apps.mjs"
|
|
306
|
-
},
|
|
307
|
-
"./boot/config/plugins": {
|
|
308
|
-
"types": "./boot/config/plugins/index.d.ts",
|
|
309
|
-
"esm2022": "./esm2022/boot/config/plugins/aril-boot-config-plugins.mjs",
|
|
310
|
-
"esm": "./esm2022/boot/config/plugins/aril-boot-config-plugins.mjs",
|
|
311
|
-
"default": "./fesm2022/aril-boot-config-plugins.mjs"
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "aril",
|
|
3
|
+
"version": "0.0.47",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"build": "nx run aril:build:production --skip-nx-cache=true",
|
|
6
|
+
"create-pack": "npm run build && cd ../../dist && npm pack",
|
|
7
|
+
"prepublish": "npm run build",
|
|
8
|
+
"publish": "npm publish ../../dist/"
|
|
9
|
+
},
|
|
10
|
+
"peerDependencies": {
|
|
11
|
+
"@angular/common": "^17.1.0",
|
|
12
|
+
"@angular/core": "^17.1.0",
|
|
13
|
+
"@ngneat/transloco": "^6.0.4",
|
|
14
|
+
"primeflex": "^3.3.1",
|
|
15
|
+
"primeicons": "^6.0.1",
|
|
16
|
+
"primeng": "^17.4.0",
|
|
17
|
+
"devextreme": "^23.2.4",
|
|
18
|
+
"devextreme-angular": "^23.2.4",
|
|
19
|
+
"number-format.js": "^2.0.9",
|
|
20
|
+
"file-saver": "^2.0.5",
|
|
21
|
+
"xlsx": "^0.18.5",
|
|
22
|
+
"keycloak-js": "^24.0.2",
|
|
23
|
+
"keycloak-angular": "^15.2.1",
|
|
24
|
+
"jspdf": "^2.4.0",
|
|
25
|
+
"jspdf-autotable": "^3.8.2"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"tslib": "^2.3.0"
|
|
29
|
+
},
|
|
30
|
+
"sideEffects": false
|
|
31
|
+
}
|
package/project.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
3
|
+
"name": "aril",
|
|
4
|
+
"projectType": "library",
|
|
5
|
+
"sourceRoot": "projects/aril/src",
|
|
6
|
+
"prefix": "aril",
|
|
7
|
+
"targets": {
|
|
8
|
+
"build": {
|
|
9
|
+
"executor": "@angular-devkit/build-angular:ng-packagr",
|
|
10
|
+
"options": {
|
|
11
|
+
"project": "projects/aril/ng-package.json"
|
|
12
|
+
},
|
|
13
|
+
"configurations": {
|
|
14
|
+
"production": {
|
|
15
|
+
"tsConfig": "projects/aril/tsconfig.lib.prod.json"
|
|
16
|
+
},
|
|
17
|
+
"development": {
|
|
18
|
+
"tsConfig": "projects/aril/tsconfig.lib.json"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"defaultConfiguration": "production",
|
|
22
|
+
"outputs": ["{workspaceRoot}/dist"]
|
|
23
|
+
},
|
|
24
|
+
"test": {
|
|
25
|
+
"executor": "@angular-devkit/build-angular:karma",
|
|
26
|
+
"options": {
|
|
27
|
+
"tsConfig": "projects/aril/tsconfig.spec.json",
|
|
28
|
+
"polyfills": ["zone.js", "zone.js/testing"]
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"lint": {
|
|
32
|
+
"executor": "@angular-eslint/builder:lint",
|
|
33
|
+
"options": {
|
|
34
|
+
"lintFilePatterns": ["projects/aril/**/*.ts", "projects/aril/**/*.html"]
|
|
35
|
+
},
|
|
36
|
+
"outputs": ["{options.outputFile}"]
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import './boot/host/index';
|
|
2
|
-
import './boot/mfe/index';
|
|
1
|
+
import './boot/host/index';
|
|
2
|
+
import './boot/mfe/index';
|
package/theme/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const aril_theme = 'ARiL-THEME';
|
|
1
|
+
export const aril_theme = 'ARiL-THEME';
|
|
@@ -1,10 +1,17 @@
|
|
|
1
|
-
<nav class="layout-breadcrumb">
|
|
2
|
-
<ol>
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
<nav class="layout-breadcrumb">
|
|
2
|
+
<ol>
|
|
3
|
+
<i class="pi pi-home text-xl"></i>
|
|
4
|
+
@for (item of breadcrumbs$ | async; track item; let last = $last) {
|
|
5
|
+
<li class="border-bottom-1">
|
|
6
|
+
<a [routerLink]="item.url" class="no-underline">
|
|
7
|
+
<span class="text-gray-900 text-lg">{{ item.label }}</span>
|
|
8
|
+
</a>
|
|
9
|
+
</li>
|
|
10
|
+
@if (!last) {
|
|
11
|
+
<li class="layout-breadcrumb-chevron ">
|
|
12
|
+
<i class="pi pi-chevron-right font-semibold text-lg text-gray-900"></i>
|
|
13
|
+
</li>
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
</ol>
|
|
17
|
+
</nav>
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
import { AsyncPipe, NgTemplateOutlet } from '@angular/common';
|
|
2
|
-
import { Component } from '@angular/core';
|
|
3
|
-
import { ActivatedRouteSnapshot, NavigationEnd, Router } from '@angular/router';
|
|
4
|
-
|
|
5
|
-
import { BehaviorSubject } from 'rxjs';
|
|
6
|
-
import { filter } from 'rxjs/operators';
|
|
7
|
-
|
|
8
|
-
interface Breadcrumb {
|
|
9
|
-
label: string;
|
|
10
|
-
url?: string;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
@Component({
|
|
14
|
-
standalone: true,
|
|
15
|
-
selector: 'app-breadcrumb',
|
|
16
|
-
imports: [NgTemplateOutlet, AsyncPipe],
|
|
17
|
-
templateUrl: './app.breadcrumb.component.html'
|
|
18
|
-
})
|
|
19
|
-
export class AppBreadcrumbComponent {
|
|
20
|
-
private readonly _breadcrumbs$ = new BehaviorSubject<Breadcrumb[]>([]);
|
|
21
|
-
|
|
22
|
-
readonly breadcrumbs$ = this._breadcrumbs$.asObservable();
|
|
23
|
-
|
|
24
|
-
constructor(private router: Router) {
|
|
25
|
-
this.router.events.pipe(filter((event) => event instanceof NavigationEnd)).subscribe((event) => {
|
|
26
|
-
const root = this.router.routerState.snapshot.root;
|
|
27
|
-
const breadcrumbs: Breadcrumb[] = [];
|
|
28
|
-
this.addBreadcrumb(root, [], breadcrumbs);
|
|
29
|
-
|
|
30
|
-
this._breadcrumbs$.next(breadcrumbs);
|
|
31
|
-
});
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
private addBreadcrumb(route: ActivatedRouteSnapshot, parentUrl: string[], breadcrumbs: Breadcrumb[]) {
|
|
35
|
-
const routeUrl = parentUrl.concat(route.url.map((url) => url.path));
|
|
36
|
-
const breadcrumb = route.data['breadcrumb'];
|
|
37
|
-
const parentBreadcrumb = route.parent && route.parent.data ? route.parent.data['breadcrumb'] : null;
|
|
38
|
-
|
|
39
|
-
if (breadcrumb && breadcrumb !== parentBreadcrumb) {
|
|
40
|
-
breadcrumbs.push({
|
|
41
|
-
label: route.data['breadcrumb'],
|
|
42
|
-
url: '/' + routeUrl.join('/')
|
|
43
|
-
});
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
if (route.firstChild) {
|
|
47
|
-
this.addBreadcrumb(route.firstChild, routeUrl, breadcrumbs);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
1
|
+
import { AsyncPipe, NgTemplateOutlet } from '@angular/common';
|
|
2
|
+
import { Component } from '@angular/core';
|
|
3
|
+
import { ActivatedRouteSnapshot, NavigationEnd, Router, RouterLink } from '@angular/router';
|
|
4
|
+
|
|
5
|
+
import { BehaviorSubject } from 'rxjs';
|
|
6
|
+
import { filter } from 'rxjs/operators';
|
|
7
|
+
|
|
8
|
+
interface Breadcrumb {
|
|
9
|
+
label: string;
|
|
10
|
+
url?: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@Component({
|
|
14
|
+
standalone: true,
|
|
15
|
+
selector: 'app-breadcrumb',
|
|
16
|
+
imports: [NgTemplateOutlet, AsyncPipe, RouterLink],
|
|
17
|
+
templateUrl: './app.breadcrumb.component.html'
|
|
18
|
+
})
|
|
19
|
+
export class AppBreadcrumbComponent {
|
|
20
|
+
private readonly _breadcrumbs$ = new BehaviorSubject<Breadcrumb[]>([]);
|
|
21
|
+
|
|
22
|
+
readonly breadcrumbs$ = this._breadcrumbs$.asObservable();
|
|
23
|
+
|
|
24
|
+
constructor(private router: Router) {
|
|
25
|
+
this.router.events.pipe(filter((event) => event instanceof NavigationEnd)).subscribe((event) => {
|
|
26
|
+
const root = this.router.routerState.snapshot.root;
|
|
27
|
+
const breadcrumbs: Breadcrumb[] = [];
|
|
28
|
+
this.addBreadcrumb(root, [], breadcrumbs);
|
|
29
|
+
|
|
30
|
+
this._breadcrumbs$.next(breadcrumbs);
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
private addBreadcrumb(route: ActivatedRouteSnapshot, parentUrl: string[], breadcrumbs: Breadcrumb[]) {
|
|
35
|
+
const routeUrl = parentUrl.concat(route.url.map((url) => url.path));
|
|
36
|
+
const breadcrumb = route.data['breadcrumb'];
|
|
37
|
+
const parentBreadcrumb = route.parent && route.parent.data ? route.parent.data['breadcrumb'] : null;
|
|
38
|
+
|
|
39
|
+
if (breadcrumb && breadcrumb !== parentBreadcrumb) {
|
|
40
|
+
breadcrumbs.push({
|
|
41
|
+
label: route.data['breadcrumb'],
|
|
42
|
+
url: '/' + routeUrl.join('/')
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
if (route.firstChild) {
|
|
47
|
+
this.addBreadcrumb(route.firstChild, routeUrl, breadcrumbs);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|