igniteui-theming 1.4.5 → 1.4.6-beta.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.
Files changed (94) hide show
  1. package/package.json +1 -1
  2. package/sass/themes/schemas/components/dark/_action-strip.scss +50 -0
  3. package/sass/themes/schemas/components/dark/_badge.scss +39 -0
  4. package/sass/themes/schemas/components/dark/_banner.scss +54 -0
  5. package/sass/themes/schemas/components/dark/_bottom-nav.scss +61 -0
  6. package/sass/themes/schemas/components/dark/_button-group.scss +190 -0
  7. package/sass/themes/schemas/components/dark/_calendar.scss +338 -0
  8. package/sass/themes/schemas/components/dark/_card.scss +71 -0
  9. package/sass/themes/schemas/components/dark/_carousel.scss +127 -0
  10. package/sass/themes/schemas/components/dark/_checkbox.scss +1 -6
  11. package/sass/themes/schemas/components/dark/_chip.scss +111 -0
  12. package/sass/themes/schemas/components/dark/_column-actions.scss +28 -0
  13. package/sass/themes/schemas/components/dark/_date-range-picker.scss +28 -0
  14. package/sass/themes/schemas/components/dark/_dialog.scss +55 -0
  15. package/sass/themes/schemas/components/dark/_divider.scss +43 -0
  16. package/sass/themes/schemas/components/dark/_dock-manager.scss +349 -0
  17. package/sass/themes/schemas/components/dark/_expansion-panel.scss +87 -0
  18. package/sass/themes/schemas/components/dark/_grid-filtering.scss +28 -0
  19. package/sass/themes/schemas/components/dark/_grid-summary.scss +83 -0
  20. package/sass/themes/schemas/components/dark/_grid-toolbar.scss +36 -0
  21. package/sass/themes/schemas/components/dark/_grid.scss +684 -0
  22. package/sass/themes/schemas/components/dark/_highlight.scss +72 -0
  23. package/sass/themes/schemas/components/dark/_index.scss +214 -30
  24. package/sass/themes/schemas/components/dark/_list.scss +116 -0
  25. package/sass/themes/schemas/components/dark/_navdrawer.scss +142 -0
  26. package/sass/themes/schemas/components/dark/_overlay.scss +34 -0
  27. package/sass/themes/schemas/components/dark/_pagination.scss +44 -0
  28. package/sass/themes/schemas/components/dark/_pivot-data-selector.scss +27 -0
  29. package/sass/themes/schemas/components/dark/_progress.scss +107 -0
  30. package/sass/themes/schemas/components/dark/_query-builder.scss +35 -0
  31. package/sass/themes/schemas/components/dark/_radio.scss +1 -6
  32. package/sass/themes/schemas/components/dark/_ripple.scss +28 -0
  33. package/sass/themes/schemas/components/dark/_scrollbar.scss +69 -0
  34. package/sass/themes/schemas/components/dark/_snackbar.scss +55 -0
  35. package/sass/themes/schemas/components/dark/_splitter.scss +68 -0
  36. package/sass/themes/schemas/components/dark/_stepper.scss +186 -0
  37. package/sass/themes/schemas/components/dark/_switch.scss +0 -1
  38. package/sass/themes/schemas/components/dark/_time-picker.scss +54 -0
  39. package/sass/themes/schemas/components/dark/_toast.scss +67 -0
  40. package/sass/themes/schemas/components/dark/_tooltip.scss +44 -0
  41. package/sass/themes/schemas/components/dark/_watermark.scss +48 -0
  42. package/sass/themes/schemas/components/elevation/_badge.scss +17 -0
  43. package/sass/themes/schemas/components/elevation/_bottom-nav.scss +23 -0
  44. package/sass/themes/schemas/components/elevation/_button-group.scss +29 -0
  45. package/sass/themes/schemas/components/elevation/_card.scss +37 -0
  46. package/sass/themes/schemas/components/elevation/_carousel.scss +29 -0
  47. package/sass/themes/schemas/components/elevation/_chip.scss +29 -0
  48. package/sass/themes/schemas/components/elevation/_dialog.scss +17 -0
  49. package/sass/themes/schemas/components/elevation/_grid.scss +21 -0
  50. package/sass/themes/schemas/components/elevation/_navdrawer.scss +17 -0
  51. package/sass/themes/schemas/components/elevation/_snackbar.scss +17 -0
  52. package/sass/themes/schemas/components/elevation/_time-picker.scss +13 -0
  53. package/sass/themes/schemas/components/elevation/_toast.scss +17 -0
  54. package/sass/themes/schemas/components/light/_action-strip.scss +89 -0
  55. package/sass/themes/schemas/components/light/_avatar.scss +1 -1
  56. package/sass/themes/schemas/components/light/_badge.scss +82 -0
  57. package/sass/themes/schemas/components/light/_banner.scss +96 -0
  58. package/sass/themes/schemas/components/light/_bottom-nav.scss +61 -0
  59. package/sass/themes/schemas/components/light/_button-group.scss +426 -0
  60. package/sass/themes/schemas/components/light/_calendar.scss +908 -0
  61. package/sass/themes/schemas/components/light/_card.scss +207 -0
  62. package/sass/themes/schemas/components/light/_carousel.scss +195 -0
  63. package/sass/themes/schemas/components/light/_chip.scss +538 -0
  64. package/sass/themes/schemas/components/light/_column-actions.scss +42 -0
  65. package/sass/themes/schemas/components/light/_date-range-picker.scss +35 -0
  66. package/sass/themes/schemas/components/light/_dialog.scss +102 -0
  67. package/sass/themes/schemas/components/light/_divider.scss +33 -0
  68. package/sass/themes/schemas/components/light/_dock-manager.scss +548 -0
  69. package/sass/themes/schemas/components/light/_expansion-panel.scss +172 -0
  70. package/sass/themes/schemas/components/light/_grid-filtering.scss +105 -0
  71. package/sass/themes/schemas/components/light/_grid-summary.scss +138 -0
  72. package/sass/themes/schemas/components/light/_grid-toolbar.scss +117 -0
  73. package/sass/themes/schemas/components/light/_grid.scss +1330 -0
  74. package/sass/themes/schemas/components/light/_highlight.scss +86 -0
  75. package/sass/themes/schemas/components/light/_icon.scss +4 -14
  76. package/sass/themes/schemas/components/light/_index.scss +214 -30
  77. package/sass/themes/schemas/components/light/_list.scss +321 -0
  78. package/sass/themes/schemas/components/light/_navdrawer.scss +214 -0
  79. package/sass/themes/schemas/components/light/_overlay.scss +42 -0
  80. package/sass/themes/schemas/components/light/_pagination.scss +97 -0
  81. package/sass/themes/schemas/components/light/_pivot-data-selector.scss +38 -0
  82. package/sass/themes/schemas/components/light/_progress.scss +208 -0
  83. package/sass/themes/schemas/components/light/_query-builder.scss +138 -0
  84. package/sass/themes/schemas/components/light/_ripple.scss +36 -0
  85. package/sass/themes/schemas/components/light/_scrollbar.scss +79 -0
  86. package/sass/themes/schemas/components/light/_slider.scss +0 -4
  87. package/sass/themes/schemas/components/light/_snackbar.scss +131 -0
  88. package/sass/themes/schemas/components/light/_splitter.scss +99 -0
  89. package/sass/themes/schemas/components/light/_stepper.scss +695 -0
  90. package/sass/themes/schemas/components/light/_switch.scss +0 -5
  91. package/sass/themes/schemas/components/light/_time-picker.scss +210 -0
  92. package/sass/themes/schemas/components/light/_toast.scss +89 -0
  93. package/sass/themes/schemas/components/light/_tooltip.scss +96 -0
  94. package/sass/themes/schemas/components/light/_watermark.scss +77 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-theming",
