igniteui-angular 19.2.21 → 19.2.22
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.map +1 -1
- package/lib/core/styles/components/combo/_combo-theme.scss +0 -14
- package/lib/core/styles/components/input/_input-group-theme.scss +18 -0
- package/lib/core/styles/components/select/_select-theme.scss +0 -16
- package/lib/date-picker/public_api.d.ts +1 -0
- package/package.json +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
|
@@ -222,20 +222,6 @@
|
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
@if $variant == 'bootstrap' {
|
|
225
|
-
.igx-input-group--disabled {
|
|
226
|
-
%igx-combo__toggle-button {
|
|
227
|
-
border-inline-start-width: rem(1px);
|
|
228
|
-
border-inline-start-style: solid;
|
|
229
|
-
border-inline-start-color: inherit;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
igx-suffix:not(.igx-combo__clear-button) + %igx-combo__toggle-button {
|
|
234
|
-
border-inline-start-width: rem(1px);
|
|
235
|
-
border-inline-start-style: solid;
|
|
236
|
-
border-inline-start-color: inherit;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
225
|
.igx-input-group__bundle::after {
|
|
240
226
|
height: rem(1px) !important;
|
|
241
227
|
}
|
|
@@ -2248,6 +2248,24 @@
|
|
|
2248
2248
|
min-height: 0;
|
|
2249
2249
|
height: calc(100% - #{rem(8px)});
|
|
2250
2250
|
}
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2253
|
+
%form-group-prefix--disabled-bootstrap:not(:first-child) {
|
|
2254
|
+
border-inline-start-color: var-get($theme, 'disabled-border-color');
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2257
|
+
%form-group-suffix--disabled-bootstrap:not(:last-child) {
|
|
2258
|
+
border-inline-end-color: var-get($theme, 'disabled-border-color');
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
@if $variant == 'bootstrap' {
|
|
2262
|
+
%form-group-prefix:not(:first-child) {
|
|
2263
|
+
border-inline-start: rem(1px) solid var-get($theme, 'border-color');
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
%form-group-suffix:not(:last-child) {
|
|
2267
|
+
border-inline-end: rem(1px) solid var-get($theme, 'border-color');
|
|
2268
|
+
}
|
|
2251
2269
|
}
|
|
2252
2270
|
}
|
|
2253
2271
|
|
|
@@ -78,22 +78,6 @@
|
|
|
78
78
|
display: block;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
@if $variant == 'bootstrap' {
|
|
82
|
-
.igx-input-group--disabled {
|
|
83
|
-
%igx-select__toggle-button {
|
|
84
|
-
border-inline-start-width: rem(1px);
|
|
85
|
-
border-inline-start-style: solid;
|
|
86
|
-
border-inline-start-color: inherit;
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
igx-suffix + %igx-select__toggle-button {
|
|
91
|
-
border-inline-start-width: rem(1px);
|
|
92
|
-
border-inline-start-style: solid;
|
|
93
|
-
border-inline-start-color: inherit;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
81
|
.igx-input-group {
|
|
98
82
|
%igx-select__toggle-button {
|
|
99
83
|
background: var-get($theme, 'toggle-button-background');
|
|
@@ -4,5 +4,6 @@ import { IgxLabelDirective } from '../directives/label/label.directive';
|
|
|
4
4
|
import { IgxPrefixDirective } from '../directives/prefix/prefix.directive';
|
|
5
5
|
import { IgxSuffixDirective } from '../directives/suffix/suffix.directive';
|
|
6
6
|
import { IgxDatePickerComponent } from './date-picker.component';
|
|
7
|
+
export * from './date-picker.common';
|
|
7
8
|
export * from './date-picker.component';
|
|
8
9
|
export declare const IGX_DATE_PICKER_DIRECTIVES: readonly [typeof IgxDatePickerComponent, typeof IgxPickerToggleComponent, typeof IgxPickerClearComponent, typeof IgxPickerActionsDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective];
|
package/package.json
CHANGED