@avenirs-esr/avenirs-dsav 0.1.61 → 0.1.63

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.
@@ -11,7 +11,7 @@ export declare const AvBadgeStub: import("vue").DefineComponent<import("vue").Ex
11
11
  color: StringConstructor;
12
12
  backgroundColor: StringConstructor;
13
13
  borderColor: StringConstructor;
14
- iconPath: StringConstructor;
14
+ iconDataUrl: StringConstructor;
15
15
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
16
16
  label: StringConstructor;
17
17
  small: {
@@ -25,7 +25,7 @@ export declare const AvBadgeStub: import("vue").DefineComponent<import("vue").Ex
25
25
  color: StringConstructor;
26
26
  backgroundColor: StringConstructor;
27
27
  borderColor: StringConstructor;
28
- iconPath: StringConstructor;
28
+ iconDataUrl: StringConstructor;
29
29
  }>> & Readonly<{}>, {
30
30
  small: boolean;
31
31
  ellipsis: boolean;
@@ -12,9 +12,10 @@ export interface AvBadgeProps {
12
12
  */
13
13
  borderColor?: string;
14
14
  /**
15
- * The link to the public icon in the project (e.g., `/assets/icons/calendar-clock-outline.svg`).
15
+ * The base64 icon to be displayed.
16
+ * You can use the `ICONS_DATA_URL` constant from DSAV.
16
17
  */
17
- iconPath?: string;
18
+ iconDataUrl?: string;
18
19
  /**
19
20
  * The text to display in the badge.
20
21
  */
@@ -64,11 +64,6 @@ interface AvToasterProps {
64
64
  * - `timeout?: number`: Time to display the message in milliseconds before automatically closing (if not set, the message will remain displayed until manually closed or another action)
65
65
  */
66
66
  messages: Message[];
67
- /**
68
- * Base path to get access to public icons.
69
- * @example import.meta.env.BASE_URL
70
- */
71
- basePath: string;
72
67
  /**
73
68
  * Function called to remove a message from the toaster.
74
69
  * @param id The ID of the message to remove.