dap-design-system 0.35.4 → 0.35.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/dist/dds.d.ts CHANGED
@@ -1998,7 +1998,7 @@ export declare class DapDSCheckbox extends LabeledChoiceElement {
1998
1998
  * @property {boolean} searchForText - Whether the combobox should search for the selected item text.
1999
1999
  * @property {boolean} noTextComplete - Whether the combobox should not complete the text.
2000
2000
  * @property {string} searchButtonAriaLabel - The aria label of the search button.
2001
- * @property {boolean} selectable - Show the selected item check mark in the dropdown.
2001
+ * @property {string} selectable - Show the selected item check mark in the dropdown. 'true' or 'false'
2002
2002
  * @property {boolean} noAnimation - Whether the combobox open indicator should be animated.
2003
2003
  *
2004
2004
  * @csspart base - The main select container.
@@ -2059,8 +2059,10 @@ export declare class DapDSCommand extends DapDSPopup {
2059
2059
  */
2060
2060
  value: string | null;
2061
2061
  private _focusedItem;
2062
+ private _lastClickedItem;
2062
2063
  connectedCallback(): Promise<void>;
2063
2064
  disconnectedCallback(): void;
2065
+ protected firstUpdated(_changedProperties: PropertyValues): void;
2064
2066
  updated(changedProperties: Map<string, unknown>): Promise<void>;
2065
2067
  private _handleKeyDown;
2066
2068
  private _handleMenuItemClick;