igniteui-angular 17.2.4 → 17.2.5
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/esm2022/lib/card/card.component.mjs +17 -26
- package/fesm2022/igniteui-angular.mjs +16 -25
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/card/card.component.d.ts +2 -8
- package/lib/core/styles/components/input/_input-group-component.scss +4 -0
- package/lib/core/styles/components/input/_input-group-theme.scss +17 -4
- package/lib/core/styles/components/slider/_slider-theme.scss +27 -2
- package/lib/core/styles/components/tree/_tree-theme.scss +4 -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
|
@@ -138,7 +138,6 @@ export declare class IgxCardFooterDirective {
|
|
|
138
138
|
* ```
|
|
139
139
|
*/
|
|
140
140
|
export declare class IgxCardComponent {
|
|
141
|
-
private static ngAcceptInputType_elevated;
|
|
142
141
|
/**
|
|
143
142
|
* Sets/gets the `id` of the card.
|
|
144
143
|
* If not set, `id` will have value `"igx-card-0"`;
|
|
@@ -181,8 +180,7 @@ export declare class IgxCardComponent {
|
|
|
181
180
|
* let cardElevation = this.card.elevated;
|
|
182
181
|
* ```
|
|
183
182
|
*/
|
|
184
|
-
|
|
185
|
-
set elevated(value: boolean);
|
|
183
|
+
elevated: boolean;
|
|
186
184
|
/**
|
|
187
185
|
* Sets the value of the `horizontal` attribute of the card.
|
|
188
186
|
* Setting this to `true` will make the different card sections align horizontally,
|
|
@@ -194,13 +192,9 @@ export declare class IgxCardComponent {
|
|
|
194
192
|
* ```
|
|
195
193
|
*/
|
|
196
194
|
horizontal: boolean;
|
|
197
|
-
/**
|
|
198
|
-
* @hidden
|
|
199
|
-
* @internal
|
|
200
|
-
*/
|
|
201
|
-
private _elevated;
|
|
202
195
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxCardComponent, never>;
|
|
203
196
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxCardComponent, "igx-card", never, { "id": { "alias": "id"; "required": false; }; "role": { "alias": "role"; "required": false; }; "elevated": { "alias": "elevated"; "required": false; }; "horizontal": { "alias": "horizontal"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
197
|
+
static ngAcceptInputType_elevated: unknown;
|
|
204
198
|
static ngAcceptInputType_horizontal: unknown;
|
|
205
199
|
}
|
|
206
200
|
export declare const IgxCardActionsLayout: {
|
|
@@ -137,6 +137,10 @@
|
|
|
137
137
|
@extend %textarea-group--outlined !optional;
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
+
@include mx(textarea-group, box) {
|
|
141
|
+
@extend %textarea-group--box !optional;
|
|
142
|
+
}
|
|
143
|
+
|
|
140
144
|
@include mx(textarea-group, focused) {
|
|
141
145
|
@include e(label) {
|
|
142
146
|
@extend %textarea-group-label--focused !optional;
|
|
@@ -1014,11 +1014,24 @@
|
|
|
1014
1014
|
}
|
|
1015
1015
|
}
|
|
1016
1016
|
|
|
1017
|
-
%form-group-textarea-label {
|
|
1018
|
-
transition-duration: 0ms;
|
|
1019
|
-
}
|
|
1020
|
-
|
|
1021
1017
|
@if $material-theme {
|
|
1018
|
+
%form-group-textarea-label {
|
|
1019
|
+
top: calc($input-top-padding - #{rem(1px)});
|
|
1020
|
+
margin-block-end: auto;
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
%textarea-group--outlined {
|
|
1024
|
+
%form-group-textarea-label {
|
|
1025
|
+
top: calc($input-top-padding - #{rem(3px)});
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
%textarea-group--box {
|
|
1030
|
+
%form-group-textarea-label {
|
|
1031
|
+
top: calc($input-top-padding - #{rem(2px)});
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1022
1035
|
%textarea-group-label--focused {
|
|
1023
1036
|
transform: translateY(0);
|
|
1024
1037
|
top: calc(#{$input-top-padding} / 4);
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
border-radius: border-radius(rem(32px));
|
|
238
238
|
|
|
239
239
|
@if $variant == 'indigo-design' {
|
|
240
|
-
border-radius:
|
|
240
|
+
border-radius: border-radius(rem(4px));
|
|
241
241
|
}
|
|
242
242
|
}
|
|
243
243
|
|
|
@@ -290,6 +290,14 @@
|
|
|
290
290
|
top: 0;
|
|
291
291
|
align-items: flex-end;
|
|
292
292
|
}
|
|
293
|
+
|
|
294
|
+
@if $variant == 'indigo-design' {
|
|
295
|
+
bottom: rem(3px);
|
|
296
|
+
|
|
297
|
+
&%igx-slider__ticks--top {
|
|
298
|
+
top: rem(3px);
|
|
299
|
+
}
|
|
300
|
+
}
|
|
293
301
|
}
|
|
294
302
|
|
|
295
303
|
%igx-slider__ticks-group {
|
|
@@ -303,7 +311,7 @@
|
|
|
303
311
|
}
|
|
304
312
|
|
|
305
313
|
&:last-of-type {
|
|
306
|
-
margin-inline-
|
|
314
|
+
margin-inline-end: rem(-1px);
|
|
307
315
|
}
|
|
308
316
|
}
|
|
309
317
|
|
|
@@ -330,6 +338,10 @@
|
|
|
330
338
|
%igx-slider__ticks--tall {
|
|
331
339
|
%igx-slider__ticks-label {
|
|
332
340
|
top: calc(#{$tick-height--tall} + #{$tick-height});
|
|
341
|
+
|
|
342
|
+
@if $variant == 'indigo-design' {
|
|
343
|
+
top: calc(#{$tick-height--tall} + (#{$tick-height} / 2));
|
|
344
|
+
}
|
|
333
345
|
}
|
|
334
346
|
}
|
|
335
347
|
|
|
@@ -348,6 +360,10 @@
|
|
|
348
360
|
|
|
349
361
|
%igx-slider__ticks-label {
|
|
350
362
|
top: calc(#{$tick-height--tall} + #{$tick-height});
|
|
363
|
+
|
|
364
|
+
@if $variant == 'indigo-design' {
|
|
365
|
+
top: calc(#{$tick-height--tall} + (#{$tick-height} / 2));
|
|
366
|
+
}
|
|
351
367
|
}
|
|
352
368
|
}
|
|
353
369
|
|
|
@@ -535,6 +551,10 @@
|
|
|
535
551
|
display: flex;
|
|
536
552
|
top: calc(((#{$thumb-label-height}) + rem(20px)) * -1);
|
|
537
553
|
height: $thumb-label-height;
|
|
554
|
+
|
|
555
|
+
@if $variant == 'indigo-design' {
|
|
556
|
+
top: calc(((#{$thumb-label-height}) + rem(18px)) * -1);
|
|
557
|
+
}
|
|
538
558
|
}
|
|
539
559
|
|
|
540
560
|
%igx-slider-thumb-label__container {
|
|
@@ -561,6 +581,11 @@
|
|
|
561
581
|
border-inline-start: rem(10px) solid transparent;
|
|
562
582
|
border-inline-end: rem(10px) solid transparent;
|
|
563
583
|
border-top: rem(10px) solid var-get($theme, 'label-background-color');
|
|
584
|
+
|
|
585
|
+
@if $variant == 'indigo-design' {
|
|
586
|
+
top: rem(16px);
|
|
587
|
+
border-top: rem(12px) solid var-get($theme, 'label-background-color');
|
|
588
|
+
}
|
|
564
589
|
}
|
|
565
590
|
}
|
|
566
591
|
|
|
@@ -363,6 +363,10 @@
|
|
|
363
363
|
%node-spacer {
|
|
364
364
|
--component-size: var(--tree-size);
|
|
365
365
|
--spacer: #{sizable(#{map.get($node-indent, 'compact')}, #{map.get($node-indent, 'cosy')}, #{map.get($node-indent, 'comfortable')})};
|
|
366
|
+
|
|
367
|
+
@if $variant == 'indigo-design' {
|
|
368
|
+
--spacer: #{sizable(24px)};
|
|
369
|
+
}
|
|
366
370
|
width: var(--spacer);
|
|
367
371
|
display: inline-block;
|
|
368
372
|
}
|
package/package.json
CHANGED