igniteui-angular 17.2.17 → 17.2.19

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.
Files changed (45) hide show
  1. package/esm2022/lib/data-operations/filtering-condition.mjs +8 -1
  2. package/esm2022/lib/grids/columns/column-group.component.mjs +4 -1
  3. package/esm2022/lib/grids/filtering/excel-style/excel-style-filtering.component.mjs +25 -29
  4. package/esm2022/lib/grids/filtering/excel-style/excel-style-search.component.mjs +7 -5
  5. package/esm2022/lib/grids/grid-base.directive.mjs +2 -2
  6. package/esm2022/lib/query-builder/query-builder.component.mjs +3 -3
  7. package/esm2022/lib/services/exporter-common/base-export-service.mjs +5 -3
  8. package/esm2022/lib/simple-combo/simple-combo.component.mjs +4 -2
  9. package/fesm2022/igniteui-angular.mjs +50 -38
  10. package/fesm2022/igniteui-angular.mjs.map +1 -1
  11. package/lib/core/styles/components/input/_input-group-theme.scss +9 -9
  12. package/lib/core/styles/components/label/_label-theme.scss +19 -7
  13. package/lib/core/styles/typography/_bootstrap.scss +4 -0
  14. package/lib/core/styles/typography/_fluent.scss +4 -0
  15. package/lib/core/styles/typography/_indigo.scss +4 -0
  16. package/lib/core/styles/typography/_material.scss +2 -0
  17. package/lib/data-operations/filtering-condition.d.ts +1 -0
  18. package/lib/services/exporter-common/base-export-service.d.ts +1 -0
  19. package/package.json +1 -1
  20. package/styles/igniteui-angular-dark.css +1 -1
  21. package/styles/igniteui-angular.css +1 -1
  22. package/styles/igniteui-bootstrap-dark.css +1 -1
  23. package/styles/igniteui-bootstrap-light.css +1 -1
  24. package/styles/igniteui-dark-green.css +1 -1
  25. package/styles/igniteui-fluent-dark-excel.css +1 -1
  26. package/styles/igniteui-fluent-dark-word.css +1 -1
  27. package/styles/igniteui-fluent-dark.css +1 -1
  28. package/styles/igniteui-fluent-light-excel.css +1 -1
  29. package/styles/igniteui-fluent-light-word.css +1 -1
  30. package/styles/igniteui-fluent-light.css +1 -1
  31. package/styles/igniteui-indigo-dark.css +1 -1
  32. package/styles/igniteui-indigo-light.css +1 -1
  33. package/styles/maps/igniteui-angular-dark.css.map +1 -1
  34. package/styles/maps/igniteui-angular.css.map +1 -1
  35. package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
  36. package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
  37. package/styles/maps/igniteui-dark-green.css.map +1 -1
  38. package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
  39. package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
  40. package/styles/maps/igniteui-fluent-dark.css.map +1 -1
  41. package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
  42. package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
  43. package/styles/maps/igniteui-fluent-light.css.map +1 -1
  44. package/styles/maps/igniteui-indigo-dark.css.map +1 -1
  45. package/styles/maps/igniteui-indigo-light.css.map +1 -1
@@ -910,10 +910,14 @@
910
910
  }
911
911
  }
912
912
 
