dap-design-system 0.56.6 → 0.56.8

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.
@@ -40,6 +40,8 @@ export type ActionType = {
40
40
  };
41
41
  export type MessageOptionsType = {
42
42
  duration?: number;
43
+ /** When true, the message stays until the user closes it manually (auto-dismiss disabled). */
44
+ persistent?: boolean;
43
45
  alertType?: AlertType;
44
46
  actions?: ActionType[];
45
47
  closeButton?: string;
@@ -187,8 +187,13 @@ export default class DapDSNavigationMenuItem extends DapDSNavigationMenuItem_bas
187
187
  * All others are removed (tabindex="-1") so Tab exits the whole nav in one step.
188
188
  */
189
189
  setRovingTabIndex(active: boolean): void;
190
- /** Apply tabindex to a trigger element and its shadow-root inner focusable element. */
190
+ /** Apply tabindex to a trigger element and its inner focusable element. */
191
191
  private _applyTriggerTabIndex;
192
+ /**
193
+ * Returns the inner light-DOM focusable element of a non-focusable wrapper
194
+ * trigger, or null when the trigger itself should be the tab stop.
195
+ */
196
+ private _getInnerLightDomFocusable;
192
197
  /** Focus the first focusable element in the dropdown (supports both nested nav items and mega menu content). */
193
198
  focusFirstDropdownChild(): void;
194
199
  /** Focus the last focusable element in the dropdown (supports both nested nav items and mega menu content). */