dap-design-system 0.57.2 → 0.57.4

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.
@@ -148,5 +148,6 @@ export default class DapDSCheckbox extends LabeledChoiceElement {
148
148
  * @private
149
149
  */
150
150
  handleInvalid(event: Event): void;
151
+ setValidity(): void;
151
152
  render(): import('lit-html').TemplateResult;
152
153
  }
@@ -111,6 +111,7 @@ export default class DapDSNumberInput extends InputBaseElement {
111
111
  hideControls: boolean;
112
112
  padStart?: number;
113
113
  private formattedValue;
114
+ private valueSetInternally;
114
115
  get _thousandSeparator(): string;
115
116
  protected firstUpdated(changedProperties: PropertyValues): void;
116
117
  private handleKeydown;