igniteui-angular 19.0.0-beta.0 → 19.0.0-rc.1
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 +1764 -1655
- 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/dock-manager/_dock-manager-theme.scss +2 -1
- package/lib/core/styles/components/grid/_grid-component.scss +1 -0
- package/lib/core/styles/components/grid/_grid-theme.scss +7 -7
- package/lib/core/styles/components/input/_input-group-theme.scss +4 -5
- package/lib/core/styles/components/list/_list-theme.scss +8 -12
- 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/styles/components/rating/_rating-theme.scss +2 -1
- package/lib/core/styles/components/scrollbar/scrollbar-theme.scss +2 -1
- package/lib/core/styles/components/tabs/_tabs-theme.scss +34 -33
- package/lib/core/styles/themes/generators/_base.scss +3 -2
- package/lib/core/styles/themes/generators/_bootstrap.scss +9 -6
- package/lib/core/styles/themes/generators/_fluent.scss +9 -6
- package/lib/core/styles/themes/generators/_indigo.scss +9 -6
- package/lib/core/styles/themes/presets/igniteui-angular-dark.scss +8 -2
- package/lib/core/styles/themes/presets/igniteui-angular.scss +8 -2
- package/lib/core/styles/themes/presets/igniteui-bootstrap-dark.scss +8 -2
- package/lib/core/styles/themes/presets/igniteui-bootstrap-light.scss +8 -2
- package/lib/core/styles/themes/presets/igniteui-dark-green.scss +8 -2
- package/lib/core/styles/themes/presets/igniteui-fluent-dark-excel.scss +8 -2
- package/lib/core/styles/themes/presets/igniteui-fluent-dark-word.scss +8 -2
- package/lib/core/styles/themes/presets/igniteui-fluent-dark.scss +8 -2
- package/lib/core/styles/themes/presets/igniteui-fluent-light-excel.scss +8 -2
- package/lib/core/styles/themes/presets/igniteui-fluent-light-word.scss +8 -2
- package/lib/core/styles/themes/presets/igniteui-fluent-light.scss +8 -2
- package/lib/core/styles/themes/presets/igniteui-indigo-dark.scss +8 -2
- package/lib/core/styles/themes/presets/igniteui-indigo-light.scss +8 -2
- 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 +2 -0
- package/lib/grids/pivot-grid/pivot-grid.component.d.ts +0 -1
- package/lib/tabs/tabs/tabs.component.d.ts +3 -1
- package/package.json +4 -5
- 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
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
|
+
@use 'sass:meta';
|
|
2
3
|
@use '../../base' as *;
|
|
3
4
|
@use '../../themes/schemas' as *;
|
|
4
5
|
|
|
@@ -65,7 +66,7 @@
|
|
|
65
66
|
|
|
66
67
|
$theme: digest-schema($dock-manager-schema);
|
|
67
68
|
|
|
68
|
-
@return extend($theme, (name: $name, prefix: 'igc'), keywords($rest));
|
|
69
|
+
@return extend($theme, (name: $name, prefix: 'igc'), meta.keywords($rest));
|
|
69
70
|
}
|
|
70
71
|
|
|
71
72
|
/// @deprecated Use the `css-vars` mixin instead.
|
|
@@ -1434,15 +1434,15 @@
|
|
|
1434
1434
|
}
|
|
1435
1435
|
|
|
1436
1436
|
&%igx-grid__tr--ghost {
|
|
1437
|
+
background: var-get($theme, 'row-ghost-background');
|
|
1438
|
+
color: var-get($theme, 'row-drag-color');
|
|
1439
|
+
z-index: 10002;
|
|
1440
|
+
|
|
1437
1441
|
@include css-vars((
|
|
1438
1442
|
name: 'igx-grid-row',
|
|
1439
1443
|
row-ghost-background: map.get($theme, 'row-ghost-background'),
|
|
1440
1444
|
row-drag-color: map.get($theme, 'row-drago-color')
|
|
1441
1445
|
));
|
|
1442
|
-
|
|
1443
|
-
background: var-get($theme, 'row-ghost-background');
|
|
1444
|
-
color: var-get($theme, 'row-drag-color');
|
|
1445
|
-
z-index: 10002;
|
|
1446
1446
|
}
|
|
1447
1447
|
}
|
|
1448
1448
|
|
|
@@ -2797,9 +2797,9 @@
|
|
|
2797
2797
|
compact: calc(#{$i * map.get($grid-grouping-indicator-padding, 'compact')} + #{$indicator-icon-width})
|
|
2798
2798
|
);
|
|
2799
2799
|
|
|
2800
|
-
$level--comfortable: map
|
|
2801
|
-
$level--cosy: map
|
|
2802
|
-
$level--compact: map
|
|
2800
|
+
$level--comfortable: map.get($row-indentation-level, 'comfortable');
|
|
2801
|
+
$level--cosy: map.get($row-indentation-level, 'cosy');
|
|
2802
|
+
$level--compact: map.get($row-indentation-level, 'compact');
|
|
2803
2803
|
|
|
2804
2804
|
%igx-grid__row-indentation--level-#{$i} {
|
|
2805
2805
|
--indicator-inline-inset: #{sizable(
|
|
@@ -1884,15 +1884,14 @@
|
|
|
1884
1884
|
%form-group-bundle-start--bootstrap,
|
|
1885
1885
|
%form-group-bundle-end--bootstrap {
|
|
1886
1886
|
flex: none;
|
|
1887
|
-
|
|
1888
|
-
&:empty {
|
|
1889
|
-
display: none;
|
|
1890
|
-
}
|
|
1891
|
-
|
|
1892
1887
|
border-width: rem(1px);
|
|
1893
1888
|
border-style: solid;
|
|
1894
1889
|
border-color: var-get($theme, 'border-color');
|
|
1895
1890
|
overflow: hidden;
|
|
1891
|
+
|
|
1892
|
+
&:empty {
|
|
1893
|
+
display: none;
|
|
1894
|
+
}
|
|
1896
1895
|
}
|
|
1897
1896
|
|
|
1898
1897
|
%form-group-bundle-start--bootstrap {
|
|
@@ -373,7 +373,7 @@
|
|
|
373
373
|
color: var-get($theme, 'item-text-color');
|
|
374
374
|
background: var-get($theme, 'item-background');
|
|
375
375
|
|
|
376
|
-
@if $bootstrap-theme {
|
|
376
|
+
@if $bootstrap-theme or $variant == 'fluent' {
|
|
377
377
|
border-bottom: var-get($theme, 'border-width') solid var-get($theme, 'border-color');
|
|
378
378
|
|
|
379
379
|
&:last-of-type {
|
|
@@ -435,10 +435,7 @@
|
|
|
435
435
|
display: flex;
|
|
436
436
|
flex-direction: column;
|
|
437
437
|
flex: 1 0 0%;
|
|
438
|
-
|
|
439
|
-
@if $variant == 'indigo' {
|
|
440
|
-
gap: rem(2px);
|
|
441
|
-
}
|
|
438
|
+
gap: rem(2px);
|
|
442
439
|
|
|
443
440
|
&:empty {
|
|
444
441
|
display: none;
|
|
@@ -447,7 +444,6 @@
|
|
|
447
444
|
|
|
448
445
|
%igx-list__item-line-subtitle {
|
|
449
446
|
color: var-get($theme, 'item-subtitle-color');
|
|
450
|
-
opacity: .74
|
|
451
447
|
}
|
|
452
448
|
|
|
453
449
|
%igx-list__item-line-title {
|
|
@@ -524,6 +520,10 @@
|
|
|
524
520
|
}
|
|
525
521
|
|
|
526
522
|
%igx-list-item-content--active {
|
|
523
|
+
color: var-get($theme, 'item-text-color-active');
|
|
524
|
+
background: var-get($theme, 'item-background-active');
|
|
525
|
+
z-index: 3;
|
|
526
|
+
|
|
527
527
|
%igx-list__item-line-title {
|
|
528
528
|
color: var-get($theme, 'item-title-color-active')
|
|
529
529
|
}
|
|
@@ -548,10 +548,6 @@
|
|
|
548
548
|
color: var-get($theme, 'item-thumbnail-color-active')
|
|
549
549
|
}
|
|
550
550
|
}
|
|
551
|
-
|
|
552
|
-
color: var-get($theme, 'item-text-color-active');
|
|
553
|
-
background: var-get($theme, 'item-background-active');
|
|
554
|
-
z-index: 3;
|
|
555
551
|
}
|
|
556
552
|
|
|
557
553
|
%igx-list-item-content--inactive {
|
|
@@ -563,13 +559,13 @@
|
|
|
563
559
|
/// Uses the 'caption' and 'subtitle-1'
|
|
564
560
|
/// categories from the typographic scale.
|
|
565
561
|
/// @group typography
|
|
566
|
-
/// @param {Map} $categories [(header: 'overline', item: 'subtitle-1', title: 'subtitle-1', subtitle: '
|
|
562
|
+
/// @param {Map} $categories [(header: 'overline', item: 'subtitle-1', title: 'subtitle-1', subtitle: 'body-2')] - The categories from the typographic scale used for type styles.
|
|
567
563
|
@mixin list-typography(
|
|
568
564
|
$categories: (
|
|
569
565
|
header: 'overline',
|
|
570
566
|
item: 'subtitle-1',
|
|
571
567
|
title: 'subtitle-1',
|
|
572
|
-
subtitle: '
|
|
568
|
+
subtitle: 'body-2'
|
|
573
569
|
)
|
|
574
570
|
) {
|
|
575
571
|
$header: map.get($categories, 'header');
|