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.
- package/dist/common/types.d.ts +2 -0
- package/dist/components/navigation-menu/navigation-menu-item.component.d.ts +6 -1
- package/dist/{components-BnVWKvKZ.js → components-Dd2F_vzC.js} +243 -213
- package/dist/{components-BnVWKvKZ.js.map → components-Dd2F_vzC.js.map} +1 -1
- package/dist/components.js +1 -1
- package/dist/dds.js +1 -1
- package/dist/manifest/types/vue/index.d.ts +186 -186
- package/dist/manifest/vscode.html-custom-data.json +135 -135
- package/dist/manifest/web-types.json +423 -423
- package/dist/react/index.d.ts +5 -5
- package/dist/react-types.ts +5 -5
- package/dist/react.js +57 -57
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
package/dist/common/types.d.ts
CHANGED
|
@@ -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
|
|
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). */
|