@annalib/anna-core 0.0.7 → 1.0.2
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/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.mjs +6 -6
- package/esm2020/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.mjs +35 -0
- package/esm2020/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.mjs +6 -6
- package/esm2020/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.mjs +6 -6
- package/esm2020/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.mjs +6 -6
- package/esm2020/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.mjs +4 -4
- package/esm2020/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.mjs +6 -6
- package/esm2020/lib/anna-core-shared-lib/constants/shared.constant.mjs +3 -2
- package/esm2020/lib/anna-core-shared-lib/directives/digits-only/digits-only.directive.mjs +281 -0
- package/esm2020/lib/anna-core-shared-lib/directives/show-ellipsis-text/show-ellipsis-text.directive.mjs +27 -0
- package/esm2020/lib/anna-core-shared-lib/models/anna-generic-data-type.model.mjs +1 -1
- package/esm2020/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.mjs +1 -1
- package/esm2020/lib/anna-core-shared-lib/models/anna-manage-users.model.mjs +8 -0
- package/esm2020/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +11 -3
- package/esm2020/lib/anna-core-shared-lib/models/anna-sort.model.mjs +7 -0
- package/esm2020/lib/anna-core-shared-lib/models/anna-tooltip.model.mjs +9 -5
- package/esm2020/lib/anna-core-shared-lib/pipes/annaConvertZeroOrNullOrUndefined.pipe.mjs +26 -0
- package/esm2020/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.mjs +23 -8
- package/esm2020/lib/anna-core-shared-lib/pipes/annaReplaceChar.pipe.mjs +25 -0
- package/esm2020/lib/anna-core-shared-lib/pipes/annaTypeOfData.pipe.mjs +16 -0
- package/esm2020/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +52 -34
- package/esm2020/lib/anna-core-shared-lib/services/anna-filter.service.mjs +238 -281
- package/esm2020/lib/anna-core-shared-lib/services/anna-generic-table.service.mjs +98 -15
- package/esm2020/lib/anna-core-shared-lib/services/anna-global-config.service.mjs +4 -5
- package/esm2020/lib/anna-core-shared-lib/services/anna-number-format.service.mjs +41 -0
- package/esm2020/lib/anna-core-shared-lib/services/anna-persisting-filter.service.mjs +60 -0
- package/esm2020/lib/anna-core-shared-lib/services/anna-sort.service.mjs +91 -125
- package/esm2020/lib/anna-core.module.mjs +178 -0
- package/esm2020/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +38 -13
- package/esm2020/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.mjs +27 -23
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +1419 -499
- package/esm2020/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +46 -107
- package/esm2020/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.mjs +7 -7
- 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 +5 -5
- package/esm2020/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.mjs +3 -3
- package/esm2020/public-api.mjs +48 -4
- package/fesm2015/annalib-anna-core.mjs +4498 -3079
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +4694 -3279
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.d.ts +1 -1
- package/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.d.ts +16 -0
- package/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.d.ts +1 -1
- package/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.d.ts +1 -1
- package/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.d.ts +1 -1
- package/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.d.ts +1 -1
- package/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.d.ts +1 -1
- package/lib/anna-core-shared-lib/constants/shared.constant.d.ts +2 -1
- package/lib/anna-core-shared-lib/directives/digits-only/digits-only.directive.d.ts +34 -0
- package/lib/anna-core-shared-lib/directives/show-ellipsis-text/show-ellipsis-text.directive.d.ts +9 -0
- package/lib/anna-core-shared-lib/models/anna-generic-data-type.model.d.ts +8 -0
- package/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.d.ts +1 -0
- package/lib/anna-core-shared-lib/models/anna-manage-users.model.d.ts +6 -0
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +52 -10
- package/lib/anna-core-shared-lib/models/anna-sort.model.d.ts +11 -0
- package/lib/anna-core-shared-lib/models/anna-tooltip.model.d.ts +8 -4
- package/lib/anna-core-shared-lib/pipes/annaConvertZeroOrNullOrUndefined.pipe.d.ts +9 -0
- package/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.d.ts +1 -1
- package/lib/anna-core-shared-lib/pipes/annaReplaceChar.pipe.d.ts +9 -0
- package/lib/anna-core-shared-lib/pipes/annaTypeOfData.pipe.d.ts +7 -0
- package/lib/anna-core-shared-lib/services/anna-date-time-format.service.d.ts +2 -0
- package/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +26 -20
- package/lib/anna-core-shared-lib/services/anna-generic-table.service.d.ts +21 -5
- package/lib/anna-core-shared-lib/services/anna-number-format.service.d.ts +7 -0
- package/lib/anna-core-shared-lib/services/anna-persisting-filter.service.d.ts +8 -0
- package/lib/anna-core-shared-lib/services/anna-sort.service.d.ts +7 -14
- package/lib/anna-core.module.d.ts +36 -0
- package/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.d.ts +12 -7
- package/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.d.ts +5 -2
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +165 -40
- package/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.d.ts +12 -22
- package/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.d.ts +3 -3
- 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 +1 -1
- package/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.d.ts +1 -1
- package/package.json +11 -34
- package/public-api.d.ts +35 -3
- package/src/lib/anna-assets/images/bg-heads.png +0 -0
- package/src/lib/anna-common-scss/_animate.scss +27 -0
- package/src/lib/anna-common-scss/_application-spacing.scss +6 -0
- package/src/lib/anna-common-scss/_bootstrap-tooltip.scss +25 -0
- package/src/lib/anna-common-scss/_colors.scss +107 -0
- package/src/lib/anna-common-scss/_customDropdown.scss +129 -0
- package/src/lib/anna-common-scss/_dashboard-partials.scss +104 -0
- package/src/lib/anna-common-scss/_date-picker-form.scss +87 -0
- package/src/lib/anna-common-scss/_filters.scss +641 -0
- package/src/lib/anna-common-scss/_font.scss +10 -0
- package/src/lib/anna-common-scss/_fonts.scss +86 -0
- package/src/lib/anna-common-scss/_generic-table-common.scss +112 -0
- package/src/lib/anna-common-scss/_legend.scss +11 -0
- package/src/lib/anna-common-scss/_mixins.scss +188 -0
- package/src/lib/anna-common-scss/_modal.scss +37 -0
- package/src/lib/anna-common-scss/_ng-select.scss +176 -0
- package/src/lib/anna-common-scss/_sort.scss +30 -0
- package/src/lib/anna-common-scss/_toggle.scss +84 -0
- package/src/lib/anna-common-scss/style.scss +1 -0
- package/esm2020/lib/anna-core-shared-lib/anna-core-shared-lib.module.mjs +0 -59
- package/esm2020/lib/anna-core-shared-lib/index.mjs +0 -2
- package/esm2020/lib/anna-core-shared-lib/public-api.mjs +0 -25
- package/esm2020/lib/anna-dropdown-lib/anna-dropdown-lib.module.mjs +0 -43
- package/esm2020/lib/anna-dropdown-lib/index.mjs +0 -2
- package/esm2020/lib/anna-dropdown-lib/public-api.mjs +0 -6
- package/esm2020/lib/anna-generic-table-lib/anna-generic-table-lib.module.mjs +0 -86
- package/esm2020/lib/anna-generic-table-lib/index.mjs +0 -2
- package/esm2020/lib/anna-generic-table-lib/public-api.mjs +0 -10
- package/esm2020/src/lib/anna-core-shared-lib/anna-core-shared-lib.module.mjs +0 -59
- package/esm2020/src/lib/anna-core-shared-lib/annalib-anna-core-src-lib-anna-core-shared-lib.mjs +0 -5
- package/esm2020/src/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.mjs +0 -15
- package/esm2020/src/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.mjs +0 -15
- package/esm2020/src/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.mjs +0 -22
- package/esm2020/src/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.mjs +0 -15
- package/esm2020/src/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.mjs +0 -21
- package/esm2020/src/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.mjs +0 -15
- package/esm2020/src/lib/anna-core-shared-lib/constants/shared.constant.mjs +0 -34
- package/esm2020/src/lib/anna-core-shared-lib/models/anna-generic-data-type.model.mjs +0 -2
- package/esm2020/src/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.mjs +0 -2
- package/esm2020/src/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +0 -3
- package/esm2020/src/lib/anna-core-shared-lib/models/anna-tooltip.model.mjs +0 -26
- package/esm2020/src/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.mjs +0 -31
- package/esm2020/src/lib/anna-core-shared-lib/public-api.mjs +0 -25
- package/esm2020/src/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +0 -180
- package/esm2020/src/lib/anna-core-shared-lib/services/anna-filter.service.mjs +0 -536
- package/esm2020/src/lib/anna-core-shared-lib/services/anna-generic-table.service.mjs +0 -52
- package/esm2020/src/lib/anna-core-shared-lib/services/anna-global-config.service.mjs +0 -133
- package/esm2020/src/lib/anna-core-shared-lib/services/anna-sort.service.mjs +0 -185
- package/esm2020/src/lib/anna-dropdown-lib/anna-dropdown-lib.module.mjs +0 -43
- package/esm2020/src/lib/anna-dropdown-lib/annalib-anna-core-src-lib-anna-dropdown-lib.mjs +0 -5
- package/esm2020/src/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +0 -76
- package/esm2020/src/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.mjs +0 -360
- package/esm2020/src/lib/anna-dropdown-lib/public-api.mjs +0 -6
- package/esm2020/src/lib/anna-generic-table-lib/anna-generic-table-lib.module.mjs +0 -86
- package/esm2020/src/lib/anna-generic-table-lib/annalib-anna-core-src-lib-anna-generic-table-lib.mjs +0 -5
- package/esm2020/src/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +0 -997
- package/esm2020/src/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +0 -125
- package/esm2020/src/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.mjs +0 -357
- 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 +0 -189
- package/esm2020/src/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/index.mjs +0 -2
- package/esm2020/src/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.mjs +0 -178
- package/esm2020/src/lib/anna-generic-table-lib/directives/anna-virtual-table/index.mjs +0 -2
- package/esm2020/src/lib/anna-generic-table-lib/public-api.mjs +0 -10
- package/fesm2015/annalib-anna-core-src-lib-anna-core-shared-lib.mjs +0 -1294
- package/fesm2015/annalib-anna-core-src-lib-anna-core-shared-lib.mjs.map +0 -1
- package/fesm2015/annalib-anna-core-src-lib-anna-dropdown-lib.mjs +0 -474
- package/fesm2015/annalib-anna-core-src-lib-anna-dropdown-lib.mjs.map +0 -1
- package/fesm2015/annalib-anna-core-src-lib-anna-generic-table-lib.mjs +0 -1895
- package/fesm2015/annalib-anna-core-src-lib-anna-generic-table-lib.mjs.map +0 -1
- package/fesm2020/annalib-anna-core-src-lib-anna-core-shared-lib.mjs +0 -1294
- package/fesm2020/annalib-anna-core-src-lib-anna-core-shared-lib.mjs.map +0 -1
- package/fesm2020/annalib-anna-core-src-lib-anna-dropdown-lib.mjs +0 -472
- package/fesm2020/annalib-anna-core-src-lib-anna-dropdown-lib.mjs.map +0 -1
- package/fesm2020/annalib-anna-core-src-lib-anna-generic-table-lib.mjs +0 -1894
- package/fesm2020/annalib-anna-core-src-lib-anna-generic-table-lib.mjs.map +0 -1
- package/lib/anna-core-shared-lib/anna-core-shared-lib.module.d.ts +0 -14
- package/lib/anna-core-shared-lib/index.d.ts +0 -1
- package/lib/anna-core-shared-lib/public-api.d.ts +0 -18
- package/lib/anna-dropdown-lib/anna-dropdown-lib.module.d.ts +0 -11
- package/lib/anna-dropdown-lib/index.d.ts +0 -1
- package/lib/anna-dropdown-lib/public-api.d.ts +0 -3
- package/lib/anna-generic-table-lib/anna-generic-table-lib.module.d.ts +0 -21
- package/lib/anna-generic-table-lib/index.d.ts +0 -1
- package/lib/anna-generic-table-lib/public-api.d.ts +0 -6
- package/src/lib/anna-core-shared-lib/anna-core-shared-lib.module.d.ts +0 -14
- package/src/lib/anna-core-shared-lib/annalib-anna-core-src-lib-anna-core-shared-lib.d.ts +0 -5
- package/src/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.d.ts +0 -8
- package/src/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.d.ts +0 -8
- package/src/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.d.ts +0 -11
- package/src/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.d.ts +0 -8
- package/src/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.d.ts +0 -11
- package/src/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.d.ts +0 -8
- package/src/lib/anna-core-shared-lib/constants/shared.constant.d.ts +0 -32
- package/src/lib/anna-core-shared-lib/models/anna-generic-data-type.model.d.ts +0 -8
- package/src/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.d.ts +0 -95
- package/src/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +0 -70
- package/src/lib/anna-core-shared-lib/models/anna-tooltip.model.d.ts +0 -21
- package/src/lib/anna-core-shared-lib/package.json +0 -10
- package/src/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.d.ts +0 -9
- package/src/lib/anna-core-shared-lib/public-api.d.ts +0 -18
- package/src/lib/anna-core-shared-lib/services/anna-date-time-format.service.d.ts +0 -25
- package/src/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +0 -68
- package/src/lib/anna-core-shared-lib/services/anna-generic-table.service.d.ts +0 -14
- package/src/lib/anna-core-shared-lib/services/anna-global-config.service.d.ts +0 -21
- package/src/lib/anna-core-shared-lib/services/anna-sort.service.d.ts +0 -23
- package/src/lib/anna-dropdown-lib/anna-dropdown-lib.module.d.ts +0 -11
- package/src/lib/anna-dropdown-lib/annalib-anna-core-src-lib-anna-dropdown-lib.d.ts +0 -5
- package/src/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.d.ts +0 -29
- package/src/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.d.ts +0 -67
- package/src/lib/anna-dropdown-lib/package.json +0 -10
- package/src/lib/anna-dropdown-lib/public-api.d.ts +0 -3
- package/src/lib/anna-generic-table-lib/anna-generic-table-lib.module.d.ts +0 -21
- package/src/lib/anna-generic-table-lib/annalib-anna-core-src-lib-anna-generic-table-lib.d.ts +0 -5
- package/src/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +0 -173
- package/src/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.d.ts +0 -27
- package/src/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.d.ts +0 -141
- 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 +0 -89
- package/src/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/index.d.ts +0 -1
- package/src/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.d.ts +0 -45
- package/src/lib/anna-generic-table-lib/directives/anna-virtual-table/index.d.ts +0 -1
- package/src/lib/anna-generic-table-lib/package.json +0 -10
- package/src/lib/anna-generic-table-lib/public-api.d.ts +0 -6
- /package/{annalib-anna-core.d.ts → index.d.ts} +0 -0
|
@@ -0,0 +1,107 @@
|
|
|
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;
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
@import "./colors", "./fonts";
|
|
2
|
+
|
|
3
|
+
//Common styling
|
|
4
|
+
#dropdown-trigger {
|
|
5
|
+
height: 1.875rem;
|
|
6
|
+
background: white;
|
|
7
|
+
border-radius: 2px;
|
|
8
|
+
border: 1px solid $lightGray-8;
|
|
9
|
+
width: 100%;
|
|
10
|
+
text-align: left;
|
|
11
|
+
&:disabled{
|
|
12
|
+
background-color: $gray74;
|
|
13
|
+
opacity: 0.5;
|
|
14
|
+
& .placeholder, .icon {
|
|
15
|
+
color: #000;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.placeholder {
|
|
21
|
+
color: $gray74;
|
|
22
|
+
@include fonts(Roboto, 14px, normal, normal, normal, normal, normal);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// #dropdown-trigger:disabled .placeholder {
|
|
26
|
+
// color: #000;
|
|
27
|
+
// }
|
|
28
|
+
|
|
29
|
+
.icon {
|
|
30
|
+
font-size: 1.125rem;
|
|
31
|
+
float: right;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.search-bar {
|
|
35
|
+
margin: 9px 7px 8px 7px;
|
|
36
|
+
border: 1px solid $pinkSwan;
|
|
37
|
+
height: 1.875rem;
|
|
38
|
+
border-radius: 2px;
|
|
39
|
+
input {
|
|
40
|
+
outline: none;
|
|
41
|
+
border: none;
|
|
42
|
+
position: relative;
|
|
43
|
+
bottom: 4px;
|
|
44
|
+
width: calc(100% - 29px);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.search-icon {
|
|
48
|
+
font-size: 1.125rem;
|
|
49
|
+
color: $lightGray-7;
|
|
50
|
+
margin: 5px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.close-icon{
|
|
54
|
+
cursor: pointer;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
ul {
|
|
59
|
+
overflow-y: auto;
|
|
60
|
+
padding-left: 0;
|
|
61
|
+
padding-bottom: 0;
|
|
62
|
+
margin-bottom: 0;
|
|
63
|
+
max-height: calc(50vh - 80px) !important;
|
|
64
|
+
// min-heightw: 70px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
li {
|
|
68
|
+
list-style-type: none;
|
|
69
|
+
cursor: pointer;
|
|
70
|
+
padding-inline: 6px;
|
|
71
|
+
@include fonts(Roboto, 14px, normal, normal, normal, 2.14, normal);
|
|
72
|
+
color: #4a4a4a;
|
|
73
|
+
@extend .ellipsify;
|
|
74
|
+
width: 100%;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
ul::-webkit-scrollbar {
|
|
78
|
+
width: 4px;
|
|
79
|
+
height: 4px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
ul::-webkit-scrollbar-track {
|
|
83
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
ul::-webkit-scrollbar-thumb {
|
|
87
|
+
border-radius: 4px;
|
|
88
|
+
background-color: rgba(0, 0, 0, 0.4) !important;
|
|
89
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
li:hover {
|
|
93
|
+
// color: white;
|
|
94
|
+
background: #ebebeb;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
li.active {
|
|
98
|
+
color: white;
|
|
99
|
+
background: $primary-color;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
span.selected-item{
|
|
103
|
+
background: transparent;
|
|
104
|
+
@include fonts(Roboto, 14px, normal, normal, normal, normal, normal);
|
|
105
|
+
color: #4a4a4a;
|
|
106
|
+
@extend .ellipsify;
|
|
107
|
+
width: calc(100% - 22px);
|
|
108
|
+
display: inline-block;
|
|
109
|
+
vertical-align: middle;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.ellipsify{
|
|
113
|
+
white-space: nowrap;
|
|
114
|
+
text-overflow: ellipsis;
|
|
115
|
+
overflow: hidden;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
::ng-deep .cdk-overlay-container{
|
|
119
|
+
z-index: 1051;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
::ng-deep .multi-select-dropdown + div .mat-menu-panel,
|
|
123
|
+
::ng-deep .single-select-dropdown + div .mat-menu-panel{
|
|
124
|
+
min-width: 100px !important;
|
|
125
|
+
max-width: 100%;
|
|
126
|
+
min-height: 30px !important;
|
|
127
|
+
overflow-y: hidden;
|
|
128
|
+
max-height: 50vh;
|
|
129
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
.dashboard-heading {
|
|
2
|
+
color: #268bff;
|
|
3
|
+
font-size: 1rem;
|
|
4
|
+
font-weight: 500;
|
|
5
|
+
letter-spacing: 2.5px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
@mixin user-card($bgColor) {
|
|
9
|
+
background-color: $bgColor;
|
|
10
|
+
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.24), 0 0 2px 0 rgba(0, 0, 0, 0.12);
|
|
11
|
+
cursor: default;
|
|
12
|
+
transition: 150ms;
|
|
13
|
+
position: relative;
|
|
14
|
+
border-radius:0.25rem;
|
|
15
|
+
padding: 1.5rem;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
//orderCard issue 2
|
|
19
|
+
// .user-card:hover {
|
|
20
|
+
// box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
|
|
21
|
+
// top: -2px;
|
|
22
|
+
// }
|
|
23
|
+
|
|
24
|
+
@mixin view_link {
|
|
25
|
+
float: right;
|
|
26
|
+
color: #268bff;
|
|
27
|
+
cursor: pointer;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@mixin info-box {
|
|
31
|
+
background-color: #c7e1ff;
|
|
32
|
+
border-radius: $fs-4;
|
|
33
|
+
padding: 0.1875rem 0.5rem 0 0.5rem;
|
|
34
|
+
@include fonts(Roboto, 0.9375rem, normal, 500, normal, 1.25, 0.088rem);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.noData {
|
|
38
|
+
background-color: lightgrey;
|
|
39
|
+
padding: 0.5em;
|
|
40
|
+
width: 40%;
|
|
41
|
+
text-align: center;
|
|
42
|
+
margin: 12.5em auto;
|
|
43
|
+
border-radius: 0.2em;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
@mixin svg-parent-card($cardHeight, $cardBgColor) {
|
|
47
|
+
max-width: 100%;
|
|
48
|
+
height: $cardHeight;
|
|
49
|
+
width: 100%;
|
|
50
|
+
background-color: $cardBgColor;
|
|
51
|
+
border: none;
|
|
52
|
+
outline: none;
|
|
53
|
+
padding-bottom: 0;
|
|
54
|
+
margin-bottom: 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@mixin svg-content-placeholder($backgroundGradient, $clipPath) {
|
|
58
|
+
animation: linear 1s placeHolderShimmer infinite;
|
|
59
|
+
background: $backgroundGradient;
|
|
60
|
+
background-size: 800px 104px;
|
|
61
|
+
|
|
62
|
+
width: 100%;
|
|
63
|
+
height: 100%;
|
|
64
|
+
-webkit-clip-path: url($clipPath);
|
|
65
|
+
clip-path: url($clipPath);
|
|
66
|
+
// Safari render fix
|
|
67
|
+
transform: translateZ(0);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
@keyframes placeHolderShimmer {
|
|
71
|
+
0% {
|
|
72
|
+
background-position: -468px 0;
|
|
73
|
+
}
|
|
74
|
+
100% {
|
|
75
|
+
background-position: 468px 0;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
:host::ng-deep.btn-secondary {
|
|
80
|
+
box-shadow: none;
|
|
81
|
+
border: 1px solid lightgray;
|
|
82
|
+
}
|
|
83
|
+
:host ::ng-deep .ui-select-match-text {
|
|
84
|
+
padding-top: 0;
|
|
85
|
+
display: inline-block;
|
|
86
|
+
width: 100%;
|
|
87
|
+
white-space: nowrap;
|
|
88
|
+
overflow: hidden;
|
|
89
|
+
text-overflow: ellipsis;
|
|
90
|
+
}
|
|
91
|
+
@mixin material-icons-and-expand-icon {
|
|
92
|
+
color: #268bff;
|
|
93
|
+
position: absolute;
|
|
94
|
+
float: right;
|
|
95
|
+
cursor: pointer;
|
|
96
|
+
pointer-events: none;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
@mixin dropdownContainer {
|
|
100
|
+
position: relative;
|
|
101
|
+
margin:0 0.5625rem 0 0;
|
|
102
|
+
display: flex;
|
|
103
|
+
flex-direction: column;
|
|
104
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
@import "./fonts", "./colors", "./ng-select";
|
|
2
|
+
|
|
3
|
+
.input-group-append {
|
|
4
|
+
margin: auto;
|
|
5
|
+
width: 25px;
|
|
6
|
+
background-color: #d8d8d8;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.input-group {
|
|
10
|
+
background-color: #fff;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.input-group > .form-control {
|
|
14
|
+
width: 150px;
|
|
15
|
+
font-size: 12px;
|
|
16
|
+
border: none;
|
|
17
|
+
background-color: white;
|
|
18
|
+
border-right: 1px solid #d4d4d4;
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.datepicker-form-group {
|
|
23
|
+
border-radius: 2px;
|
|
24
|
+
border: 1px solid #d6d6d6;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
:host ::ng-deep.ngb-dp-arrow.right {
|
|
28
|
+
width: unset !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
::ng-deep .ngb-dp-day.disabled {
|
|
32
|
+
opacity: 0.5;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.form-control {
|
|
36
|
+
padding: 7px;
|
|
37
|
+
color: #000;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
:host ::ng-deep .bg-primary {
|
|
41
|
+
background-color: #8bac2a !important;
|
|
42
|
+
&:focus {
|
|
43
|
+
outline: none;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.form-control {
|
|
48
|
+
&:focus {
|
|
49
|
+
outline: none;
|
|
50
|
+
box-shadow: none;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
textarea:focus,
|
|
55
|
+
input:focus {
|
|
56
|
+
outline: none;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
::ng-deep .custom-select {
|
|
60
|
+
cursor: pointer;
|
|
61
|
+
&:focus {
|
|
62
|
+
border-color: unset;
|
|
63
|
+
outline: 0;
|
|
64
|
+
box-shadow: unset;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.icon-width {
|
|
69
|
+
font-size: 16px;
|
|
70
|
+
cursor: pointer;
|
|
71
|
+
width: 25px;
|
|
72
|
+
display: flex;
|
|
73
|
+
justify-content: center;
|
|
74
|
+
background-color: #fff;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
input.form-control:disabled {
|
|
78
|
+
background-color: #fff !important;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
::ng-deep app-single-select-dropdown ng-select.custom-dropdown {
|
|
82
|
+
width: 19.5rem !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.form-control {
|
|
86
|
+
background-color: transparent !important;
|
|
87
|
+
}
|