igniteui-angular 19.0.0-rc.0 → 19.0.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 +56 -34
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/styles/components/dock-manager/_dock-manager-theme.scss +2 -1
- 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/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/grids/grid-base.directive.d.ts +1 -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 +3 -3
- 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
|
@@ -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');
|
|
@@ -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
|
|
|
@@ -40,7 +41,7 @@
|
|
|
40
41
|
|
|
41
42
|
$theme: digest-schema($rating-schema);
|
|
42
43
|
|
|
43
|
-
@return extend($theme, (name: $name), keywords($rest));
|
|
44
|
+
@return extend($theme, (name: $name), meta.keywords($rest));
|
|
44
45
|
}
|
|
45
46
|
|
|
46
47
|
/// @deprecated Use the `css-vars` mixin instead.
|
|
@@ -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
|
|
|
@@ -99,7 +100,7 @@
|
|
|
99
100
|
}
|
|
100
101
|
|
|
101
102
|
::-webkit-scrollbar {
|
|
102
|
-
@if type-of(map.get($theme, 'sb-size') == 'string') {
|
|
103
|
+
@if meta.type-of(map.get($theme, 'sb-size') == 'string') {
|
|
103
104
|
width: var-get($theme, 'sb-size');
|
|
104
105
|
height: var-get($theme, 'sb-size');
|
|
105
106
|
}
|
|
@@ -360,13 +360,6 @@
|
|
|
360
360
|
}
|
|
361
361
|
|
|
362
362
|
%tabs-header-item {
|
|
363
|
-
> * {
|
|
364
|
-
margin-inline-start: rem(if($variant != 'indigo', 12px, 8px));
|
|
365
|
-
|
|
366
|
-
&:first-child {
|
|
367
|
-
margin-inline-start: 0;
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
363
|
display: inline-flex;
|
|
371
364
|
justify-content: center;
|
|
372
365
|
align-items: center;
|
|
@@ -390,32 +383,6 @@
|
|
|
390
383
|
color: var-get($theme, 'item-icon-color');
|
|
391
384
|
}
|
|
392
385
|
|
|
393
|
-
&::-moz-focus-inner {
|
|
394
|
-
border: 0;
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
&:focus {
|
|
398
|
-
background: var-get($theme, 'item-active-background');
|
|
399
|
-
color: var-get($theme, 'item-hover-color');
|
|
400
|
-
border-bottom-color: transparent;
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
&:hover {
|
|
404
|
-
background: var-get($theme, 'item-hover-background');
|
|
405
|
-
color: var-get($theme, 'item-hover-color');
|
|
406
|
-
|
|
407
|
-
@if $bootstrap-theme {
|
|
408
|
-
box-shadow: inset 0 0 0 rem(1px) var-get($theme, 'border-color--hover');
|
|
409
|
-
}
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
&:hover,
|
|
413
|
-
&:focus {
|
|
414
|
-
igx-icon {
|
|
415
|
-
color: var-get($theme, 'item-hover-icon-color');
|
|
416
|
-
}
|
|
417
|
-
}
|
|
418
|
-
|
|
419
386
|
@if $bootstrap-theme {
|
|
420
387
|
padding-block: rem(12px);
|
|
421
388
|
border-start-start-radius: var-get($theme, 'border-radius');
|
|
@@ -448,6 +415,40 @@
|
|
|
448
415
|
}
|
|
449
416
|
}
|
|
450
417
|
|
|
418
|
+
> * {
|
|
419
|
+
margin-inline-start: rem(if($variant != 'indigo', 12px, 8px));
|
|
420
|
+
|
|
421
|
+
&:first-child {
|
|
422
|
+
margin-inline-start: 0;
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
&::-moz-focus-inner {
|
|
427
|
+
border: 0;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
&:focus {
|
|
431
|
+
background: var-get($theme, 'item-active-background');
|
|
432
|
+
color: var-get($theme, 'item-hover-color');
|
|
433
|
+
border-bottom-color: transparent;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
&:hover {
|
|
437
|
+
background: var-get($theme, 'item-hover-background');
|
|
438
|
+
color: var-get($theme, 'item-hover-color');
|
|
439
|
+
|
|
440
|
+
@if $bootstrap-theme {
|
|
441
|
+
box-shadow: inset 0 0 0 rem(1px) var-get($theme, 'border-color--hover');
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
&:hover,
|
|
446
|
+
&:focus {
|
|
447
|
+
igx-icon {
|
|
448
|
+
color: var-get($theme, 'item-hover-icon-color');
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
|
|
451
452
|
@include ripple($tabs-ripple-theme);
|
|
452
453
|
@include css-vars($tabs-ripple-theme);
|
|
453
454
|
}
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
@use '../../base' as *;
|
|
7
7
|
@use '../../components' as *;
|
|
8
8
|
@use 'igniteui-theming/sass/color' as *;
|
|
9
|
+
@use 'igniteui-theming/sass/color/presets' as *;
|
|
9
10
|
@use 'igniteui-theming/sass/elevations' as *;
|
|
10
11
|
@use 'igniteui-theming/sass/elevations/presets' as elevations;
|
|
11
12
|
@use 'igniteui-theming/sass/utils' as *;
|
|
@@ -683,7 +684,7 @@
|
|
|
683
684
|
);
|
|
684
685
|
|
|
685
686
|
@include theme(
|
|
686
|
-
$palette: $light-palette,
|
|
687
|
+
$palette: $light-material-palette,
|
|
687
688
|
$schema: $light-material-schema,
|
|
688
689
|
$exclude: $exclude,
|
|
689
690
|
$roundness: $roundness,
|
|
@@ -716,7 +717,7 @@
|
|
|
716
717
|
);
|
|
717
718
|
|
|
718
719
|
@include theme(
|
|
719
|
-
$palette: $dark-palette,
|
|
720
|
+
$palette: $dark-material-palette,
|
|
720
721
|
$schema: $dark-material-schema,
|
|
721
722
|
$exclude: $exclude,
|
|
722
723
|
$roundness: $roundness,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use 'base' as *;
|
|
2
2
|
@use '../schemas' as *;
|
|
3
3
|
@use 'igniteui-theming/sass/color' as *;
|
|
4
|
+
@use 'igniteui-theming/sass/color/presets' as *;
|
|
4
5
|
|
|
5
6
|
////
|
|
6
7
|
/// @group themes
|
|
@@ -20,7 +21,8 @@
|
|
|
20
21
|
) {
|
|
21
22
|
$primary: color($palette, 'primary');
|
|
22
23
|
$secondary: color($palette, 'secondary');
|
|
23
|
-
$
|
|
24
|
+
$gray: color($light-bootstrap-palette, 'gray');
|
|
25
|
+
$surface: color($light-bootstrap-palette, 'surface');
|
|
24
26
|
$info: color($palette, 'info');
|
|
25
27
|
$success: color($palette, 'success');
|
|
26
28
|
$warn: color($palette, 'warn');
|
|
@@ -30,8 +32,8 @@
|
|
|
30
32
|
$palette: palette(
|
|
31
33
|
$primary,
|
|
32
34
|
$secondary,
|
|
33
|
-
$surface:
|
|
34
|
-
$gray:
|
|
35
|
+
$surface: $surface,
|
|
36
|
+
$gray: $gray,
|
|
35
37
|
$info: $info,
|
|
36
38
|
$success: $success,
|
|
37
39
|
$warn: $warn,
|
|
@@ -56,7 +58,8 @@
|
|
|
56
58
|
) {
|
|
57
59
|
$primary: color($palette, 'primary');
|
|
58
60
|
$secondary: color($palette, 'secondary');
|
|
59
|
-
$
|
|
61
|
+
$gray: color($dark-bootstrap-palette, 'gray');
|
|
62
|
+
$surface: color($dark-bootstrap-palette, 'surface');
|
|
60
63
|
$info: color($palette, 'info');
|
|
61
64
|
$success: color($palette, 'success');
|
|
62
65
|
$warn: color($palette, 'warn');
|
|
@@ -66,8 +69,8 @@
|
|
|
66
69
|
$palette: palette(
|
|
67
70
|
$primary,
|
|
68
71
|
$secondary,
|
|
69
|
-
$surface:
|
|
70
|
-
$gray:
|
|
72
|
+
$surface: $surface,
|
|
73
|
+
$gray: $gray,
|
|
71
74
|
$info: $info,
|
|
72
75
|
$success: $success,
|
|
73
76
|
$warn: $warn,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use 'base' as *;
|
|
2
2
|
@use '../schemas' as *;
|
|
3
3
|
@use 'igniteui-theming/sass/color' as *;
|
|
4
|
+
@use 'igniteui-theming/sass/color/presets' as *;
|
|
4
5
|
|
|
5
6
|
////
|
|
6
7
|
/// @group themes
|
|
@@ -20,7 +21,8 @@
|
|
|
20
21
|
) {
|
|
21
22
|
$primary: color($palette, 'primary');
|
|
22
23
|
$secondary: color($palette, 'secondary');
|
|
23
|
-
$
|
|
24
|
+
$gray: color($light-fluent-palette, 'gray');
|
|
25
|
+
$surface: color($light-fluent-palette, 'surface');
|
|
24
26
|
$info: color($palette, 'info');
|
|
25
27
|
$success: color($palette, 'success');
|
|
26
28
|
$warn: color($palette, 'warn');
|
|
@@ -30,8 +32,8 @@
|
|
|
30
32
|
$palette: palette(
|
|
31
33
|
$primary,
|
|
32
34
|
$secondary,
|
|
33
|
-
$surface:
|
|
34
|
-
$gray:
|
|
35
|
+
$surface: $surface,
|
|
36
|
+
$gray: $gray,
|
|
35
37
|
$info: $info,
|
|
36
38
|
$success: $success,
|
|
37
39
|
$warn: $warn,
|
|
@@ -56,7 +58,8 @@
|
|
|
56
58
|
) {
|
|
57
59
|
$primary: color($palette, 'primary');
|
|
58
60
|
$secondary: color($palette, 'secondary');
|
|
59
|
-
$
|
|
61
|
+
$gray: color($dark-fluent-palette, 'gray');
|
|
62
|
+
$surface: color($dark-fluent-palette, 'surface');
|
|
60
63
|
$info: color($palette, 'info');
|
|
61
64
|
$success: color($palette, 'success');
|
|
62
65
|
$warn: color($palette, 'warn');
|
|
@@ -66,8 +69,8 @@
|
|
|
66
69
|
$palette: palette(
|
|
67
70
|
$primary,
|
|
68
71
|
$secondary,
|
|
69
|
-
$surface:
|
|
70
|
-
$gray:
|
|
72
|
+
$surface: $surface,
|
|
73
|
+
$gray: $gray,
|
|
71
74
|
$info: $info,
|
|
72
75
|
$success: $success,
|
|
73
76
|
$warn: $warn,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use 'base' as *;
|
|
2
2
|
@use '../schemas' as *;
|
|
3
3
|
@use 'igniteui-theming/sass/color' as *;
|
|
4
|
+
@use 'igniteui-theming/sass/color/presets' as *;
|
|
4
5
|
@use 'igniteui-theming/sass/elevations/presets' as elevations;
|
|
5
6
|
|
|
6
7
|
////
|
|
@@ -21,7 +22,8 @@
|
|
|
21
22
|
) {
|
|
22
23
|
$primary: color($palette, 'primary');
|
|
23
24
|
$secondary: color($palette, 'secondary');
|
|
24
|
-
$
|
|
25
|
+
$gray: color($light-indigo-palette, 'gray');
|
|
26
|
+
$surface: color($light-indigo-palette, 'surface');
|
|
25
27
|
$info: color($palette, 'info');
|
|
26
28
|
$success: color($palette, 'success');
|
|
27
29
|
$warn: color($palette, 'warn');
|
|
@@ -31,8 +33,8 @@
|
|
|
31
33
|
$palette: palette(
|
|
32
34
|
$primary,
|
|
33
35
|
$secondary,
|
|
34
|
-
$surface:
|
|
35
|
-
$gray:
|
|
36
|
+
$surface: $surface,
|
|
37
|
+
$gray: $gray,
|
|
36
38
|
$info: $info,
|
|
37
39
|
$success: $success,
|
|
38
40
|
$warn: $warn,
|
|
@@ -58,7 +60,8 @@
|
|
|
58
60
|
) {
|
|
59
61
|
$primary: color($palette, 'primary');
|
|
60
62
|
$secondary: color($palette, 'secondary');
|
|
61
|
-
$
|
|
63
|
+
$gray: color($dark-indigo-palette, 'gray');
|
|
64
|
+
$surface: color($dark-indigo-palette, 'surface');
|
|
62
65
|
$info: color($palette, 'info');
|
|
63
66
|
$success: color($palette, 'success');
|
|
64
67
|
$warn: color($palette, 'warn');
|
|
@@ -68,8 +71,8 @@
|
|
|
68
71
|
$palette: palette(
|
|
69
72
|
$primary,
|
|
70
73
|
$secondary,
|
|
71
|
-
$surface:
|
|
72
|
-
$gray:
|
|
74
|
+
$surface: $surface,
|
|
75
|
+
$gray: $gray,
|
|
73
76
|
$info: $info,
|
|
74
77
|
$success: $success,
|
|
75
78
|
$warn: $warn,
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $material-typeface,
|
|
6
|
+
$type-scale: $material-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $dark-material-schema,
|
|
10
|
+
$palette: $dark-material-palette,
|
|
11
|
+
);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $material-typeface,
|
|
6
|
+
$type-scale: $material-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $light-material-schema,
|
|
10
|
+
$palette: $light-material-palette,
|
|
11
|
+
);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $bootstrap-typeface,
|
|
6
|
+
$type-scale: $bootstrap-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $dark-bootstrap-schema,
|
|
10
|
+
$palette: $dark-bootstrap-palette,
|
|
11
|
+
);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $bootstrap-typeface,
|
|
6
|
+
$type-scale: $bootstrap-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $light-bootstrap-schema,
|
|
10
|
+
$palette: $light-bootstrap-palette,
|
|
11
|
+
);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $material-typeface,
|
|
6
|
+
$type-scale: $material-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $dark-material-schema,
|
|
10
|
+
$palette: $dark-green-palette,
|
|
11
|
+
);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $fluent-typeface,
|
|
6
|
+
$type-scale: $fluent-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $dark-fluent-schema,
|
|
10
|
+
$palette: $dark-fluent-excel-palette,
|
|
11
|
+
);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $fluent-typeface,
|
|
6
|
+
$type-scale: $fluent-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $dark-fluent-schema,
|
|
10
|
+
$palette: $dark-fluent-word-palette,
|
|
11
|
+
);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $fluent-typeface,
|
|
6
|
+
$type-scale: $fluent-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $dark-fluent-schema,
|
|
10
|
+
$palette: $dark-fluent-palette,
|
|
11
|
+
);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $fluent-typeface,
|
|
6
|
+
$type-scale: $fluent-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $light-fluent-schema,
|
|
10
|
+
$palette: $light-fluent-excel-palette,
|
|
11
|
+
);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $fluent-typeface,
|
|
6
|
+
$type-scale: $fluent-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $light-fluent-schema,
|
|
10
|
+
$palette: $light-fluent-word-palette,
|
|
11
|
+
);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $fluent-typeface,
|
|
6
|
+
$type-scale: $fluent-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $light-fluent-schema,
|
|
10
|
+
$palette: $light-fluent-palette,
|
|
11
|
+
);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $indigo-typeface,
|
|
6
|
+
$type-scale: $indigo-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $dark-indigo-schema,
|
|
10
|
+
$palette: $dark-indigo-palette,
|
|
11
|
+
);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
@use '../../themes' as *;
|
|
2
2
|
|
|
3
3
|
@include core();
|
|
4
|
-
@include typography(
|
|
5
|
-
|
|
4
|
+
@include typography(
|
|
5
|
+
$font-family: $indigo-typeface,
|
|
6
|
+
$type-scale: $indigo-type-scale
|
|
7
|
+
);
|
|
8
|
+
@include theme(
|
|
9
|
+
$schema: $light-indigo-schema,
|
|
10
|
+
$palette: $light-indigo-palette,
|
|
11
|
+
);
|
|
@@ -1989,6 +1989,7 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
|
|
|
1989
1989
|
private _selectRowOnClick;
|
|
1990
1990
|
private _columnSelectionMode;
|
|
1991
1991
|
private lastAddedRowIndex;
|
|
1992
|
+
protected isColumnWidthSum: boolean;
|
|
1992
1993
|
private _currencyPositionLeft;
|
|
1993
1994
|
private rowEditPositioningStrategy;
|
|
1994
1995
|
private rowEditSettings;
|
|
@@ -615,7 +615,6 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
615
615
|
/** @hidden @internal */
|
|
616
616
|
get values(): IPivotValue[];
|
|
617
617
|
toggleColumn(col: IgxColumnComponent): void;
|
|
618
|
-
protected getColumnWidthSum(): number;
|
|
619
618
|
/**
|
|
620
619
|
* @hidden @internal
|
|
621
620
|
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, OnDestroy } from '@angular/core';
|
|
2
|
+
import { PlatformUtil } from '../../core/utils';
|
|
2
3
|
import { AnimationService } from '../../services/animation/animation';
|
|
3
4
|
import { IgxDirectionality } from '../../services/direction/directionality';
|
|
4
5
|
import { IgxTabsDirective } from '../tabs.directive';
|
|
@@ -42,6 +43,7 @@ export type IgxTabsAlignment = (typeof IgxTabsAlignment)[keyof typeof IgxTabsAli
|
|
|
42
43
|
*/
|
|
43
44
|
export declare class IgxTabsComponent extends IgxTabsDirective implements AfterViewInit, OnDestroy {
|
|
44
45
|
private ngZone;
|
|
46
|
+
private platform;
|
|
45
47
|
/**
|
|
46
48
|
* Gets/Sets the tab alignment. Defaults to `start`.
|
|
47
49
|
*/
|
|
@@ -76,7 +78,7 @@ export declare class IgxTabsComponent extends IgxTabsDirective implements AfterV
|
|
|
76
78
|
protected componentName: string;
|
|
77
79
|
private _tabAlignment;
|
|
78
80
|
private _resizeObserver;
|
|
79
|
-
constructor(animationService: AnimationService, cdr: ChangeDetectorRef, ngZone: NgZone, dir: IgxDirectionality);
|
|
81
|
+
constructor(animationService: AnimationService, cdr: ChangeDetectorRef, ngZone: NgZone, dir: IgxDirectionality, platform: PlatformUtil);
|
|
80
82
|
/** @hidden @internal */
|
|
81
83
|
ngAfterViewInit(): void;
|
|
82
84
|
/** @hidden @internal */
|