913
- %form-group-label--float {
914
- --floating-label-position: -73%;
915
- transform: translateY(var(--floating-label-position));
916
- font-size: rem(12px);
913
+ @if $variant == 'material' {
914
+ %form-group-label--float {
915
+ --floating-label-position: -73%;
916
+
917
+ @include type-style('caption');
918
+
919
+ transform: translateY(var(--floating-label-position));
920
+ }
917
921
  }
918
922
 
919
923
  %form-group-label--focused-border,
@@ -972,8 +976,8 @@
972
976
 
973
977
  %form-group-label--float-border {
974
978
  --label-position: #{sizable(18px, 22px, 26px)};
979
+
975
980
  transform: translateY(calc(var(--label-position) * -1));
976
- font-size: rem(12px);
977
981
  margin-top: 0;
978
982
  overflow: hidden;
979
983
  will-change: font-size, color, transform;
@@ -1718,8 +1722,6 @@
1718
1722
  // Label
1719
1723
  %fluent-label {
1720
1724
  display: block;
1721
- font-size: rem(14px);
1722
- font-weight: 600;
1723
1725
  position: static;
1724
1726
  transform: translateY(0);
1725
1727
  transform-origin: top left;
@@ -1939,13 +1941,11 @@
1939
1941
  display: block;
1940
1942
  color: var-get($theme, 'idle-secondary-color');
1941
1943
  padding: 0;
1942
- line-height: rem(24px);
1943
1944
  transform: translateY(0);
1944
1945
  transform-origin: top left;
1945
1946
  margin-block-start: 0 !important;
1946
1947
  margin-block-end: rem(4px);
1947
1948
  height: auto;
1948
- font-size: rem(16px);
1949
1949
 
1950
1950
  [dir='rtl'] & {
1951
1951
  transform-origin: top right;
@@ -50,21 +50,33 @@
50
50
  color: var-get($theme, 'color');
51
51
  max-width: 100%;
52
52
  line-height: normal;
53
- font-size: rem(16px);
54
53
 
55
54
  [dir='rtl'] & {
56
55
  transform-origin: top right;
57
56
  }
58
57
 
59
- @if $variant == 'fluent' or $variant == 'indigo-design' {
60
- font-size: rem(14px);
61
- font-weight: 600;
58
+ @if $variant != 'material' {
62
59
  height: auto;
63
60
  }
61
+ }
62
+ }
64
63
 
65
- @if $variant == 'bootstrap' {
66
- line-height: rem(24px);
67
- height: auto;
64
+ /// Adds typography styles for the igx-label component.
65
+ /// Uses the 'caption'
66
+ /// category from the typographic scale.
67
+ /// @group typography
68
+ /// @param {Map} $categories [(label: 'caption')] - The categories from the typographic scale used for type styles.
69
+ @mixin label-typography(
70
+ $categories: (
71
+ label: 'subtitle-1',
72
+ )
73
+ ) {
74
+ $label: map.get($categories, 'label');
75
+
76
+ %label-base {
77
+ @include type-style($label) {
78
+ margin: 0;
68
79
  }
69
80
  }
70
81
  }
82
+
@@ -30,6 +30,7 @@
30
30
  @use '../components/toast/toast-theme' as *;
31
31
  @use '../components/tooltip/tooltip-theme' as *;
32
32
  @use '../components/tree/tree-theme' as *;
33
+ @use '../components/label/label-theme' as *;
33
34
 
34
35
  @mixin typography($type-scale) {
35
36
  @include badge-typography();
@@ -108,4 +109,7 @@
108
109
  @include toast-typography();
109
110
  @include tooltip-typography();
110
111
  @include tree-typography();
112
+ @include label-typography($categories: (
113
+ label: 'body-1'
114
+ ));
111
115
  }
@@ -29,6 +29,7 @@
29
29
  @use '../components/toast/toast-theme' as *;
30
30
  @use '../components/tooltip/tooltip-theme' as *;
31
31
  @use '../components/tree/tree-theme' as *;
32
+ @use '../components/label/label-theme' as *;
32
33
 
33
34
  @mixin typography() {
34
35
  @include badge-typography();
@@ -104,4 +105,7 @@
104
105
  ));
105
106
  @include tooltip-typography();
106
107
  @include tree-typography();
108
+ @include label-typography($categories: (
109
+ label: 'subtitle-2'
110
+ ));
107
111
  }
@@ -29,6 +29,7 @@
29
29
  @use '../components/toast/toast-theme' as *;
30
30
  @use '../components/tooltip/tooltip-theme' as *;
31
31
  @use '../components/tree/tree-theme' as *;
32
+ @use '../components/label/label-theme' as *;
32
33
 
33
34
  @mixin typography() {
34
35
  @include badge-typography($categories: (
@@ -109,4 +110,7 @@
109
110
  @include toast-typography();
110
111
  @include tooltip-typography();
111
112
  @include tree-typography();
113
+ @include label-typography($categories: (
114
+ label: 'caption'
115
+ ));
112
116
  }
@@ -29,6 +29,7 @@
29
29
  @use '../components/toast/toast-theme' as *;
30
30
  @use '../components/tooltip/tooltip-theme' as *;
31
31
  @use '../components/tree/tree-theme' as *;
32
+ @use '../components/label/label-theme' as *;
32
33
 
33
34
  @mixin typography() {
34
35
  @include badge-typography();
@@ -62,4 +63,5 @@
62
63
  @include toast-typography();
63
64
  @include tooltip-typography();
64
65
  @include tree-typography();
66
+ @include label-typography();
65
67
  }
@@ -60,6 +60,7 @@ declare class IgxBaseDateTimeFilteringOperand extends IgxFilteringOperand {
60
60
  */
61
61
  export declare class IgxDateFilteringOperand extends IgxBaseDateTimeFilteringOperand {
62
62
  protected constructor();
63
+ protected findValueInSet(target: any, searchVal: Set<any>): boolean;
63
64
  }
64
65
  export declare class IgxDateTimeFilteringOperand extends IgxBaseDateTimeFilteringOperand {
65
66
  protected constructor();
@@ -150,6 +150,7 @@ export declare abstract class IgxBaseExporter {
150
150
  private pivotGridColumns;
151
151
  private pivotGridRowDimensionsMap;
152
152
  private pivotGridKeyValueMap;
153
+ private ownerGrid;
153
154
  /**
154
155
  * Method for exporting IgxGrid component's data.
155
156
  * ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "17.2.17",
3
+ "version": "17.2.19",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",