@annalib/anna-core 0.0.3 → 0.0.4
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/annalib-anna-core.d.ts +5 -0
- package/esm2020/annalib-anna-core.mjs +5 -0
- package/esm2020/lib/anna-core-shared-lib/anna-core-shared-lib.module.mjs +59 -0
- package/esm2020/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.mjs +15 -0
- package/esm2020/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.mjs +15 -0
- package/esm2020/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.mjs +22 -0
- package/esm2020/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.mjs +15 -0
- package/esm2020/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.mjs +21 -0
- package/esm2020/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.mjs +15 -0
- package/esm2020/lib/anna-core-shared-lib/constants/shared.constant.mjs +34 -0
- package/esm2020/lib/anna-core-shared-lib/index.mjs +2 -0
- package/esm2020/lib/anna-core-shared-lib/models/anna-generic-data-type.model.mjs +2 -0
- package/esm2020/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.mjs +2 -0
- package/esm2020/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +3 -0
- package/esm2020/lib/anna-core-shared-lib/models/anna-tooltip.model.mjs +26 -0
- package/esm2020/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.mjs +31 -0
- package/esm2020/lib/anna-core-shared-lib/public-api.mjs +25 -0
- package/esm2020/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +180 -0
- package/esm2020/lib/anna-core-shared-lib/services/anna-filter.service.mjs +536 -0
- package/esm2020/lib/anna-core-shared-lib/services/anna-generic-table.service.mjs +52 -0
- package/esm2020/lib/anna-core-shared-lib/services/anna-global-config.service.mjs +133 -0
- package/esm2020/lib/anna-core-shared-lib/services/anna-sort.service.mjs +185 -0
- package/esm2020/lib/anna-dropdown-lib/anna-dropdown-lib.module.mjs +43 -0
- package/esm2020/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +76 -0
- package/esm2020/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.mjs +360 -0
- package/esm2020/lib/anna-dropdown-lib/index.mjs +2 -0
- package/esm2020/lib/anna-dropdown-lib/public-api.mjs +6 -0
- package/esm2020/lib/anna-generic-table-lib/anna-generic-table-lib.module.mjs +86 -0
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +991 -0
- package/esm2020/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +125 -0
- package/esm2020/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.mjs +357 -0
- package/esm2020/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/anna-fixed-row-size-table-virtual-scroll-strategy.directive.mjs +189 -0
- package/esm2020/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/index.mjs +2 -0
- package/esm2020/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.mjs +178 -0
- package/esm2020/lib/anna-generic-table-lib/directives/anna-virtual-table/index.mjs +2 -0
- package/esm2020/lib/anna-generic-table-lib/index.mjs +2 -0
- package/esm2020/lib/anna-generic-table-lib/public-api.mjs +10 -0
- package/esm2020/public-api.mjs +7 -0
- package/esm2020/src/lib/anna-core-shared-lib/anna-core-shared-lib.module.mjs +59 -0
- package/esm2020/src/lib/anna-core-shared-lib/annalib-anna-core-src-lib-anna-core-shared-lib.mjs +5 -0
- package/esm2020/src/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.mjs +15 -0
- package/esm2020/src/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.mjs +15 -0
- package/esm2020/src/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.mjs +22 -0
- package/esm2020/src/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.mjs +15 -0
- package/esm2020/src/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.mjs +21 -0
- package/esm2020/src/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.mjs +15 -0
- package/esm2020/src/lib/anna-core-shared-lib/constants/shared.constant.mjs +34 -0
- package/esm2020/src/lib/anna-core-shared-lib/models/anna-generic-data-type.model.mjs +2 -0
- package/esm2020/src/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.mjs +2 -0
- package/esm2020/src/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +3 -0
- package/esm2020/src/lib/anna-core-shared-lib/models/anna-tooltip.model.mjs +26 -0
- package/esm2020/src/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.mjs +31 -0
- package/esm2020/src/lib/anna-core-shared-lib/public-api.mjs +25 -0
- package/esm2020/src/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +180 -0
- package/esm2020/src/lib/anna-core-shared-lib/services/anna-filter.service.mjs +536 -0
- package/esm2020/src/lib/anna-core-shared-lib/services/anna-generic-table.service.mjs +52 -0
- package/esm2020/src/lib/anna-core-shared-lib/services/anna-global-config.service.mjs +133 -0
- package/esm2020/src/lib/anna-core-shared-lib/services/anna-sort.service.mjs +185 -0
- package/esm2020/src/lib/anna-dropdown-lib/anna-dropdown-lib.module.mjs +43 -0
- package/esm2020/src/lib/anna-dropdown-lib/annalib-anna-core-src-lib-anna-dropdown-lib.mjs +5 -0
- package/esm2020/src/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +76 -0
- package/esm2020/src/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.mjs +360 -0
- package/esm2020/src/lib/anna-dropdown-lib/public-api.mjs +6 -0
- package/esm2020/src/lib/anna-generic-table-lib/anna-generic-table-lib.module.mjs +86 -0
- package/esm2020/src/lib/anna-generic-table-lib/annalib-anna-core-src-lib-anna-generic-table-lib.mjs +5 -0
- package/esm2020/src/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +991 -0
- package/esm2020/src/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +125 -0
- package/esm2020/src/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.mjs +357 -0
- package/esm2020/src/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/anna-fixed-row-size-table-virtual-scroll-strategy.directive.mjs +189 -0
- package/esm2020/src/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/index.mjs +2 -0
- package/esm2020/src/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.mjs +178 -0
- package/esm2020/src/lib/anna-generic-table-lib/directives/anna-virtual-table/index.mjs +2 -0
- package/esm2020/src/lib/anna-generic-table-lib/public-api.mjs +10 -0
- package/fesm2015/annalib-anna-core-src-lib-anna-core-shared-lib.mjs +1294 -0
- package/fesm2015/annalib-anna-core-src-lib-anna-core-shared-lib.mjs.map +1 -0
- package/fesm2015/annalib-anna-core-src-lib-anna-dropdown-lib.mjs +474 -0
- package/fesm2015/annalib-anna-core-src-lib-anna-dropdown-lib.mjs.map +1 -0
- package/fesm2015/annalib-anna-core-src-lib-anna-generic-table-lib.mjs +1887 -0
- package/fesm2015/annalib-anna-core-src-lib-anna-generic-table-lib.mjs.map +1 -0
- package/fesm2015/annalib-anna-core.mjs +3629 -0
- package/fesm2015/annalib-anna-core.mjs.map +1 -0
- package/fesm2020/annalib-anna-core-src-lib-anna-core-shared-lib.mjs +1294 -0
- package/fesm2020/annalib-anna-core-src-lib-anna-core-shared-lib.mjs.map +1 -0
- package/fesm2020/annalib-anna-core-src-lib-anna-dropdown-lib.mjs +472 -0
- package/fesm2020/annalib-anna-core-src-lib-anna-dropdown-lib.mjs.map +1 -0
- package/fesm2020/annalib-anna-core-src-lib-anna-generic-table-lib.mjs +1886 -0
- package/fesm2020/annalib-anna-core-src-lib-anna-generic-table-lib.mjs.map +1 -0
- package/fesm2020/annalib-anna-core.mjs +3626 -0
- package/fesm2020/annalib-anna-core.mjs.map +1 -0
- package/lib/anna-core-shared-lib/anna-core-shared-lib.module.d.ts +14 -0
- package/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.d.ts +8 -0
- package/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.d.ts +8 -0
- package/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.d.ts +11 -0
- package/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.d.ts +8 -0
- package/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.d.ts +11 -0
- package/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.d.ts +8 -0
- package/lib/anna-core-shared-lib/constants/shared.constant.d.ts +32 -0
- package/lib/anna-core-shared-lib/index.d.ts +1 -0
- package/lib/anna-core-shared-lib/models/anna-generic-data-type.model.d.ts +8 -0
- package/{src/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.ts → lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.d.ts} +9 -21
- package/{src/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.ts → lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts} +17 -27
- package/lib/anna-core-shared-lib/models/anna-tooltip.model.d.ts +21 -0
- package/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.d.ts +9 -0
- package/{src/lib/anna-core-shared-lib/public-api.ts → lib/anna-core-shared-lib/public-api.d.ts} +0 -11
- package/lib/anna-core-shared-lib/services/anna-date-time-format.service.d.ts +25 -0
- package/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +68 -0
- package/lib/anna-core-shared-lib/services/anna-generic-table.service.d.ts +14 -0
- package/lib/anna-core-shared-lib/services/anna-global-config.service.d.ts +21 -0
- package/lib/anna-core-shared-lib/services/anna-sort.service.d.ts +23 -0
- package/lib/anna-dropdown-lib/anna-dropdown-lib.module.d.ts +11 -0
- package/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.d.ts +29 -0
- package/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.d.ts +67 -0
- package/lib/anna-dropdown-lib/index.d.ts +1 -0
- package/{src/lib/anna-dropdown-lib/public-api.ts → lib/anna-dropdown-lib/public-api.d.ts} +1 -4
- package/lib/anna-generic-table-lib/anna-generic-table-lib.module.d.ts +21 -0
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +171 -0
- package/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.d.ts +27 -0
- package/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.d.ts +141 -0
- package/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/anna-fixed-row-size-table-virtual-scroll-strategy.directive.d.ts +89 -0
- package/{src/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/index.ts → lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/index.d.ts} +0 -0
- package/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.d.ts +45 -0
- package/{src/lib/anna-generic-table-lib/directives/anna-virtual-table/index.ts → lib/anna-generic-table-lib/directives/anna-virtual-table/index.d.ts} +0 -0
- package/lib/anna-generic-table-lib/index.d.ts +1 -0
- package/{src/lib/anna-generic-table-lib/public-api.ts → lib/anna-generic-table-lib/public-api.d.ts} +0 -5
- package/package.json +61 -17
- package/{src/public-api.ts → public-api.d.ts} +0 -5
- package/src/lib/anna-core-shared-lib/anna-core-shared-lib.module.d.ts +14 -0
- package/src/lib/anna-core-shared-lib/annalib-anna-core-src-lib-anna-core-shared-lib.d.ts +5 -0
- package/src/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.d.ts +8 -0
- package/src/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.d.ts +8 -0
- package/src/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.d.ts +11 -0
- package/src/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.d.ts +8 -0
- package/src/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.d.ts +11 -0
- package/src/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.d.ts +8 -0
- package/src/lib/anna-core-shared-lib/constants/shared.constant.d.ts +32 -0
- package/src/lib/anna-core-shared-lib/models/anna-generic-data-type.model.d.ts +8 -0
- package/src/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.d.ts +95 -0
- package/src/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +70 -0
- package/src/lib/anna-core-shared-lib/models/anna-tooltip.model.d.ts +21 -0
- package/src/lib/anna-core-shared-lib/package.json +10 -0
- package/src/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.d.ts +9 -0
- package/src/lib/anna-core-shared-lib/public-api.d.ts +18 -0
- package/src/lib/anna-core-shared-lib/services/anna-date-time-format.service.d.ts +25 -0
- package/src/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +68 -0
- package/src/lib/anna-core-shared-lib/services/anna-generic-table.service.d.ts +14 -0
- package/src/lib/anna-core-shared-lib/services/anna-global-config.service.d.ts +21 -0
- package/src/lib/anna-core-shared-lib/services/anna-sort.service.d.ts +23 -0
- package/src/lib/anna-dropdown-lib/anna-dropdown-lib.module.d.ts +11 -0
- package/src/lib/anna-dropdown-lib/annalib-anna-core-src-lib-anna-dropdown-lib.d.ts +5 -0
- package/src/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.d.ts +29 -0
- package/src/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.d.ts +67 -0
- package/src/lib/anna-dropdown-lib/package.json +10 -0
- package/src/lib/anna-dropdown-lib/public-api.d.ts +3 -0
- package/src/lib/anna-generic-table-lib/anna-generic-table-lib.module.d.ts +21 -0
- package/src/lib/anna-generic-table-lib/annalib-anna-core-src-lib-anna-generic-table-lib.d.ts +5 -0
- package/src/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +171 -0
- package/src/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.d.ts +27 -0
- package/src/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.d.ts +141 -0
- package/src/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/anna-fixed-row-size-table-virtual-scroll-strategy.directive.d.ts +89 -0
- package/src/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/index.d.ts +1 -0
- package/src/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.d.ts +45 -0
- package/src/lib/anna-generic-table-lib/directives/anna-virtual-table/index.d.ts +1 -0
- package/src/lib/anna-generic-table-lib/package.json +10 -0
- package/src/lib/anna-generic-table-lib/public-api.d.ts +6 -0
- package/.browserslistrc +0 -16
- package/karma.conf.js +0 -44
- package/ng-package.json +0 -10
- package/src/lib/anna-core-shared-lib/anna-core-shared-lib.module.ts +0 -42
- package/src/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.html +0 -22
- package/src/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.scss +0 -0
- package/src/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.spec.ts +0 -25
- package/src/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.ts +0 -15
- package/src/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.html +0 -20
- package/src/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.scss +0 -0
- package/src/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.spec.ts +0 -25
- package/src/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.ts +0 -15
- package/src/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.html +0 -3
- package/src/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.scss +0 -16
- package/src/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.spec.ts +0 -24
- package/src/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.ts +0 -20
- package/src/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.html +0 -23
- package/src/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.scss +0 -0
- package/src/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.spec.ts +0 -25
- package/src/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.ts +0 -15
- package/src/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.html +0 -15
- package/src/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.scss +0 -0
- package/src/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.spec.ts +0 -25
- package/src/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.ts +0 -19
- package/src/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.html +0 -14
- package/src/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.scss +0 -0
- package/src/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.spec.ts +0 -25
- package/src/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.ts +0 -15
- package/src/lib/anna-core-shared-lib/constants/shared.constant.ts +0 -34
- package/src/lib/anna-core-shared-lib/index.ts +0 -1
- package/src/lib/anna-core-shared-lib/models/anna-generic-data-type.model.ts +0 -10
- package/src/lib/anna-core-shared-lib/models/anna-tooltip.model.ts +0 -36
- package/src/lib/anna-core-shared-lib/ng-package.json +0 -5
- package/src/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.ts +0 -26
- package/src/lib/anna-core-shared-lib/scss/_colors.scss +0 -107
- package/src/lib/anna-core-shared-lib/scss/_filters.scss +0 -486
- package/src/lib/anna-core-shared-lib/scss/_fonts.scss +0 -86
- package/src/lib/anna-core-shared-lib/scss/_sort.scss +0 -81
- package/src/lib/anna-core-shared-lib/services/anna-date-time-format.service.ts +0 -197
- package/src/lib/anna-core-shared-lib/services/anna-filter.service.ts +0 -616
- package/src/lib/anna-core-shared-lib/services/anna-generic-table.service.ts +0 -50
- package/src/lib/anna-core-shared-lib/services/anna-global-config.service.ts +0 -170
- package/src/lib/anna-core-shared-lib/services/anna-sort.service.ts +0 -200
- package/src/lib/anna-dropdown-lib/anna-dropdown-lib.module.ts +0 -31
- package/src/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.html +0 -29
- package/src/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.scss +0 -122
- package/src/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.spec.ts +0 -24
- package/src/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.ts +0 -76
- package/src/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.html +0 -129
- package/src/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.scss +0 -275
- package/src/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.spec.ts +0 -24
- package/src/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.ts +0 -410
- package/src/lib/anna-dropdown-lib/index.ts +0 -1
- package/src/lib/anna-dropdown-lib/ng-package.json +0 -5
- package/src/lib/anna-generic-table-lib/anna-generic-table-lib.module.ts +0 -56
- package/src/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.html +0 -848
- package/src/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.scss +0 -488
- package/src/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.spec.ts +0 -25
- package/src/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.ts +0 -1100
- package/src/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.html +0 -47
- package/src/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.scss +0 -1
- package/src/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.spec.ts +0 -24
- package/src/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.ts +0 -126
- package/src/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.html +0 -13
- package/src/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.scss +0 -88
- package/src/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.spec.ts +0 -25
- package/src/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.ts +0 -460
- package/src/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/anna-fixed-row-size-table-virtual-scroll-strategy.directive.ts +0 -237
- package/src/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.ts +0 -204
- package/src/lib/anna-generic-table-lib/index.ts +0 -1
- package/src/lib/anna-generic-table-lib/ng-package.json +0 -5
- package/src/test.ts +0 -27
- package/tsconfig.lib.json +0 -16
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -17
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { AnnaBuyerApprovalIconTemplateComponent } from './anna-buyer-approval-icon-template.component';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
describe('AnnaBuyerApprovalIconTemplateComponent', () => {
|
|
6
|
-
let component: AnnaBuyerApprovalIconTemplateComponent;
|
|
7
|
-
let fixture: ComponentFixture<AnnaBuyerApprovalIconTemplateComponent>;
|
|
8
|
-
|
|
9
|
-
beforeEach(async () => {
|
|
10
|
-
await TestBed.configureTestingModule({
|
|
11
|
-
declarations: [ AnnaBuyerApprovalIconTemplateComponent ]
|
|
12
|
-
})
|
|
13
|
-
.compileComponents();
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
beforeEach(() => {
|
|
17
|
-
fixture = TestBed.createComponent(AnnaBuyerApprovalIconTemplateComponent);
|
|
18
|
-
component = fixture.componentInstance;
|
|
19
|
-
fixture.detectChanges();
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
it('should create', () => {
|
|
23
|
-
expect(component).toBeTruthy();
|
|
24
|
-
});
|
|
25
|
-
});
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Component, OnInit } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
@Component({
|
|
4
|
-
selector: 'anna-buyer-approval-icon-template',
|
|
5
|
-
templateUrl: './anna-buyer-approval-icon-template.component.html',
|
|
6
|
-
styleUrls: ['./anna-buyer-approval-icon-template.component.scss']
|
|
7
|
-
})
|
|
8
|
-
export class AnnaBuyerApprovalIconTemplateComponent implements OnInit {
|
|
9
|
-
|
|
10
|
-
constructor() { }
|
|
11
|
-
|
|
12
|
-
ngOnInit(): void {
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
<ng-container [ngTemplateOutlet]="liveIcon"></ng-container>
|
|
2
|
-
<ng-template #liveIcon>
|
|
3
|
-
<svg width="15px" height="15px" viewBox="0 0 20 20">
|
|
4
|
-
<g id="Live-Icon" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
-
<g id="next" transform="translate(2.000000, 2.000000)" fill-rule="nonzero">
|
|
6
|
-
<path
|
|
7
|
-
d="M8,0 C3.58171139,0 0,3.58171139 0,8 C0,12.4182886 3.58171139,16 8,16 C12.4182886,16 16,12.4182886 16,8 C15.9950435,3.58379835 12.4162343,0.00498913721 8,0 Z"
|
|
8
|
-
id="Path"
|
|
9
|
-
fill="#C2E361"
|
|
10
|
-
></path>
|
|
11
|
-
<path
|
|
12
|
-
d="M8,16 C3.58171139,16 0,12.4182633 0,7.9999837 C0,3.58170409 3.58171139,0 8,0 C12.4182886,0 16,3.58170409 16,7.9999837 C15.9950435,12.416209 12.4162343,15.9950109 8,16 Z M8,0.695640832 C3.96590756,0.695640832 0.69564225,3.96589948 0.69564225,7.9999837 C0.69564225,12.0340679 3.96590756,15.3043266 8,15.3043266 C12.0340924,15.3043266 15.3043578,12.0340679 15.3043578,7.9999837 C15.2997599,3.96782339 12.0322011,0.700238655 8,0.695640832 Z"
|
|
13
|
-
id="Shape"
|
|
14
|
-
fill="#8BAC2A"
|
|
15
|
-
></path>
|
|
16
|
-
<circle id="Oval" fill="#8BAC2A" cx="8" cy="8" r="4"></circle>
|
|
17
|
-
</g>
|
|
18
|
-
</g>
|
|
19
|
-
</svg>
|
|
20
|
-
</ng-template>
|
|
File without changes
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { AnnaLiveIconTemplateComponent } from './anna-live-icon-template.component';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
describe('LiveIconTemplateComponent', () => {
|
|
6
|
-
let component: AnnaLiveIconTemplateComponent;
|
|
7
|
-
let fixture: ComponentFixture<AnnaLiveIconTemplateComponent>;
|
|
8
|
-
|
|
9
|
-
beforeEach(async () => {
|
|
10
|
-
await TestBed.configureTestingModule({
|
|
11
|
-
declarations: [ AnnaLiveIconTemplateComponent ]
|
|
12
|
-
})
|
|
13
|
-
.compileComponents();
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
beforeEach(() => {
|
|
17
|
-
fixture = TestBed.createComponent(AnnaLiveIconTemplateComponent);
|
|
18
|
-
component = fixture.componentInstance;
|
|
19
|
-
fixture.detectChanges();
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
it('should create', () => {
|
|
23
|
-
expect(component).toBeTruthy();
|
|
24
|
-
});
|
|
25
|
-
});
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Component, OnInit } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
@Component({
|
|
4
|
-
selector: 'anna-live-icon-template',
|
|
5
|
-
templateUrl: './anna-live-icon-template.component.html',
|
|
6
|
-
styleUrls: ['./anna-live-icon-template.component.scss']
|
|
7
|
-
})
|
|
8
|
-
export class AnnaLiveIconTemplateComponent implements OnInit {
|
|
9
|
-
|
|
10
|
-
constructor() { }
|
|
11
|
-
|
|
12
|
-
ngOnInit(): void {
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
div {
|
|
2
|
-
right: 0;
|
|
3
|
-
margin-left: auto;
|
|
4
|
-
margin-right: auto;
|
|
5
|
-
position: absolute;
|
|
6
|
-
width: 46%;
|
|
7
|
-
margin: 20px;
|
|
8
|
-
label {
|
|
9
|
-
margin: 0;
|
|
10
|
-
width: auto;
|
|
11
|
-
font-weight: 500;
|
|
12
|
-
background-color: lightgray;
|
|
13
|
-
padding: 5px 18px;
|
|
14
|
-
border-radius: 4px;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed, waitForAsync } from "@angular/core/testing";
|
|
2
|
-
|
|
3
|
-
import { AnnaNoDataComponent } from "./anna-no-data.component";
|
|
4
|
-
|
|
5
|
-
describe("AnnaNoDataComponent", () => {
|
|
6
|
-
let component: AnnaNoDataComponent;
|
|
7
|
-
let fixture: ComponentFixture<AnnaNoDataComponent>;
|
|
8
|
-
|
|
9
|
-
beforeEach(waitForAsync(() => {
|
|
10
|
-
TestBed.configureTestingModule({
|
|
11
|
-
declarations: [AnnaNoDataComponent],
|
|
12
|
-
}).compileComponents();
|
|
13
|
-
}));
|
|
14
|
-
|
|
15
|
-
beforeEach(() => {
|
|
16
|
-
fixture = TestBed.createComponent(AnnaNoDataComponent);
|
|
17
|
-
component = fixture.componentInstance;
|
|
18
|
-
fixture.detectChanges();
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
it("should create", () => {
|
|
22
|
-
expect(component).toBeTruthy();
|
|
23
|
-
});
|
|
24
|
-
});
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, Input, OnInit } from "@angular/core";
|
|
2
|
-
@Component({
|
|
3
|
-
selector: "anna-core-no-data-lib",
|
|
4
|
-
templateUrl: "./anna-no-data.component.html",
|
|
5
|
-
styleUrls: ["./anna-no-data.component.scss"],
|
|
6
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7
|
-
})
|
|
8
|
-
export class AnnaNoDataComponent implements OnInit {
|
|
9
|
-
@Input() width;
|
|
10
|
-
@Input() marginTop;
|
|
11
|
-
message: string;
|
|
12
|
-
constructor() {
|
|
13
|
-
this.width = "46%";
|
|
14
|
-
this.marginTop = "1.25rem";
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
ngOnInit() {
|
|
18
|
-
this.message = "No data to display";
|
|
19
|
-
}
|
|
20
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<ng-container [ngTemplateOutlet]="notifyIcon"></ng-container>
|
|
2
|
-
|
|
3
|
-
<ng-template #notifyIcon>
|
|
4
|
-
<svg width="15px" height="15px" viewBox="0 0 20 20">
|
|
5
|
-
<g id="Notify-buyer-icon" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
6
|
-
<g id="notification" transform="translate(3.000000, 1.000000)" fill="#4A4A4A" fill-rule="nonzero">
|
|
7
|
-
<path
|
|
8
|
-
d="M12.6666669,8.66366455 L12.6666669,7.08618164 C12.6666669,4.78491943 11.1196383,2.8344397 9.0000114,2.19737549 L9.0000114,1.4831543 C9.0000114,0.665343018 8.32711346,8.52651283e-13 7.50001599,8.52651283e-13 C6.67291852,8.52651283e-13 6.00002058,0.665343018 6.00002058,1.4831543 L6.00002058,2.19737549 C3.8803604,2.8344397 2.33336513,4.78488647 2.33336513,7.08618164 L2.33336513,8.66366455 C2.33336513,10.685105 1.55410085,12.6018677 0.139138508,14.060896 C0.000472265053,14.2038721 -0.0384942824,14.4148425 0.0401054772,14.5970398 C0.118705237,14.7792371 0.299704683,14.8974609 0.500037404,14.8974609 L5.05032349,14.8974609 C5.28258944,16.0243945 6.29271969,16.875 7.50001599,16.875 C8.70734563,16.875 9.71740921,16.0243945 9.9497085,14.8974609 L14.5,14.8974609 C14.7003273,14.8974609 14.8812934,14.7792371 14.9598932,14.5970398 C15.0384929,14.4148425 14.9995264,14.2038721 14.8608935,14.060896 C13.4459311,12.6018677 12.6666669,10.685072 12.6666669,8.66366455 Z M7.00001752,1.4831543 C7.00001752,1.21055054 7.22431684,0.988769531 7.50001752,0.988769531 C7.77571515,0.988769531 8.00001752,1.21055054 8.00001752,1.4831543 L8.00001752,2.0015332 C7.8354483,1.98584473 7.66868214,1.97753906 7.50001752,1.97753906 C7.33134984,1.97753906 7.16458369,1.98584473 7.00001752,2.0015332 L7.00001752,1.4831543 Z M7.50001599,15.8862305 C6.84818465,15.8862305 6.29241969,15.4728918 6.08602032,14.8974609 L8.91401167,14.8974609 C8.7076123,15.4728918 8.15184733,15.8862305 7.50001599,15.8862305 L7.50001599,15.8862305 Z M1.57770077,13.9086914 C2.71639729,12.3994336 3.33336207,10.5729785 3.33336207,8.66366455 L3.33336207,7.08618164 C3.33336207,4.81448364 5.20252302,2.96630859 7.50001599,2.96630859 C9.79750897,2.96630859 11.6666699,4.81448364 11.6666699,7.08618164 L11.6666699,8.66366455 C11.6666699,10.5729785 12.2836347,12.3994336 13.4223645,13.9086914"
|
|
9
|
-
id="Shape"
|
|
10
|
-
></path>
|
|
11
|
-
<path
|
|
12
|
-
d="M13.7705926,7.02729272 C13.7705926,7.28835319 14.0458159,7.5 14.3852963,7.5 C14.7247767,7.5 15,7.28835319 15,7.02729272 C15,5.13331221 14.0408983,3.3526869 12.2993607,2.01344415 C12.0593394,1.82886771 11.670109,1.82883619 11.4300467,2.01344415 C11.1899844,2.1980521 11.1899844,2.49733883 11.4300467,2.68194678 C12.9393902,3.84263224 13.7705926,5.38583244 13.7705926,7.02729272 L13.7705926,7.02729272 Z"
|
|
13
|
-
id="Path"
|
|
14
|
-
></path>
|
|
15
|
-
<path
|
|
16
|
-
d="M0.614703713,7.5 C0.954184083,7.5 1.22940743,7.28835245 1.22940743,7.02729106 C1.22940743,5.38585655 2.06065077,3.84265095 3.56995328,2.68196143 C3.81001557,2.49735283 3.81001557,2.19806504 3.56995328,2.01345645 C3.32993197,1.82884785 2.94070158,1.82884785 2.70063929,2.01345645 C0.959101713,3.3527039 0,5.13330392 0,7.02729106 C0,7.28835245 0.275223342,7.5 0.614703713,7.5 Z"
|
|
17
|
-
id="Path"
|
|
18
|
-
></path>
|
|
19
|
-
</g>
|
|
20
|
-
</g>
|
|
21
|
-
</svg>
|
|
22
|
-
</ng-template>
|
|
23
|
-
|
|
File without changes
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { AnnaNotifyIconTemplateComponent } from './anna-notify-icon-template.component';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
describe('AnnaNotifyIconTemplateComponent', () => {
|
|
6
|
-
let component: AnnaNotifyIconTemplateComponent;
|
|
7
|
-
let fixture: ComponentFixture<AnnaNotifyIconTemplateComponent>;
|
|
8
|
-
|
|
9
|
-
beforeEach(async () => {
|
|
10
|
-
await TestBed.configureTestingModule({
|
|
11
|
-
declarations: [ AnnaNotifyIconTemplateComponent ]
|
|
12
|
-
})
|
|
13
|
-
.compileComponents();
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
beforeEach(() => {
|
|
17
|
-
fixture = TestBed.createComponent(AnnaNotifyIconTemplateComponent);
|
|
18
|
-
component = fixture.componentInstance;
|
|
19
|
-
fixture.detectChanges();
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
it('should create', () => {
|
|
23
|
-
expect(component).toBeTruthy();
|
|
24
|
-
});
|
|
25
|
-
});
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Component, OnInit } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
@Component({
|
|
4
|
-
selector: 'anna-notify-icon-template',
|
|
5
|
-
templateUrl: './anna-notify-icon-template.component.html',
|
|
6
|
-
styleUrls: ['./anna-notify-icon-template.component.scss']
|
|
7
|
-
})
|
|
8
|
-
export class AnnaNotifyIconTemplateComponent implements OnInit {
|
|
9
|
-
|
|
10
|
-
constructor() { }
|
|
11
|
-
|
|
12
|
-
ngOnInit(): void {
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<ng-container [ngTemplateOutlet]="PayForPerformanceIcon"
|
|
2
|
-
[ngTemplateOutletContext]="{ color: color,width: width,height:height}">
|
|
3
|
-
</ng-container>
|
|
4
|
-
|
|
5
|
-
<ng-template #PayForPerformanceIcon let-color="color" let-width="width" let-height="height">
|
|
6
|
-
<svg [attr.width]="width" [attr.height]="height" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
7
|
-
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
8
|
-
<g id="02.-PAY-FOR-PERFORMANCE-MARKED" transform="translate(-100.000000, -537.000000)" [attr.fill]="color" fill-rule="nonzero">
|
|
9
|
-
<g id="PFP" transform="translate(100.000000, 537.000000)">
|
|
10
|
-
<path d="M20,3.125 L20,8.3984375 C20,8.82995605 19.6502686,9.1796875 19.21875,9.1796875 C18.7872314,9.1796875 18.4375,8.82995605 18.4375,8.3984375 L18.4375,3.125 C18.4375,2.26348875 17.7365112,1.5625 16.875,1.5625 L3.125,1.5625 C2.26348875,1.5625 1.5625,2.26348875 1.5625,3.125 L1.5625,16.875 C1.5625,17.7365112 2.26348875,18.4375 3.125,18.4375 L12.96875,18.4375 C13.4002686,18.4375 13.75,18.7872314 13.75,19.21875 C13.75,19.6502686 13.4002686,20 12.96875,20 L3.125,20 C1.40182496,20 0,18.598175 0,16.875 L0,3.125 C0,1.40182496 1.40182496,0 3.125,0 L16.875,0 C18.598175,0 20,1.40182496 20,3.125 Z M15.9622314,5.43584332 C15.9447753,5.38514929 15.9230346,5.33649554 15.8936766,5.29255022 C15.8924071,5.290196 15.891455,5.28799875 15.8901855,5.28580147 C15.8589232,5.23981585 15.8206786,5.19995115 15.7789427,5.16322545 C15.7689451,5.15427945 15.7584715,5.1459612 15.7475217,5.13764299 C15.7022947,5.10280065 15.6545285,5.07203893 15.6008908,5.04975236 C15.6008908,5.04975236 15.6008908,5.04975236 15.6005734,5.04975236 C15.5488399,5.02825056 15.4929805,5.01600867 15.4358516,5.00863213 C15.4218867,5.00674875 15.4082392,5.00549317 15.3942744,5.00455147 C15.3791987,5.0036098 15.3652338,5 15.3499994,5 L13.0749975,5 C12.7161959,5 12.4249969,5.28799875 12.4249969,5.64285714 C12.4249969,5.99771553 12.7161959,6.28571429 13.0749975,6.28571429 L13.7624492,6.28571429 L11.4499961,8.53571429 C11.4415854,8.52708216 11.4320639,8.5182931 11.4230185,8.5102888 L10.4034253,7.61160714 C9.89545371,7.12554061 9.08263561,7.13071987 8.58291595,7.62416295 L3.19264032,12.9001116 C2.937623,13.1498152 2.93555998,13.557094 3.18787956,13.8094657 C3.31530888,13.9362793 3.48225238,14 3.64998933,14 C3.8153459,14 3.98054383,13.9383196 4.10733834,13.8141741 L9.5,8.53571429 C9.50840503,8.54434641 9.51792652,8.55313547 9.52697193,8.56113977 L10.5462477,9.45982143 C10.7899979,9.69320244 11.1100788,9.82142857 11.4499961,9.82142857 C11.7970545,9.82142857 12.1233243,9.68770926 12.3651702,9.44852121 L14.6999989,7.1770194 L14.6999989,7.89285714 C14.6999989,8.24771553 14.9911979,8.53571429 15.3499994,8.53571429 C15.708801,8.53571429 16,8.24771553 16,7.89285714 L16,5.64285714 C16,5.58431572 15.9895264,5.52844239 15.9746094,5.47445244 C15.9711181,5.46126884 15.9668335,5.44871304 15.9622314,5.43584332 Z M17.7789307,14.21875 L17.0629883,14.21875 C16.71875,14.21875 16.4280701,13.9146423 16.4280701,13.5546875 L16.4280701,13.2698059 C16.4280701,12.9200745 16.7010498,12.65625 17.0629883,12.65625 L17.7400207,12.65625 C17.9388428,12.65625 18.1446838,12.7894592 18.1446838,13.0123902 C18.1446838,13.4437561 18.4945679,13.7936402 18.9259338,13.7936402 C19.3574524,13.7936402 19.7071838,13.4437561 19.7071838,13.0123902 C19.7071838,12.0761109 19.0158081,11.2947082 18.1048584,11.1273193 L18.1048584,10.625 C18.1048584,10.1934814 17.755127,9.84375 17.3236084,9.84375 C16.8920898,9.84375 16.5423584,10.1934814 16.5423584,10.625 L16.5423584,11.1541748 C16.1557007,11.2454223 15.8015442,11.4382934 15.5142212,11.7193604 C15.0959778,12.1286011 14.8655701,12.6792908 14.8655701,13.2696533 L14.8655701,13.5546875 C14.8655701,14.7824097 15.8512879,15.78125 17.0629883,15.78125 L17.7789307,15.78125 C18.1373596,15.78125 18.4181213,16.053009 18.4181213,16.3999939 L18.4181213,16.5917969 C18.4181213,16.9313049 18.1433105,17.1875 17.7789307,17.1875 L16.615448,17.1875 C16.4233398,17.1875 16.2290955,17.0666504 16.2290955,16.8359375 C16.2290955,16.4044189 15.879364,16.0546875 15.4478455,16.0546875 C15.0163269,16.0546875 14.6665955,16.4044189 14.6665955,16.8359375 C14.6665955,17.8851318 15.4847717,18.7117004 16.5423584,18.7481689 L16.5423584,19.1796875 C16.5423584,19.6112061 16.8920898,19.9609375 17.3236084,19.9609375 C17.755127,19.9609375 18.1048584,19.6112061 18.1048584,19.1796875 L18.1048584,18.7272644 C19.1795349,18.5771179 19.9806213,17.6931763 19.9806213,16.5917969 L19.9806213,16.3999939 C19.9806213,15.8096313 19.7496033,15.2581787 19.3299866,14.8472595 C18.9161682,14.4419861 18.3653259,14.21875 17.7789307,14.21875 Z" id="Shape-Copy-9"></path>
|
|
11
|
-
</g>
|
|
12
|
-
</g>
|
|
13
|
-
</g>
|
|
14
|
-
</svg>
|
|
15
|
-
</ng-template>
|
|
File without changes
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { AnnaPayForPerformanceIconTemplateComponent } from './anna-pay-for-performance-icon-template.component';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
describe('AnnaPayForPerformanceIconTemplateComponent', () => {
|
|
6
|
-
let component: AnnaPayForPerformanceIconTemplateComponent;
|
|
7
|
-
let fixture: ComponentFixture<AnnaPayForPerformanceIconTemplateComponent>;
|
|
8
|
-
|
|
9
|
-
beforeEach(async(() => {
|
|
10
|
-
TestBed.configureTestingModule({
|
|
11
|
-
declarations: [ AnnaPayForPerformanceIconTemplateComponent ]
|
|
12
|
-
})
|
|
13
|
-
.compileComponents();
|
|
14
|
-
}));
|
|
15
|
-
|
|
16
|
-
beforeEach(() => {
|
|
17
|
-
fixture = TestBed.createComponent(AnnaPayForPerformanceIconTemplateComponent);
|
|
18
|
-
component = fixture.componentInstance;
|
|
19
|
-
fixture.detectChanges();
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
it('should create', () => {
|
|
23
|
-
expect(component).toBeTruthy();
|
|
24
|
-
});
|
|
25
|
-
});
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
@Component({
|
|
4
|
-
selector: 'anna-pay-for-performance-icon-template',
|
|
5
|
-
templateUrl: './anna-pay-for-performance-icon-template.component.html',
|
|
6
|
-
styleUrls: ['./anna-pay-for-performance-icon-template.component.scss'],
|
|
7
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8
|
-
})
|
|
9
|
-
export class AnnaPayForPerformanceIconTemplateComponent implements OnInit {
|
|
10
|
-
|
|
11
|
-
@Input() color: string;
|
|
12
|
-
@Input() width: string;
|
|
13
|
-
@Input() height: string;
|
|
14
|
-
constructor() { }
|
|
15
|
-
|
|
16
|
-
ngOnInit() {
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<ng-container [ngTemplateOutlet]="rejectedIcon"></ng-container>
|
|
2
|
-
|
|
3
|
-
<ng-template #rejectedIcon>
|
|
4
|
-
<svg width="15px" height="15px" viewBox="0 0 20 20">
|
|
5
|
-
<g id="Buyer-rejected-icon" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
6
|
-
<path
|
|
7
|
-
d="M15.7822266,4.21777344 C14.3671875,2.80276367 12.4951465,2 10.5,2 C6.37918945,2 3,5.37253906 3,9.5 C3,13.6296289 6.37133789,17 10.5,17 C14.6105273,17 18,13.6429004 18,9.5 C18,7.50485352 17.1972656,5.6327832 15.7822266,4.21777344 Z M10.5,15.2128906 C7.34220703,15.2128906 4.78710938,12.664502 4.78710938,9.5 C4.78710938,8.26950195 5.17382812,7.10055664 5.88574219,6.13375977 L13.8662402,14.1054395 C12.8993848,14.8261719 11.730498,15.2128906 10.5,15.2128906 Z M15.1054688,12.8661816 L7.13375977,4.88574219 C8.10061523,4.17382813 9.26950195,3.78710938 10.5,3.78710938 C13.6578809,3.78710938 16.2128906,6.33549805 16.2128906,9.5 C16.2128906,10.7304395 15.8261719,11.8993848 15.1054688,12.8661816 Z"
|
|
8
|
-
id="Shape"
|
|
9
|
-
fill="#4A4A4A"
|
|
10
|
-
fill-rule="nonzero"
|
|
11
|
-
></path>
|
|
12
|
-
</g>
|
|
13
|
-
</svg>
|
|
14
|
-
</ng-template>
|
|
File without changes
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { AnnaRejectedIconTemplateComponent } from './anna-rejected-icon-template.component';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
describe('RejectedIconTemplateComponent', () => {
|
|
6
|
-
let component: AnnaRejectedIconTemplateComponent;
|
|
7
|
-
let fixture: ComponentFixture<AnnaRejectedIconTemplateComponent>;
|
|
8
|
-
|
|
9
|
-
beforeEach(async () => {
|
|
10
|
-
await TestBed.configureTestingModule({
|
|
11
|
-
declarations: [ AnnaRejectedIconTemplateComponent ]
|
|
12
|
-
})
|
|
13
|
-
.compileComponents();
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
beforeEach(() => {
|
|
17
|
-
fixture = TestBed.createComponent(AnnaRejectedIconTemplateComponent);
|
|
18
|
-
component = fixture.componentInstance;
|
|
19
|
-
fixture.detectChanges();
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
it('should create', () => {
|
|
23
|
-
expect(component).toBeTruthy();
|
|
24
|
-
});
|
|
25
|
-
});
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Component, OnInit } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
@Component({
|
|
4
|
-
selector: 'anna-rejected-icon-template',
|
|
5
|
-
templateUrl: './anna-rejected-icon-template.component.html',
|
|
6
|
-
styleUrls: ['./anna-rejected-icon-template.component.scss']
|
|
7
|
-
})
|
|
8
|
-
export class AnnaRejectedIconTemplateComponent implements OnInit {
|
|
9
|
-
|
|
10
|
-
constructor() { }
|
|
11
|
-
|
|
12
|
-
ngOnInit(): void {
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
export class Constants {
|
|
2
|
-
static readonly SUCCESS_STRING = "success";
|
|
3
|
-
static readonly BACKEND_SERVER_URL = "/server/public/index.php/api";
|
|
4
|
-
static readonly ERROR_MSG = "Error occurred please try again.";
|
|
5
|
-
static readonly NO_DATA_MSG = "No Data to display";
|
|
6
|
-
static readonly SERVER_ERROR = "Server error. Please try Again";
|
|
7
|
-
static readonly USER_ORIGIN = "ANNA";
|
|
8
|
-
static readonly ACTIVE_USER_STATUS = "active";
|
|
9
|
-
static readonly DELETED_USER_STATUS = "deleted";
|
|
10
|
-
static readonly INACTIVE_USER_STATUS = "inactive";
|
|
11
|
-
static readonly OGAdminRole = "OG-admin";
|
|
12
|
-
static readonly dollars = "$";
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export class ErrorCodes {
|
|
16
|
-
static readonly BAD_REQUEST = 400;
|
|
17
|
-
static readonly SERVER_ERROR = 500;
|
|
18
|
-
static readonly SUCCESS_CODE = 200;
|
|
19
|
-
static readonly SUCCESS_CODE_GET = 200;
|
|
20
|
-
static readonly SUCCESS_CODE_POST = 201;
|
|
21
|
-
static readonly SUCCESS_CODE_PATCH = 204;
|
|
22
|
-
static readonly NO_CONTENT = 204;
|
|
23
|
-
static readonly under_review = 409;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export enum Days {
|
|
27
|
-
M = 1,
|
|
28
|
-
Tu = 2,
|
|
29
|
-
We = 3,
|
|
30
|
-
Th = 4,
|
|
31
|
-
F = 5,
|
|
32
|
-
Sa = 6,
|
|
33
|
-
Su = 7,
|
|
34
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./public-api";
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
export class tooltipModel {
|
|
2
|
-
isSelected: boolean;
|
|
3
|
-
data: string;
|
|
4
|
-
|
|
5
|
-
constructor(obj: string) {
|
|
6
|
-
this.data = obj;
|
|
7
|
-
this.isSelected = false;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export class tooltipModelForColumnLevelFiltering {
|
|
12
|
-
isHidden;
|
|
13
|
-
isSelected: boolean;
|
|
14
|
-
data: string;
|
|
15
|
-
constructor(data: string) {
|
|
16
|
-
this.data = data;
|
|
17
|
-
this.isSelected = true;
|
|
18
|
-
this.isHidden = false;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export class radioButtonModel {
|
|
23
|
-
key: string;
|
|
24
|
-
label: string;
|
|
25
|
-
|
|
26
|
-
constructor(key: string, value: string) {
|
|
27
|
-
this.key = key;
|
|
28
|
-
this.label = value;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export enum AllSelectedStatus {
|
|
33
|
-
none = 0,
|
|
34
|
-
allSelected = 1,
|
|
35
|
-
fewSelected = 2,
|
|
36
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { Pipe, PipeTransform } from "@angular/core";
|
|
2
|
-
import { memoize } from "lodash-es";
|
|
3
|
-
|
|
4
|
-
@Pipe({
|
|
5
|
-
name: "AnnafilterSearchedText",
|
|
6
|
-
})
|
|
7
|
-
export class AnnaFilterSearchedTextPipe implements PipeTransform {
|
|
8
|
-
callFilter = memoize(this.filter, (...args) => this.filter(args[0], args[1], args[2]));
|
|
9
|
-
|
|
10
|
-
transform(items: any[], searchText: any, keyName?: any): any[] {
|
|
11
|
-
return this.callFilter(items, searchText, keyName);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
filter(items: any[], searchText: string, keyName?: any): any[] {
|
|
15
|
-
if (!items) return [];
|
|
16
|
-
if (!searchText) return items;
|
|
17
|
-
searchText = searchText.toString().toLowerCase();
|
|
18
|
-
|
|
19
|
-
//if keyName is undefined every key will be considered for filtering.
|
|
20
|
-
if (!keyName)
|
|
21
|
-
return items.filter(
|
|
22
|
-
(item) => Object.values(item).filter((n) => n.toString().toLowerCase().includes(searchText)).length > 0
|
|
23
|
-
);
|
|
24
|
-
return items.filter((item) => item[keyName].toString().toLowerCase().startsWith(searchText));
|
|
25
|
-
}
|
|
26
|
-
}
|
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
$primary-color: #268bff;
|
|
2
|
-
$background-white: #ffffff;
|
|
3
|
-
$lightGray: #d3d3d3;
|
|
4
|
-
$lightGray-1: #f1f1f1;
|
|
5
|
-
$lightGray-2: #b3b3b3;
|
|
6
|
-
$lightGray-3: #ededed;
|
|
7
|
-
$lightGray-4: #d4d4d4;
|
|
8
|
-
$lightGray-5: #e6e6e6;
|
|
9
|
-
$lightGray-6: #c8c8c8;
|
|
10
|
-
$lightGray-7: #9b9b9b;
|
|
11
|
-
$lightGray-9: #d9e1e6;
|
|
12
|
-
$lightGray-8: #b7b7b7;
|
|
13
|
-
$dimGray: #747474;
|
|
14
|
-
$lightDimGray: #666666;
|
|
15
|
-
$coralRed: #ff4747;
|
|
16
|
-
$greenCyan: #00c853;
|
|
17
|
-
$bookedColor: #9b1b93;
|
|
18
|
-
$orderedColor: #d780d1;
|
|
19
|
-
$billableColor: #f2bdef;
|
|
20
|
-
$nationalColor: #f5dd31;
|
|
21
|
-
$localColor: #8db72e;
|
|
22
|
-
$lavenderBlue: #c7e1ff;
|
|
23
|
-
$aliceBlue: #e3f0ff;
|
|
24
|
-
$dodgerBlue: #1582ff;
|
|
25
|
-
$lightGrey: #d6d6d6;
|
|
26
|
-
$coldTurkey: #ceb6b6;
|
|
27
|
-
$lightSilver: #d8d8d8;
|
|
28
|
-
$GraythirtySeven: #5e5e5e;
|
|
29
|
-
$charcoal: #4a4a4a;
|
|
30
|
-
$sellerReviewColor: #f3bd18;
|
|
31
|
-
$buyerReviewColor: #1565c0;
|
|
32
|
-
$reviewCompleteColor: #00c853;
|
|
33
|
-
$recoveredPreemptionColor: #0071ce;
|
|
34
|
-
$deepSkyBlue: #00b0ff;
|
|
35
|
-
$licorice: #2e384d;
|
|
36
|
-
$navyBlue: #0071ce;
|
|
37
|
-
$nobelGray: #b7b6b6;
|
|
38
|
-
$whiteSmoke: #f7f6f6;
|
|
39
|
-
$gray: #979797;
|
|
40
|
-
$paleBlue: #c2cfd6;
|
|
41
|
-
$lightViolet: #9169fc;
|
|
42
|
-
$dimViolet: #e5dbff;
|
|
43
|
-
$darkViolet: #555099;
|
|
44
|
-
$whisper: #e9e9e9;
|
|
45
|
-
$lynxWhite: #f7f7f7;
|
|
46
|
-
$lightAliceBlue: #e5f1ff;
|
|
47
|
-
$veryLightGrey: #cfcfcf;
|
|
48
|
-
$darkCharcoal: #333333;
|
|
49
|
-
$noRevisionFound: #f47228;
|
|
50
|
-
$redOrange: #f44336;
|
|
51
|
-
$DRRBgColor: #edecec;
|
|
52
|
-
$darkYellowWarning: #f3c639;
|
|
53
|
-
$lightYellow: #fff8e3;
|
|
54
|
-
$filterRadioContainer: #f4f4f4;
|
|
55
|
-
$oliveGreen: #8bac2a;
|
|
56
|
-
$calendarLabel: #222b45;
|
|
57
|
-
$olivedrab: #6b8e23;
|
|
58
|
-
$redOrange: #fe3824;
|
|
59
|
-
$chineseSilver: #cccccc;
|
|
60
|
-
$grey: #767676;
|
|
61
|
-
$primary-success: #47d490;
|
|
62
|
-
$secondary-success: #ebf6f1;
|
|
63
|
-
$primary-warning: #f3c639;
|
|
64
|
-
$secondary-warning: #fff8e3;
|
|
65
|
-
$primary-dark: #90a4ae;
|
|
66
|
-
$secondary-dark: #ebedee;
|
|
67
|
-
$primary-danger: #fc8383;
|
|
68
|
-
$secondary-danger: #ffeded;
|
|
69
|
-
$Gray94: #f0f0f0;
|
|
70
|
-
$whisper: #ededed;
|
|
71
|
-
$whiteSmoke2: #f4f4f4;
|
|
72
|
-
$pinkSwan: #b5b5b5;
|
|
73
|
-
$matterhorn: #4f4f4f;
|
|
74
|
-
$lightGrey: #d4d4d4;
|
|
75
|
-
$gray74: #bdbdbd;
|
|
76
|
-
$gray86: #dbdbdb;
|
|
77
|
-
$darkBlueShade: #222b45;
|
|
78
|
-
$green: #8bac2a;
|
|
79
|
-
$darkPurpleShade: #555099;
|
|
80
|
-
$pattensBlue: #d8eaff;
|
|
81
|
-
$quartz: #dddceb;
|
|
82
|
-
$darkGray: #a7a7a7;
|
|
83
|
-
$darkGray1: #cbcbcb;
|
|
84
|
-
$awaitingSellerReview: #f7f2d1;
|
|
85
|
-
$awaitingSellerReviewBorder: #dec30b;
|
|
86
|
-
$amber: #ffc107;
|
|
87
|
-
$whiteSmoke3: #efefef;
|
|
88
|
-
$greyChateau: #a2a8ad;
|
|
89
|
-
$roseBud: #f9b3ae;
|
|
90
|
-
$paleRed: #fde4e3;
|
|
91
|
-
$redOrange3: #f44336;
|
|
92
|
-
$redOrange4: #fe3824;
|
|
93
|
-
$gray43: #6e6e6e;
|
|
94
|
-
$dodgerBlue2: #4099ff;
|
|
95
|
-
$fruitSalad: #43a047;
|
|
96
|
-
$nero: #212121;
|
|
97
|
-
$darkGray2: #a4a4a4;
|
|
98
|
-
$pinkSwan: #b7b7b7;
|
|
99
|
-
$blue: #d8eaff;
|
|
100
|
-
$lightBlue: #eff6ff;
|
|
101
|
-
$sunsetOrange: #ff5353;
|
|
102
|
-
$redShade: #ff5252;
|
|
103
|
-
$lightBlueShade: #d6dcff;
|
|
104
|
-
$blueBerry: #536dfe;
|
|
105
|
-
$darkPink: #be489d;
|
|
106
|
-
$lightPinkShade: #f4e7f2;
|
|
107
|
-
$sellerGroupChildRow: #F9F3F8;
|