igniteui-theming 10.1.0-beta.1 → 10.1.0-beta.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-theming",
3
- "version": "10.1.0-beta.1",
3
+ "version": "10.1.0-beta.2",
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": {
@@ -127,6 +127,9 @@ $dark-material-calendar: extend(
127
127
  /// @prop {Map} header-foreground [contrast-color: ('primary', 200)] - The header foreground color.
128
128
  /// @prop {Map} header-background [color: ('primary', 200)] - The background color of the month and year pickers.
129
129
  /// @prop {Мap} actions-divider-color [color: ('gray', 100)] - The border color used for the date-picker actions divider.
130
+ /// @prop {Map} date-selected-special-border-color [color: ('primary', 50)] - The border color of the selected special date.
131
+ /// @prop {Map} date-selected-special-hover-border-color [color: ('primary', 50)] - The :hover border color of the selected special date.
132
+ /// @prop {Map} date-selected-special-focus-border-color [color: ('primary', 50)] - The :focus border color of the selected special date.
130
133
  /// @requires $fluent-calendar
131
134
  $dark-fluent-calendar: extend(
132
135
  $fluent-calendar,
@@ -275,6 +278,24 @@ $dark-fluent-calendar: extend(
275
278
  100,
276
279
  ),
277
280
  ),
281
+ date-selected-special-border-color: (
282
+ color: (
283
+ 'primary',
284
+ 50,
285
+ ),
286
+ ),
287
+ date-selected-special-hover-border-color: (
288
+ color: (
289
+ 'primary',
290
+ 50,
291
+ ),
292
+ ),
293
+ date-selected-special-focus-border-color: (
294
+ color: (
295
+ 'primary',
296
+ 50,
297
+ ),
298
+ ),
278
299
  )
279
300
  );
280
301