ca-components 0.0.69 → 0.0.71
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/esm2022/lib/animations/show.animation.mjs +2 -2
- package/esm2022/lib/ca-components.module.mjs +16 -6
- package/esm2022/lib/components/ca-activity-log-list/ca-activity-log-list.component.mjs +63 -0
- package/esm2022/lib/components/ca-activity-log-list/components/ca-activity-log-item/ca-activity-log-item.component.mjs +42 -0
- package/esm2022/lib/components/ca-activity-log-list/enums/activity-log-list-type.enums.mjs +18 -0
- package/esm2022/lib/components/ca-activity-log-list/models/activity-log-item.model.mjs +2 -0
- package/esm2022/lib/components/ca-activity-log-list/utils/pipes/action-log-name-transform.pipe.mjs +20 -0
- package/esm2022/lib/components/ca-activity-log-list/utils/svg-routes/activity-log-list.routes.mjs +5 -0
- package/esm2022/lib/components/ca-input/enums/input-string.enum.mjs +7 -1
- package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +218 -22
- package/esm2022/lib/components/ca-input/utils/constants/index.mjs +2 -0
- package/esm2022/lib/components/ca-input/utils/constants/input-constants.mjs +18 -0
- package/esm2022/lib/components/ca-logo-change/ca-logo-change.component.mjs +108 -0
- package/esm2022/lib/components/ca-logo-change/pipes/logo-slider.pipe.mjs +17 -0
- package/esm2022/lib/components/ca-logo-change/utils/constants/logo-change.constants.mjs +17 -0
- package/esm2022/lib/components/ca-main-table/ca-main-table.component.mjs +10 -4
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +3 -3
- package/esm2022/lib/components/ca-upload-files/ca-upload-files.component.mjs +334 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.mjs +311 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/config/dropzone-config.type.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/config/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/directives/template.directive.mjs +19 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-action.enum.mjs +8 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-type.enum.mjs +8 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/index.mjs +4 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/pages.enum.mjs +26 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/file.helper.mjs +23 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/drop-background-event.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-option-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-event.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/index.mjs +7 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/upload-file-templates.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-icons.constant.mjs +19 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-limit.constant.mjs +28 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/index.mjs +5 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/lottie-constant.mjs +9 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/supported-extension.constant.mjs +11 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/svg-routes/dropzone-svg.routes.mjs +4 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.mjs +351 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/enums/document-action.enum.mjs +10 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/enums/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/models/delete-action.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/models/file-action.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/models/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/byte-convert.pipe.mjs +22 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/file-name.pipe.mjs +22 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/index.mjs +5 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/ng-class.pipe.mjs +36 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/url-extension.pipe.mjs +21 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/services/document.service.mjs +19 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/services/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/upload-file.routes.mjs +10 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.mjs +159 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-action.enum.mjs +6 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-size.enum.mjs +10 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/carousel-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/files-by-size.constant.mjs +16 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/carousel-svg.routes.mjs +4 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/enums/file-size.enum.mjs +9 -0
- package/esm2022/lib/components/ca-upload-files/enums/file-types.enum.mjs +8 -0
- package/esm2022/lib/components/ca-upload-files/enums/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/models/document-review.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/models/file-option-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/models/index.mjs +5 -0
- package/esm2022/lib/components/ca-upload-files/models/review-file-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/models/slider.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/pipes/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/pipes/map-file.pipe.mjs +20 -0
- package/esm2022/lib/components/ca-upload-files/pipes/upload-class.pipe.mjs +43 -0
- package/esm2022/lib/components/ca-upload-files/services/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/services/upload-file.service.mjs +30 -0
- package/esm2022/lib/pipes/thousand-separator.pipe.mjs +6 -2
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/ca-components.mjs +2016 -37
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/ca-components.module.d.ts +3 -1
- package/lib/components/ca-activity-log-list/ca-activity-log-list.component.d.ts +21 -0
- package/lib/components/ca-activity-log-list/components/ca-activity-log-item/ca-activity-log-item.component.d.ts +13 -0
- package/lib/components/ca-activity-log-list/enums/activity-log-list-type.enums.d.ts +14 -0
- package/lib/components/ca-activity-log-list/models/activity-log-item.model.d.ts +31 -0
- package/lib/components/ca-activity-log-list/utils/pipes/action-log-name-transform.pipe.d.ts +7 -0
- package/lib/components/ca-activity-log-list/utils/svg-routes/activity-log-list.routes.d.ts +4 -0
- package/lib/components/ca-input/enums/input-string.enum.d.ts +7 -1
- package/lib/components/ca-input/services/ca-input-state.service.d.ts +19 -3
- package/lib/components/ca-input/utils/constants/index.d.ts +1 -0
- package/lib/components/ca-input/utils/constants/input-constants.d.ts +3 -0
- package/lib/components/ca-logo-change/ca-logo-change.component.d.ts +34 -0
- package/lib/components/ca-logo-change/pipes/logo-slider.pipe.d.ts +7 -0
- package/lib/components/ca-logo-change/utils/constants/logo-change.constants.d.ts +6 -0
- package/lib/components/ca-main-table/ca-main-table.component.d.ts +3 -1
- package/lib/components/ca-upload-files/ca-upload-files.component.d.ts +66 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.d.ts +53 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/config/dropzone-config.type.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/config/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/directives/template.directive.d.ts +9 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-action.enum.d.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-type.enum.d.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/index.d.ts +3 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/pages.enum.d.ts +24 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/file.helper.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/drop-background-event.model.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-config.model.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-option-config.model.d.ts +14 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-config.model.d.ts +19 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-event.model.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/index.d.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/upload-file-templates.model.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-icons.constant.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-limit.constant.d.ts +5 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/index.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/lottie-constant.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/supported-extension.constant.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/svg-routes/dropzone-svg.routes.d.ts +3 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.d.ts +84 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/enums/document-action.enum.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/enums/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/models/delete-action.model.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/models/file-action.model.d.ts +5 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/models/index.d.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/byte-convert.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/file-name.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/index.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/ng-class.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/url-extension.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/services/document.service.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/services/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/upload-file.routes.d.ts +9 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.d.ts +36 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-action.enum.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-size.enum.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/index.d.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/carousel-config.model.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/files-by-size.constant.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/index.d.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/carousel-svg.routes.d.ts +3 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/index.d.ts +1 -0
- package/lib/components/ca-upload-files/enums/file-size.enum.d.ts +7 -0
- package/lib/components/ca-upload-files/enums/file-types.enum.d.ts +6 -0
- package/lib/components/ca-upload-files/enums/index.d.ts +2 -0
- package/lib/components/ca-upload-files/models/document-review.model.d.ts +5 -0
- package/lib/components/ca-upload-files/models/file-option-config.model.d.ts +14 -0
- package/lib/components/ca-upload-files/models/index.d.ts +4 -0
- package/lib/components/ca-upload-files/models/review-file-config.model.d.ts +8 -0
- package/lib/components/ca-upload-files/models/slider.model.d.ts +4 -0
- package/lib/components/ca-upload-files/pipes/index.d.ts +2 -0
- package/lib/components/ca-upload-files/pipes/map-file.pipe.d.ts +9 -0
- package/lib/components/ca-upload-files/pipes/upload-class.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/services/index.d.ts +1 -0
- package/lib/components/ca-upload-files/services/upload-file.service.d.ts +18 -0
- package/lib/pipes/thousand-separator.pipe.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/src/assets/ca-components/svg/common/ic_forbidden.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_grid.svg +8 -0
- package/src/assets/ca-components/svg/common/ic_radial.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_reset.svg +3 -0
- package/src/assets/ca-components/svg/input/ic_email.svg +6 -0
- package/src/assets/ca-components/svg/input/ic_phone.svg +6 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_arrow-right.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_arrow-up-rectangle.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_arrow-up-right.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_arrow-up.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_circle-grey-filled.svg +4 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_circle-grey.svg +4 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_circle-orange.svg +4 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_circle-red-filled.svg +4 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_document.svg +3 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_eye-icon-closed.svg +3 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_eye-icon.svg +3 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_no-document.svg +7 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_rectangle-orange.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_repair_engine.svg +3 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export var ActivityEntityType;
|
|
2
|
+
(function (ActivityEntityType) {
|
|
3
|
+
ActivityEntityType["TRUCK"] = "Truck";
|
|
4
|
+
ActivityEntityType["DRIVER"] = "Driver";
|
|
5
|
+
})(ActivityEntityType || (ActivityEntityType = {}));
|
|
6
|
+
export var ActionLogType;
|
|
7
|
+
(function (ActionLogType) {
|
|
8
|
+
ActionLogType["CREATED"] = "Created";
|
|
9
|
+
ActionLogType["EDITED"] = "Edited";
|
|
10
|
+
ActionLogType["ACTIVATED"] = "Activated";
|
|
11
|
+
})(ActionLogType || (ActionLogType = {}));
|
|
12
|
+
export var ActionLogTypeTitleText;
|
|
13
|
+
(function (ActionLogTypeTitleText) {
|
|
14
|
+
ActionLogTypeTitleText["CREATED"] = "Added";
|
|
15
|
+
ActionLogTypeTitleText["EDITED"] = "Edited";
|
|
16
|
+
ActionLogTypeTitleText["ACTIVATED"] = "Activated";
|
|
17
|
+
})(ActionLogTypeTitleText || (ActionLogTypeTitleText = {}));
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aXZpdHktbG9nLWxpc3QtdHlwZS5lbnVtcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWFjdGl2aXR5LWxvZy1saXN0L2VudW1zL2FjdGl2aXR5LWxvZy1saXN0LXR5cGUuZW51bXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFOLElBQVksa0JBR1g7QUFIRCxXQUFZLGtCQUFrQjtJQUMxQixxQ0FBZSxDQUFBO0lBQ2YsdUNBQWlCLENBQUE7QUFDckIsQ0FBQyxFQUhXLGtCQUFrQixLQUFsQixrQkFBa0IsUUFHN0I7QUFFRCxNQUFNLENBQU4sSUFBWSxhQUlYO0FBSkQsV0FBWSxhQUFhO0lBQ3JCLG9DQUFtQixDQUFBO0lBQ25CLGtDQUFpQixDQUFBO0lBQ2pCLHdDQUF1QixDQUFBO0FBQzNCLENBQUMsRUFKVyxhQUFhLEtBQWIsYUFBYSxRQUl4QjtBQUVELE1BQU0sQ0FBTixJQUFZLHNCQUlYO0FBSkQsV0FBWSxzQkFBc0I7SUFDOUIsMkNBQWlCLENBQUE7SUFDakIsMkNBQWlCLENBQUE7SUFDakIsaURBQXVCLENBQUE7QUFDM0IsQ0FBQyxFQUpXLHNCQUFzQixLQUF0QixzQkFBc0IsUUFJakMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBBY3Rpdml0eUVudGl0eVR5cGUge1xuICAgIFRSVUNLID0gJ1RydWNrJyxcbiAgICBEUklWRVIgPSAnRHJpdmVyJ1xufVxuXG5leHBvcnQgZW51bSBBY3Rpb25Mb2dUeXBlIHtcbiAgICBDUkVBVEVEID0gJ0NyZWF0ZWQnLFxuICAgIEVESVRFRCA9ICdFZGl0ZWQnLFxuICAgIEFDVElWQVRFRCA9ICdBY3RpdmF0ZWQnXG59XG5cbmV4cG9ydCBlbnVtIEFjdGlvbkxvZ1R5cGVUaXRsZVRleHQge1xuICAgIENSRUFURUQgPSAnQWRkZWQnLFxuICAgIEVESVRFRCA9ICdFZGl0ZWQnLFxuICAgIEFDVElWQVRFRCA9ICdBY3RpdmF0ZWQnXG59Il19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aXZpdHktbG9nLWl0ZW0ubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1hY3Rpdml0eS1sb2ctbGlzdC9tb2RlbHMvYWN0aXZpdHktbG9nLWl0ZW0ubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIi8vIGVudW1zXG5pbXBvcnQgeyBBY3Rpb25Mb2dUeXBlIH0gZnJvbSBcIi4uL2VudW1zL2FjdGl2aXR5LWxvZy1saXN0LXR5cGUuZW51bXNcIjtcblxuZXhwb3J0IGludGVyZmFjZSBBY3Rpdml0eUxvZ0l0ZW0ge1xuICAgIGlkOiBudW1iZXI7XG4gICAgY29tcGFueVVzZXI6IENvbXBhbnlVc2VyO1xuICAgIGVudGl0eVR5cGVBY3Rpdml0eTogRW50aXR5VHlwZUFjdGl2aXR5O1xuICAgIGFjdGlvbkxvZzogQWN0aW9uTG9nO1xuICAgIGRlc2NyaXB0aW9uOiBzdHJpbmc7XG4gICAgY3JlYXRlZEF0PzogRGF0ZSB8IG51bGw7XG4gICAgdXBkYXRlZEF0PzogRGF0ZSB8IG51bGw7XG4gICAgaXNMYXN0SW5MaXN0PzogYm9vbGVhbiB8IGZhbHNlO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIENvbXBhbnlVc2VyIHtcbiAgICBpZDogbnVtYmVyO1xuICAgIHVzZXJJZDogbnVtYmVyO1xuICAgIGZ1bGxOYW1lOiBzdHJpbmc7XG4gICAgYXZhdGFyRmlsZTogc3RyaW5nIHwgbnVsbDtcbiAgICBkZXBhcnRtZW50SWQ6IG51bWJlciB8IG51bGw7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgRW50aXR5VHlwZUFjdGl2aXR5IHtcbiAgICBpZDogbnVtYmVyO1xuICAgIG5hbWU6IHN0cmluZztcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBY3Rpb25Mb2cge1xuICAgIGlkOiBudW1iZXI7XG4gICAgbmFtZTogQWN0aW9uTG9nVHlwZTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBY3Rpdml0eUxvZ0l0ZW1EZXNjcmlwdGlvbiB7XG4gICAgVGl0bGU6IHN0cmluZztcbiAgICBTdWJUaXRsZTogc3RyaW5nO1xuICAgIEFkaXRpb25hbDoge307XG59Il19
|
package/esm2022/lib/components/ca-activity-log-list/utils/pipes/action-log-name-transform.pipe.mjs
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Pipe } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class ActionLogNameTransformPipe {
|
|
4
|
+
transform(value) {
|
|
5
|
+
if (value === 'Created') {
|
|
6
|
+
return 'Added';
|
|
7
|
+
}
|
|
8
|
+
return value;
|
|
9
|
+
}
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionLogNameTransformPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
11
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ActionLogNameTransformPipe, isStandalone: true, name: "actionLogNameTransform" }); }
|
|
12
|
+
}
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionLogNameTransformPipe, decorators: [{
|
|
14
|
+
type: Pipe,
|
|
15
|
+
args: [{
|
|
16
|
+
name: 'actionLogNameTransform',
|
|
17
|
+
standalone: true
|
|
18
|
+
}]
|
|
19
|
+
}] });
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLWxvZy1uYW1lLXRyYW5zZm9ybS5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtYWN0aXZpdHktbG9nLWxpc3QvdXRpbHMvcGlwZXMvYWN0aW9uLWxvZy1uYW1lLXRyYW5zZm9ybS5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxJQUFJLEVBQWlCLE1BQU0sZUFBZSxDQUFDOztBQU1wRCxNQUFNLE9BQU8sMEJBQTBCO0lBRXJDLFNBQVMsQ0FBQyxLQUFhO1FBQ3JCLElBQUksS0FBSyxLQUFLLFNBQVMsRUFBRTtZQUN2QixPQUFPLE9BQU8sQ0FBQztTQUNoQjtRQUNELE9BQU8sS0FBSyxDQUFDO0lBQ2YsQ0FBQzsrR0FQVSwwQkFBMEI7NkdBQTFCLDBCQUEwQjs7NEZBQTFCLDBCQUEwQjtrQkFKdEMsSUFBSTttQkFBQztvQkFDSixJQUFJLEVBQUUsd0JBQXdCO29CQUM5QixVQUFVLEVBQUMsSUFBSTtpQkFDaEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBQaXBlKHtcbiAgbmFtZTogJ2FjdGlvbkxvZ05hbWVUcmFuc2Zvcm0nLFxuICBzdGFuZGFsb25lOnRydWVcbn0pXG5leHBvcnQgY2xhc3MgQWN0aW9uTG9nTmFtZVRyYW5zZm9ybVBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcblxuICB0cmFuc2Zvcm0odmFsdWU6IHN0cmluZyk6IHN0cmluZyB7XG4gICAgaWYgKHZhbHVlID09PSAnQ3JlYXRlZCcpIHtcbiAgICAgIHJldHVybiAnQWRkZWQnO1xuICAgIH1cbiAgICByZXR1cm4gdmFsdWU7XG4gIH1cbn0iXX0=
|
package/esm2022/lib/components/ca-activity-log-list/utils/svg-routes/activity-log-list.routes.mjs
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export class ActivityLogListRoutes {
|
|
2
|
+
static { this.truck = 'assets/ca-components/svg/common/ic_truck.svg'; }
|
|
3
|
+
static { this.driver = 'assets/ca-components/svg/common/ic_driver.svg'; }
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aXZpdHktbG9nLWxpc3Qucm91dGVzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtYWN0aXZpdHktbG9nLWxpc3QvdXRpbHMvc3ZnLXJvdXRlcy9hY3Rpdml0eS1sb2ctbGlzdC5yb3V0ZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxPQUFPLHFCQUFxQjthQUN2QixVQUFLLEdBQVcsOENBQThDLENBQUM7YUFDL0QsV0FBTSxHQUFXLCtDQUErQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNsYXNzIEFjdGl2aXR5TG9nTGlzdFJvdXRlcyB7XG4gICAgc3RhdGljIHRydWNrOiBzdHJpbmcgPSAnYXNzZXRzL2NhLWNvbXBvbmVudHMvc3ZnL2NvbW1vbi9pY190cnVjay5zdmcnO1xuICAgIHN0YXRpYyBkcml2ZXI6IHN0cmluZyA9ICdhc3NldHMvY2EtY29tcG9uZW50cy9zdmcvY29tbW9uL2ljX2RyaXZlci5zdmcnO1xufSJdfQ==
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
export var InputStringEnum;
|
|
2
2
|
(function (InputStringEnum) {
|
|
3
3
|
InputStringEnum["PHONE"] = "phone";
|
|
4
|
+
InputStringEnum["CAPITALIZE"] = "capitalize";
|
|
5
|
+
InputStringEnum["UPPERCASE"] = "uppercase";
|
|
6
|
+
InputStringEnum["YEAR"] = "year";
|
|
7
|
+
InputStringEnum["MONTHS"] = "months";
|
|
8
|
+
InputStringEnum["AXLES"] = "axles";
|
|
9
|
+
InputStringEnum["FULL_NAME"] = "full name";
|
|
4
10
|
})(InputStringEnum || (InputStringEnum = {}));
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtc3RyaW5nLmVudW0uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC9lbnVtcy9pbnB1dC1zdHJpbmcuZW51bS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxlQVFYO0FBUkQsV0FBWSxlQUFlO0lBQ3pCLGtDQUFlLENBQUE7SUFDZiw0Q0FBeUIsQ0FBQTtJQUN6QiwwQ0FBdUIsQ0FBQTtJQUN2QixnQ0FBYSxDQUFBO0lBQ2Isb0NBQWlCLENBQUE7SUFDakIsa0NBQWUsQ0FBQTtJQUNmLDBDQUF1QixDQUFBO0FBQ3pCLENBQUMsRUFSVyxlQUFlLEtBQWYsZUFBZSxRQVExQiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBlbnVtIElucHV0U3RyaW5nRW51bSB7XG4gIFBIT05FID0gJ3Bob25lJyxcbiAgQ0FQSVRBTElaRSA9ICdjYXBpdGFsaXplJyxcbiAgVVBQRVJDQVNFID0gJ3VwcGVyY2FzZScsXG4gIFlFQVIgPSAneWVhcicsXG4gIE1PTlRIUyA9ICdtb250aHMnLFxuICBBWExFUyA9ICdheGxlcycsXG4gIEZVTExfTkFNRSA9ICdmdWxsIG5hbWUnLFxufVxuIl19
|