pdm-ui-kit 0.1.22 → 0.1.24
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/esm2020/lib/components/button-group/button-group.component.mjs +9 -1
- package/esm2020/lib/components/calendar/calendar.component.mjs +2 -2
- package/fesm2015/pdm-ui-kit.mjs +9 -1
- package/fesm2015/pdm-ui-kit.mjs.map +1 -1
- package/fesm2020/pdm-ui-kit.mjs +9 -1
- package/fesm2020/pdm-ui-kit.mjs.map +1 -1
- package/package.json +1 -1
package/fesm2020/pdm-ui-kit.mjs
CHANGED
|
@@ -291,7 +291,11 @@ class PdmButtonGroupComponent {
|
|
|
291
291
|
: '';
|
|
292
292
|
const groupHorizontalClasses = isGroup && !isVertical && !this.separated
|
|
293
293
|
? [
|
|
294
|
+
'[&>*]:rounded-none',
|
|
295
|
+
'[&>*:first-child]:rounded-l-md',
|
|
296
|
+
'[&>*:last-child]:rounded-r-md',
|
|
294
297
|
'[&>*:not(:first-child)]:-ml-px',
|
|
298
|
+
'[&>*:not(:first-child)]:border-l-0',
|
|
295
299
|
'[&>pdm-button]:flex',
|
|
296
300
|
'[&>pdm-button>button]:h-9',
|
|
297
301
|
'[&>pdm-input]:flex-1',
|
|
@@ -313,7 +317,11 @@ class PdmButtonGroupComponent {
|
|
|
313
317
|
: '';
|
|
314
318
|
const groupVerticalClasses = isGroup && isVertical && !this.separated
|
|
315
319
|
? [
|
|
320
|
+
'[&>*]:rounded-none',
|
|
321
|
+
'[&>*:first-child]:rounded-t-md',
|
|
322
|
+
'[&>*:last-child]:rounded-b-md',
|
|
316
323
|
'[&>*:not(:first-child)]:-mt-px',
|
|
324
|
+
'[&>*:not(:first-child)]:border-t-0',
|
|
317
325
|
'[&>pdm-button]:flex',
|
|
318
326
|
'[&>pdm-button>button]:h-9',
|
|
319
327
|
'[&>pdm-button>button]:!rounded-none',
|
|
@@ -473,7 +481,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
473
481
|
type: Output
|
|
474
482
|
}] } });
|
|
475
483
|
|
|
476
|
-
const DEFAULT_VIEW_MONTH = new Date(
|
|
484
|
+
const DEFAULT_VIEW_MONTH = new Date();
|
|
477
485
|
const DAY_MS = 24 * 60 * 60 * 1000;
|
|
478
486
|
class PdmCalendarComponent {
|
|
479
487
|
constructor(cdr) {
|