zek 15.2.1 → 16.0.1
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/README.md +1 -1
- package/{esm2020 → esm2022}/lib/components/args.mjs +1 -1
- package/esm2022/lib/components/base.component.mjs +97 -0
- package/esm2022/lib/components/core-ui.component.mjs +195 -0
- package/esm2022/lib/components/core.component.mjs +40 -0
- package/esm2022/lib/components/edit-base.component.mjs +237 -0
- package/{esm2020 → esm2022}/lib/components/index.mjs +7 -7
- package/esm2022/lib/components/list-base.component.mjs +259 -0
- package/{esm2020 → esm2022}/lib/components/types.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/alert-type.mjs +11 -11
- package/{esm2020 → esm2022}/lib/models/captcha.model.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/ctor.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/edit-base.model.mjs +2 -2
- package/{esm2020 → esm2022}/lib/models/file.model.mjs +19 -19
- package/{esm2020 → esm2022}/lib/models/filter.model.mjs +11 -11
- package/{esm2020 → esm2022}/lib/models/gender.model.mjs +5 -5
- package/{esm2020 → esm2022}/lib/models/index.mjs +17 -17
- package/{esm2020 → esm2022}/lib/models/key-pair.model.mjs +13 -13
- package/{esm2020 → esm2022}/lib/models/list-base.model.mjs +2 -2
- package/{esm2020 → esm2022}/lib/models/login.model.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/month.model.mjs +15 -15
- package/{esm2020 → esm2022}/lib/models/nav.model.mjs +1 -1
- package/esm2022/lib/models/pager.model.mjs +43 -0
- package/{esm2020 → esm2022}/lib/models/print.model.mjs +5 -5
- package/{esm2020 → esm2022}/lib/models/tree.model.mjs +3 -3
- package/{esm2020 → esm2022}/lib/models/valid-event-args.model.mjs +5 -5
- package/esm2022/lib/modules/age/age.module.mjs +23 -0
- package/esm2022/lib/modules/age/age.pipe.mjs +22 -0
- package/{esm2020 → esm2022}/lib/modules/age/index.mjs +2 -2
- package/esm2022/lib/modules/alert/alert/alert.mjs +55 -0
- package/esm2022/lib/modules/alert/alert.module.mjs +36 -0
- package/{esm2020 → esm2022}/lib/modules/alert/index.mjs +5 -5
- package/esm2022/lib/modules/alert/toast/toast.mjs +110 -0
- package/esm2022/lib/modules/alert/validation/validation.mjs +86 -0
- package/esm2022/lib/modules/autocomplete/autocomplete.directive.mjs +25 -0
- package/esm2022/lib/modules/autocomplete/autocomplete.module.mjs +23 -0
- package/{esm2020 → esm2022}/lib/modules/autocomplete/index.mjs +2 -2
- package/esm2022/lib/modules/bb/bb-modal-base.component.mjs +75 -0
- package/esm2022/lib/modules/bb/bb-modal-toolbar.mjs +45 -0
- package/esm2022/lib/modules/bb/bb.component.mjs +189 -0
- package/esm2022/lib/modules/bb/bb.module.mjs +38 -0
- package/{esm2020 → esm2022}/lib/modules/bb/index.mjs +4 -4
- package/esm2022/lib/modules/callback/callback.module.mjs +23 -0
- package/esm2022/lib/modules/callback/callback.pipe.mjs +23 -0
- package/{esm2020 → esm2022}/lib/modules/callback/index.mjs +2 -2
- package/esm2022/lib/modules/card/card/card.component.mjs +48 -0
- package/esm2022/lib/modules/card/card.module.mjs +19 -0
- package/{esm2020 → esm2022}/lib/modules/card/index.mjs +2 -2
- package/esm2022/lib/modules/date-ago/date-ago.pipe.mjs +47 -0
- package/esm2022/lib/modules/date-ago/date.module.mjs +23 -0
- package/{esm2020 → esm2022}/lib/modules/date-ago/index.mjs +2 -2
- package/esm2022/lib/modules/datepicker/date-value-accessor.mjs +189 -0
- package/esm2022/lib/modules/datepicker/datepicker.module.mjs +32 -0
- package/{esm2020 → esm2022}/lib/modules/datepicker/index.mjs +2 -2
- package/esm2022/lib/modules/edit-toolbar/edit-toolbar.component.mjs +75 -0
- package/esm2022/lib/modules/edit-toolbar/edit-toolbar.module.mjs +27 -0
- package/{esm2020 → esm2022}/lib/modules/edit-toolbar/index.mjs +2 -2
- package/esm2022/lib/modules/file/file-size.pipe.mjs +48 -0
- package/esm2022/lib/modules/file/file.module.mjs +23 -0
- package/{esm2020 → esm2022}/lib/modules/file/index.mjs +2 -2
- package/esm2022/lib/modules/file-viewer/file-viewer.mjs +52 -0
- package/{esm2020 → esm2022}/lib/modules/file-viewer/index.mjs +2 -2
- package/esm2022/lib/modules/file-viewer/module.mjs +31 -0
- package/esm2022/lib/modules/grid-toolbar/grid-toolbar/grid-toolbar.component.mjs +146 -0
- package/esm2022/lib/modules/grid-toolbar/grid-toolbar-bar/grid-toolbar-bar.component.mjs +15 -0
- package/esm2022/lib/modules/grid-toolbar/grid-toolbar.module.mjs +34 -0
- package/{esm2020 → esm2022}/lib/modules/grid-toolbar/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/modules/index.mjs +32 -32
- package/{esm2020 → esm2022}/lib/modules/list-toolbar/index.mjs +2 -2
- package/esm2022/lib/modules/list-toolbar/list-toolbar.component.mjs +110 -0
- package/esm2022/lib/modules/list-toolbar/list-toolbar.module.mjs +25 -0
- package/{esm2020 → esm2022}/lib/modules/loading/index.mjs +3 -3
- package/esm2022/lib/modules/loading/loading-interceptor.mjs +80 -0
- package/esm2022/lib/modules/loading/loading.component.mjs +36 -0
- package/esm2022/lib/modules/loading/loading.module.mjs +33 -0
- package/esm2022/lib/modules/modal/filter-modal/filter-modal.component.mjs +27 -0
- package/{esm2020 → esm2022}/lib/modules/modal/index.mjs +4 -4
- package/esm2022/lib/modules/modal/modal/modal.component.mjs +313 -0
- package/esm2022/lib/modules/modal/modal.module.mjs +63 -0
- package/esm2022/lib/modules/modal/sum-modal/sum-modal.component.mjs +28 -0
- package/{esm2020 → esm2022}/lib/modules/page-title/index.mjs +2 -2
- package/esm2022/lib/modules/page-title/page-title.component.mjs +32 -0
- package/esm2022/lib/modules/page-title/page-title.module.mjs +27 -0
- package/{esm2020 → esm2022}/lib/modules/pager/index.mjs +2 -2
- package/esm2022/lib/modules/pager/pager/pager.component.mjs +51 -0
- package/esm2022/lib/modules/pager/pager.module.mjs +27 -0
- package/{esm2020 → esm2022}/lib/modules/password/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/modules/password/password.component.mjs +48 -47
- package/esm2022/lib/modules/password/password.module.mjs +31 -0
- package/{esm2020 → esm2022}/lib/modules/progress/index.mjs +2 -2
- package/esm2022/lib/modules/progress/module.mjs +27 -0
- package/esm2022/lib/modules/progress/progress.mjs +98 -0
- package/{esm2020 → esm2022}/lib/modules/radio/index.mjs +2 -2
- package/esm2022/lib/modules/radio/radio-button.component.mjs +135 -0
- package/esm2022/lib/modules/radio/radio.module.mjs +23 -0
- package/{esm2020 → esm2022}/lib/modules/readonly/index.mjs +2 -2
- package/esm2022/lib/modules/readonly/readonly.directive.mjs +26 -0
- package/esm2022/lib/modules/readonly/readonly.module.mjs +23 -0
- package/{esm2020 → esm2022}/lib/modules/recaptcha/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/modules/recaptcha/loader.mjs +12 -12
- package/{esm2020 → esm2022}/lib/modules/recaptcha/recaptcha.model.mjs +1 -1
- package/esm2022/lib/modules/recaptcha/recaptcha.module.mjs +33 -0
- package/esm2022/lib/modules/recaptcha/recaptcha.service.mjs +120 -0
- package/{esm2020 → esm2022}/lib/modules/safe/index.mjs +2 -2
- package/esm2022/lib/modules/safe/safe.module.mjs +21 -0
- package/esm2022/lib/modules/safe/safe.pipe.mjs +38 -0
- package/{esm2020 → esm2022}/lib/modules/select/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/modules/select/model.mjs +3 -3
- package/esm2022/lib/modules/select/module.mjs +29 -0
- package/esm2022/lib/modules/select/select.mjs +199 -0
- package/{esm2020 → esm2022}/lib/modules/select2/index.mjs +2 -2
- package/esm2022/lib/modules/select2/select2.component.mjs +171 -0
- package/esm2022/lib/modules/select2/select2.module.mjs +29 -0
- package/{esm2020 → esm2022}/lib/modules/select2-multiple/index.mjs +2 -2
- package/esm2022/lib/modules/select2-multiple/select2-multiple.component.mjs +133 -0
- package/esm2022/lib/modules/select2-multiple/select2-multiple.module.mjs +29 -0
- package/{esm2020 → esm2022}/lib/modules/sort/index.mjs +3 -3
- package/esm2022/lib/modules/sort/sort-button-group/sort-button-group.component.mjs +80 -0
- package/esm2022/lib/modules/sort/sort.directive.mjs +118 -0
- package/esm2022/lib/modules/sort/sort.module.mjs +34 -0
- package/{esm2020 → esm2022}/lib/modules/time/index.mjs +3 -3
- package/esm2022/lib/modules/time/time.module.mjs +28 -0
- package/esm2022/lib/modules/time/time.pipe.mjs +41 -0
- package/esm2022/lib/modules/time/timer-service.mjs +90 -0
- package/{esm2020 → esm2022}/lib/modules/validator/field-validator.mjs +21 -20
- package/{esm2020 → esm2022}/lib/modules/validator/index.mjs +2 -2
- package/esm2022/lib/modules/validator/validator.module.mjs +27 -0
- package/esm2022/lib/modules/validators/directive.mjs +76 -0
- package/{esm2020 → esm2022}/lib/modules/validators/index.mjs +3 -3
- package/esm2022/lib/modules/validators/module.mjs +23 -0
- package/{esm2020 → esm2022}/lib/modules/validators/validator.mjs +71 -71
- package/{esm2020 → esm2022}/lib/modules/wizard/index.mjs +3 -3
- package/esm2022/lib/modules/wizard/wizard/wizard.component.mjs +66 -0
- package/esm2022/lib/modules/wizard/wizard.module.mjs +34 -0
- package/esm2022/lib/modules/wizard/wizard2/wizard2.component.mjs +14 -0
- package/esm2022/lib/services/alert.service.mjs +77 -0
- package/esm2022/lib/services/auth-guard.service.mjs +29 -0
- package/esm2022/lib/services/auth.service.mjs +204 -0
- package/{esm2020 → esm2022}/lib/services/base.service.mjs +7 -7
- package/{esm2020 → esm2022}/lib/services/crud.service.mjs +42 -42
- package/esm2022/lib/services/http-error-handler.service.mjs +142 -0
- package/{esm2020 → esm2022}/lib/services/index.mjs +6 -6
- package/esm2022/lib/services/web.api.mjs +127 -0
- package/{esm2020 → esm2022}/lib/tokens.mjs +5 -5
- package/{esm2020 → esm2022}/lib/utils/array-helper.mjs +113 -113
- package/{esm2020 → esm2022}/lib/utils/base64-helper.mjs +8 -8
- package/{esm2020 → esm2022}/lib/utils/bitwise-helper.mjs +13 -13
- package/{esm2020 → esm2022}/lib/utils/bootstrap.helper.mjs +126 -126
- package/{esm2020 → esm2022}/lib/utils/convert.mjs +34 -34
- package/{esm2020 → esm2022}/lib/utils/css-helper.mjs +40 -40
- package/esm2022/lib/utils/date-helper.mjs +236 -0
- package/{esm2020 → esm2022}/lib/utils/file.helper.mjs +25 -25
- package/{esm2020 → esm2022}/lib/utils/filter-helper.mjs +12 -12
- package/{esm2020 → esm2022}/lib/utils/handler.mjs +23 -23
- package/{esm2020 → esm2022}/lib/utils/html-helper.mjs +65 -65
- package/{esm2020 → esm2022}/lib/utils/index.mjs +22 -22
- package/{esm2020 → esm2022}/lib/utils/math-helper.mjs +6 -6
- package/{esm2020 → esm2022}/lib/utils/object-helper.mjs +63 -63
- package/{esm2020 → esm2022}/lib/utils/overlap-helper.mjs +72 -72
- package/{esm2020 → esm2022}/lib/utils/pager-helper.mjs +62 -62
- package/{esm2020 → esm2022}/lib/utils/random-helper.mjs +10 -10
- package/{esm2020 → esm2022}/lib/utils/storage-helper.mjs +27 -27
- package/{esm2020 → esm2022}/lib/utils/string-helper.mjs +31 -31
- package/{esm2020 → esm2022}/lib/utils/thenBy.mjs +40 -40
- package/{esm2020 → esm2022}/lib/utils/time-helper.mjs +46 -46
- package/{esm2020 → esm2022}/lib/utils/url-helper.mjs +25 -25
- package/esm2022/lib/utils/validation-helper.mjs +11 -0
- package/esm2022/lib/zek.module.mjs +34 -0
- package/{esm2020 → esm2022}/public-api.mjs +10 -10
- package/{esm2020 → esm2022}/zek.mjs +4 -4
- package/{fesm2020 → fesm2022}/zek.mjs +6431 -6415
- package/fesm2022/zek.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/components/args.d.ts +5 -5
- package/lib/components/base.component.d.ts +24 -24
- package/lib/components/core-ui.component.d.ts +86 -86
- package/lib/components/core.component.d.ts +15 -15
- package/lib/components/edit-base.component.d.ts +59 -59
- package/lib/components/index.d.ts +7 -7
- package/lib/components/list-base.component.d.ts +61 -61
- package/lib/components/types.d.ts +3 -3
- package/lib/models/alert-type.d.ts +10 -10
- package/lib/models/captcha.model.d.ts +3 -3
- package/lib/models/ctor.d.ts +3 -3
- package/lib/models/edit-base.model.d.ts +5 -5
- package/lib/models/file.model.d.ts +14 -14
- package/lib/models/filter.model.d.ts +9 -9
- package/lib/models/gender.model.d.ts +4 -4
- package/lib/models/index.d.ts +16 -16
- package/lib/models/key-pair.model.d.ts +14 -14
- package/lib/models/list-base.model.d.ts +4 -4
- package/lib/models/login.model.d.ts +28 -28
- package/lib/models/month.model.d.ts +14 -14
- package/lib/models/nav.model.d.ts +19 -19
- package/lib/models/pager.model.d.ts +32 -21
- package/lib/models/print.model.d.ts +4 -4
- package/lib/models/tree.model.d.ts +8 -8
- package/lib/models/valid-event-args.model.d.ts +3 -3
- package/lib/modules/age/age.module.d.ts +8 -8
- package/lib/modules/age/age.pipe.d.ts +7 -7
- package/lib/modules/age/index.d.ts +2 -2
- package/lib/modules/alert/alert/alert.d.ts +16 -16
- package/lib/modules/alert/alert.module.d.ts +10 -10
- package/lib/modules/alert/index.d.ts +5 -5
- package/lib/modules/alert/toast/toast.d.ts +20 -20
- package/lib/modules/alert/validation/validation.d.ts +17 -17
- package/lib/modules/autocomplete/autocomplete.directive.d.ts +11 -11
- package/lib/modules/autocomplete/autocomplete.module.d.ts +8 -8
- package/lib/modules/autocomplete/index.d.ts +2 -2
- package/lib/modules/bb/bb-modal-base.component.d.ts +26 -26
- package/lib/modules/bb/bb-modal-toolbar.d.ts +16 -16
- package/lib/modules/bb/bb.component.d.ts +52 -52
- package/lib/modules/bb/bb.module.d.ts +11 -11
- package/lib/modules/bb/index.d.ts +4 -4
- package/lib/modules/callback/callback.module.d.ts +8 -8
- package/lib/modules/callback/callback.pipe.d.ts +7 -7
- package/lib/modules/callback/index.d.ts +2 -2
- package/lib/modules/card/card/card.component.d.ts +21 -21
- package/lib/modules/card/card.module.d.ts +8 -8
- package/lib/modules/card/index.d.ts +2 -2
- package/lib/modules/date-ago/date-ago.pipe.d.ts +7 -7
- package/lib/modules/date-ago/date.module.d.ts +8 -8
- package/lib/modules/date-ago/index.d.ts +2 -2
- package/lib/modules/datepicker/date-value-accessor.d.ts +24 -24
- package/lib/modules/datepicker/datepicker.module.d.ts +14 -14
- package/lib/modules/datepicker/index.d.ts +2 -2
- package/lib/modules/edit-toolbar/edit-toolbar.component.d.ts +25 -25
- package/lib/modules/edit-toolbar/edit-toolbar.module.d.ts +9 -9
- package/lib/modules/edit-toolbar/index.d.ts +2 -2
- package/lib/modules/file/file-size.pipe.d.ts +8 -8
- package/lib/modules/file/file.module.d.ts +8 -8
- package/lib/modules/file/index.d.ts +2 -2
- package/lib/modules/file-viewer/file-viewer.d.ts +10 -10
- package/lib/modules/file-viewer/index.d.ts +2 -2
- package/lib/modules/file-viewer/module.d.ts +10 -10
- package/lib/modules/grid-toolbar/grid-toolbar/grid-toolbar.component.d.ts +50 -50
- package/lib/modules/grid-toolbar/grid-toolbar-bar/grid-toolbar-bar.component.d.ts +6 -6
- package/lib/modules/grid-toolbar/grid-toolbar.module.d.ts +10 -10
- package/lib/modules/grid-toolbar/index.d.ts +3 -3
- package/lib/modules/index.d.ts +31 -31
- package/lib/modules/list-toolbar/index.d.ts +2 -2
- package/lib/modules/list-toolbar/list-toolbar.component.d.ts +41 -41
- package/lib/modules/list-toolbar/list-toolbar.module.d.ts +9 -9
- package/lib/modules/loading/index.d.ts +2 -2
- package/lib/modules/loading/loading-interceptor.d.ts +21 -21
- package/lib/modules/loading/loading.component.d.ts +13 -13
- package/lib/modules/loading/loading.module.d.ts +8 -8
- package/lib/modules/modal/filter-modal/filter-modal.component.d.ts +10 -10
- package/lib/modules/modal/index.d.ts +4 -4
- package/lib/modules/modal/modal/modal.component.d.ts +90 -90
- package/lib/modules/modal/modal.module.d.ts +12 -12
- package/lib/modules/modal/sum-modal/sum-modal.component.d.ts +8 -8
- package/lib/modules/page-title/index.d.ts +2 -2
- package/lib/modules/page-title/page-title.component.d.ts +12 -12
- package/lib/modules/page-title/page-title.module.d.ts +9 -9
- package/lib/modules/pager/index.d.ts +2 -2
- package/lib/modules/pager/pager/pager.component.d.ts +17 -17
- package/lib/modules/pager/pager.module.d.ts +9 -9
- package/lib/modules/password/index.d.ts +2 -2
- package/lib/modules/password/password.component.d.ts +18 -18
- package/lib/modules/password/password.module.d.ts +10 -10
- package/lib/modules/progress/index.d.ts +2 -2
- package/lib/modules/progress/module.d.ts +9 -9
- package/lib/modules/progress/progress.d.ts +33 -33
- package/lib/modules/radio/index.d.ts +2 -2
- package/lib/modules/radio/radio-button.component.d.ts +44 -44
- package/lib/modules/radio/radio.module.d.ts +8 -8
- package/lib/modules/readonly/index.d.ts +2 -2
- package/lib/modules/readonly/readonly.directive.d.ts +8 -8
- package/lib/modules/readonly/readonly.module.d.ts +8 -8
- package/lib/modules/recaptcha/index.d.ts +3 -3
- package/lib/modules/recaptcha/loader.d.ts +12 -12
- package/lib/modules/recaptcha/recaptcha.model.d.ts +109 -109
- package/lib/modules/recaptcha/recaptcha.module.d.ts +10 -10
- package/lib/modules/recaptcha/recaptcha.service.d.ts +60 -60
- package/lib/modules/safe/index.d.ts +2 -2
- package/lib/modules/safe/safe.module.d.ts +8 -8
- package/lib/modules/safe/safe.pipe.d.ts +16 -16
- package/lib/modules/select/index.d.ts +2 -2
- package/lib/modules/select/model.d.ts +5 -5
- package/lib/modules/select/module.d.ts +9 -9
- package/lib/modules/select/select.d.ts +42 -42
- package/lib/modules/select2/index.d.ts +2 -2
- package/lib/modules/select2/select2.component.d.ts +31 -31
- package/lib/modules/select2/select2.module.d.ts +9 -9
- package/lib/modules/select2-multiple/index.d.ts +2 -2
- package/lib/modules/select2-multiple/select2-multiple.component.d.ts +30 -30
- package/lib/modules/select2-multiple/select2-multiple.module.d.ts +9 -9
- package/lib/modules/sort/index.d.ts +3 -3
- package/lib/modules/sort/sort-button-group/sort-button-group.component.d.ts +34 -34
- package/lib/modules/sort/sort.directive.d.ts +34 -34
- package/lib/modules/sort/sort.module.d.ts +10 -10
- package/lib/modules/time/index.d.ts +3 -3
- package/lib/modules/time/time.module.d.ts +8 -8
- package/lib/modules/time/time.pipe.d.ts +11 -11
- package/lib/modules/time/timer-service.d.ts +21 -21
- package/lib/modules/validator/field-validator.d.ts +7 -7
- package/lib/modules/validator/index.d.ts +2 -2
- package/lib/modules/validator/validator.module.d.ts +9 -9
- package/lib/modules/validators/directive.d.ts +67 -67
- package/lib/modules/validators/index.d.ts +3 -3
- package/lib/modules/validators/module.d.ts +8 -8
- package/lib/modules/validators/validator.d.ts +33 -33
- package/lib/modules/wizard/index.d.ts +3 -3
- package/lib/modules/wizard/wizard/wizard.component.d.ts +19 -19
- package/lib/modules/wizard/wizard.module.d.ts +10 -10
- package/lib/modules/wizard/wizard2/wizard2.component.d.ts +6 -6
- package/lib/services/alert.service.d.ts +33 -33
- package/lib/services/auth-guard.service.d.ts +12 -12
- package/lib/services/auth.service.d.ts +30 -30
- package/lib/services/base.service.d.ts +8 -8
- package/lib/services/crud.service.d.ts +32 -32
- package/lib/services/http-error-handler.service.d.ts +39 -39
- package/lib/services/index.d.ts +6 -6
- package/lib/services/web.api.d.ts +31 -31
- package/lib/tokens.d.ts +5 -5
- package/lib/utils/array-helper.d.ts +14 -14
- package/lib/utils/base64-helper.d.ts +4 -4
- package/lib/utils/bitwise-helper.d.ts +4 -4
- package/lib/utils/bootstrap.helper.d.ts +25 -25
- package/lib/utils/convert.d.ts +7 -7
- package/lib/utils/css-helper.d.ts +5 -5
- package/lib/utils/date-helper.d.ts +43 -43
- package/lib/utils/file.helper.d.ts +3 -3
- package/lib/utils/filter-helper.d.ts +3 -3
- package/lib/utils/handler.d.ts +4 -4
- package/lib/utils/html-helper.d.ts +7 -7
- package/lib/utils/index.d.ts +22 -22
- package/lib/utils/math-helper.d.ts +3 -3
- package/lib/utils/object-helper.d.ts +13 -13
- package/lib/utils/overlap-helper.d.ts +22 -22
- package/lib/utils/pager-helper.d.ts +4 -4
- package/lib/utils/random-helper.d.ts +3 -3
- package/lib/utils/storage-helper.d.ts +4 -4
- package/lib/utils/string-helper.d.ts +8 -8
- package/lib/utils/thenBy.d.ts +4 -4
- package/lib/utils/time-helper.d.ts +7 -7
- package/lib/utils/url-helper.d.ts +5 -5
- package/lib/utils/validation-helper.d.ts +4 -4
- package/lib/zek.module.d.ts +14 -14
- package/package.json +7 -13
- package/public-api.d.ts +7 -7
- package/esm2020/lib/components/base.component.mjs +0 -96
- package/esm2020/lib/components/core-ui.component.mjs +0 -194
- package/esm2020/lib/components/core.component.mjs +0 -39
- package/esm2020/lib/components/edit-base.component.mjs +0 -234
- package/esm2020/lib/components/list-base.component.mjs +0 -253
- package/esm2020/lib/models/pager.model.mjs +0 -32
- package/esm2020/lib/modules/age/age.module.mjs +0 -22
- package/esm2020/lib/modules/age/age.pipe.mjs +0 -21
- package/esm2020/lib/modules/alert/alert/alert.mjs +0 -54
- package/esm2020/lib/modules/alert/alert.module.mjs +0 -35
- package/esm2020/lib/modules/alert/toast/toast.mjs +0 -109
- package/esm2020/lib/modules/alert/validation/validation.mjs +0 -85
- package/esm2020/lib/modules/autocomplete/autocomplete.directive.mjs +0 -24
- package/esm2020/lib/modules/autocomplete/autocomplete.module.mjs +0 -22
- package/esm2020/lib/modules/bb/bb-modal-base.component.mjs +0 -74
- package/esm2020/lib/modules/bb/bb-modal-toolbar.mjs +0 -44
- package/esm2020/lib/modules/bb/bb.component.mjs +0 -188
- package/esm2020/lib/modules/bb/bb.module.mjs +0 -37
- package/esm2020/lib/modules/callback/callback.module.mjs +0 -22
- package/esm2020/lib/modules/callback/callback.pipe.mjs +0 -22
- package/esm2020/lib/modules/card/card/card.component.mjs +0 -47
- package/esm2020/lib/modules/card/card.module.mjs +0 -18
- package/esm2020/lib/modules/date-ago/date-ago.pipe.mjs +0 -46
- package/esm2020/lib/modules/date-ago/date.module.mjs +0 -22
- package/esm2020/lib/modules/datepicker/date-value-accessor.mjs +0 -188
- package/esm2020/lib/modules/datepicker/datepicker.module.mjs +0 -31
- package/esm2020/lib/modules/edit-toolbar/edit-toolbar.component.mjs +0 -74
- package/esm2020/lib/modules/edit-toolbar/edit-toolbar.module.mjs +0 -26
- package/esm2020/lib/modules/file/file-size.pipe.mjs +0 -47
- package/esm2020/lib/modules/file/file.module.mjs +0 -22
- package/esm2020/lib/modules/file-viewer/file-viewer.mjs +0 -51
- package/esm2020/lib/modules/file-viewer/module.mjs +0 -30
- package/esm2020/lib/modules/grid-toolbar/grid-toolbar/grid-toolbar.component.mjs +0 -145
- package/esm2020/lib/modules/grid-toolbar/grid-toolbar-bar/grid-toolbar-bar.component.mjs +0 -14
- package/esm2020/lib/modules/grid-toolbar/grid-toolbar.module.mjs +0 -33
- package/esm2020/lib/modules/list-toolbar/list-toolbar.component.mjs +0 -109
- package/esm2020/lib/modules/list-toolbar/list-toolbar.module.mjs +0 -24
- package/esm2020/lib/modules/loading/loading-interceptor.mjs +0 -79
- package/esm2020/lib/modules/loading/loading.component.mjs +0 -35
- package/esm2020/lib/modules/loading/loading.module.mjs +0 -32
- package/esm2020/lib/modules/modal/filter-modal/filter-modal.component.mjs +0 -26
- package/esm2020/lib/modules/modal/modal/modal.component.mjs +0 -307
- package/esm2020/lib/modules/modal/modal.module.mjs +0 -62
- package/esm2020/lib/modules/modal/sum-modal/sum-modal.component.mjs +0 -27
- package/esm2020/lib/modules/page-title/page-title.component.mjs +0 -31
- package/esm2020/lib/modules/page-title/page-title.module.mjs +0 -26
- package/esm2020/lib/modules/pager/pager/pager.component.mjs +0 -50
- package/esm2020/lib/modules/pager/pager.module.mjs +0 -26
- package/esm2020/lib/modules/password/password.module.mjs +0 -30
- package/esm2020/lib/modules/progress/module.mjs +0 -26
- package/esm2020/lib/modules/progress/progress.mjs +0 -97
- package/esm2020/lib/modules/radio/radio-button.component.mjs +0 -134
- package/esm2020/lib/modules/radio/radio.module.mjs +0 -22
- package/esm2020/lib/modules/readonly/readonly.directive.mjs +0 -25
- package/esm2020/lib/modules/readonly/readonly.module.mjs +0 -22
- package/esm2020/lib/modules/recaptcha/recaptcha.module.mjs +0 -32
- package/esm2020/lib/modules/recaptcha/recaptcha.service.mjs +0 -119
- package/esm2020/lib/modules/safe/safe.module.mjs +0 -20
- package/esm2020/lib/modules/safe/safe.pipe.mjs +0 -37
- package/esm2020/lib/modules/select/module.mjs +0 -28
- package/esm2020/lib/modules/select/select.mjs +0 -198
- package/esm2020/lib/modules/select2/select2.component.mjs +0 -170
- package/esm2020/lib/modules/select2/select2.module.mjs +0 -28
- package/esm2020/lib/modules/select2-multiple/select2-multiple.component.mjs +0 -132
- package/esm2020/lib/modules/select2-multiple/select2-multiple.module.mjs +0 -28
- package/esm2020/lib/modules/sort/sort-button-group/sort-button-group.component.mjs +0 -79
- package/esm2020/lib/modules/sort/sort.directive.mjs +0 -117
- package/esm2020/lib/modules/sort/sort.module.mjs +0 -33
- package/esm2020/lib/modules/time/time.module.mjs +0 -27
- package/esm2020/lib/modules/time/time.pipe.mjs +0 -40
- package/esm2020/lib/modules/time/timer-service.mjs +0 -89
- package/esm2020/lib/modules/validator/validator.module.mjs +0 -26
- package/esm2020/lib/modules/validators/directive.mjs +0 -75
- package/esm2020/lib/modules/validators/module.mjs +0 -22
- package/esm2020/lib/modules/wizard/wizard/wizard.component.mjs +0 -65
- package/esm2020/lib/modules/wizard/wizard.module.mjs +0 -33
- package/esm2020/lib/modules/wizard/wizard2/wizard2.component.mjs +0 -13
- package/esm2020/lib/services/alert.service.mjs +0 -76
- package/esm2020/lib/services/auth-guard.service.mjs +0 -28
- package/esm2020/lib/services/auth.service.mjs +0 -203
- package/esm2020/lib/services/http-error-handler.service.mjs +0 -141
- package/esm2020/lib/services/web.api.mjs +0 -126
- package/esm2020/lib/utils/date-helper.mjs +0 -235
- package/esm2020/lib/utils/validation-helper.mjs +0 -10
- package/esm2020/lib/zek.module.mjs +0 -33
- package/fesm2015/zek.mjs +0 -6693
- package/fesm2015/zek.mjs.map +0 -1
- package/fesm2020/zek.mjs.map +0 -1
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class Select2Component implements OnDestroy {
|
|
4
|
-
filter?: string | null;
|
|
5
|
-
text?: string | null;
|
|
6
|
-
readonly elementId: string;
|
|
7
|
-
private _data;
|
|
8
|
-
get data(): Array<any>;
|
|
9
|
-
set data(value: Array<any>);
|
|
10
|
-
filteredData: Array<any>;
|
|
11
|
-
textField: any;
|
|
12
|
-
valueField: any;
|
|
13
|
-
placeholder: string;
|
|
14
|
-
selectedItemChange: EventEmitter<any>;
|
|
15
|
-
private _selectedItem;
|
|
16
|
-
get selectedItem(): any;
|
|
17
|
-
valueChange: EventEmitter<any>;
|
|
18
|
-
private _value;
|
|
19
|
-
get value(): any;
|
|
20
|
-
set value(v: any);
|
|
21
|
-
private findAndSetItem;
|
|
22
|
-
ngOnDestroy(): void;
|
|
23
|
-
onTextChange(text: string): void;
|
|
24
|
-
private filterData;
|
|
25
|
-
onFocus(e: FocusEvent): void;
|
|
26
|
-
inputUnfocused(): void;
|
|
27
|
-
private setText;
|
|
28
|
-
selectItem(item: any): void;
|
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<Select2Component, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Select2Component, "zek-select2,[zek-select2]", never, { "data": "data"; "textField": "textField"; "valueField": "valueField"; "placeholder": "placeholder"; "value": "value"; }, { "selectedItemChange": "selectedItemChange"; "valueChange": "valueChange"; }, never, never, false, never>;
|
|
31
|
-
}
|
|
1
|
+
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class Select2Component implements OnDestroy {
|
|
4
|
+
filter?: string | null;
|
|
5
|
+
text?: string | null;
|
|
6
|
+
readonly elementId: string;
|
|
7
|
+
private _data;
|
|
8
|
+
get data(): Array<any>;
|
|
9
|
+
set data(value: Array<any>);
|
|
10
|
+
filteredData: Array<any>;
|
|
11
|
+
textField: any;
|
|
12
|
+
valueField: any;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
selectedItemChange: EventEmitter<any>;
|
|
15
|
+
private _selectedItem;
|
|
16
|
+
get selectedItem(): any;
|
|
17
|
+
valueChange: EventEmitter<any>;
|
|
18
|
+
private _value;
|
|
19
|
+
get value(): any;
|
|
20
|
+
set value(v: any);
|
|
21
|
+
private findAndSetItem;
|
|
22
|
+
ngOnDestroy(): void;
|
|
23
|
+
onTextChange(text: string): void;
|
|
24
|
+
private filterData;
|
|
25
|
+
onFocus(e: FocusEvent): void;
|
|
26
|
+
inputUnfocused(): void;
|
|
27
|
+
private setText;
|
|
28
|
+
selectItem(item: any): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Select2Component, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Select2Component, "zek-select2,[zek-select2]", never, { "data": { "alias": "data"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "selectedItemChange": "selectedItemChange"; "valueChange": "valueChange"; }, never, never, false, never>;
|
|
31
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./select2.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
export declare class Select2Module {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<Select2Module, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<Select2Module, [typeof i1.Select2Component], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.Select2Component]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<Select2Module>;
|
|
9
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./select2.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
export declare class Select2Module {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Select2Module, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<Select2Module, [typeof i1.Select2Component], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.Select2Component]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<Select2Module>;
|
|
9
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './select2-multiple.module';
|
|
2
|
-
export * from './select2-multiple.component';
|
|
1
|
+
export * from './select2-multiple.module';
|
|
2
|
+
export * from './select2-multiple.component';
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class Select2MultipleComponent {
|
|
4
|
-
filter?: string | null;
|
|
5
|
-
text?: string | null;
|
|
6
|
-
readonly elementId: string;
|
|
7
|
-
private _data;
|
|
8
|
-
get data(): Array<any>;
|
|
9
|
-
set data(value: Array<any>);
|
|
10
|
-
filteredData: Array<any>;
|
|
11
|
-
textField: any;
|
|
12
|
-
valueField: any;
|
|
13
|
-
placeholder: string;
|
|
14
|
-
selectedItemChange: EventEmitter<any>;
|
|
15
|
-
private _selectedItems;
|
|
16
|
-
get selectedItems(): Array<any>;
|
|
17
|
-
valueChange: EventEmitter<any>;
|
|
18
|
-
private _value?;
|
|
19
|
-
get value(): any;
|
|
20
|
-
set value(v: any);
|
|
21
|
-
private findAndSetItems;
|
|
22
|
-
onTextChange(text: string): void;
|
|
23
|
-
private filterData;
|
|
24
|
-
onFocus(e: FocusEvent): void;
|
|
25
|
-
inputUnfocused(): void;
|
|
26
|
-
private setText;
|
|
27
|
-
selectItem(item: any): void;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<Select2MultipleComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Select2MultipleComponent, "zek-select2-multiple,[zek-select2-multiple]", never, { "data": "data"; "textField": "textField"; "valueField": "valueField"; "placeholder": "placeholder"; "value": "value"; }, { "selectedItemChange": "selectedItemChange"; "valueChange": "valueChange"; }, never, never, false, never>;
|
|
30
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class Select2MultipleComponent {
|
|
4
|
+
filter?: string | null;
|
|
5
|
+
text?: string | null;
|
|
6
|
+
readonly elementId: string;
|
|
7
|
+
private _data;
|
|
8
|
+
get data(): Array<any>;
|
|
9
|
+
set data(value: Array<any>);
|
|
10
|
+
filteredData: Array<any>;
|
|
11
|
+
textField: any;
|
|
12
|
+
valueField: any;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
selectedItemChange: EventEmitter<any>;
|
|
15
|
+
private _selectedItems;
|
|
16
|
+
get selectedItems(): Array<any>;
|
|
17
|
+
valueChange: EventEmitter<any>;
|
|
18
|
+
private _value?;
|
|
19
|
+
get value(): any;
|
|
20
|
+
set value(v: any);
|
|
21
|
+
private findAndSetItems;
|
|
22
|
+
onTextChange(text: string): void;
|
|
23
|
+
private filterData;
|
|
24
|
+
onFocus(e: FocusEvent): void;
|
|
25
|
+
inputUnfocused(): void;
|
|
26
|
+
private setText;
|
|
27
|
+
selectItem(item: any): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Select2MultipleComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Select2MultipleComponent, "zek-select2-multiple,[zek-select2-multiple]", never, { "data": { "alias": "data"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "selectedItemChange": "selectedItemChange"; "valueChange": "valueChange"; }, never, never, false, never>;
|
|
30
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./select2-multiple.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
export declare class Select2MultipleModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<Select2MultipleModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<Select2MultipleModule, [typeof i1.Select2MultipleComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.Select2MultipleComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<Select2MultipleModule>;
|
|
9
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./select2-multiple.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
export declare class Select2MultipleModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Select2MultipleModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<Select2MultipleModule, [typeof i1.Select2MultipleComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.Select2MultipleComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<Select2MultipleModule>;
|
|
9
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './sort.module';
|
|
2
|
-
export * from './sort.directive';
|
|
3
|
-
export * from './sort-button-group/sort-button-group.component';
|
|
1
|
+
export * from './sort.module';
|
|
2
|
+
export * from './sort.directive';
|
|
3
|
+
export * from './sort-button-group/sort-button-group.component';
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { KeyPair } from '../../../models/key-pair.model';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SortButtonGroupComponent {
|
|
5
|
-
elementName: string;
|
|
6
|
-
/**
|
|
7
|
-
* Executes after 'sort' input changed
|
|
8
|
-
*/
|
|
9
|
-
sortChange: EventEmitter<string | null>;
|
|
10
|
-
/**
|
|
11
|
-
* Executes after 'asc' input changed
|
|
12
|
-
*/
|
|
13
|
-
ascChange: EventEmitter<boolean>;
|
|
14
|
-
/**
|
|
15
|
-
* Executes after click on column
|
|
16
|
-
*/
|
|
17
|
-
onChange: EventEmitter<any>;
|
|
18
|
-
sortField: any;
|
|
19
|
-
private _sort;
|
|
20
|
-
get sort(): string | null;
|
|
21
|
-
set sort(value: string | null);
|
|
22
|
-
private _asc;
|
|
23
|
-
get asc(): boolean;
|
|
24
|
-
set asc(value: boolean);
|
|
25
|
-
sortFields: KeyPair[] | null;
|
|
26
|
-
/**
|
|
27
|
-
* Default constructor
|
|
28
|
-
*/
|
|
29
|
-
constructor();
|
|
30
|
-
sortFieldClick(item: any): void;
|
|
31
|
-
ascDescClick(): void;
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SortButtonGroupComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SortButtonGroupComponent, "zek-sort-button-group", never, { "sort": "sort"; "asc": "asc"; "sortFields": "sortFields"; }, { "sortChange": "sortChange"; "ascChange": "ascChange"; "onChange": "onChange"; }, never, never, false, never>;
|
|
34
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { KeyPair } from '../../../models/key-pair.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SortButtonGroupComponent {
|
|
5
|
+
elementName: string;
|
|
6
|
+
/**
|
|
7
|
+
* Executes after 'sort' input changed
|
|
8
|
+
*/
|
|
9
|
+
sortChange: EventEmitter<string | null>;
|
|
10
|
+
/**
|
|
11
|
+
* Executes after 'asc' input changed
|
|
12
|
+
*/
|
|
13
|
+
ascChange: EventEmitter<boolean>;
|
|
14
|
+
/**
|
|
15
|
+
* Executes after click on column
|
|
16
|
+
*/
|
|
17
|
+
onChange: EventEmitter<any>;
|
|
18
|
+
sortField: any;
|
|
19
|
+
private _sort;
|
|
20
|
+
get sort(): string | null;
|
|
21
|
+
set sort(value: string | null);
|
|
22
|
+
private _asc;
|
|
23
|
+
get asc(): boolean;
|
|
24
|
+
set asc(value: boolean);
|
|
25
|
+
sortFields: KeyPair[] | null;
|
|
26
|
+
/**
|
|
27
|
+
* Default constructor
|
|
28
|
+
*/
|
|
29
|
+
constructor();
|
|
30
|
+
sortFieldClick(item: any): void;
|
|
31
|
+
ascDescClick(): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SortButtonGroupComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SortButtonGroupComponent, "zek-sort-button-group", never, { "sort": { "alias": "sort"; "required": false; }; "asc": { "alias": "asc"; "required": false; }; "sortFields": { "alias": "sortFields"; "required": false; }; }, { "sortChange": "sortChange"; "ascChange": "ascChange"; "onChange": "onChange"; }, never, never, false, never>;
|
|
34
|
+
}
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, AfterViewInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SortDirective implements AfterViewInit {
|
|
4
|
-
private el;
|
|
5
|
-
private innerHtml;
|
|
6
|
-
/**
|
|
7
|
-
* name of sorting column
|
|
8
|
-
*/
|
|
9
|
-
header: string | null;
|
|
10
|
-
/**
|
|
11
|
-
* Executes after 'sort' input changed
|
|
12
|
-
*/
|
|
13
|
-
sortChange: EventEmitter<string | null>;
|
|
14
|
-
/**
|
|
15
|
-
* Executes after 'asc' input changed
|
|
16
|
-
*/
|
|
17
|
-
ascChange: EventEmitter<boolean>;
|
|
18
|
-
/**
|
|
19
|
-
* Executes after click on column
|
|
20
|
-
*/
|
|
21
|
-
onChange: EventEmitter<any>;
|
|
22
|
-
constructor(el: ElementRef);
|
|
23
|
-
ngAfterViewInit(): void;
|
|
24
|
-
initIcon(): void;
|
|
25
|
-
onClick(): void;
|
|
26
|
-
private _sort;
|
|
27
|
-
get sort(): string | null;
|
|
28
|
-
set sort(value: string | null);
|
|
29
|
-
private _asc;
|
|
30
|
-
get asc(): boolean;
|
|
31
|
-
set asc(value: boolean);
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SortDirective, never>;
|
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SortDirective, "[zek-sort]", never, { "header": "header"; "sort": "sort"; "asc": "asc"; }, { "sortChange": "sortChange"; "ascChange": "ascChange"; "onChange": "onChange"; }, never, never, false, never>;
|
|
34
|
-
}
|
|
1
|
+
import { ElementRef, EventEmitter, AfterViewInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SortDirective implements AfterViewInit {
|
|
4
|
+
private el;
|
|
5
|
+
private innerHtml;
|
|
6
|
+
/**
|
|
7
|
+
* name of sorting column
|
|
8
|
+
*/
|
|
9
|
+
header: string | null;
|
|
10
|
+
/**
|
|
11
|
+
* Executes after 'sort' input changed
|
|
12
|
+
*/
|
|
13
|
+
sortChange: EventEmitter<string | null>;
|
|
14
|
+
/**
|
|
15
|
+
* Executes after 'asc' input changed
|
|
16
|
+
*/
|
|
17
|
+
ascChange: EventEmitter<boolean>;
|
|
18
|
+
/**
|
|
19
|
+
* Executes after click on column
|
|
20
|
+
*/
|
|
21
|
+
onChange: EventEmitter<any>;
|
|
22
|
+
constructor(el: ElementRef);
|
|
23
|
+
ngAfterViewInit(): void;
|
|
24
|
+
initIcon(): void;
|
|
25
|
+
onClick(): void;
|
|
26
|
+
private _sort;
|
|
27
|
+
get sort(): string | null;
|
|
28
|
+
set sort(value: string | null);
|
|
29
|
+
private _asc;
|
|
30
|
+
get asc(): boolean;
|
|
31
|
+
set asc(value: boolean);
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SortDirective, never>;
|
|
33
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SortDirective, "[zek-sort]", never, { "header": { "alias": "header"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "asc": { "alias": "asc"; "required": false; }; }, { "sortChange": "sortChange"; "ascChange": "ascChange"; "onChange": "onChange"; }, never, never, false, never>;
|
|
34
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./sort.directive";
|
|
3
|
-
import * as i2 from "./sort-button-group/sort-button-group.component";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
import * as i4 from "@ngx-translate/core";
|
|
6
|
-
export declare class SortModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SortModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SortModule, [typeof i1.SortDirective, typeof i2.SortButtonGroupComponent], [typeof i3.CommonModule, typeof i4.TranslateModule], [typeof i1.SortDirective, typeof i2.SortButtonGroupComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SortModule>;
|
|
10
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./sort.directive";
|
|
3
|
+
import * as i2 from "./sort-button-group/sort-button-group.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@ngx-translate/core";
|
|
6
|
+
export declare class SortModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SortModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SortModule, [typeof i1.SortDirective, typeof i2.SortButtonGroupComponent], [typeof i3.CommonModule, typeof i4.TranslateModule], [typeof i1.SortDirective, typeof i2.SortButtonGroupComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SortModule>;
|
|
10
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './time.module';
|
|
2
|
-
export * from './timer-service';
|
|
3
|
-
export * from './time.pipe';
|
|
1
|
+
export * from './time.module';
|
|
2
|
+
export * from './timer-service';
|
|
3
|
+
export * from './time.pipe';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./time.pipe";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class TimeModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TimeModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TimeModule, [typeof i1.TimePipe], [typeof i2.CommonModule], [typeof i1.TimePipe]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TimeModule>;
|
|
8
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./time.pipe";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class TimeModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimeModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TimeModule, [typeof i1.TimePipe], [typeof i2.CommonModule], [typeof i1.TimePipe]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TimeModule>;
|
|
8
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { DatePipe } from '@angular/common';
|
|
2
|
-
import { PipeTransform } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class TimePipe implements PipeTransform {
|
|
5
|
-
private readonly datePipe;
|
|
6
|
-
constructor(datePipe: DatePipe);
|
|
7
|
-
transform(value: Date | string | number | null | undefined, format?: string): string | null;
|
|
8
|
-
private isValidDate;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TimePipe, never>;
|
|
10
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<TimePipe, "time", false>;
|
|
11
|
-
}
|
|
1
|
+
import { DatePipe } from '@angular/common';
|
|
2
|
+
import { PipeTransform } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TimePipe implements PipeTransform {
|
|
5
|
+
private readonly datePipe;
|
|
6
|
+
constructor(datePipe: DatePipe);
|
|
7
|
+
transform(value: Date | string | number | null | undefined, format?: string): string | null;
|
|
8
|
+
private isValidDate;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimePipe, never>;
|
|
10
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TimePipe, "time", false>;
|
|
11
|
+
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { Subject } from "rxjs";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class TimerService {
|
|
4
|
-
seconds: number;
|
|
5
|
-
private _count;
|
|
6
|
-
get count(): number;
|
|
7
|
-
private _left;
|
|
8
|
-
get left(): number;
|
|
9
|
-
expireDate: Date | null;
|
|
10
|
-
private subscription;
|
|
11
|
-
tick: Subject<number>;
|
|
12
|
-
completed: Subject<any>;
|
|
13
|
-
constructor();
|
|
14
|
-
startHour(hours: number, minutes: number, seconds: number): void;
|
|
15
|
-
startMinute(minutes: number, seconds: number): void;
|
|
16
|
-
start(seconds: number): void;
|
|
17
|
-
clear(): void;
|
|
18
|
-
internalTick(): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TimerService, never>;
|
|
20
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TimerService>;
|
|
21
|
-
}
|
|
1
|
+
import { Subject } from "rxjs";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TimerService {
|
|
4
|
+
seconds: number;
|
|
5
|
+
private _count;
|
|
6
|
+
get count(): number;
|
|
7
|
+
private _left;
|
|
8
|
+
get left(): number;
|
|
9
|
+
expireDate: Date | null;
|
|
10
|
+
private subscription;
|
|
11
|
+
tick: Subject<number>;
|
|
12
|
+
completed: Subject<any>;
|
|
13
|
+
constructor();
|
|
14
|
+
startHour(hours: number, minutes: number, seconds: number): void;
|
|
15
|
+
startMinute(minutes: number, seconds: number): void;
|
|
16
|
+
start(seconds: number): void;
|
|
17
|
+
clear(): void;
|
|
18
|
+
internalTick(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimerService, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TimerService>;
|
|
21
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class ZekFieldValidator {
|
|
3
|
-
field: any;
|
|
4
|
-
constructor();
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ZekFieldValidator, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ZekFieldValidator, "zek-field-validator, [zek-field-validator]", never, { "field": "field"; }, {}, never, never, false, never>;
|
|
7
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ZekFieldValidator {
|
|
3
|
+
field: any;
|
|
4
|
+
constructor();
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ZekFieldValidator, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ZekFieldValidator, "zek-field-validator, [zek-field-validator]", never, { "field": { "alias": "field"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './validator.module';
|
|
2
|
-
export * from './field-validator';
|
|
1
|
+
export * from './validator.module';
|
|
2
|
+
export * from './field-validator';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./field-validator";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@ngx-translate/core";
|
|
5
|
-
export declare class ValidatorModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ValidatorModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ValidatorModule, [typeof i1.ZekFieldValidator], [typeof i2.CommonModule, typeof i3.TranslateModule], [typeof i1.ZekFieldValidator]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ValidatorModule>;
|
|
9
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./field-validator";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@ngx-translate/core";
|
|
5
|
+
export declare class ValidatorModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValidatorModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ValidatorModule, [typeof i1.ZekFieldValidator], [typeof i2.CommonModule, typeof i3.TranslateModule], [typeof i1.ZekFieldValidator]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ValidatorModule>;
|
|
9
|
+
}
|
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
import { OnChanges, SimpleChanges } from "@angular/core";
|
|
2
|
-
import { AbstractControl, ValidationErrors, Validator, ValidatorFn } from "@angular/forms";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
declare abstract class AbstractValidatorDirective implements Validator, OnChanges {
|
|
5
|
-
private _validator;
|
|
6
|
-
private _onChange;
|
|
7
|
-
/**
|
|
8
|
-
* A flag that tracks whether this validator is enabled.
|
|
9
|
-
*
|
|
10
|
-
* Marking it `internal` (vs `protected`), so that this flag can be used in host bindings of
|
|
11
|
-
* directive classes that extend this base class.
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
_enabled?: boolean;
|
|
15
|
-
/**
|
|
16
|
-
* Name of an input that matches directive selector attribute (e.g. `minlength` for
|
|
17
|
-
* `MinLengthDirective`). An input with a given name might contain configuration information (like
|
|
18
|
-
* `minlength='10'`) or a flag that indicates whether validator should be enabled (like
|
|
19
|
-
* `[required]='false'`).
|
|
20
|
-
*
|
|
21
|
-
* @internal
|
|
22
|
-
*/
|
|
23
|
-
abstract inputName: string;
|
|
24
|
-
/**
|
|
25
|
-
* Creates an instance of a validator (specific to a directive that extends this base class).
|
|
26
|
-
*
|
|
27
|
-
* @internal
|
|
28
|
-
*/
|
|
29
|
-
abstract createValidator(input: unknown): ValidatorFn;
|
|
30
|
-
/**
|
|
31
|
-
* Performs the necessary input normalization based on a specific logic of a Directive.
|
|
32
|
-
* For example, the function might be used to convert string-based representation of the
|
|
33
|
-
* `minlength` input to an integer value that can later be used in the `Validators.minLength`
|
|
34
|
-
* validator.
|
|
35
|
-
*
|
|
36
|
-
* @internal
|
|
37
|
-
*/
|
|
38
|
-
abstract normalizeInput(input: unknown): unknown;
|
|
39
|
-
/** @nodoc */
|
|
40
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
41
|
-
/** @nodoc */
|
|
42
|
-
validate(control: AbstractControl): ValidationErrors | null;
|
|
43
|
-
/** @nodoc */
|
|
44
|
-
registerOnValidatorChange(fn: () => void): void;
|
|
45
|
-
/**
|
|
46
|
-
* @description
|
|
47
|
-
* Determines whether this validator should be active or not based on an input.
|
|
48
|
-
* Base class implementation checks whether an input is defined (if the value is different from
|
|
49
|
-
* `null` and `undefined`). Validator classes that extend this base class can override this
|
|
50
|
-
* function with the logic specific to a particular validator directive.
|
|
51
|
-
*/
|
|
52
|
-
enabled(input: unknown): boolean;
|
|
53
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractValidatorDirective, never>;
|
|
54
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractValidatorDirective, never, never, {}, {}, never, never, false, never>;
|
|
55
|
-
}
|
|
56
|
-
export declare class RangeValidator extends AbstractValidatorDirective {
|
|
57
|
-
range: [number, number] | null;
|
|
58
|
-
/** @internal */
|
|
59
|
-
inputName: string;
|
|
60
|
-
/** @internal */
|
|
61
|
-
normalizeInput: (input: string | number) => number;
|
|
62
|
-
/** @internal */
|
|
63
|
-
createValidator: (range: [number]) => ValidatorFn;
|
|
64
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RangeValidator, never>;
|
|
65
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeValidator, "input[type=number][range][formControlName],input[type=number][range][formControl],input[type=number][range][ngModel]", never, { "range": "range"; }, {}, never, never, false, never>;
|
|
66
|
-
}
|
|
67
|
-
export {};
|
|
1
|
+
import { OnChanges, SimpleChanges } from "@angular/core";
|
|
2
|
+
import { AbstractControl, ValidationErrors, Validator, ValidatorFn } from "@angular/forms";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
declare abstract class AbstractValidatorDirective implements Validator, OnChanges {
|
|
5
|
+
private _validator;
|
|
6
|
+
private _onChange;
|
|
7
|
+
/**
|
|
8
|
+
* A flag that tracks whether this validator is enabled.
|
|
9
|
+
*
|
|
10
|
+
* Marking it `internal` (vs `protected`), so that this flag can be used in host bindings of
|
|
11
|
+
* directive classes that extend this base class.
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
_enabled?: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Name of an input that matches directive selector attribute (e.g. `minlength` for
|
|
17
|
+
* `MinLengthDirective`). An input with a given name might contain configuration information (like
|
|
18
|
+
* `minlength='10'`) or a flag that indicates whether validator should be enabled (like
|
|
19
|
+
* `[required]='false'`).
|
|
20
|
+
*
|
|
21
|
+
* @internal
|
|
22
|
+
*/
|
|
23
|
+
abstract inputName: string;
|
|
24
|
+
/**
|
|
25
|
+
* Creates an instance of a validator (specific to a directive that extends this base class).
|
|
26
|
+
*
|
|
27
|
+
* @internal
|
|
28
|
+
*/
|
|
29
|
+
abstract createValidator(input: unknown): ValidatorFn;
|
|
30
|
+
/**
|
|
31
|
+
* Performs the necessary input normalization based on a specific logic of a Directive.
|
|
32
|
+
* For example, the function might be used to convert string-based representation of the
|
|
33
|
+
* `minlength` input to an integer value that can later be used in the `Validators.minLength`
|
|
34
|
+
* validator.
|
|
35
|
+
*
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
abstract normalizeInput(input: unknown): unknown;
|
|
39
|
+
/** @nodoc */
|
|
40
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
41
|
+
/** @nodoc */
|
|
42
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
43
|
+
/** @nodoc */
|
|
44
|
+
registerOnValidatorChange(fn: () => void): void;
|
|
45
|
+
/**
|
|
46
|
+
* @description
|
|
47
|
+
* Determines whether this validator should be active or not based on an input.
|
|
48
|
+
* Base class implementation checks whether an input is defined (if the value is different from
|
|
49
|
+
* `null` and `undefined`). Validator classes that extend this base class can override this
|
|
50
|
+
* function with the logic specific to a particular validator directive.
|
|
51
|
+
*/
|
|
52
|
+
enabled(input: unknown): boolean;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractValidatorDirective, never>;
|
|
54
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractValidatorDirective, never, never, {}, {}, never, never, false, never>;
|
|
55
|
+
}
|
|
56
|
+
export declare class RangeValidator extends AbstractValidatorDirective {
|
|
57
|
+
range: [number, number] | null;
|
|
58
|
+
/** @internal */
|
|
59
|
+
inputName: string;
|
|
60
|
+
/** @internal */
|
|
61
|
+
normalizeInput: (input: string | number) => number;
|
|
62
|
+
/** @internal */
|
|
63
|
+
createValidator: (range: [number]) => ValidatorFn;
|
|
64
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RangeValidator, never>;
|
|
65
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeValidator, "input[type=number][range][formControlName],input[type=number][range][formControl],input[type=number][range][ngModel]", never, { "range": { "alias": "range"; "required": false; }; }, {}, never, never, false, never>;
|
|
66
|
+
}
|
|
67
|
+
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './directive';
|
|
2
|
-
export * from './validator';
|
|
3
|
-
export * from './module';
|
|
1
|
+
export * from './directive';
|
|
2
|
+
export * from './validator';
|
|
3
|
+
export * from './module';
|