@db-ux/v-core-components 4.14.0 → 5.0.0

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/index.d.ts CHANGED
@@ -27,6 +27,10 @@ export * from './components/custom-select/model.js';
27
27
  export * from './components/divider/index.js';
28
28
  export * from './components/divider/model.js';
29
29
  export * from './components/drawer/index.js';
30
+ export * from './components/drawer-footer/index.js';
31
+ export * from './components/drawer-footer/model.js';
32
+ export * from './components/drawer-header/index.js';
33
+ export * from './components/drawer-header/model.js';
30
34
  export * from './components/drawer/model.js';
31
35
  export * from './components/header/index.js';
32
36
  export * from './components/header/model.js';
@@ -25,6 +25,18 @@ export interface GlobalProps {
25
25
  */
26
26
  propOverrides?: PropOverridesType;
27
27
  }
28
+ export type StartSlotProps = {
29
+ /**
30
+ * Slot for start content, for example add a custom component between an icon and a label.
31
+ */
32
+ startSlot?: any;
33
+ };
34
+ export type EndSlotProps = {
35
+ /**
36
+ * Slot for end content, for example add a custom component between an icon and a label.
37
+ */
38
+ endSlot?: any;
39
+ };
28
40
  export type PropOverridesType = Pick<GlobalProps, 'id'>;
29
41
  export type GlobalState = {
30
42
  _id?: string;
@@ -539,26 +551,6 @@ export type ValueLabelType = {
539
551
  value: string;
540
552
  label?: string;
541
553
  };
542
- export type OverflowScrollButtonProps = {
543
- /**
544
- * Change amount of scroll distance when clicking on an overflow scroll arrow button.
545
- */
546
- arrowScrollDistance?: number | string;
547
- /**
548
- * Set the text for the scroll left button
549
- */
550
- scrollLeftText?: string;
551
- /**
552
- * Set the text for the scroll right button
553
- */
554
- scrollRightText?: string;
555
- };
556
- export type OverflowScrollButtonState = {
557
- scroll: (left?: boolean) => void;
558
- showScrollLeft?: boolean;
559
- showScrollRight?: boolean;
560
- evaluateScrollButtons: (tabList: Element) => void;
561
- };
562
554
  export type DocumentScrollState = {
563
555
  _documentScrollListenerCallbackId?: string;
564
556
  handleDocumentScroll: (event: any, parent?: HTMLElement) => void;
@@ -76,3 +76,12 @@ export declare const getNotificationRole: ({ semantic, role, ariaLive }: {
76
76
  role?: string;
77
77
  ariaLive?: string;
78
78
  }) => string | undefined;
79
+ export declare const NAVIGATION_KEYS: readonly ["ArrowRight", "ArrowDown", "ArrowLeft", "ArrowUp", "Home", "End", "Enter", " "];
80
+ /**
81
+ * Checks whether the browser natively supports the `focusgroup` HTML attribute.
82
+ * When supported, the browser handles arrow-key navigation and roving tabindex
83
+ * for composite widgets (tablists, toolbars, etc.), so our JS fallback can be skipped.
84
+ *
85
+ * @public
86
+ */
87
+ export declare const hasFocusgroupSupport: () => boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/v-core-components",
3
- "version": "4.14.0",
3
+ "version": "5.0.0",
4
4
  "type": "module",
5
5
  "description": "Vue components for @db-ux/core-components",
6
6
  "repository": {
@@ -28,8 +28,8 @@
28
28
  "dist/"
29
29
  ],
30
30
  "dependencies": {
31
- "@db-ux/core-components": "4.14.0",
32
- "@db-ux/core-foundations": "4.14.0"
31
+ "@db-ux/core-components": "5.0.0",
32
+ "@db-ux/core-foundations": "5.0.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@playwright/experimental-ct-vue": "1.60.0",
@@ -40,9 +40,9 @@
40
40
  "replace-in-file": "8.4.0",
41
41
  "tsx": "4.23.0",
42
42
  "typescript": "5.9.3",
43
- "vite": "8.1.3",
43
+ "vite": "8.1.4",
44
44
  "vue": "3.5.39",
45
- "vue-tsc": "3.3.6"
45
+ "vue-tsc": "3.3.7"
46
46
  },
47
47
  "publishConfig": {
48
48
  "registry": "https://registry.npmjs.org/",