@annalib/anna-core 16.2.4 → 16.2.5
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/services/anna-filter.service.mjs +537 -1
- package/esm2020/lib/anna-core-shared-lib/services/anna-sort.service.mjs +25 -1
- package/esm2020/lib/anna-core.module.mjs +10 -5
- package/esm2020/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-checkbox-filter/anna-column-checkbox-filter.component.mjs +55 -188
- package/esm2020/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-date-range-filter/anna-column-date-range-filter.component.mjs +41 -167
- package/esm2020/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-slider-filter/anna-column-slider-filter.component.mjs +306 -0
- package/esm2020/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component.mjs +58 -362
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +31 -1291
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/annalib-anna-core.mjs +2908 -3864
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +2885 -3841
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +78 -0
- package/lib/anna-core-shared-lib/services/anna-sort.service.d.ts +2 -0
- package/lib/anna-core.module.d.ts +12 -11
- package/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-checkbox-filter/anna-column-checkbox-filter.component.d.ts +6 -18
- package/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-date-range-filter/anna-column-date-range-filter.component.d.ts +6 -21
- package/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-slider-filter/anna-column-slider-filter.component.d.ts +65 -0
- package/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component.d.ts +7 -28
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +4 -152
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/src/lib/anna-common-scss/_business-rule-common.scss +35 -0
- package/src/lib/anna-common-scss/_filters.scss +14 -0
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -35,5 +35,6 @@ export * from "./lib/anna-generic-table-lib/components/anna-table-virtual-scroll
|
|
|
35
35
|
export * from "./lib/anna-generic-table-lib/components/anna-column-filters/anna-column-checkbox-filter/anna-column-checkbox-filter.component";
|
|
36
36
|
export * from "./lib/anna-generic-table-lib/components/anna-column-filters/anna-column-date-range-filter/anna-column-date-range-filter.component";
|
|
37
37
|
export * from "./lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component";
|
|
38
|
+
export * from "./lib/anna-generic-table-lib/components/anna-column-filters/anna-column-slider-filter/anna-column-slider-filter.component";
|
|
38
39
|
export * from "./lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy";
|
|
39
40
|
export * from "./lib/anna-generic-table-lib/directives/anna-virtual-table";
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
.ng-content-selector-for-message {
|
|
2
|
+
display: inline;
|
|
3
|
+
font-size: 0.75rem !important;
|
|
4
|
+
font-weight: 400 !important;
|
|
5
|
+
line-height: 16px !important;
|
|
6
|
+
|
|
7
|
+
a {
|
|
8
|
+
color: #268BFF;
|
|
9
|
+
text-decoration: underline;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
::ng-deep section.message-box.sm.seller-approval-requested {
|
|
14
|
+
.div-message p.message-label {
|
|
15
|
+
padding: 0 0 0 4px !important;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
::ng-deep section.message-box.sm.inline-block-msg {
|
|
20
|
+
padding: 4px!important;
|
|
21
|
+
.div-message p.message-label {
|
|
22
|
+
display: inline-block !important;
|
|
23
|
+
padding: 0 0 0 6px !important;
|
|
24
|
+
}
|
|
25
|
+
.div-icon {
|
|
26
|
+
position: relative;
|
|
27
|
+
top: 4px;
|
|
28
|
+
left: 3px !important;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.comment-textarea {
|
|
33
|
+
resize: none;
|
|
34
|
+
height: 90px;
|
|
35
|
+
}
|
|
@@ -697,3 +697,17 @@ input.error-border{
|
|
|
697
697
|
margin-top: 10px !important;
|
|
698
698
|
cursor: pointer;
|
|
699
699
|
}
|
|
700
|
+
|
|
701
|
+
.custom-column-checkbox-checked,
|
|
702
|
+
.custom-column-checkbox-unchecked {
|
|
703
|
+
font-size: 0.875rem;
|
|
704
|
+
cursor: pointer;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
.custom-column-checkbox-checked {
|
|
708
|
+
color: $primary-color;
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
.custom-column-checkbox-unchecked {
|
|
712
|
+
color: $charcoal;
|
|
713
|
+
}
|