@wlcm/angular 17.7.16 → 17.7.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wlcm/angular",
3
- "version": "17.7.16",
3
+ "version": "17.7.17",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "module": "./index.mjs",
@@ -2,7 +2,6 @@
2
2
  @use 'utils' as utils;
3
3
  @use '../components/common/index' as common;
4
4
  @use '../components/forms/index' as forms;
5
- @use '../components/filters/index' as filters;
6
5
  @use '../components/button/index' as button;
7
6
  @use '../components/search-field/index' as searchField;
8
7
  @use '../components/phone-input/index' as phoneInput;
@@ -15,7 +14,6 @@
15
14
  @mixin all-component-themes($theme-config) {
16
15
  @include common.theme($theme-config);
17
16
  @include forms.theme($theme-config);
18
- @include filters.theme($theme-config);
19
17
  @include button.theme($theme-config);
20
18
  @include searchField.theme($theme-config);
21
19
  @include datepicker.theme($theme-config);
@@ -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
- }
@@ -1,7 +0,0 @@
1
- @use './filters-unit' as filtersUnit;
2
- @use './filters-panel' as filtersPanel;
3
-
4
- @mixin theme($theme-config) {
5
- @include filtersUnit.theme($theme-config);
6
- @include filtersPanel.theme($theme-config);
7
- }