3
- "version": "1.4.5",
3
+ "version": "1.4.6-beta.1",
4
4
  "description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,50 @@
1
+ @use '../../../../utils/map' as *;
2
+ @use '../light/action-strip' as *;
3
+
4
+ ////
5
+ /// @package theming
6
+ /// @group schemas
7
+ /// @access public
8
+ ////
9
+
10
+ /// Generates a dark action-strip schema.
11
+ /// @type {Map}
12
+ /// @requires $light-action-strip
13
+ $dark-action-strip: $light-action-strip;
14
+
15
+ /// Generates a dark fluent action strip schema.
16
+ /// @type {Map}
17
+ /// @prop {Map} actions-background [color: ('gray', 600)] - The color used for actions background.
18
+ /// @requires $fluent-action-strip
19
+ $dark-fluent-action-strip: extend(
20
+ $fluent-action-strip,
21
+ (
22
+ actions-background: (
23
+ color: (
24
+ 'gray',
25
+ 600,
26
+ ),
27
+ ),
28
+ )
29
+ );
30
+
31
+ /// Generates a dark bootstrap action strip schema.
32
+ /// @type {Map}
33
+ /// @prop {Map} actions-background [color: ('gray', 100)] - The color used for actions background.
34
+ /// @requires $bootstrap-action-strip
35
+ $dark-bootstrap-action-strip: extend(
36
+ $bootstrap-action-strip,
37
+ (
38
+ actions-background: (
39
+ color: (
40
+ 'gray',
41
+ 100,
42
+ ),
43
+ ),
44
+ )
45
+ );
46
+
47
+ /// Generates a dark indigo action strip schema.
48
+ /// @type {Map}
49
+ /// @requires $indigo-action-strip
50
+ $dark-indigo-action-strip: $indigo-action-strip;
@@ -0,0 +1,39 @@
1
+ @use '../../../../utils/map' as *;
2
+ @use '../light/badge' as *;
3
+
4
+ ////
5
+ /// @package theming
6
+ /// @group schemas
7
+ /// @access public
8
+ ////
9
+
10
+ /// Generates a dark badge schema.
11
+ /// @type {Map}
12
+ /// @requires $light-badge
13
+ $dark-badge: $light-badge;
14
+
15
+ /// Generates a dark fluent badge schema.
16
+ /// @type {Map}
17
+ /// @requires $fluent-badge
18
+ $dark-fluent-badge: $fluent-badge;
19
+
20
+ /// Generates a dark bootstrap badge schema.
21
+ /// @type {Map}
22
+ /// @prop {Map} border-color [contrast-color: ('gray', 50)] - The border color used.
23
+ /// @requires $bootstrap-badge
24
+ $dark-bootstrap-badge: extend(
25
+ $bootstrap-badge,
26
+ (
27
+ border-color: (
28
+ contrast-color: (
29
+ 'gray',
30
+ 50,
31
+ ),
32
+ ),
33
+ )
34
+ );
35
+
36
+ /// Generates a dark indigo badge schema.
37
+ /// @type {Map}
38
+ /// @requires $indigo-badge
39
+ $dark-indigo-badge: $indigo-badge;
@@ -0,0 +1,54 @@
1
+ @use '../../../../utils/map' as *;
2
+ @use '../light/banner' as *;
3
+
4
+ ////
5
+ /// @package theming
6
+ /// @group schemas
7
+ /// @access public
8
+ ////
9
+
10
+ /// Generates a dark banner schema.
11
+ /// @type {Map}
12
+ /// @requires $light-banner
13
+ $dark-banner: $light-banner;
14
+
15
+ /// Generates a dark fluent banner schema.
16
+ /// @type {Map}
17
+ /// @requires $fluent-banner
18
+ $dark-fluent-banner: $fluent-banner;
19
+
20
+ /// Generates a dark bootstrap banner schema.
21
+ /// @type {Map}
22
+ /// @prop {Map} banner-background [color: ('surface')] - The background color used banner background.
23
+ /// @prop {Map} banner-message-color [color: ('gray', 600)] - The color used for banner label.
24
+ /// @prop {Map} banner-illustration-color [color: ('gray', 600)] - The color used banner illustration.
25
+ /// @requires $bootstrap-banner
26
+ $dark-bootstrap-banner: extend(
27
+ $bootstrap-banner,
28
+ (
29
+ banner-background: (
30
+ color: (
31
+ 'surface',
32
+ ),
33
+ ),
34
+
35
+ banner-message-color: (
36
+ color: (
37
+ 'gray',
38
+ 600,
39
+ ),
40
+ ),
41
+
42
+ banner-illustration-color: (
43
+ color: (
44
+ 'gray',
45
+ 600,
46
+ ),
47
+ ),
48
+ )
49
+ );
50
+
51
+ /// Generates a dark indigo banner schema.
52
+ /// @type {Map}
53
+ /// @requires $indigo-banner
54
+ $dark-indigo-banner: $indigo-banner;
@@ -0,0 +1,61 @@
1
+ @use '../../../../utils/map' as *;
2
+ @use '../light/bottom-nav' as *;
3
+
4
+ ////
5
+ /// @package theming
6
+ /// @group schemas
7
+ /// @access public
8
+ ////
9
+
10
+ /// Generates the base dark bottom-nav schema.
11
+ /// @type {Map}
12
+ $base-dark-bottom-nav: $light-bottom-nav;
13
+
14
+ /// Generates a dark bottom-nav schema based on a mix of $light-bottom-nav and $base-dark-bottom-nav
15
+ /// @type {Map}
16
+ /// @requires $light-bottom-nav
17
+ /// @requires $base-dark-bottom-nav
18
+ $dark-bottom-nav: extend($light-bottom-nav, $base-dark-bottom-nav);
19
+
20
+ /// Generates a dark fluent bottom-nav schema based on a mix of $fluent-bottom-nav and $base-dark-bottom-nav
21
+ /// @type {Map}
22
+ /// @requires $fluent-bottom-nav
23
+ /// @requires $base-dark-bottom-nav
24
+ $dark-fluent-bottom-nav: extend($fluent-bottom-nav, $base-dark-bottom-nav);
25
+
26
+ /// Generates a dark bootstrap bottom-nav schema based on a mix of $bootstrap-bottom-nav and $base-dark-bottom-nav
27
+ /// @type {Map}
28
+ /// @requires $bootstrap-bottom-nav
29
+ /// @requires $base-dark-bottom-nav
30
+ $dark-bootstrap-bottom-nav: extend($bootstrap-bottom-nav, $base-dark-bottom-nav);
31
+
32
+ /// Generates a dark indigo bottom-nav schema based on a mix of $indigo-bottom-nav and $base-dark-bottom-nav
33
+ /// @type {Map}
34
+ /// @prop {Map} background [color: 'surface'] - The background color used for the bottom-nav.
35
+ /// @prop {Color} active-item-color [color: ('gray', 700)] - The text-color used for the active color.
36
+ /// @prop {Map} idle-item-color [color: ('gray', 400)] - The text-color used for the idle color.
37
+ /// @requires $indigo-bottom-nav
38
+ /// @requires $base-dark-bottom-nav
39
+ $dark-indigo-bottom-nav: extend(
40
+ $indigo-bottom-nav,
41
+ $base-dark-bottom-nav,
42
+ (
43
+ background: (
44
+ color: 'surface',
45
+ ),
46
+
47
+ active-item-color: (
48
+ color: (
49
+ 'gray',
50
+ 700,
51
+ ),
52
+ ),
53
+
54
+ idle-item-color: (
55
+ color: (
56
+ 'gray',
57
+ 400,
58
+ ),
59
+ ),
60
+ )
61
+ );
@@ -0,0 +1,190 @@
1
+ @use '../../../../utils/map' as *;
2
+ @use '../light/button-group' as *;
3
+
4
+ ////
5
+ /// @package theming
6
+ /// @group schemas
7
+ /// @access public
8
+ ////
9
+
10
+ /// Generates the base dark button-group schema.
11
+ /// @type {Map}
12
+ /// @prop {Map} item-disabled-border [color: ('gray', 100)] - The border color for a disabled item in the button group.
13
+ /// @prop {Map} item-border-color [color: ('gray', 100)] - The border color between button group items.
14
+ /// @prop {Map} item-hover-background [color: ('gray', 100), .8] - The hover background color for button group items.
15
+ /// @prop {Map} item-selected-background [color: ('gray', 200)] - The background color for a selected item in the button group.
16
+ /// @prop {Map} item-selected-hover-background [color: ('gray', 300, .8)] - The background color for a selected item in hover or focus state in the button group.
17
+ /// @prop {Map} item-selected-border-color [color: ('gray', 300)] - The border color for button group selected items.
18
+ $base-dark-button-group: (
19
+ item-hover-background: (
20
+ color: (
21
+ 'gray',
22
+ 100,
23
+ 0.8,
24
+ ),
25
+ ),
26
+
27
+ item-selected-background: (
28
+ color: (
29
+ 'gray',
30
+ 200,
31
+ ),
32
+ ),
33
+
34
+ item-selected-hover-background: (
35
+ color: (
36
+ 'gray',
37
+ 300,
38
+ 0.8,
39
+ ),
40
+ ),
41
+
42
+ item-selected-border-color: (
43
+ color: (
44
+ 'gray',
45
+ 300,
46
+ ),
47
+ ),
48
+
49
+ item-border-color: (
50
+ color: (
51
+ 'gray',
52
+ 100,
53
+ ),
54
+ ),
55
+
56
+ item-disabled-border: (
57
+ color: (
58
+ 'gray',
59
+ 100,
60
+ ),
61
+ ),
62
+ );
63
+
64
+ /// Generates a dark button-group schema based on a mix of $light-button-group and $base-dark-button-group
65
+ /// @type {Map}
66
+ /// @requires $light-button-group
67
+ /// @requires $base-dark-button-group
68
+ $dark-button-group: extend($light-button-group, $base-dark-button-group);
69
+
70
+ /// Generates a dark fluent button-group schema based on a mix of $fluent-button-group and $base-dark-button-group
71
+ /// @type {Map}
72
+ /// @prop {Map} item-border-color [color: ('gray', 100)] - The border color for button group items.
73
+ /// @prop {Map} item-selected-border-color [color: ('gray', 100)] - The border color for button group selected items.
74
+ /// @prop {Map} item-disabled-border: [color: ('gray', 100)] - The border color for button group disabled items.
75
+ /// @prop {Map} item-text-color [color: ('gray', 900)] - The text color for button group items.
76
+ /// @prop {Map} item-hover-text-color [color: ('primary', 200)] - The text color for button group items on hover.
77
+ /// @prop {Color} item-hover-background [color: ('gray', 50)] - The background color for button group items on hover.
78
+ /// @prop {Map} item-selected-background [color: ('gray', 100, .5)] - The background color for button group selected items.
79
+ /// @prop {Map} item-selected-hover-background [color: ('gray', 100, .5)] - The background color for button group selected items on hover.
80
+ /// @prop {Map} item-selected-text-color [color: ('primary', 200)] - The text color for button group selected items.
81
+ /// @prop {Color} disabled-background-color [color: ('gray', 50)] - The background color for button group disabled items.
82
+ /// @requires $fluent-button-group
83
+ /// @requires $base-dark-button-group
84
+ $dark-fluent-button-group: extend(
85
+ $fluent-button-group,
86
+ $base-dark-button-group,
87
+ (
88
+ item-text-color: (
89
+ color: (
90
+ 'gray',
91
+ 900,
92
+ ),
93
+ ),
94
+
95
+ item-selected-text-color: (
96
+ color: (
97
+ 'primary',
98
+ 200,
99
+ ),
100
+ ),
101
+
102
+ item-hover-text-color: (
103
+ color: (
104
+ 'primary',
105
+ 200,
106
+ ),
107
+ ),
108
+
109
+ item-hover-background: (
110
+ color: (
111
+ 'gray',
112
+ 50,
113
+ ),
114
+ ),
115
+
116
+ item-selected-background: (
117
+ color: (
118
+ 'gray',
119
+ 100,
120
+ 0.5,
121
+ ),
122
+ ),
123
+
124
+ item-selected-hover-background: (
125
+ color: (
126
+ 'gray',
127
+ 100,
128
+ 0.5,
129
+ ),
130
+ ),
131
+
132
+ item-border-color: (
133
+ color: (
134
+ 'gray',
135
+ 100,
136
+ ),
137
+ ),
138
+
139
+ item-selected-border-color: (
140
+ color: (
141
+ 'gray',
142
+ 100,
143
+ ),
144
+ ),
145
+
146
+ item-disabled-border: (
147
+ color: (
148
+ 'gray',
149
+ 100,
150
+ ),
151
+ ),
152
+
153
+ disabled-background-color: (
154
+ color: (
155
+ 'gray',
156
+ 50,
157
+ ),
158
+ ),
159
+ )
160
+ );
161
+
162
+ /// Generates a dark bootstrap button-group schema based on a mix of $bootstrap-button-group
163
+ /// @type {Map}
164
+ /// @requires $bootstrap-button-group
165
+ $dark-bootstrap-button-group: $bootstrap-button-group;
166
+
167
+ /// Generates a dark indigo button-group schema
168
+ /// @type {Map}
169
+ /// @prop {Map} item-background [color: ('surface')] - The background color for button group items.
170
+ /// @prop {Color} item-text-color [contrast-color: 'surface']- The text color for button group items.
171
+ /// @prop {Color} item-hover-text-color [contrast-color: 'surface'] - The hover text color for button group items.
172
+ /// @requires $indigo-button-group
173
+ $dark-indigo-button-group: extend(
174
+ $indigo-button-group,
175
+ (
176
+ item-background: (
177
+ color: (
178
+ 'surface',
179
+ ),
180
+ ),
181
+
182
+ item-text-color: (
183
+ contrast-color: 'surface',
184
+ ),
185
+
186
+ item-hover-text-color: (
187
+ contrast-color: 'surface',
188
+ ),
189
+ )
190
+ );