igniteui-angular 19.0.0-beta.0 → 19.0.0-rc.0
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 +1710 -1623
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/avatar/avatar.component.d.ts +3 -1
- package/lib/checkbox/checkbox.component.d.ts +42 -2
- package/lib/core/styles/components/action-strip/_action-strip-component.scss +1 -1
- package/lib/core/styles/components/checkbox/_checkbox-component.scss +76 -14
- package/lib/core/styles/components/checkbox/_checkbox-theme.scss +97 -109
- package/lib/core/styles/components/grid/_grid-component.scss +1 -0
- package/lib/core/styles/components/paginator/_paginator-component.scss +1 -1
- package/lib/core/styles/components/query-builder/_query-builder-component.scss +9 -1
- package/lib/core/utils.d.ts +5 -0
- package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -0
- package/lib/grids/filtering/grid-filtering.service.d.ts +1 -0
- package/lib/grids/grid-base.directive.d.ts +1 -0
- package/package.json +3 -4
- package/schematics/tsconfig.tsbuildinfo +1 -1
- package/schematics/utils/dependency-handler.js +0 -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
|
@@ -148,7 +148,8 @@ export declare class IgxAvatarComponent implements OnInit {
|
|
|
148
148
|
* ```
|
|
149
149
|
* @igxFriendlyName Image URL
|
|
150
150
|
*/
|
|
151
|
-
src: string;
|
|
151
|
+
set src(value: string);
|
|
152
|
+
get src(): string;
|
|
152
153
|
/** @hidden @internal */
|
|
153
154
|
protected defaultTemplate: TemplateRef<any>;
|
|
154
155
|
/** @hidden @internal */
|
|
@@ -162,6 +163,7 @@ export declare class IgxAvatarComponent implements OnInit {
|
|
|
162
163
|
* @internal
|
|
163
164
|
*/
|
|
164
165
|
private _size;
|
|
166
|
+
private _src;
|
|
165
167
|
/**
|
|
166
168
|
* Returns the size of the avatar.
|
|
167
169
|
*
|
|
@@ -223,6 +223,42 @@ export declare class IgxCheckboxComponent implements EditorProvider, AfterViewIn
|
|
|
223
223
|
* ```
|
|
224
224
|
*/
|
|
225
225
|
cssClass: string;
|
|
226
|
+
/**
|
|
227
|
+
* Returns if the component is of type `material`.
|
|
228
|
+
*
|
|
229
|
+
* @example
|
|
230
|
+
* ```typescript
|
|
231
|
+
* let checkbox = this.checkbox.material;
|
|
232
|
+
* ```
|
|
233
|
+
*/
|
|
234
|
+
protected get material(): boolean;
|
|
235
|
+
/**
|
|
236
|
+
* Returns if the component is of type `indigo`.
|
|
237
|
+
*
|
|
238
|
+
* @example
|
|
239
|
+
* ```typescript
|
|
240
|
+
* let checkbox = this.checkbox.indigo;
|
|
241
|
+
* ```
|
|
242
|
+
*/
|
|
243
|
+
protected get indigo(): boolean;
|
|
244
|
+
/**
|
|
245
|
+
* Returns if the component is of type `bootstrap`.
|
|
246
|
+
*
|
|
247
|
+
* @example
|
|
248
|
+
* ```typescript
|
|
249
|
+
* let checkbox = this.checkbox.bootstrap;
|
|
250
|
+
* ```
|
|
251
|
+
*/
|
|
252
|
+
protected get bootstrap(): boolean;
|
|
253
|
+
/**
|
|
254
|
+
* Returns if the component is of type `fluent`.
|
|
255
|
+
*
|
|
256
|
+
* @example
|
|
257
|
+
* ```typescript
|
|
258
|
+
* let checkbox = this.checkbox.fluent;
|
|
259
|
+
* ```
|
|
260
|
+
*/
|
|
261
|
+
protected get fluent(): boolean;
|
|
226
262
|
/**
|
|
227
263
|
* Sets/gets whether the checkbox component is on focus.
|
|
228
264
|
* Default value is `false`.
|
|
@@ -337,12 +373,16 @@ export declare class IgxCheckboxComponent implements EditorProvider, AfterViewIn
|
|
|
337
373
|
* @hidden
|
|
338
374
|
* @internal
|
|
339
375
|
*/
|
|
340
|
-
|
|
376
|
+
protected theme: IgxTheme;
|
|
341
377
|
/**
|
|
342
378
|
* @hidden
|
|
343
379
|
* @internal
|
|
344
380
|
*/
|
|
345
|
-
|
|
381
|
+
private _required;
|
|
382
|
+
private elRef;
|
|
383
|
+
private _theme$;
|
|
384
|
+
private _subscription;
|
|
385
|
+
private destroyRef;
|
|
346
386
|
constructor(cdr: ChangeDetectorRef, renderer: Renderer2, themeService: ThemeService, ngControl: NgControl);
|
|
347
387
|
/**
|
|
348
388
|
* @hidden
|
|
@@ -18,17 +18,9 @@
|
|
|
18
18
|
@extend %cbx-ripple--hover !optional;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
@include e(composite) {
|
|
22
|
-
@extend %cbx-composite--hover !optional;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
21
|
@include e(composite-mark) {
|
|
26
22
|
@extend %cbx-composite-mark--fluent !optional;
|
|
27
23
|
}
|
|
28
|
-
|
|
29
|
-
@include e(label) {
|
|
30
|
-
@extend %cbx-label--hover !optional;
|
|
31
|
-
}
|
|
32
24
|
}
|
|
33
25
|
|
|
34
26
|
&:active {
|
|
@@ -68,6 +60,32 @@
|
|
|
68
60
|
@extend %cbx-ripple !optional;
|
|
69
61
|
}
|
|
70
62
|
|
|
63
|
+
@include m(bootstrap) {
|
|
64
|
+
@include e(composite) {
|
|
65
|
+
&:hover {
|
|
66
|
+
@extend %cbx-composite--hover !optional;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
@include m(indigo) {
|
|
72
|
+
@include e(composite) {
|
|
73
|
+
&:hover {
|
|
74
|
+
@extend %cbx-composite--hover !optional;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@include e(composite-mark) {
|
|
79
|
+
@extend %cbx-composite-mark-indigo !optional;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
@include e(label) {
|
|
83
|
+
&:hover {
|
|
84
|
+
@extend %cbx-label--hover !optional;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
71
89
|
@include m(invalid) {
|
|
72
90
|
@include e(composite) {
|
|
73
91
|
@extend %cbx-composite--invalid !optional;
|
|
@@ -127,26 +145,54 @@
|
|
|
127
145
|
}
|
|
128
146
|
|
|
129
147
|
&:hover {
|
|
130
|
-
@extend %igx-checkbox--focused-hovered !optional;
|
|
131
|
-
|
|
132
148
|
@include e(ripple) {
|
|
133
149
|
@extend %cbx-ripple--focused !optional;
|
|
134
150
|
}
|
|
135
151
|
}
|
|
136
152
|
}
|
|
137
153
|
|
|
154
|
+
@include mx(indigo, focused) {
|
|
155
|
+
@extend %igx-checkbox--focused-indigo !optional;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
@include mx(fluent, focused) {
|
|
159
|
+
@extend %igx-checkbox--focused-fluent !optional;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
@include mx(bootstrap, focused) {
|
|
163
|
+
@extend %igx-checkbox--focused-bootstrap !optional;
|
|
164
|
+
|
|
165
|
+
&:hover {
|
|
166
|
+
@extend %igx-checkbox--focused-hovered !optional;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
@include mx(indigo, focused, checked) {
|
|
171
|
+
@extend %igx-checkbox--focused-checked-indigo !optional;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
@include mx(bootstrap, focused, checked) {
|
|
175
|
+
@extend %igx-checkbox--focused-checked-bootstrap !optional;
|
|
176
|
+
}
|
|
177
|
+
|
|
138
178
|
@include mx(focused, checked) {
|
|
139
179
|
@extend %igx-checkbox--focused-checked !optional;
|
|
140
180
|
}
|
|
141
181
|
|
|
142
182
|
@include mx(focused, invalid) {
|
|
143
|
-
@extend %igx-checkbox--focused-invalid !optional;
|
|
144
|
-
|
|
145
183
|
@include e(ripple) {
|
|
146
184
|
@extend %cbx-ripple--focused-invalid !optional;
|
|
147
185
|
}
|
|
148
186
|
}
|
|
149
187
|
|
|
188
|
+
@include mx(indigo, focused, invalid) {
|
|
189
|
+
@extend %igx-checkbox--focused-invalid-indigo !optional;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
@include mx(bootstrap, focused, invalid) {
|
|
193
|
+
@extend %igx-checkbox--focused-invalid-bootstrap !optional;
|
|
194
|
+
}
|
|
195
|
+
|
|
150
196
|
@include m(indeterminate) {
|
|
151
197
|
@extend %igx-checkbox--indeterminate !optional;
|
|
152
198
|
|
|
@@ -178,6 +224,18 @@
|
|
|
178
224
|
}
|
|
179
225
|
}
|
|
180
226
|
|
|
227
|
+
@include mx(indigo, indeterminate) {
|
|
228
|
+
@extend %igx-checkbox--indeterminate-indigo !optional;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
@include mx(fluent, indeterminate) {
|
|
232
|
+
@extend %igx-checkbox--indeterminate-fluent !optional;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
@include mx(material, indeterminate) {
|
|
236
|
+
@extend %igx-checkbox--indeterminate-material !optional;
|
|
237
|
+
}
|
|
238
|
+
|
|
181
239
|
@include mx(invalid, indeterminate) {
|
|
182
240
|
@extend %igx-checkbox--indeterminate--invalid !optional;
|
|
183
241
|
|
|
@@ -188,8 +246,12 @@
|
|
|
188
246
|
}
|
|
189
247
|
}
|
|
190
248
|
|
|
191
|
-
@include mx(focused, indeterminate) {
|
|
192
|
-
@extend %igx-checkbox--focused-checked !optional;
|
|
249
|
+
@include mx(indigo, focused, indeterminate) {
|
|
250
|
+
@extend %igx-checkbox--focused-checked-indigo !optional;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
@include mx(bootstrap, focused, indeterminate) {
|
|
254
|
+
@extend %igx-checkbox--focused-checked-bootstrap !optional;
|
|
193
255
|
}
|
|
194
256
|
|
|
195
257
|
@include m(checked) {
|
|
@@ -152,9 +152,9 @@
|
|
|
152
152
|
), $variant);
|
|
153
153
|
|
|
154
154
|
$mark-offset: map.get((
|
|
155
|
-
'material':
|
|
155
|
+
'material': 0,
|
|
156
156
|
'fluent': -1px,
|
|
157
|
-
'bootstrap':
|
|
157
|
+
'bootstrap': 1px,
|
|
158
158
|
'indigo': 1px,
|
|
159
159
|
), $variant);
|
|
160
160
|
|
|
@@ -223,9 +223,7 @@
|
|
|
223
223
|
}
|
|
224
224
|
|
|
225
225
|
%cbx-composite--hover {
|
|
226
|
-
|
|
227
|
-
border-color: var-get($theme, 'empty-color-hover');
|
|
228
|
-
}
|
|
226
|
+
border-color: var-get($theme, 'empty-color-hover');
|
|
229
227
|
}
|
|
230
228
|
|
|
231
229
|
%cbx-composite--x {
|
|
@@ -303,30 +301,30 @@
|
|
|
303
301
|
fill: none;
|
|
304
302
|
opacity: 0;
|
|
305
303
|
z-index: 1;
|
|
304
|
+
}
|
|
306
305
|
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
306
|
+
%cbx-composite-mark-material {
|
|
307
|
+
inset-inline-start: -.5px;
|
|
308
|
+
}
|
|
310
309
|
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
310
|
+
%cbx-composite-mark-indigo {
|
|
311
|
+
stroke: unset;
|
|
312
|
+
stroke-linecap: unset;
|
|
313
|
+
stroke-width: unset;
|
|
314
|
+
stroke-dasharray: unset;
|
|
315
|
+
stroke-dashoffset: unset;
|
|
316
|
+
fill: var-get($theme, 'tick-color');
|
|
317
|
+
transition: none !important;
|
|
319
318
|
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
}
|
|
319
|
+
rect {
|
|
320
|
+
fill: none;
|
|
323
321
|
}
|
|
324
322
|
}
|
|
325
323
|
|
|
326
324
|
%igx-checkbox--indeterminate {
|
|
327
325
|
%cbx-composite-mark {
|
|
328
326
|
top: $mark-offset;
|
|
329
|
-
|
|
327
|
+
margin-inline-start: $mark-offset;
|
|
330
328
|
}
|
|
331
329
|
|
|
332
330
|
&:hover {
|
|
@@ -344,55 +342,55 @@
|
|
|
344
342
|
}
|
|
345
343
|
}
|
|
346
344
|
}
|
|
345
|
+
}
|
|
347
346
|
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
347
|
+
%igx-checkbox--indeterminate-indigo {
|
|
348
|
+
%cbx-composite-mark {
|
|
349
|
+
fill: none;
|
|
350
|
+
stroke-dashoffset: unset !important;
|
|
351
|
+
transform: none !important;
|
|
352
|
+
|
|
353
|
+
rect {
|
|
354
|
+
fill: var-get($theme, 'tick-color');
|
|
355
|
+
opacity: 1;
|
|
352
356
|
}
|
|
353
357
|
}
|
|
358
|
+
}
|
|
354
359
|
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
360
|
+
%igx-checkbox--indeterminate-fluent {
|
|
361
|
+
%cbx-composite-mark {
|
|
362
|
+
stroke: transparent;
|
|
363
|
+
}
|
|
359
364
|
|
|
360
|
-
|
|
361
|
-
|
|
365
|
+
%cbx-composite {
|
|
366
|
+
background: transparent;
|
|
362
367
|
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
}
|
|
368
|
+
&::before {
|
|
369
|
+
content: '';
|
|
370
|
+
position: absolute;
|
|
371
|
+
top: calc($size / 2 - rem(6px));
|
|
372
|
+
inset-inline-start: calc($size / 2 - rem(6px));
|
|
373
|
+
width: rem(10px);
|
|
374
|
+
height: rem(10px);
|
|
375
|
+
border-radius: border-radius(rem(2px));
|
|
376
|
+
background: var-get($theme, 'fill-color');
|
|
377
|
+
z-index: 1;
|
|
374
378
|
}
|
|
379
|
+
}
|
|
375
380
|
|
|
376
|
-
|
|
377
|
-
|
|
381
|
+
%cbx-composite--x--disabled {
|
|
382
|
+
background: transparent;
|
|
378
383
|
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
}
|
|
384
|
+
&::before {
|
|
385
|
+
background: var-get($theme, 'disabled-color');
|
|
382
386
|
}
|
|
383
387
|
}
|
|
388
|
+
}
|
|
384
389
|
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
transform: none !important;
|
|
390
|
-
|
|
391
|
-
rect {
|
|
392
|
-
fill: var-get($theme, 'tick-color');
|
|
393
|
-
opacity: 1;
|
|
394
|
-
}
|
|
395
|
-
}
|
|
390
|
+
%igx-checkbox--indeterminate-material {
|
|
391
|
+
%cbx-composite--x--disabled {
|
|
392
|
+
border-color: var-get($theme, 'disabled-indeterminate-color');
|
|
393
|
+
background: var-get($theme, 'disabled-indeterminate-color');
|
|
396
394
|
}
|
|
397
395
|
}
|
|
398
396
|
|
|
@@ -489,9 +487,7 @@
|
|
|
489
487
|
}
|
|
490
488
|
|
|
491
489
|
%cbx-label--hover {
|
|
492
|
-
|
|
493
|
-
color: var-get($theme, 'label-color-hover');
|
|
494
|
-
}
|
|
490
|
+
color: var-get($theme, 'label-color-hover');
|
|
495
491
|
}
|
|
496
492
|
|
|
497
493
|
%cbx-label-pos--before,
|
|
@@ -550,75 +546,67 @@
|
|
|
550
546
|
background: var-get($theme, 'error-color');
|
|
551
547
|
}
|
|
552
548
|
|
|
553
|
-
%igx-checkbox--focused {
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
&::after {
|
|
559
|
-
content: '';
|
|
560
|
-
position: absolute;
|
|
561
|
-
inset: -$focus-outline-offset;
|
|
562
|
-
box-shadow: 0 0 0 rem(1px) var-get($theme, 'focus-outline-color');
|
|
563
|
-
}
|
|
549
|
+
%igx-checkbox--focused-indigo {
|
|
550
|
+
%cbx-composite {
|
|
551
|
+
border-radius: var-get($theme, 'border-radius');
|
|
552
|
+
box-shadow: 0 0 0 rem(3px) var-get($theme, 'focus-outline-color');
|
|
564
553
|
}
|
|
554
|
+
}
|
|
565
555
|
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
556
|
+
%igx-checkbox--focused-fluent {
|
|
557
|
+
position: relative;
|
|
558
|
+
$focus-outline-offset: rem(2px);
|
|
559
|
+
|
|
560
|
+
&::after {
|
|
561
|
+
content: '';
|
|
562
|
+
position: absolute;
|
|
563
|
+
inset: -$focus-outline-offset;
|
|
564
|
+
box-shadow: 0 0 0 rem(1px) var-get($theme, 'focus-outline-color');
|
|
572
565
|
}
|
|
566
|
+
}
|
|
573
567
|
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
568
|
+
%igx-checkbox--focused-bootstrap {
|
|
569
|
+
%cbx-composite {
|
|
570
|
+
border-radius: var-get($theme, 'border-radius');
|
|
571
|
+
border-color: color($color: 'primary', $variant: 200);
|
|
572
|
+
box-shadow: 0 0 0 rem(4px) var-get($theme, 'focus-outline-color');
|
|
579
573
|
}
|
|
580
574
|
}
|
|
581
575
|
|
|
582
576
|
%igx-checkbox--focused-hovered {
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
border-color: color($color: 'primary', $variant: 300);
|
|
586
|
-
}
|
|
577
|
+
%cbx-composite {
|
|
578
|
+
border-color: color($color: 'primary', $variant: 300);
|
|
587
579
|
}
|
|
588
580
|
}
|
|
589
581
|
|
|
590
|
-
%igx-checkbox--focused-checked {
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
box-shadow: 0 0 0 rem(3px) var-get($theme, 'focus-outline-color-focused');
|
|
595
|
-
}
|
|
582
|
+
%igx-checkbox--focused-checked-indigo {
|
|
583
|
+
%cbx-composite {
|
|
584
|
+
border-radius: var-get($theme, 'border-radius');
|
|
585
|
+
box-shadow: 0 0 0 rem(3px) var-get($theme, 'focus-outline-color-focused');
|
|
596
586
|
}
|
|
587
|
+
}
|
|
597
588
|
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
}
|
|
589
|
+
%igx-checkbox--focused-checked-bootstrap {
|
|
590
|
+
%cbx-composite {
|
|
591
|
+
border-color: transparent;
|
|
602
592
|
}
|
|
603
593
|
}
|
|
604
594
|
|
|
605
|
-
%igx-checkbox--focused-invalid {
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
}
|
|
595
|
+
%igx-checkbox--focused-invalid-indigo {
|
|
596
|
+
%cbx-composite {
|
|
597
|
+
box-shadow: 0 0 0 rem(3px) var-get($theme, 'focus-outline-color-error');
|
|
598
|
+
}
|
|
599
|
+
}
|
|
611
600
|
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
}
|
|
601
|
+
%igx-checkbox--focused-invalid-bootstrap {
|
|
602
|
+
%cbx-composite {
|
|
603
|
+
border-color: var-get($theme, 'error-color');
|
|
604
|
+
box-shadow: 0 0 0 rem(4px) var-get($theme, 'focus-outline-color-error');
|
|
617
605
|
}
|
|
618
606
|
|
|
619
|
-
|
|
607
|
+
&:hover {
|
|
620
608
|
%cbx-composite {
|
|
621
|
-
|
|
609
|
+
border-color: var-get($theme, 'error-color-hover');
|
|
622
610
|
}
|
|
623
611
|
}
|
|
624
612
|
}
|
|
@@ -13,7 +13,15 @@
|
|
|
13
13
|
$this: bem--selector-to-string(&);
|
|
14
14
|
@include register-component(
|
|
15
15
|
$name: string.slice($this, 2, -1),
|
|
16
|
-
$deps: (
|
|
16
|
+
$deps: (
|
|
17
|
+
igx-icon,
|
|
18
|
+
igx-button,
|
|
19
|
+
igx-chip,
|
|
20
|
+
igx-select,
|
|
21
|
+
igx-input-button,
|
|
22
|
+
igx-icon-button,
|
|
23
|
+
igx-overlay,
|
|
24
|
+
)
|
|
17
25
|
);
|
|
18
26
|
|
|
19
27
|
@extend %advanced-filter !optional;
|
package/lib/core/utils.d.ts
CHANGED
|
@@ -309,3 +309,8 @@ export declare function intoChunks<T>(arr: T[], size: number): Generator<T[], vo
|
|
|
309
309
|
* @returns string that represents the --component-size default value
|
|
310
310
|
*/
|
|
311
311
|
export declare function getComponentCssSizeVar(size: string): "var(--ig-size, var(--ig-size-small))" | "var(--ig-size, var(--ig-size-medium))" | "var(--ig-size, var(--ig-size-large))";
|
|
312
|
+
/**
|
|
313
|
+
* @param path - The URI path to be normalized.
|
|
314
|
+
* @returns string encoded using the encodeURI function.
|
|
315
|
+
*/
|
|
316
|
+
export declare function normalizeURI(path: string): string;
|
|
@@ -563,6 +563,7 @@ export declare class IgxDragDirective implements AfterContentInit, OnDestroy {
|
|
|
563
563
|
* @hidden
|
|
564
564
|
*/
|
|
565
565
|
onTransitionEnd(event: any): void;
|
|
566
|
+
protected clearGhost(): void;
|
|
566
567
|
/**
|
|
567
568
|
* @hidden
|
|
568
569
|
* Create ghost element - if a Node object is provided it creates a clone of that node,
|
|
@@ -56,6 +56,7 @@ export declare class IgxFilteringService implements OnDestroy {
|
|
|
56
56
|
clear_filter(fieldName: string): void;
|
|
57
57
|
/**
|
|
58
58
|
* Filters all the `IgxColumnComponent` in the `IgxGridComponent` with the same condition.
|
|
59
|
+
* @deprecated in version 19.0.0.
|
|
59
60
|
*/
|
|
60
61
|
filterGlobal(value: any, condition: any, ignoreCase?: any): void;
|
|
61
62
|
/**
|
|
@@ -2673,6 +2673,7 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
|
|
|
2673
2673
|
* @param value
|
|
2674
2674
|
* @param condition
|
|
2675
2675
|
* @param ignoreCase
|
|
2676
|
+
* @deprecated in version 19.0.0.
|
|
2676
2677
|
*/
|
|
2677
2678
|
filterGlobal(value: any, condition: any, ignoreCase?: any): void;
|
|
2678
2679
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "19.0.0-
|
|
3
|
+
"version": "19.0.0-rc.0",
|
|
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,9 +73,8 @@
|
|
|
73
73
|
"tslib": "^2.3.0",
|
|
74
74
|
"igniteui-trial-watermark": "^3.0.2",
|
|
75
75
|
"lodash-es": "^4.17.21",
|
|
76
|
-
"uuid": "^9.0.0",
|
|
77
76
|
"igniteui-theming": "^14.2.0",
|
|
78
|
-
"@igniteui/material-icons-extended": "^3.
|
|
77
|
+
"@igniteui/material-icons-extended": "^3.1.0"
|
|
79
78
|
},
|
|
80
79
|
"peerDependencies": {
|
|
81
80
|
"@angular/common": "19",
|
|
@@ -94,7 +93,7 @@
|
|
|
94
93
|
}
|
|
95
94
|
},
|
|
96
95
|
"igxDevDependencies": {
|
|
97
|
-
"@igniteui/angular-schematics": "~
|
|
96
|
+
"@igniteui/angular-schematics": "~19.0.1430-rc.0"
|
|
98
97
|
},
|
|
99
98
|
"ng-update": {
|
|
100
99
|
"migrations": "./migrations/migration-collection.json",
|