ngx-com 0.0.4 → 0.0.5
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
|
@@ -2,6 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { InjectionToken, InputSignal, TemplateRef, OutputEmitterRef, Signal, WritableSignal, Provider, OnDestroy } from '@angular/core';
|
|
3
3
|
import { VariantProps } from 'class-variance-authority';
|
|
4
4
|
import { ControlValueAccessor, Validator, ValidationErrors } from '@angular/forms';
|
|
5
|
+
import { IconSize } from 'ngx-com/components/icon';
|
|
5
6
|
|
|
6
7
|
/**
|
|
7
8
|
* Calendar shared types and interfaces
|
|
@@ -1417,6 +1418,8 @@ declare class ComDatepicker<D> implements ControlValueAccessor, Validator, OnDes
|
|
|
1417
1418
|
readonly panelId: Signal<string>;
|
|
1418
1419
|
/** Whether the datepicker has a value. */
|
|
1419
1420
|
readonly hasValue: Signal<boolean>;
|
|
1421
|
+
/** Icon size based on datepicker size. */
|
|
1422
|
+
readonly iconSize: Signal<IconSize>;
|
|
1420
1423
|
/** Formatted display value. */
|
|
1421
1424
|
readonly displayValue: Signal<string>;
|
|
1422
1425
|
/** Computed trigger classes. */
|
|
@@ -1592,6 +1595,8 @@ declare class ComDateRangePicker<D> implements ControlValueAccessor, Validator,
|
|
|
1592
1595
|
readonly panelId: Signal<string>;
|
|
1593
1596
|
/** Whether the datepicker has a value. */
|
|
1594
1597
|
readonly hasValue: Signal<boolean>;
|
|
1598
|
+
/** Icon size based on datepicker size. */
|
|
1599
|
+
readonly iconSize: Signal<IconSize>;
|
|
1595
1600
|
/** Calendar selection (converts DateRangeValue to DateRange for calendar). */
|
|
1596
1601
|
readonly calendarSelection: Signal<DateRange<D> | null>;
|
|
1597
1602
|
/** Formatted start display value. */
|