@wlcm/angular 18.2.4 → 18.2.6
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/filters/esm2022/index.mjs +6 -8
- package/filters/esm2022/lib/components/filters-group/filters-group.component.mjs +13 -0
- package/filters/esm2022/lib/constants/filter.constants.mjs +3 -0
- package/filters/esm2022/lib/constants/index.mjs +2 -0
- package/filters/esm2022/lib/directives/filter.directive.mjs +11 -0
- package/filters/esm2022/lib/directives/index.mjs +2 -0
- package/filters/esm2022/lib/filters.module.mjs +20 -0
- package/filters/esm2022/lib/models/array-filter.models.mjs +73 -0
- package/filters/esm2022/lib/models/filter.models.mjs +41 -0
- package/filters/esm2022/lib/models/filters-group.models.mjs +60 -0
- package/filters/esm2022/lib/models/index.mjs +4 -0
- package/filters/fesm2022/wlcm-angular-filters.mjs +159 -420
- package/filters/fesm2022/wlcm-angular-filters.mjs.map +1 -1
- package/filters/index.d.ts +5 -7
- package/filters/lib/components/filters-group/filters-group.component.d.ts +6 -0
- package/filters/lib/constants/filter.constants.d.ts +3 -0
- package/filters/lib/constants/index.d.ts +1 -0
- package/filters/lib/directives/filter.directive.d.ts +5 -0
- package/filters/lib/directives/index.d.ts +1 -0
- package/filters/lib/filters.module.d.ts +9 -0
- package/filters/lib/models/array-filter.models.d.ts +19 -0
- package/filters/lib/models/filter.models.d.ts +19 -0
- package/filters/lib/models/filters-group.models.d.ts +22 -0
- package/filters/lib/models/index.d.ts +3 -0
- package/package.json +1 -1
- package/styles/core/_all-theme.scss +0 -2
- package/filters/esm2022/lib/filters/components/filters/filters.component.mjs +0 -21
- package/filters/esm2022/lib/filters/components/filters-button/filters-button.component.mjs +0 -25
- package/filters/esm2022/lib/filters/components/filters-panel/filters-panel.component.mjs +0 -86
- package/filters/esm2022/lib/filters/components/filters-unit/filters-unit.component.mjs +0 -55
- package/filters/esm2022/lib/filters/directives/filters-content.directive.mjs +0 -11
- package/filters/esm2022/lib/filters/directives/filters-trigger.directive.mjs +0 -69
- package/filters/esm2022/lib/filters/filters.module.mjs +0 -53
- package/filters/esm2022/lib/filters/models/filters-default-selection-model.mjs +0 -56
- package/filters/esm2022/lib/filters/models/filters-trigger.base.mjs +0 -56
- package/filters/esm2022/lib/filters/models/filters.models.mjs +0 -44
- package/filters/esm2022/lib/filters/pipes/is-filters-param-checked.pipe.mjs +0 -21
- package/filters/esm2022/lib/filters/pipes/total-filters-applied.pipe.mjs +0 -18
- package/filters/esm2022/lib/filters/utils/filters.utils.mjs +0 -13
- package/filters/lib/filters/components/filters/filters.component.d.ts +0 -10
- package/filters/lib/filters/components/filters-button/filters-button.component.d.ts +0 -11
- package/filters/lib/filters/components/filters-panel/filters-panel.component.d.ts +0 -25
- package/filters/lib/filters/components/filters-unit/filters-unit.component.d.ts +0 -21
- package/filters/lib/filters/directives/filters-content.directive.d.ts +0 -5
- package/filters/lib/filters/directives/filters-trigger.directive.d.ts +0 -22
- package/filters/lib/filters/filters.module.d.ts +0 -20
- package/filters/lib/filters/models/filters-default-selection-model.d.ts +0 -18
- package/filters/lib/filters/models/filters-trigger.base.d.ts +0 -15
- package/filters/lib/filters/models/filters.models.d.ts +0 -42
- package/filters/lib/filters/pipes/is-filters-param-checked.pipe.d.ts +0 -10
- package/filters/lib/filters/pipes/total-filters-applied.pipe.d.ts +0 -8
- package/filters/lib/filters/utils/filters.utils.d.ts +0 -5
- package/styles/components/filters/_filters-panel.scss +0 -44
- package/styles/components/filters/_filters-unit.scss +0 -92
- package/styles/components/filters/index.scss +0 -7
@@ -1,44 +0,0 @@
|
|
1
|
-
@use 'sass:map';
|
2
|
-
@use '../../core/utils' as utils;
|
3
|
-
|
4
|
-
@mixin theme($theme-config) {
|
5
|
-
$theme: utils.using-theme($theme_config);
|
6
|
-
|
7
|
-
.wlcm-filters-panel {
|
8
|
-
width: 100%;
|
9
|
-
padding: 16px;
|
10
|
-
box-sizing: border-box;
|
11
|
-
box-shadow: 0 10px 32px 0 rgba(38, 41, 45, 0.15);
|
12
|
-
background: white;
|
13
|
-
border-radius: 4px;
|
14
|
-
|
15
|
-
&__title {
|
16
|
-
font-size: 16px;
|
17
|
-
letter-spacing: 0.47px;
|
18
|
-
font-family: map-get($theme, bold-font-family);
|
19
|
-
line-height: 24px;
|
20
|
-
margin: 0 0 8px 0;
|
21
|
-
margin-bottom: 0;
|
22
|
-
}
|
23
|
-
}
|
24
|
-
|
25
|
-
.wlcm-filters-panel-header {
|
26
|
-
display: flex;
|
27
|
-
align-items: center;
|
28
|
-
justify-content: space-between;
|
29
|
-
margin-bottom: 10px;
|
30
|
-
}
|
31
|
-
|
32
|
-
.wlcm-filters-panel-units {
|
33
|
-
display: grid;
|
34
|
-
grid-auto-flow: row;
|
35
|
-
grid-auto-rows: max-content;
|
36
|
-
margin-bottom: 16px;
|
37
|
-
gap: 8px;
|
38
|
-
}
|
39
|
-
|
40
|
-
.wlcm-filters-panel-actions {
|
41
|
-
display: flex;
|
42
|
-
justify-content: flex-end;
|
43
|
-
}
|
44
|
-
}
|
@@ -1,92 +0,0 @@
|
|
1
|
-
@use 'sass:map';
|
2
|
-
@use '../../core/utils' as utils;
|
3
|
-
|
4
|
-
@mixin theme($theme-config) {
|
5
|
-
$theme: utils.using-theme($theme_config);
|
6
|
-
|
7
|
-
.wlcm-filters-unit {
|
8
|
-
&__chevron {
|
9
|
-
width: 12px;
|
10
|
-
height: 12px;
|
11
|
-
display: flex;
|
12
|
-
align-items: center;
|
13
|
-
justify-content: center;
|
14
|
-
transform: rotateZ(-90deg);
|
15
|
-
transition: 225ms cubic-bezier(0.4, 0, 0.2, 1),
|
16
|
-
box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
17
|
-
}
|
18
|
-
}
|
19
|
-
|
20
|
-
.wlcm-filters-unit-header {
|
21
|
-
display: flex;
|
22
|
-
align-items: center;
|
23
|
-
justify-content: space-between;
|
24
|
-
height: 30px;
|
25
|
-
width: 100%;
|
26
|
-
|
27
|
-
section {
|
28
|
-
display: flex;
|
29
|
-
align-items: center;
|
30
|
-
}
|
31
|
-
|
32
|
-
.wlcm-entities-count {
|
33
|
-
margin-left: 6px;
|
34
|
-
}
|
35
|
-
|
36
|
-
.reset-btn {
|
37
|
-
margin-right: 12px;
|
38
|
-
}
|
39
|
-
|
40
|
-
&__label {
|
41
|
-
font-family: map-get($theme, bold-font-family);
|
42
|
-
letter-spacing: 0.41px;
|
43
|
-
line-height: 24px;
|
44
|
-
font-size: 14px;
|
45
|
-
}
|
46
|
-
}
|
47
|
-
|
48
|
-
.reset-btn {
|
49
|
-
border: none;
|
50
|
-
outline: none;
|
51
|
-
background: white;
|
52
|
-
font-family: map-get($theme, bold-font-family);
|
53
|
-
color: map-get($theme, primary-color);
|
54
|
-
letter-spacing: 0.41px;
|
55
|
-
font-size: 14px;
|
56
|
-
padding: 0;
|
57
|
-
}
|
58
|
-
|
59
|
-
.wlcm-filters-unit-checkboxes {
|
60
|
-
display: grid;
|
61
|
-
grid-auto-flow: row;
|
62
|
-
grid-auto-rows: max-content;
|
63
|
-
gap: 4px;
|
64
|
-
}
|
65
|
-
|
66
|
-
.wlcm-filters-unit {
|
67
|
-
box-shadow: none !important;
|
68
|
-
|
69
|
-
.wlcm-filters-unit-header {
|
70
|
-
background-color: white !important;
|
71
|
-
}
|
72
|
-
|
73
|
-
.mat-content {
|
74
|
-
margin: 0 !important;
|
75
|
-
}
|
76
|
-
|
77
|
-
.mat-expansion-panel-body {
|
78
|
-
padding: 8px 0 !important;
|
79
|
-
}
|
80
|
-
|
81
|
-
&.mat-expanded {
|
82
|
-
.wlcm-filters-unit__chevron {
|
83
|
-
color: map-get($theme, primary-color);
|
84
|
-
transform: rotateZ(0deg);
|
85
|
-
}
|
86
|
-
}
|
87
|
-
|
88
|
-
mat-expansion-panel-header {
|
89
|
-
padding: 0 !important;
|
90
|
-
}
|
91
|
-
}
|
92
|
-
}
|