dap-design-system 0.53.0 → 0.53.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.
@@ -78,6 +78,15 @@ import { GenericFormElement } from '../../internal/mixin/genericFormElement';
78
78
  */
79
79
  export default class DapDSDatePicker extends GenericFormElement {
80
80
  private static nextId;
81
+ /**
82
+ * Property converter for date properties.
83
+ * Converts string attributes (from React) to Dayjs objects.
84
+ * Allows both attribute binding (strings) and property binding (Dayjs objects).
85
+ *
86
+ * Note: When properties are set directly (bypassing attributes), they are normalized
87
+ * in the `updated` lifecycle method via `normalizeDate`.
88
+ */
89
+ private static datePropertyConverter;
81
90
  private readonly inputId;
82
91
  private readonly labelId;
83
92
  private readonly descriptionId;