igniteui-angular 20.1.9 → 20.1.10
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 +21 -10
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/index.d.ts +4 -3
- package/lib/core/styles/components/badge/_badge-theme.scss +1 -1
- package/lib/core/styles/components/bottom-nav/_bottom-nav-theme.scss +2 -2
- package/lib/core/styles/components/button/_button-theme.scss +54 -23
- package/lib/core/styles/components/button-group/_button-group-theme.scss +4 -3
- package/lib/core/styles/components/card/_card-theme.scss +2 -2
- package/lib/core/styles/components/carousel/_carousel-theme.scss +2 -2
- package/lib/core/styles/components/chip/_chip-theme.scss +1 -1
- package/lib/core/styles/components/combo/_combo-theme.scss +2 -2
- package/lib/core/styles/components/date-range-picker/_date-range-picker-theme.scss +21 -0
- package/lib/core/styles/components/dialog/_dialog-theme.scss +1 -1
- package/lib/core/styles/components/drop-down/_drop-down-theme.scss +1 -1
- package/lib/core/styles/components/grid/_grid-theme.scss +29 -6
- package/lib/core/styles/components/input/_input-group-component.scss +0 -6
- package/lib/core/styles/components/input/_input-group-theme.scss +43 -48
- package/lib/core/styles/components/list/_list-theme.scss +2 -1
- package/lib/core/styles/components/navbar/_navbar-theme.scss +1 -1
- package/lib/core/styles/components/navdrawer/_navdrawer-theme.scss +1 -1
- package/lib/core/styles/components/radio/_radio-component.scss +4 -0
- package/lib/core/styles/components/radio/_radio-theme.scss +19 -23
- package/lib/core/styles/components/snackbar/_snackbar-theme.scss +1 -1
- package/lib/core/styles/components/stepper/_stepper-theme.scss +31 -31
- package/lib/core/styles/components/switch/_switch-theme.scss +10 -15
- package/lib/core/styles/components/tabs/_tabs-theme.scss +36 -28
- package/lib/core/styles/components/time-picker/_time-picker-theme.scss +2 -2
- package/lib/core/styles/components/toast/_toast-theme.scss +1 -1
- package/lib/core/styles/components/tooltip/_tooltip-theme.scss +1 -1
- package/package.json +2 -2
- 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
package/index.d.ts
CHANGED
|
@@ -2960,7 +2960,7 @@ declare class IgxCellCrudState {
|
|
|
2960
2960
|
/** Exit cell edit mode */
|
|
2961
2961
|
exitCellEdit(event?: Event): IGridEditDoneEventArgs;
|
|
2962
2962
|
/** Clears cell editing state */
|
|
2963
|
-
endCellEdit(): void;
|
|
2963
|
+
endCellEdit(restoreFocus?: boolean): void;
|
|
2964
2964
|
/** Returns whether the targeted cell is in edit mode */
|
|
2965
2965
|
targetInEdit(rowIndex: number, columnIndex: number): boolean;
|
|
2966
2966
|
}
|
|
@@ -43427,6 +43427,7 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
|
|
|
43427
43427
|
/** @hidden @internal */
|
|
43428
43428
|
projectedInputs: QueryList<IgxDateRangeInputsBaseComponent>;
|
|
43429
43429
|
label: IgxLabelDirective;
|
|
43430
|
+
hint: IgxHintDirective;
|
|
43430
43431
|
pickerActions: IgxPickerActionsDirective;
|
|
43431
43432
|
/** @hidden @internal */
|
|
43432
43433
|
dateSeparatorTemplate: TemplateRef<any>;
|
|
@@ -43595,7 +43596,7 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
|
|
|
43595
43596
|
/** @hidden @internal */
|
|
43596
43597
|
ngOnDestroy(): void;
|
|
43597
43598
|
/** @hidden @internal */
|
|
43598
|
-
getEditElement(): HTMLInputElement
|
|
43599
|
+
getEditElement(): HTMLInputElement;
|
|
43599
43600
|
protected onStatusChanged: () => void;
|
|
43600
43601
|
private setValidityState;
|
|
43601
43602
|
private get isTouchedOrDirty();
|
|
@@ -43631,7 +43632,7 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
|
|
|
43631
43632
|
private _isValueInDisabledRange;
|
|
43632
43633
|
private _setCalendarActiveDate;
|
|
43633
43634
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxDateRangePickerComponent, [null, null, null, null, null, null, { optional: true; }]>;
|
|
43634
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxDateRangePickerComponent, "igx-date-range-picker", never, { "displayMonthsCount": { "alias": "displayMonthsCount"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "hideOutsideDays": { "alias": "hideOutsideDays"; "required": false; }; "formatter": { "alias": "formatter"; "required": false; }; "doneButtonText": { "alias": "doneButtonText"; "required": false; }; "cancelButtonText": { "alias": "cancelButtonText"; "required": false; }; "overlaySettings": { "alias": "overlaySettings"; "required": false; }; "displayFormat": { "alias": "displayFormat"; "required": false; }; "inputFormat": { "alias": "inputFormat"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "specialDates": { "alias": "specialDates"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "outlet": { "alias": "outlet"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "usePredefinedRanges": { "alias": "usePredefinedRanges"; "required": false; }; "customRanges": { "alias": "customRanges"; "required": false; }; "activeDate": { "alias": "activeDate"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, ["label", "pickerActions", "dateSeparatorTemplate", "headerTitleTemplate", "headerTemplate", "subheaderTemplate", "projectedInputs"], ["igx-date-single", "igx-date-range-start", "igx-date-range-end", "[igxLabel]", "igx-prefix,[igxPrefix]", "igx-suffix,[igxSuffix]", "igx-hint,[igxHint]"], true, never>;
|
|
43635
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxDateRangePickerComponent, "igx-date-range-picker", never, { "displayMonthsCount": { "alias": "displayMonthsCount"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "hideOutsideDays": { "alias": "hideOutsideDays"; "required": false; }; "formatter": { "alias": "formatter"; "required": false; }; "doneButtonText": { "alias": "doneButtonText"; "required": false; }; "cancelButtonText": { "alias": "cancelButtonText"; "required": false; }; "overlaySettings": { "alias": "overlaySettings"; "required": false; }; "displayFormat": { "alias": "displayFormat"; "required": false; }; "inputFormat": { "alias": "inputFormat"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "specialDates": { "alias": "specialDates"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "outlet": { "alias": "outlet"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "usePredefinedRanges": { "alias": "usePredefinedRanges"; "required": false; }; "customRanges": { "alias": "customRanges"; "required": false; }; "activeDate": { "alias": "activeDate"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, ["label", "hint", "pickerActions", "dateSeparatorTemplate", "headerTitleTemplate", "headerTemplate", "subheaderTemplate", "projectedInputs"], ["igx-date-single", "igx-date-range-start", "igx-date-range-end", "[igxLabel]", "igx-prefix,[igxPrefix]", "igx-suffix,[igxSuffix]", "igx-hint,[igxHint]"], true, never>;
|
|
43635
43636
|
static ngAcceptInputType_hideOutsideDays: unknown;
|
|
43636
43637
|
static ngAcceptInputType_showWeekNumbers: unknown;
|
|
43637
43638
|
static ngAcceptInputType_readOnly: unknown;
|
|
@@ -43,13 +43,13 @@
|
|
|
43
43
|
%igx-bottom-nav-menu--top {
|
|
44
44
|
inset-block-start: 0;
|
|
45
45
|
inset-block-end: inherit;
|
|
46
|
-
box-shadow: var-get($theme, '
|
|
46
|
+
box-shadow: var-get($theme, 'elevation');
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
%igx-bottom-nav-menu--bottom {
|
|
50
50
|
inset-block-start: inherit;
|
|
51
51
|
inset-block-end: 0;
|
|
52
|
-
box-shadow: var-get($theme, '
|
|
52
|
+
box-shadow: var-get($theme, 'elevation');
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
%igx-bottom-nav-menu-item {
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
|
|
194
194
|
$contained-shadow: map.get(
|
|
195
195
|
(
|
|
196
|
-
'material': var-get($contained-theme, 'resting-
|
|
196
|
+
'material': var-get($contained-theme, 'resting-elevation'),
|
|
197
197
|
'fluent': none,
|
|
198
198
|
'bootstrap': none,
|
|
199
199
|
'indigo': none,
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
|
|
204
204
|
$contained-shadow--hover: map.get(
|
|
205
205
|
(
|
|
206
|
-
'material': var-get($contained-theme, 'hover-
|
|
206
|
+
'material': var-get($contained-theme, 'hover-elevation'),
|
|
207
207
|
'fluent': none,
|
|
208
208
|
'bootstrap': none,
|
|
209
209
|
'indigo': none,
|
|
@@ -213,8 +213,8 @@
|
|
|
213
213
|
|
|
214
214
|
$contained-shadow--focus: map.get(
|
|
215
215
|
(
|
|
216
|
-
'material': var-get($contained-theme, 'focus-
|
|
217
|
-
'fluent':
|
|
216
|
+
'material': var-get($contained-theme, 'focus-elevation'),
|
|
217
|
+
'fluent': none,
|
|
218
218
|
'bootstrap': 0 0 0 rem(4px)
|
|
219
219
|
var-get($contained-theme, 'shadow-color'),
|
|
220
220
|
'indigo': 0 0 0 rem(3px) var-get($contained-theme, 'shadow-color'),
|
|
@@ -224,8 +224,8 @@
|
|
|
224
224
|
|
|
225
225
|
$contained-shadow--active: map.get(
|
|
226
226
|
(
|
|
227
|
-
'material': var-get($contained-theme, 'active-
|
|
228
|
-
'fluent':
|
|
227
|
+
'material': var-get($contained-theme, 'active-elevation'),
|
|
228
|
+
'fluent': none,
|
|
229
229
|
'bootstrap': 0 0 0 rem(4px)
|
|
230
230
|
var-get($contained-theme, 'shadow-color'),
|
|
231
231
|
'indigo': 0 0 0 rem(3px) var-get($contained-theme, 'shadow-color'),
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
|
|
236
236
|
$fab-shadow: map.get(
|
|
237
237
|
(
|
|
238
|
-
'material': var-get($fab-theme, 'resting-
|
|
238
|
+
'material': var-get($fab-theme, 'resting-elevation'),
|
|
239
239
|
'fluent': none,
|
|
240
240
|
'bootstrap': none,
|
|
241
241
|
'indigo': none,
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
|
|
246
246
|
$fab-shadow--hover: map.get(
|
|
247
247
|
(
|
|
248
|
-
'material': var-get($fab-theme, 'hover-
|
|
248
|
+
'material': var-get($fab-theme, 'hover-elevation'),
|
|
249
249
|
'fluent': none,
|
|
250
250
|
'bootstrap': none,
|
|
251
251
|
'indigo': none,
|
|
@@ -255,8 +255,8 @@
|
|
|
255
255
|
|
|
256
256
|
$fab-shadow--focus: map.get(
|
|
257
257
|
(
|
|
258
|
-
'material': var-get($fab-theme, 'focus-
|
|
259
|
-
'fluent':
|
|
258
|
+
'material': var-get($fab-theme, 'focus-elevation'),
|
|
259
|
+
'fluent': none,
|
|
260
260
|
'bootstrap': 0 0 0 rem(4px) var-get($fab-theme, 'shadow-color'),
|
|
261
261
|
'indigo': 0 0 0 rem(3px) var-get($fab-theme, 'shadow-color'),
|
|
262
262
|
),
|
|
@@ -265,8 +265,8 @@
|
|
|
265
265
|
|
|
266
266
|
$fab-shadow--active: map.get(
|
|
267
267
|
(
|
|
268
|
-
'material': var-get($fab-theme, 'active-
|
|
269
|
-
'fluent':
|
|
268
|
+
'material': var-get($fab-theme, 'active-elevation'),
|
|
269
|
+
'fluent': none,
|
|
270
270
|
'bootstrap': 0 0 0 rem(4px) var-get($fab-theme, 'shadow-color'),
|
|
271
271
|
'indigo': 0 0 0 rem(3px) var-get($fab-theme, 'shadow-color'),
|
|
272
272
|
),
|
|
@@ -407,7 +407,11 @@
|
|
|
407
407
|
border-color: var-get($flat-theme, 'focus-visible-border-color');
|
|
408
408
|
|
|
409
409
|
igx-icon {
|
|
410
|
-
|
|
410
|
+
@if $variant == 'material' {
|
|
411
|
+
color: var-get($flat-theme, 'icon-color-hover');
|
|
412
|
+
} @else {
|
|
413
|
+
color: var-get($flat-theme, 'icon-color');
|
|
414
|
+
}
|
|
411
415
|
}
|
|
412
416
|
|
|
413
417
|
&:hover {
|
|
@@ -547,7 +551,16 @@
|
|
|
547
551
|
&:active {
|
|
548
552
|
background: var-get($outlined-theme, 'focus-background');
|
|
549
553
|
color: var-get($outlined-theme, 'focus-foreground');
|
|
550
|
-
|
|
554
|
+
|
|
555
|
+
@if $variant == 'material' {
|
|
556
|
+
border-color: var-get($outlined-theme, 'focus-border-color');
|
|
557
|
+
|
|
558
|
+
igx-icon {
|
|
559
|
+
color: var-get($outlined-theme, 'focus-foreground');
|
|
560
|
+
}
|
|
561
|
+
} @else {
|
|
562
|
+
border-color: var-get($outlined-theme, 'active-border-color');
|
|
563
|
+
}
|
|
551
564
|
|
|
552
565
|
@if $variant == 'indigo' {
|
|
553
566
|
igx-icon {
|
|
@@ -573,7 +586,10 @@
|
|
|
573
586
|
background: var-get($contained-theme, 'background');
|
|
574
587
|
border-color: var-get($contained-theme, 'border-color');
|
|
575
588
|
border-radius: var-get($contained-theme, 'border-radius');
|
|
576
|
-
|
|
589
|
+
|
|
590
|
+
@if $variant == 'material' {
|
|
591
|
+
box-shadow: var-get($contained-theme, 'resting-elevation');
|
|
592
|
+
}
|
|
577
593
|
|
|
578
594
|
igx-icon {
|
|
579
595
|
color: var-get($contained-theme, 'icon-color');
|
|
@@ -583,7 +599,10 @@
|
|
|
583
599
|
color: var-get($contained-theme, 'hover-foreground');
|
|
584
600
|
background: var-get($contained-theme, 'hover-background');
|
|
585
601
|
border-color: var-get($contained-theme, 'hover-border-color');
|
|
586
|
-
|
|
602
|
+
|
|
603
|
+
@if $variant == 'material' {
|
|
604
|
+
box-shadow: var-get($contained-theme, 'hover-elevation');
|
|
605
|
+
}
|
|
587
606
|
|
|
588
607
|
igx-icon {
|
|
589
608
|
color: var-get($contained-theme, 'icon-color-hover');
|
|
@@ -594,7 +613,10 @@
|
|
|
594
613
|
color: var-get($contained-theme, 'active-foreground');
|
|
595
614
|
background: var-get($contained-theme, 'active-background');
|
|
596
615
|
border-color: var-get($contained-theme, 'active-border-color');
|
|
597
|
-
|
|
616
|
+
|
|
617
|
+
@if $variant == 'material' {
|
|
618
|
+
box-shadow: var-get($contained-theme, 'active-elevation');
|
|
619
|
+
}
|
|
598
620
|
|
|
599
621
|
igx-icon {
|
|
600
622
|
color: var-get($contained-theme, 'active-foreground');
|
|
@@ -627,7 +649,7 @@
|
|
|
627
649
|
}
|
|
628
650
|
|
|
629
651
|
@if $variant == 'material' {
|
|
630
|
-
box-shadow: var-get($contained-theme, 'focus-
|
|
652
|
+
box-shadow: var-get($contained-theme, 'focus-elevation');
|
|
631
653
|
} @else {
|
|
632
654
|
box-shadow: $contained-shadow--active;
|
|
633
655
|
}
|
|
@@ -652,7 +674,7 @@
|
|
|
652
674
|
}
|
|
653
675
|
|
|
654
676
|
@if $variant == 'material' {
|
|
655
|
-
box-shadow: var-get($contained-theme, 'focus-
|
|
677
|
+
box-shadow: var-get($contained-theme, 'focus-elevation');
|
|
656
678
|
}
|
|
657
679
|
}
|
|
658
680
|
|
|
@@ -713,7 +735,10 @@
|
|
|
713
735
|
background: var-get($fab-theme, 'background');
|
|
714
736
|
border-color: var-get($fab-theme, 'border-color');
|
|
715
737
|
border-radius: var-get($fab-theme, 'border-radius');
|
|
716
|
-
|
|
738
|
+
|
|
739
|
+
@if $variant == 'material' {
|
|
740
|
+
box-shadow: var-get($fab-theme, 'resting-elevation');
|
|
741
|
+
}
|
|
717
742
|
|
|
718
743
|
igx-icon {
|
|
719
744
|
color: var-get($fab-theme, 'icon-color');
|
|
@@ -723,7 +748,10 @@
|
|
|
723
748
|
color: var-get($fab-theme, 'hover-foreground');
|
|
724
749
|
background: var-get($fab-theme, 'hover-background');
|
|
725
750
|
border-color: var-get($fab-theme, 'hover-border-color');
|
|
726
|
-
|
|
751
|
+
|
|
752
|
+
@if $variant == 'material' {
|
|
753
|
+
box-shadow: var-get($fab-theme, 'hover-elevation');
|
|
754
|
+
}
|
|
727
755
|
|
|
728
756
|
igx-icon {
|
|
729
757
|
color: var-get($fab-theme, 'icon-color-hover');
|
|
@@ -734,7 +762,10 @@
|
|
|
734
762
|
color: var-get($fab-theme, 'active-foreground');
|
|
735
763
|
background: var-get($fab-theme, 'active-background');
|
|
736
764
|
border-color: var-get($fab-theme, 'active-border-color');
|
|
737
|
-
|
|
765
|
+
|
|
766
|
+
@if $variant == 'material' {
|
|
767
|
+
box-shadow: var-get($fab-theme, 'active-elevation');
|
|
768
|
+
}
|
|
738
769
|
|
|
739
770
|
igx-icon {
|
|
740
771
|
color: var-get($fab-theme, 'active-foreground');
|
|
@@ -758,7 +789,7 @@
|
|
|
758
789
|
}
|
|
759
790
|
|
|
760
791
|
@if $variant == 'material' {
|
|
761
|
-
box-shadow: var-get($fab-theme, 'focus-
|
|
792
|
+
box-shadow: var-get($fab-theme, 'focus-elevation');
|
|
762
793
|
} @else {
|
|
763
794
|
box-shadow: $contained-shadow--focus;
|
|
764
795
|
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
|
|
37
37
|
%igx-group-display {
|
|
38
38
|
display: flex;
|
|
39
|
-
box-shadow: var-get($theme, '
|
|
39
|
+
box-shadow: var-get($theme, 'elevation');
|
|
40
40
|
border-radius: var-get($theme, 'border-radius');
|
|
41
41
|
|
|
42
42
|
button {
|
|
@@ -269,6 +269,7 @@
|
|
|
269
269
|
color: var-get($theme, 'item-focused-text-color');
|
|
270
270
|
background: var-get($theme, 'item-focused-background');
|
|
271
271
|
border-color: var-get($theme, 'item-focused-border-color');
|
|
272
|
+
box-shadow: 0 0 0 rem(3px) var-get($theme, 'idle-shadow-color');
|
|
272
273
|
z-index: 2;
|
|
273
274
|
|
|
274
275
|
igx-icon {
|
|
@@ -352,12 +353,12 @@
|
|
|
352
353
|
&:active {
|
|
353
354
|
@extend %item-overlay;
|
|
354
355
|
|
|
355
|
-
color: var-get($theme, 'item-selected-text-color');
|
|
356
|
+
color: var-get($theme, 'item-selected-hover-text-color');
|
|
356
357
|
background: var-get($theme, 'item-selected-background');
|
|
357
358
|
border-color: var-get($theme, 'item-selected-border-color');
|
|
358
359
|
|
|
359
360
|
igx-icon {
|
|
360
|
-
color: var-get($theme, 'item-selected-icon-color');
|
|
361
|
+
color: var-get($theme, 'item-selected-hover-icon-color');
|
|
361
362
|
}
|
|
362
363
|
|
|
363
364
|
&::before {
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
%igx-card--elevated {
|
|
34
|
-
box-shadow: var-get($theme, 'resting-
|
|
34
|
+
box-shadow: var-get($theme, 'resting-elevation');
|
|
35
35
|
|
|
36
36
|
&:hover {
|
|
37
|
-
box-shadow: var-get($theme, 'hover-
|
|
37
|
+
box-shadow: var-get($theme, 'hover-elevation');
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
@if $not-material-theme {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
outline-style: none;
|
|
47
47
|
transition: all .15s ease-in-out;
|
|
48
48
|
background: var-get($theme, 'button-background');
|
|
49
|
-
box-shadow: var-get($theme, 'button-
|
|
49
|
+
box-shadow: var-get($theme, 'button-elevation');
|
|
50
50
|
border: rem(1px) solid var-get($theme, 'button-border-color');
|
|
51
51
|
border-radius: var(--nav-btn-border-radius);
|
|
52
52
|
|
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
inset-inline-start: 50%;
|
|
168
168
|
transform: translateX(-50%);
|
|
169
169
|
background: var-get($theme, 'indicator-background');
|
|
170
|
-
box-shadow: var-get($theme, 'button-
|
|
170
|
+
box-shadow: var-get($theme, 'button-elevation');
|
|
171
171
|
border-radius: var-get($theme, 'border-radius');
|
|
172
172
|
|
|
173
173
|
[dir='rtl'] & {
|
|
@@ -540,7 +540,7 @@
|
|
|
540
540
|
@extend %igx-chip;
|
|
541
541
|
|
|
542
542
|
position: absolute;
|
|
543
|
-
box-shadow: var-get($theme, 'ghost-
|
|
543
|
+
box-shadow: var-get($theme, 'ghost-elevation');
|
|
544
544
|
overflow: hidden;
|
|
545
545
|
color: var-get($theme, 'focus-text-color');
|
|
546
546
|
background: var-get($theme, 'ghost-background');
|
|
@@ -276,8 +276,8 @@
|
|
|
276
276
|
|
|
277
277
|
.igx-input-group--disabled {
|
|
278
278
|
%igx-combo__toggle-button {
|
|
279
|
-
background: var-get($theme, 'toggle-button-background-disabled')
|
|
280
|
-
color: var-get($theme, 'toggle-button-foreground-disabled')
|
|
279
|
+
background: var-get($theme, 'toggle-button-background-disabled');
|
|
280
|
+
color: var-get($theme, 'toggle-button-foreground-disabled');
|
|
281
281
|
}
|
|
282
282
|
|
|
283
283
|
%igx-combo__clear-button {
|
|
@@ -6,8 +6,12 @@
|
|
|
6
6
|
/// @param {Map} $theme - The theme used to style the component.
|
|
7
7
|
@mixin date-range-picker($theme) {
|
|
8
8
|
@include css-vars($theme);
|
|
9
|
+
$variant: map.get($theme, '_meta', 'theme');
|
|
9
10
|
|
|
10
11
|
%igx-date-range-picker {
|
|
12
|
+
@include sizable();
|
|
13
|
+
--input-group-size: #{map.get($theme, 'size')};
|
|
14
|
+
--component-size: var(--ig-size, #{var-get($theme, 'default-size')});
|
|
11
15
|
display: flex;
|
|
12
16
|
|
|
13
17
|
> igx-icon {
|
|
@@ -32,6 +36,8 @@
|
|
|
32
36
|
igx-date-range-end,
|
|
33
37
|
%igx-date-range-picker__start,
|
|
34
38
|
%igx-date-range-picker__end {
|
|
39
|
+
--size: var(--input-group-size) !important;
|
|
40
|
+
|
|
35
41
|
flex: 1 0 0%;
|
|
36
42
|
}
|
|
37
43
|
|
|
@@ -40,6 +46,21 @@
|
|
|
40
46
|
align-items: center;
|
|
41
47
|
color: var-get($theme, 'label-color');
|
|
42
48
|
margin: 0 rem(8px);
|
|
49
|
+
height: var(--input-group-size);
|
|
50
|
+
|
|
51
|
+
@if $variant != 'material' {
|
|
52
|
+
align-self: flex-end;
|
|
53
|
+
|
|
54
|
+
&.input-has-hint {
|
|
55
|
+
align-self: center;
|
|
56
|
+
|
|
57
|
+
&:not(.input-has-label) {
|
|
58
|
+
align-self: flex-start;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
} @else {
|
|
62
|
+
align-self: flex-start;
|
|
63
|
+
}
|
|
43
64
|
}
|
|
44
65
|
|
|
45
66
|
%igx-date-range-picker-buttons {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
border: rem(1px) solid var-get($theme, 'border-color');
|
|
52
52
|
border-radius: var-get($theme, 'border-radius');
|
|
53
53
|
background: var-get($theme, 'background');
|
|
54
|
-
box-shadow: var-get($theme, '
|
|
54
|
+
box-shadow: var-get($theme, 'elevation');
|
|
55
55
|
overflow: hidden;
|
|
56
56
|
|
|
57
57
|
.igx-calendar {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
overflow: hidden;
|
|
21
21
|
border-radius: var-get($theme, 'border-radius');
|
|
22
22
|
background: var-get($theme, 'background-color');
|
|
23
|
-
box-shadow: var-get($theme, '
|
|
23
|
+
box-shadow: var-get($theme, 'elevation');
|
|
24
24
|
min-width: rem(128px);
|
|
25
25
|
border: var-get($theme, 'border-width') solid var-get($theme, 'border-color');
|
|
26
26
|
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
), $variant);
|
|
35
35
|
$cbx-bs-size: rem(14px);
|
|
36
36
|
|
|
37
|
-
$grid-shadow: var-get($theme, 'grid-
|
|
37
|
+
$grid-shadow: var-get($theme, 'grid-elevation');
|
|
38
38
|
|
|
39
39
|
$grid-caption-fs: rem(20px);
|
|
40
40
|
$grid-caption-lh: rem(32px);
|
|
@@ -292,6 +292,12 @@
|
|
|
292
292
|
box-shadow: none !important;
|
|
293
293
|
border: none !important;
|
|
294
294
|
}
|
|
295
|
+
|
|
296
|
+
.igx-input-group--disabled,
|
|
297
|
+
.igx-input-group--disabled igx-prefix,
|
|
298
|
+
.igx-input-group--disabled igx-suffix {
|
|
299
|
+
color: var-get($theme, 'cell-disabled-color');
|
|
300
|
+
}
|
|
295
301
|
}
|
|
296
302
|
|
|
297
303
|
@if $variant != 'indigo' {
|
|
@@ -888,7 +894,7 @@
|
|
|
888
894
|
@include css-vars((
|
|
889
895
|
name: 'igx-grid-row',
|
|
890
896
|
row-ghost-background: map.get($theme, 'row-ghost-background'),
|
|
891
|
-
row-drag-color: map.get($theme, 'row-
|
|
897
|
+
row-drag-color: map.get($theme, 'row-drag-color')
|
|
892
898
|
));
|
|
893
899
|
}
|
|
894
900
|
}
|
|
@@ -1000,7 +1006,11 @@
|
|
|
1000
1006
|
}
|
|
1001
1007
|
|
|
1002
1008
|
%igx-icon--error {
|
|
1003
|
-
|
|
1009
|
+
@if $variant == 'fluent' and $theme-variant == 'light' or $variant == 'material' and $theme-variant == 'light' {
|
|
1010
|
+
color: color($color: 'gray', $variant: 600);
|
|
1011
|
+
} @else {
|
|
1012
|
+
color: color($color: 'gray', $variant: 500);
|
|
1013
|
+
}
|
|
1004
1014
|
}
|
|
1005
1015
|
}
|
|
1006
1016
|
|
|
@@ -1192,6 +1202,21 @@
|
|
|
1192
1202
|
align-items: center;
|
|
1193
1203
|
outline-style: none;
|
|
1194
1204
|
|
|
1205
|
+
@extend %cell-input-overrides;
|
|
1206
|
+
|
|
1207
|
+
> igx-input-group,
|
|
1208
|
+
igx-combo,
|
|
1209
|
+
igx-simple-combo,
|
|
1210
|
+
igx-select,
|
|
1211
|
+
igx-date-picker,
|
|
1212
|
+
igx-time-picker {
|
|
1213
|
+
height: auto;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
igx-input-group {
|
|
1217
|
+
background: transparent;
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1195
1220
|
@if $variant != 'indigo' {
|
|
1196
1221
|
padding-inline: pad-inline(
|
|
1197
1222
|
map.get($grid-cell-padding-inline, 'compact'),
|
|
@@ -1407,8 +1432,6 @@
|
|
|
1407
1432
|
&%grid-cell-number {
|
|
1408
1433
|
justify-content: flex-start !important;
|
|
1409
1434
|
}
|
|
1410
|
-
|
|
1411
|
-
@extend %cell-input-overrides;
|
|
1412
1435
|
}
|
|
1413
1436
|
|
|
1414
1437
|
%grid-cell--pinned {
|
|
@@ -1908,7 +1931,7 @@
|
|
|
1908
1931
|
top: rem(-99999px);
|
|
1909
1932
|
inset-inline-start: rem(-99999px);
|
|
1910
1933
|
border: none;
|
|
1911
|
-
box-shadow: var-get($theme, 'drag-
|
|
1934
|
+
box-shadow: var-get($theme, 'drag-elevation');
|
|
1912
1935
|
overflow: hidden;
|
|
1913
1936
|
z-index: 20;
|
|
1914
1937
|
|
|
@@ -754,12 +754,6 @@
|
|
|
754
754
|
@include mx(fluent, search, focused) {
|
|
755
755
|
@extend %igx-input-group-fluent-search--focused !optional;
|
|
756
756
|
}
|
|
757
|
-
|
|
758
|
-
@include mx(fluent, search, disabled) {
|
|
759
|
-
@include e(bundle) {
|
|
760
|
-
@extend %form-group-bundle-search--disabled !optional;
|
|
761
|
-
}
|
|
762
|
-
}
|
|
763
757
|
// FLUENT END
|
|
764
758
|
|
|
765
759
|
// ============================== //
|