@synergy-design-system/vue 2.25.0 → 2.26.1

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.
@@ -12,6 +12,22 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
12
12
  accordion behavior.
13
13
  */
14
14
  href?: SynNavItem["href"];
15
+ /**
16
+ * Tells the browser where to open the link.
17
+ * Only used when `href` is present.
18
+ */
19
+ target?: SynNavItem["target"];
20
+ /**
21
+ * When using `href`, this attribute will map to the underlying link's `rel` attribute.
22
+ Unlike regular links, the default is `noreferrer noopener` to prevent security exploits.
23
+
24
+ However, if you're using `target` to point to a specific tab/window,
25
+ this will prevent that from working correctly.
26
+
27
+ You can remove or change the default value by setting the attribute
28
+ to an empty string or a value of your choice, respectively.
29
+ */
30
+ rel?: SynNavItem["rel"];
15
31
  current?: SynNavItem["current"];
16
32
  /**
17
33
  * Disables the navigation item.
@@ -52,6 +68,22 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
52
68
  accordion behavior.
53
69
  */
54
70
  href?: SynNavItem["href"];
71
+ /**
72
+ * Tells the browser where to open the link.
73
+ * Only used when `href` is present.
74
+ */
75
+ target?: SynNavItem["target"];
76
+ /**
77
+ * When using `href`, this attribute will map to the underlying link's `rel` attribute.
78
+ Unlike regular links, the default is `noreferrer noopener` to prevent security exploits.
79
+
80
+ However, if you're using `target` to point to a specific tab/window,
81
+ this will prevent that from working correctly.
82
+
83
+ You can remove or change the default value by setting the attribute
84
+ to an empty string or a value of your choice, respectively.
85
+ */
86
+ rel?: SynNavItem["rel"];
55
87
  current?: SynNavItem["current"];
56
88
  /**
57
89
  * Disables the navigation item.
@@ -4,6 +4,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
4
4
  __name: "SynVueNavItem",
5
5
  props: {
6
6
  href: {},
7
+ target: {},
8
+ rel: {},
7
9
  current: {},
8
10
  disabled: {},
9
11
  horizontal: {},
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "url": "https://www.sick.com"
5
5
  },
6
6
  "dependencies": {
7
- "@synergy-design-system/components": "^2.25.0"
7
+ "@synergy-design-system/components": "^2.26.1"
8
8
  },
9
9
  "description": "Vue3 wrappers for the Synergy Design System",
10
10
  "exports": {
@@ -40,7 +40,7 @@
40
40
  "directory": "packages/vue"
41
41
  },
42
42
  "type": "module",
43
- "version": "2.25.0",
43
+ "version": "2.26.1",
44
44
  "devDependencies": {
45
45
  "@vitejs/plugin-vue": "^5.2.1",
46
46
  "@vue/tsconfig": "^0.7.0",
@@ -77,6 +77,24 @@ accordion behavior.
77
77
  */
78
78
  href?: SynNavItem['href'];
79
79
 
80
+ /**
81
+ * Tells the browser where to open the link.
82
+ * Only used when `href` is present.
83
+ */
84
+ target?: SynNavItem['target'];
85
+
86
+ /**
87
+ * When using `href`, this attribute will map to the underlying link's `rel` attribute.
88
+ Unlike regular links, the default is `noreferrer noopener` to prevent security exploits.
89
+
90
+ However, if you're using `target` to point to a specific tab/window,
91
+ this will prevent that from working correctly.
92
+
93
+ You can remove or change the default value by setting the attribute
94
+ to an empty string or a value of your choice, respectively.
95
+ */
96
+ rel?: SynNavItem['rel'];
97
+
80
98
  current?: SynNavItem['current'];
81
99
 
82
100
  /**