igniteui-angular 19.1.0-beta.3 → 19.1.0-beta.4
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/fesm2022/igniteui-angular.mjs +13 -19
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/styles/components/chip/_chip-theme.scss +3 -5
- package/lib/core/styles/components/dialog/_dialog-theme.scss +0 -14
- package/lib/core/styles/components/grid/_grid-theme.scss +0 -5
- package/lib/core/styles/components/query-builder/_query-builder-component.scss +4 -0
- package/lib/core/styles/components/query-builder/_query-builder-theme.scss +116 -90
- package/lib/core/styles/typography/_bootstrap.scss +4 -0
- package/lib/core/styles/typography/_fluent.scss +2 -0
- package/lib/core/styles/typography/_indigo.scss +4 -0
- package/lib/core/styles/typography/_material.scss +2 -0
- package/lib/query-builder/query-builder-drag.service.d.ts +0 -1
- package/lib/query-builder/query-builder-tree.component.d.ts +1 -2
- package/lib/query-builder/query-builder.common.d.ts +1 -0
- package/lib/query-builder/query-builder.component.d.ts +1 -1
- package/package.json +2 -2
- package/schematics/tsconfig.tsbuildinfo +1 -1
- package/styles/igniteui-angular-dark.css +1 -1
- package/styles/igniteui-angular.css +1 -1
- package/styles/igniteui-bootstrap-dark.css +1 -1
- package/styles/igniteui-bootstrap-light.css +1 -1
- package/styles/igniteui-dark-green.css +1 -1
- package/styles/igniteui-fluent-dark-excel.css +1 -1
- package/styles/igniteui-fluent-dark-word.css +1 -1
- package/styles/igniteui-fluent-dark.css +1 -1
- package/styles/igniteui-fluent-light-excel.css +1 -1
- package/styles/igniteui-fluent-light-word.css +1 -1
- package/styles/igniteui-fluent-light.css +1 -1
- package/styles/igniteui-indigo-dark.css +1 -1
- package/styles/igniteui-indigo-light.css +1 -1
- package/styles/maps/igniteui-angular-dark.css.map +1 -1
- package/styles/maps/igniteui-angular.css.map +1 -1
- package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
- package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
- package/styles/maps/igniteui-dark-green.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark.css.map +1 -1
- package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
- package/styles/maps/igniteui-fluent-light.css.map +1 -1
- package/styles/maps/igniteui-indigo-dark.css.map +1 -1
- package/styles/maps/igniteui-indigo-light.css.map +1 -1
|
@@ -504,7 +504,7 @@
|
|
|
504
504
|
@if $variant == 'bootstrap' {
|
|
505
505
|
color: contrast-color($color: 'success', $variant: 600);
|
|
506
506
|
} @else {
|
|
507
|
-
color: contrast-color($color: 'success', $variant: if($variant
|
|
507
|
+
color: contrast-color($color: 'success', $variant: if($variant == 'indigo', 900, 500));
|
|
508
508
|
}
|
|
509
509
|
background: color($color: 'success', $variant: 500);
|
|
510
510
|
border-color: color($color: 'success', $variant: 500);
|
|
@@ -590,7 +590,7 @@
|
|
|
590
590
|
@if $variant == 'bootstrap' {
|
|
591
591
|
color: contrast-color($color: 'error', $variant: 600);
|
|
592
592
|
} @else {
|
|
593
|
-
color: contrast-color($color: 'error', $variant: if($variant
|
|
593
|
+
color: contrast-color($color: 'error', $variant: if($variant == 'indigo', 900, 500));
|
|
594
594
|
}
|
|
595
595
|
background: color($color: 'error', $variant: 500);
|
|
596
596
|
border-color: color($color: 'error', $variant: 500);
|
|
@@ -698,9 +698,7 @@
|
|
|
698
698
|
|
|
699
699
|
%igx-chip__prefix,
|
|
700
700
|
%igx-chip__suffix {
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
display: inline-block;
|
|
701
|
+
display: inline-flex;
|
|
704
702
|
vertical-align: middle;
|
|
705
703
|
max-width: $chip-max-width;
|
|
706
704
|
|
|
@@ -117,20 +117,6 @@
|
|
|
117
117
|
|
|
118
118
|
%igx-dialog-display {
|
|
119
119
|
outline-style: none;
|
|
120
|
-
|
|
121
|
-
%advanced-filter {
|
|
122
|
-
box-shadow: none;
|
|
123
|
-
border: none;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
%query-level-0 {
|
|
127
|
-
padding: 0;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
%advanced-filter__header {
|
|
131
|
-
padding-block-start: 0;
|
|
132
|
-
padding-inline: 0;
|
|
133
|
-
}
|
|
134
120
|
}
|
|
135
121
|
|
|
136
122
|
%igx-dialog--hidden {
|
|
@@ -3215,11 +3215,6 @@
|
|
|
3215
3215
|
}
|
|
3216
3216
|
|
|
3217
3217
|
igx-query-builder {
|
|
3218
|
-
//--igx-query-builder-background: #{var-get($theme, 'filtering-row-background')};
|
|
3219
|
-
//--igx-query-builder-background-and: #{var-get($theme, 'filtering-background-and')};
|
|
3220
|
-
//--igx-query-builder-background-and--focus: #{var-get($theme, 'filtering-background-and--focus')};
|
|
3221
|
-
//--igx-query-builder-background-or: #{var-get($theme, 'filtering-background-or')};
|
|
3222
|
-
//--igx-query-builder-background-or--focus: #{var-get($theme, 'filtering-background-or--focus')};
|
|
3223
3218
|
box-shadow: none;
|
|
3224
3219
|
border: none;
|
|
3225
3220
|
border-radius: inherit;
|
|
@@ -110,6 +110,10 @@
|
|
|
110
110
|
@include e(expression-item-ghost) {
|
|
111
111
|
@extend %filter-tree__expression-item-ghost !optional;
|
|
112
112
|
}
|
|
113
|
+
|
|
114
|
+
@include e(expression-item-drop-ghost) {
|
|
115
|
+
@extend %filter-tree__expression-drop-item-ghost !optional;
|
|
116
|
+
}
|
|
113
117
|
|
|
114
118
|
@include e(expression-column) {
|
|
115
119
|
@extend %filter-tree__expression-column !optional;
|
|
@@ -225,27 +225,7 @@
|
|
|
225
225
|
padding-inline: if($variant != 'bootstrap', rem(24px), rem(16px));
|
|
226
226
|
padding-block: if($variant != 'bootstrap', rem(24px), rem(16px)) rem(16px);
|
|
227
227
|
}
|
|
228
|
-
|
|
229
|
-
%advanced-filter__title {
|
|
230
|
-
@if $variant == 'material' {
|
|
231
|
-
@include type-style('h6');
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
@if $variant == 'fluent' {
|
|
235
|
-
@include type-style('h6');
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
@if $variant == 'indigo' {
|
|
239
|
-
@include type-style('h5');
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
@if $variant == 'bootstrap' {
|
|
243
|
-
@include type-style('h5');
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
margin: 0;
|
|
247
|
-
}
|
|
248
|
-
|
|
228
|
+
|
|
249
229
|
%advanced-filter__main {
|
|
250
230
|
display: grid;
|
|
251
231
|
gap: rem(16px);
|
|
@@ -326,75 +306,105 @@
|
|
|
326
306
|
%filter-tree__line--or {
|
|
327
307
|
background: var-get($theme, 'color-expression-group-or');
|
|
328
308
|
}
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
309
|
+
|
|
310
|
+
%filter-tree__button--and {
|
|
311
|
+
&[igxButton='flat'] {
|
|
312
|
+
@if $variant == 'material' or $variant == 'indigo' {
|
|
313
|
+
--focus-hover-background: hsl(from #{var-get($theme, 'color-expression-group-and')} h s l / #{$alpha-focus-hover});
|
|
314
|
+
--focus-visible-background: hsl(from #{var-get($theme, 'color-expression-group-and')} h s l / #{$alpha-focus});
|
|
315
|
+
--focus-background: hsl(from #{var-get($theme, 'color-expression-group-and')} h s l / #{$alpha-focus});
|
|
316
|
+
--active-background: hsl(from #{var-get($theme, 'color-expression-group-and')} h s l / #{$alpha-focus});
|
|
317
|
+
--hover-background: hsl(from #{var-get($theme, 'color-expression-group-and')} h s l / #{$alpha-hover});
|
|
318
|
+
--background: transparent;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
@if $variant == 'fluent' {
|
|
322
|
+
--background: transparent;
|
|
323
|
+
--focus-hover-background: #{color($color: 'gray', $variant: if($theme-variant == 'light', 200, 50))};
|
|
324
|
+
--focus-visible-background: transparent;
|
|
325
|
+
--focus-background: transparent;
|
|
326
|
+
--active-background: #{color($color: 'gray', $variant: if($theme-variant == 'light', 200, 50))};
|
|
327
|
+
--hover-background: #{color($color: 'gray', $variant: if($theme-variant == 'light', 200, 50))};
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
--foreground: #{var-get($theme, 'color-expression-group-and')};
|
|
331
|
+
--focus-visible-foreground: #{var-get($theme, 'color-expression-group-and')};
|
|
332
|
+
--icon-color: #{var-get($theme, 'color-expression-group-and')};
|
|
333
|
+
|
|
334
|
+
@if $variant != 'bootstrap' {
|
|
335
|
+
--focus-foreground: #{var-get($theme, 'color-expression-group-and')};
|
|
336
|
+
--hover-foreground: #{var-get($theme, 'color-expression-group-and')};
|
|
337
|
+
--icon-color-hover: #{var-get($theme, 'color-expression-group-and')};
|
|
338
|
+
--focus-hover-foreground: #{var-get($theme, 'color-expression-group-and')};
|
|
339
|
+
--active-foreground: #{var-get($theme, 'color-expression-group-and')};
|
|
340
|
+
} @else {
|
|
341
|
+
$bootstrap-foreground-lightness: if($theme-variant == 'light', 34%, 78% );
|
|
342
|
+
|
|
343
|
+
--focus-hover-background: transparent;
|
|
344
|
+
--focus-visible-background: transparent;
|
|
345
|
+
--focus-background: transparent;
|
|
346
|
+
--active-background: transparent;
|
|
347
|
+
--hover-background: transparent;
|
|
348
|
+
--background: transparent;
|
|
349
|
+
--shadow-color: hsl(from #{var-get($theme, 'color-expression-group-and')} h s l / .5);
|
|
350
|
+
|
|
351
|
+
--icon-color-hover: hsl(from #{var-get($theme, 'color-expression-group-and')} h s #{$bootstrap-foreground-lightness} / 1);
|
|
352
|
+
--focus-foreground: hsl(from #{var-get($theme, 'color-expression-group-and')} h s #{$bootstrap-foreground-lightness} / 1);
|
|
353
|
+
--hover-foreground: hsl(from #{var-get($theme, 'color-expression-group-and')} h s #{$bootstrap-foreground-lightness} / 1);
|
|
354
|
+
--focus-hover-foreground: hsl(from #{var-get($theme, 'color-expression-group-and')} h s #{$bootstrap-foreground-lightness} / 1);
|
|
355
|
+
--active-foreground: hsl(from #{var-get($theme, 'color-expression-group-and')} h s #{$bootstrap-foreground-lightness} / 1);
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
%filter-tree__button--or {
|
|
361
|
+
&[igxButton='flat'] {
|
|
362
|
+
@if $variant == 'material' or $variant == 'indigo' {
|
|
363
|
+
--focus-hover-background: hsl(from #{var-get($theme, 'color-expression-group-or')} h s l / #{$alpha-focus-hover});
|
|
364
|
+
--focus-visible-background: hsl(from #{var-get($theme, 'color-expression-group-or')} h s l / #{$alpha-focus});
|
|
365
|
+
--focus-background: hsl(from #{var-get($theme, 'color-expression-group-or')} h s l / #{$alpha-focus});
|
|
366
|
+
--active-background: hsl(from #{var-get($theme, 'color-expression-group-or')} h s l / #{$alpha-focus});
|
|
367
|
+
--hover-background: hsl(from #{var-get($theme, 'color-expression-group-or')} h s l / #{$alpha-hover});
|
|
368
|
+
--background: transparent;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
@if $variant == 'fluent' {
|
|
372
|
+
--background: transparent;
|
|
373
|
+
--focus-hover-background: #{color($color: 'gray', $variant: if($theme-variant == 'light', 200, 50))};
|
|
374
|
+
--focus-visible-background: transparent;
|
|
375
|
+
--focus-background: transparent;
|
|
376
|
+
--active-background: #{color($color: 'gray', $variant: if($theme-variant == 'light', 200, 50))};
|
|
377
|
+
--hover-background: #{color($color: 'gray', $variant: if($theme-variant == 'light', 200, 50))};
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
--foreground: #{var-get($theme, 'color-expression-group-or')};
|
|
381
|
+
--focus-visible-foreground: #{var-get($theme, 'color-expression-group-or')};
|
|
382
|
+
--icon-color: #{var-get($theme, 'color-expression-group-or')};
|
|
383
|
+
|
|
384
|
+
@if $variant != 'bootstrap' {
|
|
385
|
+
--focus-foreground: #{var-get($theme, 'color-expression-group-or')};
|
|
386
|
+
--hover-foreground: #{var-get($theme, 'color-expression-group-or')};
|
|
387
|
+
--icon-color-hover: #{var-get($theme, 'color-expression-group-or')};
|
|
388
|
+
--focus-hover-foreground: #{var-get($theme, 'color-expression-group-or')};
|
|
389
|
+
--active-foreground: #{var-get($theme, 'color-expression-group-or')};
|
|
390
|
+
} @else {
|
|
391
|
+
$bootstrap-foreground-lightness: if($theme-variant == 'light', 14%, 47%);
|
|
392
|
+
|
|
393
|
+
--focus-hover-background: transparent;
|
|
394
|
+
--focus-visible-background: transparent;
|
|
395
|
+
--focus-background: transparent;
|
|
396
|
+
--active-background: transparent;
|
|
397
|
+
--hover-background: transparent;
|
|
398
|
+
--background: transparent;
|
|
399
|
+
--shadow-color: hsl(from #{var-get($theme, 'color-expression-group-or')} h s l / .5);
|
|
400
|
+
|
|
401
|
+
--icon-color-hover: hsl(from #{var-get($theme, 'color-expression-group-or')} h s #{$bootstrap-foreground-lightness} / 1);
|
|
402
|
+
--focus-foreground: hsl(from #{var-get($theme, 'color-expression-group-or')} h s #{$bootstrap-foreground-lightness} / 1);
|
|
403
|
+
--hover-foreground: hsl(from #{var-get($theme, 'color-expression-group-or')} h s #{$bootstrap-foreground-lightness} / 1);
|
|
404
|
+
--focus-hover-foreground: hsl(from #{var-get($theme, 'color-expression-group-or')} h s #{$bootstrap-foreground-lightness} / 1);
|
|
405
|
+
--active-foreground: hsl(from #{var-get($theme, 'color-expression-group-or')} h s #{$bootstrap-foreground-lightness} / 1);
|
|
406
|
+
}
|
|
407
|
+
}
|
|
398
408
|
}
|
|
399
409
|
|
|
400
410
|
%filter-tree__expressions {
|
|
@@ -596,3 +606,19 @@
|
|
|
596
606
|
}
|
|
597
607
|
}
|
|
598
608
|
}
|
|
609
|
+
|
|
610
|
+
/// Adds typography styles for the igx-query-builder component.
|
|
611
|
+
/// Uses the 'h6' category from the typographic scale.
|
|
612
|
+
/// @group typography
|
|
613
|
+
/// @param {Map} $categories [(title: 'h6')] - The categories from the typographic scale used for type styles.
|
|
614
|
+
@mixin query-builder-typography(
|
|
615
|
+
$categories: (title: 'h6')
|
|
616
|
+
) {
|
|
617
|
+
$title: map.get($categories, 'title');
|
|
618
|
+
|
|
619
|
+
%advanced-filter__title {
|
|
620
|
+
@include type-style($title) {
|
|
621
|
+
margin: 0;
|
|
622
|
+
}
|
|
623
|
+
}
|
|
624
|
+
}
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
@use '../components/tooltip/tooltip-theme' as *;
|
|
33
33
|
@use '../components/tree/tree-theme' as *;
|
|
34
34
|
@use '../components/label/label-theme' as *;
|
|
35
|
+
@use '../components/query-builder/query-builder-theme' as *;
|
|
35
36
|
|
|
36
37
|
@mixin typography($type-scale) {
|
|
37
38
|
@include badge-typography();
|
|
@@ -113,4 +114,7 @@
|
|
|
113
114
|
@include label-typography($categories: (
|
|
114
115
|
label: 'body-1'
|
|
115
116
|
));
|
|
117
|
+
@include query-builder-typography($categories: (
|
|
118
|
+
title: 'h5'
|
|
119
|
+
));
|
|
116
120
|
}
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
@use '../components/tooltip/tooltip-theme' as *;
|
|
32
32
|
@use '../components/tree/tree-theme' as *;
|
|
33
33
|
@use '../components/label/label-theme' as *;
|
|
34
|
+
@use '../components/query-builder/query-builder-theme' as *;
|
|
34
35
|
|
|
35
36
|
@mixin typography() {
|
|
36
37
|
@include badge-typography();
|
|
@@ -119,4 +120,5 @@
|
|
|
119
120
|
@include label-typography($categories: (
|
|
120
121
|
label: 'subtitle-2'
|
|
121
122
|
));
|
|
123
|
+
@include query-builder-typography();
|
|
122
124
|
}
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
@use '../components/tooltip/tooltip-theme' as *;
|
|
32
32
|
@use '../components/tree/tree-theme' as *;
|
|
33
33
|
@use '../components/label/label-theme' as *;
|
|
34
|
+
@use '../components/query-builder/query-builder-theme' as *;
|
|
34
35
|
|
|
35
36
|
@mixin typography($type-scale) {
|
|
36
37
|
@include badge-typography($categories: (
|
|
@@ -125,4 +126,7 @@
|
|
|
125
126
|
@include label-typography($categories: (
|
|
126
127
|
label: 'caption'
|
|
127
128
|
));
|
|
129
|
+
@include query-builder-typography($categories: (
|
|
130
|
+
title: 'h5'
|
|
131
|
+
));
|
|
128
132
|
}
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
@use '../components/tooltip/tooltip-theme' as *;
|
|
32
32
|
@use '../components/tree/tree-theme' as *;
|
|
33
33
|
@use '../components/label/label-theme' as *;
|
|
34
|
+
@use '../components/query-builder/query-builder-theme' as *;
|
|
34
35
|
|
|
35
36
|
@mixin typography() {
|
|
36
37
|
@include badge-typography();
|
|
@@ -66,4 +67,5 @@
|
|
|
66
67
|
@include tooltip-typography();
|
|
67
68
|
@include tree-typography();
|
|
68
69
|
@include label-typography();
|
|
70
|
+
@include query-builder-typography();
|
|
69
71
|
}
|
|
@@ -27,7 +27,6 @@ export declare class IgxQueryBuilderDragService {
|
|
|
27
27
|
private get mainExpressionTree();
|
|
28
28
|
onMoveStart(sourceDragElement: HTMLElement, sourceExpressionItem: ExpressionItem, isKeyboardDrag: boolean): void;
|
|
29
29
|
onMoveEnd(): void;
|
|
30
|
-
onDivEnter(targetDragElement: HTMLElement, targetExpressionItem: ExpressionItem): void;
|
|
31
30
|
onChipEnter(targetDragElement: HTMLElement, targetExpressionItem: ExpressionItem): void;
|
|
32
31
|
onDivOver(targetDragElement: HTMLElement, targetExpressionItem: ExpressionItem): void;
|
|
33
32
|
onChipOver(targetDragElement: HTMLElement): void;
|
|
@@ -360,7 +360,6 @@ export declare class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDe
|
|
|
360
360
|
onChipRemove(expressionItem: ExpressionItem): void;
|
|
361
361
|
private focusChipAfterDrag;
|
|
362
362
|
dragService: IgxQueryBuilderDragService;
|
|
363
|
-
canBeDragged(): boolean;
|
|
364
363
|
/**
|
|
365
364
|
* @hidden @internal
|
|
366
365
|
*/
|
|
@@ -470,7 +469,7 @@ export declare class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDe
|
|
|
470
469
|
isInEditMode(): boolean;
|
|
471
470
|
onInEditModeChanged(expressionItem: ExpressionOperandItem): void;
|
|
472
471
|
getExpressionTreeCopy(expressionTree: IExpressionTree, shouldAssignInnerQueryExprTree?: boolean): IExpressionTree;
|
|
473
|
-
onSelectAllClicked(
|
|
472
|
+
onSelectAllClicked(): void;
|
|
474
473
|
onReturnFieldSelectChanging(event: IComboSelectionChangingEventArgs | ISelectionEventArgs): void;
|
|
475
474
|
initExpressionTree(selectedEntityName: string, selectedReturnFields: string[]): void;
|
|
476
475
|
getSearchValueTemplateContext(defaultSearchValueTemplate: any): any;
|
|
@@ -39,6 +39,7 @@ export declare class ExpressionOperandItem extends ExpressionItem {
|
|
|
39
39
|
*/
|
|
40
40
|
export declare const QueryBuilderSelectors: {
|
|
41
41
|
DRAG_INDICATOR: string;
|
|
42
|
+
CHIP_GHOST: string;
|
|
42
43
|
DROP_DOWN_LIST_SCROLL: string;
|
|
43
44
|
DROP_DOWN_ITEM_DISABLED: string;
|
|
44
45
|
FILTER_TREE: string;
|
|
@@ -89,7 +89,7 @@ export declare class IgxQueryBuilderComponent implements OnDestroy {
|
|
|
89
89
|
* <igx-query-builder (expressionTreeChange)='onExpressionTreeChange()'></igx-query-builder>
|
|
90
90
|
* ```
|
|
91
91
|
*/
|
|
92
|
-
expressionTreeChange: EventEmitter<
|
|
92
|
+
expressionTreeChange: EventEmitter<IExpressionTree>;
|
|
93
93
|
/**
|
|
94
94
|
* @hidden @internal
|
|
95
95
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "19.1.0-beta.
|
|
3
|
+
"version": "19.1.0-beta.4",
|
|
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",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"tslib": "^2.3.0",
|
|
74
74
|
"igniteui-trial-watermark": "^3.0.2",
|
|
75
75
|
"lodash-es": "^4.17.21",
|
|
76
|
-
"igniteui-theming": "
|
|
76
|
+
"igniteui-theming": "^15.0.0",
|
|
77
77
|
"@igniteui/material-icons-extended": "^3.1.0"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|