@wizishop/img-manager 0.2.104 → 14.0.0
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/esm2020/lib/animations/easeInOut/ease-in-out.animation.mjs +12 -0
- package/esm2020/lib/animations/insertRemove/insert-remove.animation.mjs +9 -0
- package/esm2020/lib/animations/listAnnimation/list.animation.mjs +16 -0
- package/esm2020/lib/components/canva-btn/canva-btn.component.mjs +67 -0
- package/esm2020/lib/components/images-view/images-actions-handler.mjs +151 -0
- package/esm2020/lib/components/images-view/images-view.component.mjs +474 -0
- package/esm2020/lib/components/images-view/mosaic-view/img-card/img-card.component.mjs +66 -0
- package/esm2020/lib/components/images-view/mosaic-view/mosaic-view.component.mjs +68 -0
- package/esm2020/lib/components/images-view/table-view/table-view.component.mjs +48 -0
- package/esm2020/lib/components/img-editor/cropper/cropper.component.mjs +307 -0
- package/esm2020/lib/components/img-editor/img-editor.component.mjs +109 -0
- package/esm2020/lib/components/img-editor/info-section/info-section.component.mjs +54 -0
- package/esm2020/lib/components/img-selection/img-selection.component.mjs +59 -0
- package/esm2020/lib/components/img-tabs/img-tabs.component.mjs +122 -0
- package/esm2020/lib/components/img-upload/img-upload.component.mjs +118 -0
- package/esm2020/lib/components/loader/loader.component.mjs +21 -0
- package/esm2020/lib/components/pexels-lib/pexels-lib.component.mjs +200 -0
- package/esm2020/lib/components/shared/alert/alert.component.mjs +27 -0
- package/esm2020/lib/components/shared/checkbox/checkbox.component.mjs +52 -0
- package/esm2020/lib/components/shared/dropdown/dropdown.component.mjs +21 -0
- package/esm2020/lib/components/shared/input-search/input-search.component.mjs +54 -0
- package/esm2020/lib/components/shared/pagination/page-selector/page-selector.component.mjs +49 -0
- package/esm2020/lib/components/shared/pagination/pagination.component.mjs +49 -0
- package/esm2020/lib/components/shared/select/call-to-action.model.mjs +2 -0
- package/esm2020/lib/components/shared/select/select-items.dto.mjs +2 -0
- package/esm2020/lib/components/shared/select/select.component.mjs +110 -0
- package/esm2020/lib/components/shared/table/table.component.mjs +116 -0
- package/esm2020/lib/components/upload-list/upload-list.component.mjs +79 -0
- package/esm2020/lib/directives/abstract-debounce/abstract-debounce.directive.mjs +37 -0
- package/esm2020/lib/directives/abstract-debounce/debounce-keyup.directive.mjs +24 -0
- package/esm2020/lib/directives/auto-hide.directive.mjs +48 -0
- package/esm2020/lib/directives/copy-to-clipboard.directive.mjs +37 -0
- package/esm2020/lib/directives/drag-drop.directive.mjs +57 -0
- package/esm2020/lib/directives/loading.directive.mjs +42 -0
- package/esm2020/lib/directives/table/checkBoxRow.directive.mjs +114 -0
- package/esm2020/lib/directives/table/column.directive.mjs +45 -0
- package/esm2020/lib/directives/table/columnHeader.directive.mjs +204 -0
- package/esm2020/lib/directives/table/raw.directive.mjs +31 -0
- package/esm2020/lib/directives/zindex-toggle.directive.mjs +42 -0
- package/esm2020/lib/dto/ImgManagerDisplayConfig.dto.mjs +2 -0
- package/esm2020/lib/dto/canva-create-design.dto.mjs +4 -0
- package/esm2020/lib/dto/canva.dto.mjs +4 -0
- package/esm2020/lib/dto/config/apis/api.dto.mjs +9 -0
- package/esm2020/lib/dto/config/external/external-config.dto.mjs +3 -0
- package/esm2020/lib/dto/config/image-cdn/image-cdn-config.dto.mjs +10 -0
- package/esm2020/lib/dto/export-dtos.api.mjs +11 -0
- package/esm2020/lib/dto/img-editor-config.dto.mjs +2 -0
- package/esm2020/lib/dto/img-manager.dto.mjs +2 -0
- package/esm2020/lib/dto/pexels-img.dto.mjs +2 -0
- package/esm2020/lib/dto/picture-name-update.dto.mjs +2 -0
- package/esm2020/lib/dto/stateDisplayed.dto.mjs +2 -0
- package/esm2020/lib/dto/tabDisplayed.dto.mjs +2 -0
- package/esm2020/lib/dto/wizi-block-media.dto.mjs +3 -0
- package/esm2020/lib/pipes/images/img-src.pipe.mjs +28 -0
- package/esm2020/lib/pipes/number-to-array.pipe.mjs +16 -0
- package/esm2020/lib/pipes/pagination/array-total-pages/array-pages.pipe.mjs +28 -0
- package/esm2020/lib/pipes/pagination/large-number-of-page/large-number-of-page.pipe.mjs +53 -0
- package/esm2020/lib/pipes/pagination/text/custom-text.pipe.mjs +35 -0
- package/esm2020/lib/pipes/pagination/total-pages/is-last-page.pipe.mjs +25 -0
- package/esm2020/lib/pipes/select/select-filters.pipe.mjs +19 -0
- package/esm2020/lib/services/alert.service.mjs +53 -0
- package/esm2020/lib/services/canva.service.mjs +159 -0
- package/esm2020/lib/services/config/external-config.service.mjs +49 -0
- package/esm2020/lib/services/config/img-cdn.service.mjs +28 -0
- package/esm2020/lib/services/dom.service.mjs +36 -0
- package/{esm2015/lib/services/img-event.service.js → esm2020/lib/services/img-event.service.mjs} +11 -12
- package/esm2020/lib/services/img-manager.service.mjs +138 -0
- package/{esm2015/lib/services/img-selection.service.js → esm2020/lib/services/img-selection.service.mjs} +11 -12
- package/esm2020/lib/services/pexels.service.mjs +62 -0
- package/esm2020/lib/services/rename-picture.service.mjs +68 -0
- package/esm2020/lib/services/table/filters-table.service.mjs +63 -0
- package/{esm2015/lib/services/user-settings.service.js → esm2020/lib/services/user-settings.service.mjs} +11 -12
- package/esm2020/lib/wz-img-manager.component.mjs +186 -0
- package/esm2020/lib/wz-img-manager.module.mjs +193 -0
- package/esm2020/public-api.mjs +11 -0
- package/esm2020/wizishop-img-manager.mjs +5 -0
- package/fesm2015/wizishop-img-manager.mjs +4134 -0
- package/fesm2015/wizishop-img-manager.mjs.map +1 -0
- package/fesm2020/wizishop-img-manager.mjs +4140 -0
- package/fesm2020/wizishop-img-manager.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/canva-btn/canva-btn.component.d.ts +9 -6
- package/lib/components/images-view/images-actions-handler.d.ts +3 -0
- package/lib/components/images-view/images-view.component.d.ts +3 -0
- package/lib/components/images-view/mosaic-view/img-card/img-card.component.d.ts +3 -0
- package/lib/components/images-view/mosaic-view/mosaic-view.component.d.ts +3 -0
- package/lib/components/images-view/table-view/table-view.component.d.ts +3 -0
- package/lib/components/img-editor/cropper/cropper.component.d.ts +12 -5
- package/lib/components/img-editor/img-editor.component.d.ts +3 -0
- package/lib/components/img-editor/info-section/info-section.component.d.ts +3 -0
- package/lib/components/img-selection/img-selection.component.d.ts +3 -0
- package/lib/components/img-tabs/img-tabs.component.d.ts +3 -0
- package/lib/components/img-upload/img-upload.component.d.ts +4 -1
- package/lib/components/loader/loader.component.d.ts +3 -0
- package/lib/components/pexels-lib/pexels-lib.component.d.ts +3 -0
- package/lib/components/shared/alert/alert.component.d.ts +3 -0
- package/lib/components/shared/checkbox/checkbox.component.d.ts +3 -0
- package/lib/components/shared/dropdown/dropdown.component.d.ts +3 -0
- package/lib/components/shared/input-search/input-search.component.d.ts +3 -0
- package/lib/components/shared/pagination/page-selector/page-selector.component.d.ts +3 -0
- package/lib/components/shared/pagination/pagination.component.d.ts +3 -0
- package/lib/components/shared/select/select.component.d.ts +3 -0
- package/lib/components/shared/table/table.component.d.ts +3 -0
- package/lib/components/upload-list/upload-list.component.d.ts +3 -0
- package/lib/directives/abstract-debounce/abstract-debounce.directive.d.ts +3 -0
- package/lib/directives/abstract-debounce/debounce-keyup.directive.d.ts +3 -0
- package/lib/directives/auto-hide.directive.d.ts +3 -0
- package/lib/directives/copy-to-clipboard.directive.d.ts +3 -0
- package/lib/directives/drag-drop.directive.d.ts +3 -0
- package/lib/directives/loading.directive.d.ts +3 -0
- package/lib/directives/table/checkBoxRow.directive.d.ts +3 -0
- package/lib/directives/table/column.directive.d.ts +3 -0
- package/lib/directives/table/columnHeader.directive.d.ts +3 -0
- package/lib/directives/table/raw.directive.d.ts +3 -0
- package/lib/directives/zindex-toggle.directive.d.ts +3 -0
- package/lib/dto/pexels-img.dto.d.ts +1 -0
- package/lib/pipes/images/img-src.pipe.d.ts +3 -0
- package/lib/pipes/number-to-array.pipe.d.ts +3 -0
- package/lib/pipes/pagination/array-total-pages/array-pages.pipe.d.ts +3 -0
- package/lib/pipes/pagination/large-number-of-page/large-number-of-page.pipe.d.ts +7 -1
- package/lib/pipes/pagination/text/custom-text.pipe.d.ts +3 -0
- package/lib/pipes/pagination/total-pages/is-last-page.pipe.d.ts +3 -0
- package/lib/pipes/select/select-filters.pipe.d.ts +3 -0
- package/lib/services/alert.service.d.ts +3 -0
- package/lib/services/canva.service.d.ts +3 -0
- package/lib/services/config/external-config.service.d.ts +3 -0
- package/lib/services/config/img-cdn.service.d.ts +3 -0
- package/lib/services/dom.service.d.ts +3 -0
- package/lib/services/img-event.service.d.ts +3 -0
- package/lib/services/img-manager.service.d.ts +5 -2
- package/lib/services/img-selection.service.d.ts +3 -0
- package/lib/services/pexels.service.d.ts +7 -4
- package/lib/services/rename-picture.service.d.ts +3 -0
- package/lib/services/table/filters-table.service.d.ts +3 -0
- package/lib/services/user-settings.service.d.ts +3 -0
- package/lib/wz-img-manager.component.d.ts +3 -0
- package/lib/wz-img-manager.module.d.ts +56 -0
- package/package.json +46 -26
- package/wizishop-img-manager-14.0.0.tgz +0 -0
- package/wz-img-manager.scss +2745 -3141
- package/bundles/wizishop-img-manager.umd.js +0 -5046
- package/bundles/wizishop-img-manager.umd.js.map +0 -1
- package/bundles/wizishop-img-manager.umd.min.js +0 -16
- package/bundles/wizishop-img-manager.umd.min.js.map +0 -1
- package/esm2015/lib/animations/easeInOut/ease-in-out.animation.js +0 -12
- package/esm2015/lib/animations/insertRemove/insert-remove.animation.js +0 -9
- package/esm2015/lib/animations/listAnnimation/list.animation.js +0 -16
- package/esm2015/lib/components/canva-btn/canva-btn.component.js +0 -70
- package/esm2015/lib/components/images-view/images-actions-handler.js +0 -180
- package/esm2015/lib/components/images-view/images-view.component.js +0 -492
- package/esm2015/lib/components/images-view/mosaic-view/img-card/img-card.component.js +0 -84
- package/esm2015/lib/components/images-view/mosaic-view/mosaic-view.component.js +0 -79
- package/esm2015/lib/components/images-view/table-view/table-view.component.js +0 -49
- package/esm2015/lib/components/img-editor/cropper/cropper.component.js +0 -280
- package/esm2015/lib/components/img-editor/img-editor.component.js +0 -112
- package/esm2015/lib/components/img-editor/info-section/info-section.component.js +0 -59
- package/esm2015/lib/components/img-selection/img-selection.component.js +0 -62
- package/esm2015/lib/components/img-tabs/img-tabs.component.js +0 -131
- package/esm2015/lib/components/img-upload/img-upload.component.js +0 -125
- package/esm2015/lib/components/loader/loader.component.js +0 -28
- package/esm2015/lib/components/pexels-lib/pexels-lib.component.js +0 -208
- package/esm2015/lib/components/shared/alert/alert.component.js +0 -37
- package/esm2015/lib/components/shared/checkbox/checkbox.component.js +0 -69
- package/esm2015/lib/components/shared/dropdown/dropdown.component.js +0 -26
- package/esm2015/lib/components/shared/input-search/input-search.component.js +0 -62
- package/esm2015/lib/components/shared/pagination/page-selector/page-selector.component.js +0 -55
- package/esm2015/lib/components/shared/pagination/pagination.component.js +0 -51
- package/esm2015/lib/components/shared/select/call-to-action.model.js +0 -1
- package/esm2015/lib/components/shared/select/select-items.dto.js +0 -1
- package/esm2015/lib/components/shared/select/select.component.js +0 -133
- package/esm2015/lib/components/shared/table/table.component.js +0 -133
- package/esm2015/lib/components/upload-list/upload-list.component.js +0 -87
- package/esm2015/lib/directives/abstract-debounce/abstract-debounce.directive.js +0 -40
- package/esm2015/lib/directives/abstract-debounce/debounce-keyup.directive.js +0 -26
- package/esm2015/lib/directives/auto-hide.directive.js +0 -55
- package/esm2015/lib/directives/copy-to-clipboard.directive.js +0 -40
- package/esm2015/lib/directives/drag-drop.directive.js +0 -68
- package/esm2015/lib/directives/loading.directive.js +0 -44
- package/esm2015/lib/directives/table/checkBoxRow.directive.js +0 -128
- package/esm2015/lib/directives/table/column.directive.js +0 -49
- package/esm2015/lib/directives/table/columnHeader.directive.js +0 -221
- package/esm2015/lib/directives/table/raw.directive.js +0 -33
- package/esm2015/lib/directives/zindex-toggle.directive.js +0 -49
- package/esm2015/lib/dto/ImgManagerDisplayConfig.dto.js +0 -1
- package/esm2015/lib/dto/canva-create-design.dto.js +0 -4
- package/esm2015/lib/dto/canva.dto.js +0 -4
- package/esm2015/lib/dto/config/apis/api.dto.js +0 -9
- package/esm2015/lib/dto/config/external/external-config.dto.js +0 -3
- package/esm2015/lib/dto/config/image-cdn/image-cdn-config.dto.js +0 -10
- package/esm2015/lib/dto/export-dtos.api.js +0 -5
- package/esm2015/lib/dto/img-editor-config.dto.js +0 -1
- package/esm2015/lib/dto/img-manager.dto.js +0 -1
- package/esm2015/lib/dto/pexels-img.dto.js +0 -1
- package/esm2015/lib/dto/picture-name-update.dto.js +0 -1
- package/esm2015/lib/dto/stateDisplayed.dto.js +0 -1
- package/esm2015/lib/dto/tabDisplayed.dto.js +0 -1
- package/esm2015/lib/dto/wizi-block-media.dto.js +0 -3
- package/esm2015/lib/pipes/images/img-src.pipe.js +0 -29
- package/esm2015/lib/pipes/number-to-array.pipe.js +0 -14
- package/esm2015/lib/pipes/pagination/array-total-pages/array-pages.pipe.js +0 -26
- package/esm2015/lib/pipes/pagination/large-number-of-page/large-number-of-page.pipe.js +0 -51
- package/esm2015/lib/pipes/pagination/text/custom-text.pipe.js +0 -36
- package/esm2015/lib/pipes/pagination/total-pages/is-last-page.pipe.js +0 -23
- package/esm2015/lib/pipes/select/select-filters.pipe.js +0 -17
- package/esm2015/lib/services/alert.service.js +0 -59
- package/esm2015/lib/services/canva.service.js +0 -171
- package/esm2015/lib/services/config/external-config.service.js +0 -55
- package/esm2015/lib/services/config/img-cdn.service.js +0 -29
- package/esm2015/lib/services/dom.service.js +0 -36
- package/esm2015/lib/services/img-manager.service.js +0 -142
- package/esm2015/lib/services/pexels.service.js +0 -70
- package/esm2015/lib/services/rename-picture.service.js +0 -74
- package/esm2015/lib/services/table/filters-table.service.js +0 -67
- package/esm2015/lib/wz-img-manager.component.js +0 -212
- package/esm2015/lib/wz-img-manager.module.js +0 -132
- package/esm2015/public-api.js +0 -11
- package/esm2015/wizishop-img-manager.js +0 -57
- package/esm5/lib/animations/easeInOut/ease-in-out.animation.js +0 -12
- package/esm5/lib/animations/insertRemove/insert-remove.animation.js +0 -9
- package/esm5/lib/animations/listAnnimation/list.animation.js +0 -16
- package/esm5/lib/components/canva-btn/canva-btn.component.js +0 -72
- package/esm5/lib/components/images-view/images-actions-handler.js +0 -183
- package/esm5/lib/components/images-view/images-view.component.js +0 -535
- package/esm5/lib/components/images-view/mosaic-view/img-card/img-card.component.js +0 -87
- package/esm5/lib/components/images-view/mosaic-view/mosaic-view.component.js +0 -82
- package/esm5/lib/components/images-view/table-view/table-view.component.js +0 -52
- package/esm5/lib/components/img-editor/cropper/cropper.component.js +0 -285
- package/esm5/lib/components/img-editor/img-editor.component.js +0 -115
- package/esm5/lib/components/img-editor/info-section/info-section.component.js +0 -64
- package/esm5/lib/components/img-selection/img-selection.component.js +0 -64
- package/esm5/lib/components/img-tabs/img-tabs.component.js +0 -133
- package/esm5/lib/components/img-upload/img-upload.component.js +0 -138
- package/esm5/lib/components/loader/loader.component.js +0 -29
- package/esm5/lib/components/pexels-lib/pexels-lib.component.js +0 -216
- package/esm5/lib/components/shared/alert/alert.component.js +0 -38
- package/esm5/lib/components/shared/checkbox/checkbox.component.js +0 -71
- package/esm5/lib/components/shared/dropdown/dropdown.component.js +0 -27
- package/esm5/lib/components/shared/input-search/input-search.component.js +0 -68
- package/esm5/lib/components/shared/pagination/page-selector/page-selector.component.js +0 -64
- package/esm5/lib/components/shared/pagination/pagination.component.js +0 -56
- package/esm5/lib/components/shared/select/call-to-action.model.js +0 -1
- package/esm5/lib/components/shared/select/select-items.dto.js +0 -1
- package/esm5/lib/components/shared/select/select.component.js +0 -136
- package/esm5/lib/components/shared/table/table.component.js +0 -135
- package/esm5/lib/components/upload-list/upload-list.component.js +0 -103
- package/esm5/lib/directives/abstract-debounce/abstract-debounce.directive.js +0 -42
- package/esm5/lib/directives/abstract-debounce/debounce-keyup.directive.js +0 -28
- package/esm5/lib/directives/auto-hide.directive.js +0 -57
- package/esm5/lib/directives/copy-to-clipboard.directive.js +0 -42
- package/esm5/lib/directives/drag-drop.directive.js +0 -69
- package/esm5/lib/directives/loading.directive.js +0 -46
- package/esm5/lib/directives/table/checkBoxRow.directive.js +0 -137
- package/esm5/lib/directives/table/column.directive.js +0 -50
- package/esm5/lib/directives/table/columnHeader.directive.js +0 -229
- package/esm5/lib/directives/table/raw.directive.js +0 -34
- package/esm5/lib/directives/zindex-toggle.directive.js +0 -54
- package/esm5/lib/dto/ImgManagerDisplayConfig.dto.js +0 -1
- package/esm5/lib/dto/canva-create-design.dto.js +0 -8
- package/esm5/lib/dto/canva.dto.js +0 -8
- package/esm5/lib/dto/config/apis/api.dto.js +0 -11
- package/esm5/lib/dto/config/external/external-config.dto.js +0 -7
- package/esm5/lib/dto/config/image-cdn/image-cdn-config.dto.js +0 -12
- package/esm5/lib/dto/export-dtos.api.js +0 -5
- package/esm5/lib/dto/img-editor-config.dto.js +0 -1
- package/esm5/lib/dto/img-manager.dto.js +0 -1
- package/esm5/lib/dto/pexels-img.dto.js +0 -1
- package/esm5/lib/dto/picture-name-update.dto.js +0 -1
- package/esm5/lib/dto/stateDisplayed.dto.js +0 -1
- package/esm5/lib/dto/tabDisplayed.dto.js +0 -1
- package/esm5/lib/dto/wizi-block-media.dto.js +0 -7
- package/esm5/lib/pipes/images/img-src.pipe.js +0 -30
- package/esm5/lib/pipes/number-to-array.pipe.js +0 -17
- package/esm5/lib/pipes/pagination/array-total-pages/array-pages.pipe.js +0 -29
- package/esm5/lib/pipes/pagination/large-number-of-page/large-number-of-page.pipe.js +0 -54
- package/esm5/lib/pipes/pagination/text/custom-text.pipe.js +0 -37
- package/esm5/lib/pipes/pagination/total-pages/is-last-page.pipe.js +0 -26
- package/esm5/lib/pipes/select/select-filters.pipe.js +0 -20
- package/esm5/lib/services/alert.service.js +0 -62
- package/esm5/lib/services/canva.service.js +0 -181
- package/esm5/lib/services/config/external-config.service.js +0 -56
- package/esm5/lib/services/config/img-cdn.service.js +0 -34
- package/esm5/lib/services/dom.service.js +0 -39
- package/esm5/lib/services/img-event.service.js +0 -46
- package/esm5/lib/services/img-manager.service.js +0 -143
- package/esm5/lib/services/img-selection.service.js +0 -143
- package/esm5/lib/services/pexels.service.js +0 -72
- package/esm5/lib/services/rename-picture.service.js +0 -88
- package/esm5/lib/services/table/filters-table.service.js +0 -68
- package/esm5/lib/services/user-settings.service.js +0 -30
- package/esm5/lib/wz-img-manager.component.js +0 -228
- package/esm5/lib/wz-img-manager.module.js +0 -131
- package/esm5/public-api.js +0 -11
- package/esm5/wizishop-img-manager.js +0 -57
- package/fesm2015/wizishop-img-manager.js +0 -4514
- package/fesm2015/wizishop-img-manager.js.map +0 -1
- package/fesm5/wizishop-img-manager.js +0 -4788
- package/fesm5/wizishop-img-manager.js.map +0 -1
- package/wizishop-img-manager-0.2.104.tgz +0 -0
- package/wizishop-img-manager.d.ts +0 -56
- package/wizishop-img-manager.metadata.json +0 -1
package/index.d.ts
ADDED
|
@@ -3,6 +3,7 @@ import { CanvaService } from '../../services/canva.service';
|
|
|
3
3
|
import { CanvaButtonApi } from '../../dto/canva.dto';
|
|
4
4
|
import { Subscription } from 'rxjs';
|
|
5
5
|
import { stateDisplayed } from '../../dto/export-dtos.api';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class CanvaBtnComponent implements OnInit, OnDestroy {
|
|
7
8
|
private canvaService;
|
|
8
9
|
stateDisplayed: stateDisplayed;
|
|
@@ -12,16 +13,16 @@ export declare class CanvaBtnComponent implements OnInit, OnDestroy {
|
|
|
12
13
|
imgLoading: boolean;
|
|
13
14
|
availableFormat: {
|
|
14
15
|
'ImgManager.CanvaBtn.smallSquare': {
|
|
15
|
-
|
|
16
|
-
|
|
16
|
+
width: number;
|
|
17
|
+
height: number;
|
|
17
18
|
};
|
|
18
19
|
'ImgManager.CanvaBtn.mediumSquare': {
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
width: number;
|
|
21
|
+
height: number;
|
|
21
22
|
};
|
|
22
23
|
'ImgManager.CanvaBtn.bigSquare': {
|
|
23
|
-
|
|
24
|
-
|
|
24
|
+
width: number;
|
|
25
|
+
height: number;
|
|
25
26
|
};
|
|
26
27
|
};
|
|
27
28
|
openDropDownMenu: boolean;
|
|
@@ -33,4 +34,6 @@ export declare class CanvaBtnComponent implements OnInit, OnDestroy {
|
|
|
33
34
|
listenCanvaExpectedSize(): void;
|
|
34
35
|
onOpenCanva(width: number, height: number): void;
|
|
35
36
|
ngOnDestroy(): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CanvaBtnComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CanvaBtnComponent, "canva-btn", never, { "stateDisplayed": "stateDisplayed"; }, { "showImgUploaded": "showImgUploaded"; }, never, never, false>;
|
|
36
39
|
}
|
|
@@ -11,6 +11,7 @@ import { ImgEventService } from "../../services/img-event.service";
|
|
|
11
11
|
import { ImgManagerService } from "../../services/img-manager.service";
|
|
12
12
|
import { ImgSelectionService } from "../../services/img-selection.service";
|
|
13
13
|
import { TableFilters } from "../../services/table/filters-table.service";
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
14
15
|
export declare abstract class ImagesActionHandler {
|
|
15
16
|
protected imgManager: ImgManagerService;
|
|
16
17
|
protected imgSelectionService: ImgSelectionService;
|
|
@@ -51,4 +52,6 @@ export declare abstract class ImagesActionHandler {
|
|
|
51
52
|
private _pictureListeChange;
|
|
52
53
|
private downloadUrl;
|
|
53
54
|
ngDestroy(): void;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImagesActionHandler, never>;
|
|
56
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ImagesActionHandler, never, never, { "picturesList": "picturesList"; "tableFilters": "tableFilters"; "displayPexelsResults": "displayPexelsResults"; "disable": "disable"; "isLoading": "isLoading"; "stateDisplayed": "stateDisplayed"; }, { "picturesListChange": "picturesListChange"; "disableChange": "disableChange"; "filtersChange": "filtersChange"; "pictureNameChange": "pictureNameChange"; }, never, never, false>;
|
|
54
57
|
}
|
|
@@ -10,6 +10,7 @@ import { PictureNameUpdate } from '../../dto/picture-name-update.dto';
|
|
|
10
10
|
import { stateDisplayed, tabDisplayed } from '../../dto/export-dtos.api';
|
|
11
11
|
import { RenamePictureService } from '../../services/rename-picture.service';
|
|
12
12
|
import { AlertService } from '../../services/alert.service';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
13
14
|
export declare class ImagesViewComponent implements OnInit, AfterViewInit {
|
|
14
15
|
private imgManager;
|
|
15
16
|
private imgEventService;
|
|
@@ -114,4 +115,6 @@ export declare class ImagesViewComponent implements OnInit, AfterViewInit {
|
|
|
114
115
|
private refreshTotalImgList;
|
|
115
116
|
switchDisplayWindowMosaic(): void;
|
|
116
117
|
ngOnDestroy(): void;
|
|
118
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImagesViewComponent, never>;
|
|
119
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImagesViewComponent, "images-view", never, { "stateDisplayed": "stateDisplayed"; "tabDisplayed": "tabDisplayed"; "fullSize": "fullSize"; "maxLengthCardShow": "maxLengthCardShow"; "nbRowToShow": "nbRowToShow"; "listDisplayed": "listDisplayed"; "multipleImgMode": "multipleImgMode"; }, { "switchDisplayWindow": "switchDisplayWindow"; }, never, never, false>;
|
|
117
120
|
}
|
|
@@ -10,6 +10,7 @@ import { TranslateService } from '@ngx-translate/core';
|
|
|
10
10
|
import { ImagesActionHandler } from '../../images-actions-handler';
|
|
11
11
|
import { tabDisplayed } from '../../../../dto/export-dtos.api';
|
|
12
12
|
import { AlertService } from '../../../../services/alert.service';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
13
14
|
export declare class ImgCardComponent extends ImagesActionHandler implements OnInit {
|
|
14
15
|
tabDisplayed: tabDisplayed;
|
|
15
16
|
fullSize: boolean;
|
|
@@ -24,4 +25,6 @@ export declare class ImgCardComponent extends ImagesActionHandler implements OnI
|
|
|
24
25
|
ngOnInit(): void;
|
|
25
26
|
displayLargeWindow(): void;
|
|
26
27
|
onToggleImgSelected(): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImgCardComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImgCardComponent, "img-card", never, { "tabDisplayed": "tabDisplayed"; "fullSize": "fullSize"; "picture": "picture"; "index": "index"; }, { "toggleImgSelected": "toggleImgSelected"; "switchDisplayWindow": "switchDisplayWindow"; }, never, never, false>;
|
|
27
30
|
}
|
|
@@ -9,6 +9,7 @@ import { ImgEventService } from '../../../services/img-event.service';
|
|
|
9
9
|
import { ImgManagerService } from '../../../services/img-manager.service';
|
|
10
10
|
import { ImgSelectionService } from '../../../services/img-selection.service';
|
|
11
11
|
import { ImagesActionHandler } from '../images-actions-handler';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
12
13
|
export declare class MosaicViewComponent extends ImagesActionHandler implements OnInit {
|
|
13
14
|
tabDisplayed: tabDisplayed;
|
|
14
15
|
fullSize: boolean;
|
|
@@ -19,4 +20,6 @@ export declare class MosaicViewComponent extends ImagesActionHandler implements
|
|
|
19
20
|
onSearchChange(event: string): void;
|
|
20
21
|
onCardRenamePicture(pictureRenamed: PictureNameUpdate): void;
|
|
21
22
|
switchDisplayWindowCard(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MosaicViewComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MosaicViewComponent, "mosaic-view", never, { "tabDisplayed": "tabDisplayed"; "fullSize": "fullSize"; "nbFakeImg": "nbFakeImg"; }, { "switchDisplayWindow": "switchDisplayWindow"; }, never, never, false>;
|
|
22
25
|
}
|
|
@@ -8,8 +8,11 @@ import { ImgEventService } from '../../../services/img-event.service';
|
|
|
8
8
|
import { ImgManagerService } from '../../../services/img-manager.service';
|
|
9
9
|
import { ImgSelectionService } from '../../../services/img-selection.service';
|
|
10
10
|
import { ImagesActionHandler } from '../images-actions-handler';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class TableViewComponent extends ImagesActionHandler implements OnInit {
|
|
12
13
|
dataTableName: string;
|
|
13
14
|
constructor(imgManager: ImgManagerService, imgSelectionService: ImgSelectionService, http: HttpClient, imgCDNService: ImgCDNService, imgEventCardService: ImgEventService, alertService: AlertService, translateService: TranslateService, externalService: ImgManagerConfigService);
|
|
14
15
|
ngOnInit(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableViewComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableViewComponent, "table-view", never, {}, {}, never, never, false>;
|
|
15
18
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
|
-
import { ImageCroppedEvent, ImageTransform } from 'ngx-image-cropper';
|
|
2
|
+
import { ImageCroppedEvent, ImageTransform, OutputFormat } from 'ngx-image-cropper';
|
|
3
|
+
import { Subject } from 'rxjs';
|
|
3
4
|
import { CropperConfigDTO, ImgCropperConfigDTO } from '../../../dto/img-editor-config.dto';
|
|
4
5
|
import { ImgPictureDTO } from '../../../dto/img-manager.dto';
|
|
5
6
|
import { ImgCDNService } from '../../../services/config/img-cdn.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
6
8
|
export declare class CropperComponent implements OnInit {
|
|
7
9
|
private imgCDNService;
|
|
8
10
|
imgToEdit: ImgPictureDTO;
|
|
@@ -18,9 +20,12 @@ export declare class CropperComponent implements OnInit {
|
|
|
18
20
|
currentCroppedImage: string;
|
|
19
21
|
isCropped: boolean;
|
|
20
22
|
isLoading: boolean;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
23
|
+
_isImgCropped: boolean;
|
|
24
|
+
set isImgCropped(isImgCropped: boolean);
|
|
25
|
+
get isImgCropped(): boolean;
|
|
26
|
+
imgCropperChange: Subject<void>;
|
|
27
|
+
skipNextImgCropped: number;
|
|
28
|
+
imgType: OutputFormat;
|
|
24
29
|
imgRoute: string;
|
|
25
30
|
imageChangedEvent: any;
|
|
26
31
|
croppedImage: any;
|
|
@@ -39,7 +44,7 @@ export declare class CropperComponent implements OnInit {
|
|
|
39
44
|
ngOnInit(): void;
|
|
40
45
|
init(): void;
|
|
41
46
|
getRAWImgRoute(): string;
|
|
42
|
-
getImgType():
|
|
47
|
+
getImgType(): OutputFormat;
|
|
43
48
|
setDefautAspectRatio(): void;
|
|
44
49
|
onEditClosed(msgKey?: string): void;
|
|
45
50
|
onRestart(): void;
|
|
@@ -64,4 +69,6 @@ export declare class CropperComponent implements OnInit {
|
|
|
64
69
|
zoomOut(): void;
|
|
65
70
|
zoomIn(): void;
|
|
66
71
|
applyMethod(method: string): void;
|
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CropperComponent, never>;
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CropperComponent, "cropper", never, { "imgToEdit": "imgToEdit"; "isImgModified": "isImgModified"; }, { "isImgModifiedChange": "isImgModifiedChange"; "editClosed": "editClosed"; "currentCroppedImageChange": "currentCroppedImageChange"; }, never, never, false>;
|
|
67
74
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { ImgPictureDTO } from '../../dto/img-manager.dto';
|
|
3
3
|
import { ImgManagerService } from '../../services/img-manager.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ImgEditorComponent implements OnInit {
|
|
5
6
|
private imgManagerService;
|
|
6
7
|
stateDisplayed: any;
|
|
@@ -22,4 +23,6 @@ export declare class ImgEditorComponent implements OnInit {
|
|
|
22
23
|
onCancel(): void;
|
|
23
24
|
onImgCropped(imgBase64: string): void;
|
|
24
25
|
private ranameAndReplaceImg;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImgEditorComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImgEditorComponent, "img-editor", never, { "stateDisplayed": "stateDisplayed"; "imgToEdit": "imgToEdit"; }, { "editClosed": "editClosed"; }, never, never, false>;
|
|
25
28
|
}
|
|
@@ -2,6 +2,7 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
3
|
import { ImgPictureDTO } from '../../../dto/img-manager.dto';
|
|
4
4
|
import { AlertService } from '../../../services/alert.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class EditorInfoSectionComponent implements OnInit {
|
|
6
7
|
private alertService;
|
|
7
8
|
imgToEdit: ImgPictureDTO;
|
|
@@ -18,4 +19,6 @@ export declare class EditorInfoSectionComponent implements OnInit {
|
|
|
18
19
|
getFileSize(): number | "-";
|
|
19
20
|
copyToClipBoard(event: any): void;
|
|
20
21
|
onNameChange(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditorInfoSectionComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditorInfoSectionComponent, "info-section", never, { "imgToEdit": "imgToEdit"; "isNameModified": "isNameModified"; }, { "isNameModifiedChange": "isNameModifiedChange"; }, never, never, false>;
|
|
21
24
|
}
|
|
@@ -3,6 +3,7 @@ import { ImgSelectionService } from '../../services/img-selection.service';
|
|
|
3
3
|
import { ImgPictureDTO } from '../../dto/img-manager.dto';
|
|
4
4
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
5
5
|
import { tabDisplayed } from '../../dto/export-dtos.api';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class ImgSelectionComponent implements OnInit {
|
|
7
8
|
private imgSelectionService;
|
|
8
9
|
tabDisplayed: tabDisplayed;
|
|
@@ -22,4 +23,6 @@ export declare class ImgSelectionComponent implements OnInit {
|
|
|
22
23
|
removeImg(index: number): void;
|
|
23
24
|
drop(event: CdkDragDrop<string[]>): void;
|
|
24
25
|
removeImgFromSelection(event: CdkDragDrop<string[]>): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImgSelectionComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImgSelectionComponent, "img-selection", never, { "tabDisplayed": "tabDisplayed"; }, { "imgManagerClosed": "imgManagerClosed"; }, never, never, false>;
|
|
25
28
|
}
|
|
@@ -7,6 +7,7 @@ import { stateDisplayed } from '../../dto/export-dtos.api';
|
|
|
7
7
|
import { AlertService } from '../../services/alert.service';
|
|
8
8
|
import { Router } from '@angular/router';
|
|
9
9
|
import { SelectItem } from '../shared/select/select-items.dto';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class ImgTabsComponent implements OnInit {
|
|
11
12
|
private imgEventEditService;
|
|
12
13
|
private alertService;
|
|
@@ -33,4 +34,6 @@ export declare class ImgTabsComponent implements OnInit {
|
|
|
33
34
|
switchDisplayWindowImgView(): void;
|
|
34
35
|
switchRouterLink(event: any): void;
|
|
35
36
|
onImgManagerClosed(): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImgTabsComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImgTabsComponent, "img-tabs", never, { "multipleImgMode": "multipleImgMode"; "stateDisplayed": "stateDisplayed"; "listDisplayed": "listDisplayed"; }, { "imgManagerClosed": "imgManagerClosed"; "currentTab": "currentTab"; "switchDisplayWindow": "switchDisplayWindow"; }, never, never, false>;
|
|
36
39
|
}
|
|
@@ -4,6 +4,7 @@ import { ImgPictureDTO } from '../../dto/img-manager.dto';
|
|
|
4
4
|
import { ImgManagerConfigService } from "../../services/config/external-config.service";
|
|
5
5
|
import { stateDisplayed } from '../../dto/export-dtos.api';
|
|
6
6
|
import { AlertService } from '../../services/alert.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class ImgUploadComponent implements OnInit {
|
|
8
9
|
private imgManager;
|
|
9
10
|
private alertService;
|
|
@@ -22,7 +23,7 @@ export declare class ImgUploadComponent implements OnInit {
|
|
|
22
23
|
ngOnInit(): void;
|
|
23
24
|
filesChangeByClick(event: any): void;
|
|
24
25
|
getAssets(): string;
|
|
25
|
-
filesChangeByDragAndDrop(filesList:
|
|
26
|
+
filesChangeByDragAndDrop(filesList: FileList): void;
|
|
26
27
|
uploadFile(files: File[]): void;
|
|
27
28
|
/**
|
|
28
29
|
* Send the img uploaded to the tabs components,
|
|
@@ -38,4 +39,6 @@ export declare class ImgUploadComponent implements OnInit {
|
|
|
38
39
|
* After an img is droped, the box is still grey
|
|
39
40
|
*/
|
|
40
41
|
removeDragAndDropStyle(): void;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImgUploadComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImgUploadComponent, "img-upload", never, { "stateDisplayed": "stateDisplayed"; }, { "imgUploaded": "imgUploaded"; }, never, never, false>;
|
|
41
44
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class LoaderComponent {
|
|
2
3
|
text: string;
|
|
3
4
|
small: boolean;
|
|
4
5
|
position: string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "wz-loader", never, { "text": "text"; "small": "small"; "position": "position"; }, {}, never, never, false>;
|
|
5
8
|
}
|
|
@@ -6,6 +6,7 @@ import { ImgManagerService } from '../../services/img-manager.service';
|
|
|
6
6
|
import { TranslateService } from '@ngx-translate/core';
|
|
7
7
|
import { stateDisplayed } from '../../dto/export-dtos.api';
|
|
8
8
|
import { AlertService } from '../../services/alert.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class PexelLibComponent implements OnInit, AfterViewInit {
|
|
10
11
|
private wzImgLibService;
|
|
11
12
|
private imgManager;
|
|
@@ -49,4 +50,6 @@ export declare class PexelLibComponent implements OnInit, AfterViewInit {
|
|
|
49
50
|
resetSearch(): void;
|
|
50
51
|
uploadPhoto(photo: WzImgLibPhotoDto, url: string): void;
|
|
51
52
|
ngOnDestroy(): void;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PexelLibComponent, never>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PexelLibComponent, "pexels-lib", never, { "stateDisplayed": "stateDisplayed"; "searchValue": "searchValue"; "disableSearch": "disableSearch"; }, { "showImgUploaded": "showImgUploaded"; }, never, never, false>;
|
|
52
55
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class AlertComponent implements OnInit {
|
|
3
4
|
icon: boolean;
|
|
4
5
|
warning: boolean;
|
|
@@ -6,4 +7,6 @@ export declare class AlertComponent implements OnInit {
|
|
|
6
7
|
iconClass: string;
|
|
7
8
|
constructor();
|
|
8
9
|
ngOnInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "wz-alert", never, { "icon": "icon"; "warning": "warning"; "success": "success"; "iconClass": "iconClass"; }, {}, never, ["*"], false>;
|
|
9
12
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class CheckboxComponent implements ControlValueAccessor {
|
|
3
4
|
label: string;
|
|
4
5
|
value: any;
|
|
@@ -16,4 +17,6 @@ export declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
16
17
|
setDisabledState(isDisabled: boolean): void;
|
|
17
18
|
writeValue(obj: any): void;
|
|
18
19
|
onChange(value: any): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "wz-checkbox", never, { "label": "label"; "value": "value"; "type": "type"; "alone": "alone"; "checked": "checked"; "id": "id"; "name": "name"; }, {}, never, never, false>;
|
|
19
22
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class DropdownComponent implements OnInit {
|
|
3
4
|
dropDownMenuClass: string;
|
|
4
5
|
disable: boolean;
|
|
5
6
|
constructor();
|
|
6
7
|
ngOnInit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "dropdown", never, { "dropDownMenuClass": "dropDownMenuClass"; "disable": "disable"; }, {}, never, ["[label]", "[item]"], false>;
|
|
7
10
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class InputSearchComponent implements ControlValueAccessor {
|
|
4
5
|
placeholder: string;
|
|
5
6
|
smallPadding: boolean;
|
|
@@ -14,4 +15,6 @@ export declare class InputSearchComponent implements ControlValueAccessor {
|
|
|
14
15
|
registerOnChange(fn: any): void;
|
|
15
16
|
registerOnTouched(fn: any): void;
|
|
16
17
|
handleDebouncedKeyUp(event: any): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSearchComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputSearchComponent, "wz-input-search", never, { "placeholder": "placeholder"; "smallPadding": "smallPadding"; "id": "id"; }, { "changeDebounced": "changeDebounced"; }, never, never, false>;
|
|
17
20
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export interface PaginationFilters {
|
|
3
4
|
totalItems: number;
|
|
4
5
|
itemsPerPage: number;
|
|
@@ -17,4 +18,6 @@ export declare class PageSelectorComponent {
|
|
|
17
18
|
pageChange: EventEmitter<number>;
|
|
18
19
|
constructor();
|
|
19
20
|
onGotoPageChange(event: any, directValue: any): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageSelectorComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageSelectorComponent, "wz-page-selector", never, { "pagination": "pagination"; "totalItems": "totalItems"; }, { "pageChange": "pageChange"; }, never, never, false>;
|
|
20
23
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export interface PaginationFilters {
|
|
3
4
|
totalItems: number;
|
|
4
5
|
itemsPerPage: number;
|
|
@@ -13,4 +14,6 @@ export declare class PaginationComponent {
|
|
|
13
14
|
decrementPage(): void;
|
|
14
15
|
incrementPage(): void;
|
|
15
16
|
onGotoPageChange(pageNumber: any): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "wz-pagination", never, { "pagination": "pagination"; }, { "pageChange": "pageChange"; }, never, never, false>;
|
|
16
19
|
}
|
|
@@ -3,6 +3,7 @@ import { TranslateService } from '@ngx-translate/core';
|
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import { SelectItem } from './select-items.dto';
|
|
5
5
|
import { CalllToAction } from './call-to-action.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class SelectComponent implements OnInit, ControlValueAccessor {
|
|
7
8
|
private translateService;
|
|
8
9
|
items: SelectItem[];
|
|
@@ -35,4 +36,6 @@ export declare class SelectComponent implements OnInit, ControlValueAccessor {
|
|
|
35
36
|
writeValue(selectItem: any): void;
|
|
36
37
|
registerOnChange(fn: any): void;
|
|
37
38
|
registerOnTouched(fn: any): void;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "wac-select", never, { "items": "items"; "placeholder": "placeholder"; "label": "label"; "maxWidthItems": "maxWidthItems"; "search": "search"; "type": "type"; "callToAction": "callToAction"; "maxWidth": "maxWidth"; "disabled": "disabled"; }, { "selectValue": "selectValue"; "clickOnCallToAction": "clickOnCallToAction"; }, never, never, false>;
|
|
38
41
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { TableFilters, FiltersTableService } from '../../../services/table/filters-table.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class TableComponent implements OnInit {
|
|
4
5
|
private filtersTableService;
|
|
5
6
|
tableFilters: TableFilters;
|
|
@@ -28,4 +29,6 @@ export declare class TableComponent implements OnInit {
|
|
|
28
29
|
* */
|
|
29
30
|
private setTablesFilters;
|
|
30
31
|
ngDestroy(): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "wz-table", never, { "tableFilters": "tableFilters"; "tableRoutingName": "tableRoutingName"; "placeholder": "placeholder"; "checkbox": "checkbox"; "disableSearch": "disableSearch"; "disablePagniation": "disablePagniation"; "isLoading": "isLoading"; }, { "tableFiltersChange": "tableFiltersChange"; "toggleAllCheckBox": "toggleAllCheckBox"; }, never, ["[headerCell]", "[tableRow]"], false>;
|
|
31
34
|
}
|
|
@@ -4,6 +4,7 @@ import { Subscription } from 'rxjs';
|
|
|
4
4
|
import { ImgSelectionService } from '../../services/img-selection.service';
|
|
5
5
|
import { PictureNameUpdate, stateDisplayed, tabDisplayed } from '../../dto/export-dtos.api';
|
|
6
6
|
import { RenamePictureService } from '../../services/rename-picture.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class UploadListComponent implements OnInit {
|
|
8
9
|
private imgSelectionService;
|
|
9
10
|
private renamePictureService;
|
|
@@ -22,4 +23,6 @@ export declare class UploadListComponent implements OnInit {
|
|
|
22
23
|
onRenamePicture(pictureRenamed: PictureNameUpdate): void;
|
|
23
24
|
private setEvents;
|
|
24
25
|
ngOnDestroy(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploadListComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UploadListComponent, "upload-list", never, { "stateDisplayed": "stateDisplayed"; "tabDisplayed": "tabDisplayed"; "multipleImgMode": "multipleImgMode"; }, { "switchDisplayWindow": "switchDisplayWindow"; }, never, never, false>;
|
|
25
28
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnDestroy, EventEmitter } from '@angular/core';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class AbstractDebounceDirective implements OnDestroy {
|
|
4
5
|
debounceTime: number;
|
|
5
6
|
onEventChange: EventEmitter<any>;
|
|
@@ -9,4 +10,6 @@ export declare class AbstractDebounceDirective implements OnDestroy {
|
|
|
9
10
|
ngOnInit(): void;
|
|
10
11
|
emitChange(value: any): void;
|
|
11
12
|
ngOnDestroy(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractDebounceDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDebounceDirective, "AbstractDebounceDirective", never, { "debounceTime": "debounceTime"; }, { "onEventChange": "onEventChange"; }, never, never, false>;
|
|
12
15
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { AbstractDebounceDirective } from './abstract-debounce.directive';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class DebounceKeyupDirective extends AbstractDebounceDirective {
|
|
3
4
|
constructor();
|
|
4
5
|
onKeyUp(event: any): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DebounceKeyupDirective, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DebounceKeyupDirective, "input[debounceKeyUp]", never, {}, {}, never, never, false>;
|
|
5
8
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, AfterViewInit } from '@angular/core';
|
|
2
2
|
import { DomService } from '../services/dom.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class AutoHideDirective implements AfterViewInit {
|
|
4
5
|
private _elementRef;
|
|
5
6
|
private domService;
|
|
@@ -8,4 +9,6 @@ export declare class AutoHideDirective implements AfterViewInit {
|
|
|
8
9
|
constructor(_elementRef: ElementRef, domService: DomService);
|
|
9
10
|
clickOutside: EventEmitter<any>;
|
|
10
11
|
ngAfterViewInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoHideDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AutoHideDirective, "[wzAutoHide]", never, { "triggerElement": "triggerElement"; "forceOn": "forceOn"; }, { "clickOutside": "clickOutside"; }, never, never, false>;
|
|
11
14
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class CopyClipboardDirective {
|
|
3
4
|
payload: string;
|
|
4
5
|
copied: EventEmitter<string>;
|
|
5
6
|
onClick(event: MouseEvent): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CopyClipboardDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CopyClipboardDirective, "[copy-clipboard]", never, { "payload": "copy-clipboard"; }, { "copied": "copied"; }, never, never, false>;
|
|
6
9
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class DragDropDirective {
|
|
3
4
|
onFileDropped: EventEmitter<Event>;
|
|
4
5
|
background: string;
|
|
@@ -6,4 +7,6 @@ export declare class DragDropDirective {
|
|
|
6
7
|
onDragOver(evt: any): void;
|
|
7
8
|
onDragLeave(evt: any): void;
|
|
8
9
|
ondrop(evt: any): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DragDropDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DragDropDirective, "[appDragDrop]", never, {}, { "onFileDropped": "onFileDropped"; }, never, never, false>;
|
|
9
12
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class LoadingDirective {
|
|
3
4
|
element: ElementRef;
|
|
4
5
|
currentLoading: number;
|
|
@@ -6,4 +7,6 @@ export declare class LoadingDirective {
|
|
|
6
7
|
constructor(el: ElementRef);
|
|
7
8
|
launchLoading(): void;
|
|
8
9
|
ngOnDestroy(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LoadingDirective, "[btnLoadingAnim]", never, {}, {}, never, never, false>;
|
|
9
12
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ComponentFactoryResolver, EventEmitter, Renderer2, ElementRef, ComponentRef, ApplicationRef, Injector, Type } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class CheckBoxRow {
|
|
3
4
|
private currentRow;
|
|
4
5
|
private appRef;
|
|
@@ -22,6 +23,8 @@ export declare class CheckBoxRow {
|
|
|
22
23
|
private handleCheckboxOutputs;
|
|
23
24
|
private _toggleCheckbox;
|
|
24
25
|
ngOnDestroy(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckBoxRow, never>;
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CheckBoxRow, "[checkBoxRow]", never, { "checkBoxId": "checkBoxId"; "checkBoxName": "checkBoxName"; "checkBoxValue": "checkBoxValue"; }, { "checkBoxValueChange": "checkBoxValueChange"; }, never, never, false>;
|
|
25
28
|
}
|
|
26
29
|
export declare class HtmlContainer {
|
|
27
30
|
private hostElement;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Renderer2 } from '@angular/core';
|
|
2
2
|
import { ElementRef } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class TableColumn {
|
|
4
5
|
private currentCell;
|
|
5
6
|
private renderer;
|
|
@@ -10,4 +11,6 @@ export declare class TableColumn {
|
|
|
10
11
|
constructor(currentCell: ElementRef, renderer: Renderer2, document: any);
|
|
11
12
|
ngAfterViewInit(): void;
|
|
12
13
|
applyCustomStylesOnCell(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableColumn, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableColumn, "[tableColumn]", never, { "columnSize": "columnSize"; "centerCell": "centerCell"; }, {}, never, never, false>;
|
|
13
16
|
}
|
|
@@ -2,6 +2,7 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { Renderer2 } from '@angular/core';
|
|
3
3
|
import { ElementRef } from '@angular/core';
|
|
4
4
|
import { FiltersTableService, TableFilters } from '../../services/table/filters-table.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class TableColumnHeader {
|
|
6
7
|
private currentCell;
|
|
7
8
|
private renderer;
|
|
@@ -37,4 +38,6 @@ export declare class TableColumnHeader {
|
|
|
37
38
|
getCurrentSortIcon(): string;
|
|
38
39
|
emitEvents(newSort: any, newOrder: any): void;
|
|
39
40
|
ngOnDestroy(): void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableColumnHeader, never>;
|
|
42
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableColumnHeader, "[headerCell]", never, { "headerName": "headerName"; "columnSize": "columnSize"; "filterRouting": "filterRouting"; "tableName": "tableName"; "sortName": "sortName"; "centerCell": "centerCell"; "tableFilters": "tableFilters"; }, { "onSortChange": "onSortChange"; "tableFiltersChange": "tableFiltersChange"; }, never, never, false>;
|
|
40
43
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Renderer2 } from '@angular/core';
|
|
2
2
|
import { ElementRef } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class TableRow {
|
|
4
5
|
private currentCell;
|
|
5
6
|
private renderer;
|
|
@@ -7,4 +8,6 @@ export declare class TableRow {
|
|
|
7
8
|
constructor(currentCell: ElementRef, renderer: Renderer2, document: any);
|
|
8
9
|
ngAfterViewInit(): void;
|
|
9
10
|
applyCustomStylesOnCell(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableRow, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableRow, "[tableRow]", never, {}, {}, never, never, false>;
|
|
10
13
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ZindexToggleDirective implements OnInit, OnDestroy {
|
|
3
4
|
private currentElement;
|
|
4
5
|
private renderer;
|
|
@@ -10,4 +11,6 @@ export declare class ZindexToggleDirective implements OnInit, OnDestroy {
|
|
|
10
11
|
ngOnInit(): void;
|
|
11
12
|
switchToggle(): void;
|
|
12
13
|
ngOnDestroy(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ZindexToggleDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ZindexToggleDirective, "[zIndexToggle]", never, { "isActive": "zIndexToggle"; }, { "onEventChange": "onEventChange"; }, never, never, false>;
|
|
13
16
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
2
|
import { ImgCDNService } from '../../services/config/img-cdn.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ImageSrcPipe implements PipeTransform {
|
|
4
5
|
private imgCDNService;
|
|
5
6
|
constructor(imgCDNService: ImgCDNService);
|
|
6
7
|
transform(pictureName: string, size: string): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageSrcPipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ImageSrcPipe, "imgSrc", false>;
|
|
7
10
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class NumberToArray implements PipeTransform {
|
|
3
4
|
transform(number: number): any[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumberToArray, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<NumberToArray, "numberToArray", false>;
|
|
4
7
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class PagniationArrayTotalPages implements PipeTransform {
|
|
3
4
|
/**
|
|
4
5
|
* Return an incremental array corresponding with the number page
|
|
@@ -7,4 +8,6 @@ export declare class PagniationArrayTotalPages implements PipeTransform {
|
|
|
7
8
|
* @param itemsPerPage
|
|
8
9
|
*/
|
|
9
10
|
transform(totalItems: number, itemsPerPage: number): number[];
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PagniationArrayTotalPages, never>;
|
|
12
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PagniationArrayTotalPages, "ArrayTotalPages", false>;
|
|
10
13
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class LargeNumberOfPagePipe implements PipeTransform {
|
|
3
4
|
/**
|
|
4
5
|
* Return an incremental array
|
|
@@ -6,5 +7,10 @@ export declare class LargeNumberOfPagePipe implements PipeTransform {
|
|
|
6
7
|
* @param totalItems
|
|
7
8
|
* @param itemsPerPage
|
|
8
9
|
*/
|
|
9
|
-
transform(totalItems: number, itemsPerPage: number, currentPage: number):
|
|
10
|
+
transform(totalItems: number, itemsPerPage: number, currentPage: number): Array<{
|
|
11
|
+
value: number;
|
|
12
|
+
display: number;
|
|
13
|
+
}>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LargeNumberOfPagePipe, never>;
|
|
15
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<LargeNumberOfPagePipe, "LargeNumberOfPage", false>;
|
|
10
16
|
}
|