@db-ux/v-core-components 4.3.2 → 4.4.1-footer-28739e3

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
@@ -26,6 +26,8 @@ export * from './components/divider';
26
26
  export * from './components/divider/model';
27
27
  export * from './components/drawer';
28
28
  export * from './components/drawer/model';
29
+ export * from './components/footer';
30
+ export * from './components/footer/model';
29
31
  export * from './components/header';
30
32
  export * from './components/header/model';
31
33
  export * from './components/icon';
@@ -397,10 +397,6 @@ export type LinkProps = {
397
397
  * The relationship of the linked URL as space-separated link types.
398
398
  */
399
399
  rel?: string;
400
- /**
401
- * Sets aria role based on [`aria-role`](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles).
402
- */
403
- role?: string;
404
400
  /**
405
401
  * How much of the referrer to send when following the link.
406
402
  * @deprecated use `referrerPolicy` instead
@@ -411,6 +407,12 @@ export type LinkProps = {
411
407
  */
412
408
  referrerPolicy?: LinkReferrerPolicyType;
413
409
  };
410
+ export type RoleProps = {
411
+ /**
412
+ * Sets aria role based on [`aria-role`](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles).
413
+ */
414
+ role?: string;
415
+ };
414
416
  export type TextProps = {
415
417
  /**
416
418
  * Alternative for default slot/children.
@@ -58,3 +58,15 @@ export declare const getOptionKey: (option: {
58
58
  value?: string | number | string[] | undefined;
59
59
  }, prefix: string) => string;
60
60
  export declare const isKeyboardEvent: <T>(event?: ClickEvent<T> | GeneralKeyboardEvent<T>) => event is GeneralKeyboardEvent<T>;
61
+ /**
62
+ * Maps semantic values to appropriate ARIA roles for notifications
63
+ * @param semantic - The semantic type of the notification
64
+ * @param role - The aria role of the notification
65
+ * @param ariaLive - The aria-live of the notification
66
+ * @returns The appropriate ARIA role or undefined for default behavior
67
+ */
68
+ export declare const getNotificationRole: ({ semantic, role, ariaLive }: {
69
+ semantic?: string;
70
+ role?: string;
71
+ ariaLive?: string;
72
+ }) => string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/v-core-components",
3
- "version": "4.3.2",
3
+ "version": "4.4.1-footer-28739e3",
4
4
  "type": "module",
5
5
  "description": "Vue components for @db-ux/core-components",
6
6
  "repository": {
@@ -47,7 +47,7 @@
47
47
  "typescript": "5.9.3",
48
48
  "vite": "7.3.1",
49
49
  "vue": "3.5.27",
50
- "vue-tsc": "3.2.2"
50
+ "vue-tsc": "3.2.4"
51
51
  },
52
52
  "publishConfig": {
53
53
  "registry": "https://registry.npmjs.org/",
@@ -56,7 +56,7 @@
56
56
  "sideEffects": false,
57
57
  "source": "src/index.ts",
58
58
  "dependencies": {
59
- "@db-ux/core-components": "4.3.2",
60
- "@db-ux/core-foundations": "4.3.2"
59
+ "@db-ux/core-components": "4.4.1-footer-28739e3",
60
+ "@db-ux/core-foundations": "4.4.1-footer-28739e3"
61
61
  }
62
62
  }