@ardium-ui/ui 5.0.0-alpha.93 → 5.0.0-alpha.94
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/ardium-ui-ui.mjs +2 -1
- package/fesm2022/ardium-ui-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/prebuilt-themes/default/buttons/button.css +2 -0
- package/prebuilt-themes/default/buttons/button.css.map +1 -1
- package/prebuilt-themes/default/buttons/fab.css +6 -11
- package/prebuilt-themes/default/buttons/fab.css.map +1 -1
- package/prebuilt-themes/default/buttons/icon-button.css +10 -9
- package/prebuilt-themes/default/buttons/icon-button.css.map +1 -1
- package/themes/default/buttons/button.scss +2 -0
- package/themes/default/buttons/fab.scss +12 -10
- package/themes/default/buttons/icon-button.scss +10 -8
|
@@ -6556,7 +6556,7 @@ function getCalendarDayData(year, monthIndex, firstWeekday = 1, min, max, fillUp
|
|
|
6556
6556
|
continue;
|
|
6557
6557
|
}
|
|
6558
6558
|
// add the day number
|
|
6559
|
-
const valueDate =
|
|
6559
|
+
const valueDate = getUTCDate(year, monthIndex, currentDay);
|
|
6560
6560
|
currentWeek.push({
|
|
6561
6561
|
value: currentDay,
|
|
6562
6562
|
valueDate,
|
|
@@ -6633,6 +6633,7 @@ class ArdiumIconButtonComponent extends _FocusableComponentBase {
|
|
|
6633
6633
|
`ard-color-${this.disabled() ? ComponentColor.None : this.color()}`,
|
|
6634
6634
|
this.lightColoring() ? `ard-light-coloring` : '',
|
|
6635
6635
|
this.compact() ? 'ard-compact' : '',
|
|
6636
|
+
this.pointerEventsWhenDisabled() ? 'ard-icon-button-with-pointer-events-when-disabled' : '',
|
|
6636
6637
|
].join(' '));
|
|
6637
6638
|
}
|
|
6638
6639
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ArdiumIconButtonComponent, deps: [{ token: ARD_ICON_BUTTON_DEFAULTS }], target: i0.ɵɵFactoryTarget.Component }); }
|