@annalib/anna-core 0.0.0-watch
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/annalib-anna-core.d.ts +5 -0
- package/esm2020/annalib-anna-core.mjs +5 -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-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 +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/directives/digits-only/digits-only.directive.mjs +282 -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 +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 +2 -0
- package/esm2020/lib/anna-core-shared-lib/models/anna-sort.model.mjs +2 -0
- package/esm2020/lib/anna-core-shared-lib/models/anna-tooltip.model.mjs +30 -0
- package/esm2020/lib/anna-core-shared-lib/pipes/annaConvertZeroOrNullOrUndefined.pipe.mjs +26 -0
- package/esm2020/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.mjs +46 -0
- 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 +198 -0
- package/esm2020/lib/anna-core-shared-lib/services/anna-filter.service.mjs +465 -0
- package/esm2020/lib/anna-core-shared-lib/services/anna-generic-table.service.mjs +48 -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-number-format.service.mjs +41 -0
- package/esm2020/lib/anna-core-shared-lib/services/anna-sort.service.mjs +147 -0
- package/esm2020/lib/anna-core.module.mjs +180 -0
- package/esm2020/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +100 -0
- package/esm2020/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.mjs +364 -0
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +1787 -0
- package/esm2020/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +67 -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/public-api.mjs +49 -0
- package/fesm2015/annalib-anna-core.mjs +4733 -0
- package/fesm2015/annalib-anna-core.mjs.map +1 -0
- package/fesm2020/annalib-anna-core.mjs +4726 -0
- package/fesm2020/annalib-anna-core.mjs.map +1 -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-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 +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/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 +16 -0
- package/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.d.ts +95 -0
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +72 -0
- package/lib/anna-core-shared-lib/models/anna-sort.model.d.ts +6 -0
- package/lib/anna-core-shared-lib/models/anna-tooltip.model.d.ts +25 -0
- package/lib/anna-core-shared-lib/pipes/annaConvertZeroOrNullOrUndefined.pipe.d.ts +9 -0
- package/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.d.ts +9 -0
- 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 +27 -0
- package/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +74 -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-number-format.service.d.ts +7 -0
- package/lib/anna-core-shared-lib/services/anna-sort.service.d.ts +16 -0
- package/lib/anna-core.module.d.ts +36 -0
- package/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.d.ts +34 -0
- package/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.d.ts +70 -0
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +270 -0
- package/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.d.ts +17 -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/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/index.d.ts +1 -0
- package/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.d.ts +45 -0
- package/lib/anna-generic-table-lib/directives/anna-virtual-table/index.d.ts +1 -0
- package/package.json +38 -0
- package/public-api.d.ts +33 -0
- 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/_colors.scss +107 -0
- package/src/lib/anna-common-scss/_dashboard-partials.scss +104 -0
- package/src/lib/anna-common-scss/_filters.scss +598 -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/_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/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.d.ts
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { CollectionViewer, ListRange } from "@angular/cdk/collections";
|
|
2
|
+
import { CdkVirtualScrollRepeater, CdkVirtualScrollViewport } from "@angular/cdk/scrolling";
|
|
3
|
+
import { CdkHeaderRowDef, CdkTable, DataSource, _CoalescedStyleScheduler } from "@angular/cdk/table";
|
|
4
|
+
import { ElementRef, NgIterable, NgZone, QueryList } from "@angular/core";
|
|
5
|
+
import { Observable, Subject } from "rxjs";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Directive that wraps a given data source in a "virtual" data source that emits
|
|
9
|
+
* the slice of the original data source that matches the range that should be rendered
|
|
10
|
+
* in the containing virtual scroll viewport.
|
|
11
|
+
*/
|
|
12
|
+
export declare class AnnaVirtualTableDirective<T> implements CdkVirtualScrollRepeater<T>, CollectionViewer {
|
|
13
|
+
private viewport;
|
|
14
|
+
private table;
|
|
15
|
+
private _coalescedStyleScheduler;
|
|
16
|
+
set dataSource(value: DataSource<T> | Observable<T[]> | NgIterable<T> | null | undefined);
|
|
17
|
+
get dataSource(): DataSource<T> | Observable<T[]> | NgIterable<T> | null | undefined;
|
|
18
|
+
private _dataSource;
|
|
19
|
+
headerRowDefs: QueryList<CdkHeaderRowDef>;
|
|
20
|
+
private virtualizedDataStream;
|
|
21
|
+
private dataSourceChanges;
|
|
22
|
+
/** The raw, unvirtualized data stream. Emits whenever the data in the current DataSource changes. */
|
|
23
|
+
dataStream: Observable<T[] | ReadonlyArray<T>>;
|
|
24
|
+
viewChange: Subject<ListRange>;
|
|
25
|
+
private data;
|
|
26
|
+
private destroyed$;
|
|
27
|
+
private renderedItems;
|
|
28
|
+
private renderedRange;
|
|
29
|
+
private isNativeHtmlTable;
|
|
30
|
+
constructor(elementRef: ElementRef<HTMLElement>, viewport: CdkVirtualScrollViewport, table: CdkTable<T>, ngZone: NgZone, _coalescedStyleScheduler: _CoalescedStyleScheduler);
|
|
31
|
+
ngOnInit(): void;
|
|
32
|
+
ngOnDestroy(): void;
|
|
33
|
+
/** React to scroll state changes in the viewport. */
|
|
34
|
+
private onRenderedDataChange;
|
|
35
|
+
/** Swap out one data source for another. */
|
|
36
|
+
private changeDataSource;
|
|
37
|
+
/**
|
|
38
|
+
* This method is only used by the experimental AutoSizeVirtualScrollStrategy.
|
|
39
|
+
* We're not using that strategy, but I've implemented it just to show how it oculd be done.
|
|
40
|
+
* I'm not actually sure if this works.
|
|
41
|
+
*/
|
|
42
|
+
measureRangeSize(range: ListRange, orientation: 'horizontal' | 'vertical'): number;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaVirtualTableDirective<any>, never>;
|
|
44
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AnnaVirtualTableDirective<any>, "[mat-table][appVirtualDataSource], mat-table[appVirtualDataSource]", never, { "dataSource": "appVirtualDataSource"; }, {}, ["headerRowDefs"]>;
|
|
45
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./anna-virtual-table.directive";
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@annalib/anna-core",
|
|
3
|
+
"version": "0.0.0-watch+1673537290069",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular-slider/ngx-slider": "2.0.3",
|
|
6
|
+
"@angular/common": "^13.2.0",
|
|
7
|
+
"@angular/core": "^13.2.0",
|
|
8
|
+
"@angular/material": "^13.2.6",
|
|
9
|
+
"@ng-bootstrap/ng-bootstrap": "^9.0.1",
|
|
10
|
+
"lodash-es": "^4.17.21",
|
|
11
|
+
"dayjs": "^1.11.6",
|
|
12
|
+
"ngx-skeleton-loader": "^2.10.1",
|
|
13
|
+
"ng-circle-progress": "^1.6.0"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"tslib": "^2.3.0"
|
|
17
|
+
},
|
|
18
|
+
"module": "fesm2015/annalib-anna-core.mjs",
|
|
19
|
+
"es2020": "fesm2020/annalib-anna-core.mjs",
|
|
20
|
+
"esm2020": "esm2020/annalib-anna-core.mjs",
|
|
21
|
+
"fesm2020": "fesm2020/annalib-anna-core.mjs",
|
|
22
|
+
"fesm2015": "fesm2015/annalib-anna-core.mjs",
|
|
23
|
+
"typings": "annalib-anna-core.d.ts",
|
|
24
|
+
"exports": {
|
|
25
|
+
"./package.json": {
|
|
26
|
+
"default": "./package.json"
|
|
27
|
+
},
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./annalib-anna-core.d.ts",
|
|
30
|
+
"esm2020": "./esm2020/annalib-anna-core.mjs",
|
|
31
|
+
"es2020": "./fesm2020/annalib-anna-core.mjs",
|
|
32
|
+
"es2015": "./fesm2015/annalib-anna-core.mjs",
|
|
33
|
+
"node": "./fesm2015/annalib-anna-core.mjs",
|
|
34
|
+
"default": "./fesm2020/annalib-anna-core.mjs"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"sideEffects": false
|
|
38
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export * from "./lib/anna-core.module";
|
|
2
|
+
export * from "./lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component";
|
|
3
|
+
export * from "./lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component";
|
|
4
|
+
export * from "./lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component";
|
|
5
|
+
export * from "./lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component";
|
|
6
|
+
export * from "./lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component";
|
|
7
|
+
export * from "./lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component";
|
|
8
|
+
export * from "./lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component";
|
|
9
|
+
export * from "./lib/anna-core-shared-lib/services/anna-date-time-format.service";
|
|
10
|
+
export * from "./lib/anna-core-shared-lib/services/anna-global-config.service";
|
|
11
|
+
export * from "./lib/anna-core-shared-lib/services/anna-filter.service";
|
|
12
|
+
export * from "./lib/anna-core-shared-lib/services/anna-sort.service";
|
|
13
|
+
export * from "./lib/anna-core-shared-lib/services/anna-generic-table.service";
|
|
14
|
+
export * from "./lib/anna-core-shared-lib/services/anna-number-format.service";
|
|
15
|
+
export * from "./lib/anna-core-shared-lib/models/anna-generic-data-type.model";
|
|
16
|
+
export * from "./lib/anna-core-shared-lib/models/anna-global-dropdown-config.model";
|
|
17
|
+
export * from "./lib/anna-core-shared-lib/models/anna-non-editable-gt-models";
|
|
18
|
+
export * from "./lib/anna-core-shared-lib/models/anna-tooltip.model";
|
|
19
|
+
export * from "./lib/anna-core-shared-lib/models/anna-sort.model";
|
|
20
|
+
export * from "./lib/anna-core-shared-lib/constants/shared.constant";
|
|
21
|
+
export * from "./lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe";
|
|
22
|
+
export * from "./lib/anna-core-shared-lib/pipes/annaConvertZeroOrNullOrUndefined.pipe";
|
|
23
|
+
export * from "./lib/anna-core-shared-lib/pipes/annaTypeOfData.pipe";
|
|
24
|
+
export * from "./lib/anna-core-shared-lib/pipes/annaReplaceChar.pipe";
|
|
25
|
+
export * from "./lib/anna-core-shared-lib/directives/show-ellipsis-text/show-ellipsis-text.directive";
|
|
26
|
+
export * from './lib/anna-core-shared-lib/directives/digits-only/digits-only.directive';
|
|
27
|
+
export * from "./lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component";
|
|
28
|
+
export * from "./lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component";
|
|
29
|
+
export * from "./lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component";
|
|
30
|
+
export * from "./lib/anna-generic-table-lib/components/anna-sort/anna-sort.component";
|
|
31
|
+
export * from "./lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component";
|
|
32
|
+
export * from "./lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy";
|
|
33
|
+
export * from "./lib/anna-generic-table-lib/directives/anna-virtual-table";
|
|
Binary file
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// scss-lint:disable all
|
|
2
|
+
.animated {
|
|
3
|
+
animation-duration: 1s;
|
|
4
|
+
// animation-fill-mode: both;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.animated.infinite {
|
|
8
|
+
animation-iteration-count: infinite;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.animated.hinge {
|
|
12
|
+
animation-duration: 2s;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@keyframes fadeIn {
|
|
16
|
+
from {
|
|
17
|
+
opacity: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
to {
|
|
21
|
+
opacity: 1;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.fadeIn {
|
|
26
|
+
animation-name: fadeIn;
|
|
27
|
+
}
|
|
@@ -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,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
|
+
}
|