@cloudraker/reki 2.7.1 → 2.8.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/CHANGELOG.md +11 -0
- package/ai/component-registry.json +16 -0
- package/ai/component-registry.md +4 -0
- package/dist/.build-complete +1 -1
- package/dist/chunks/{sidebar-gwfibai76tw069d4.js → sidebar-eite6uzjeerm7pz5.js} +330 -331
- package/dist/chunks/sidebar-eite6uzjeerm7pz5.js.map +1 -0
- package/dist/components/sidebar.js +1 -1
- package/dist/index.js +1 -1
- package/dist/src/components/sidebar/sidebar.d.ts +2 -0
- package/dist/src/components/sidebar/sidebar.d.ts.map +1 -1
- package/dist/styles/reki-standalone.css +1 -1
- package/package.json +1 -1
- package/dist/chunks/sidebar-gwfibai76tw069d4.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @cloudraker/reki
|
|
2
2
|
|
|
3
|
+
## 2.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3c24b2c: Add `target` prop to `Sidebar.MenuSubButton` for parity with `Sidebar.MenuButton` — forwarded to the link when `href` is set, so link sub-items can control where they open (e.g. same-tab cross-origin navigation).
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 3c24b2c: Keep the mobile Sidebar open when focus moves to portaled interactive content.
|
|
12
|
+
- 52248eb: Disable Sidebar.MenuButton tooltips while the sidebar is expanded or peeking.
|
|
13
|
+
|
|
3
14
|
## 2.7.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -6100,6 +6100,10 @@
|
|
|
6100
6100
|
"href": {
|
|
6101
6101
|
"type": "string",
|
|
6102
6102
|
"optional": true
|
|
6103
|
+
},
|
|
6104
|
+
"target": {
|
|
6105
|
+
"type": "React.HTMLAttributeAnchorTarget",
|
|
6106
|
+
"optional": true
|
|
6103
6107
|
}
|
|
6104
6108
|
}
|
|
6105
6109
|
},
|
|
@@ -6114,6 +6118,10 @@
|
|
|
6114
6118
|
"href": {
|
|
6115
6119
|
"type": "string",
|
|
6116
6120
|
"optional": true
|
|
6121
|
+
},
|
|
6122
|
+
"target": {
|
|
6123
|
+
"type": "React.HTMLAttributeAnchorTarget",
|
|
6124
|
+
"optional": true
|
|
6117
6125
|
}
|
|
6118
6126
|
}
|
|
6119
6127
|
},
|
|
@@ -6128,6 +6136,10 @@
|
|
|
6128
6136
|
"href": {
|
|
6129
6137
|
"type": "string",
|
|
6130
6138
|
"optional": true
|
|
6139
|
+
},
|
|
6140
|
+
"target": {
|
|
6141
|
+
"type": "React.HTMLAttributeAnchorTarget",
|
|
6142
|
+
"optional": true
|
|
6131
6143
|
}
|
|
6132
6144
|
}
|
|
6133
6145
|
},
|
|
@@ -6142,6 +6154,10 @@
|
|
|
6142
6154
|
"href": {
|
|
6143
6155
|
"type": "string",
|
|
6144
6156
|
"optional": true
|
|
6157
|
+
},
|
|
6158
|
+
"target": {
|
|
6159
|
+
"type": "React.HTMLAttributeAnchorTarget",
|
|
6160
|
+
"optional": true
|
|
6145
6161
|
}
|
|
6146
6162
|
}
|
|
6147
6163
|
},
|
package/ai/component-registry.md
CHANGED
|
@@ -7297,6 +7297,7 @@ MenuBadge sub-component
|
|
|
7297
7297
|
Props:
|
|
7298
7298
|
- `active`: boolean
|
|
7299
7299
|
- `href`: string
|
|
7300
|
+
- `target`: React.HTMLAttributeAnchorTarget
|
|
7300
7301
|
|
|
7301
7302
|
#### Sidebar.MenuSub
|
|
7302
7303
|
|
|
@@ -7305,6 +7306,7 @@ MenuSub sub-component
|
|
|
7305
7306
|
Props:
|
|
7306
7307
|
- `active`: boolean
|
|
7307
7308
|
- `href`: string
|
|
7309
|
+
- `target`: React.HTMLAttributeAnchorTarget
|
|
7308
7310
|
|
|
7309
7311
|
#### Sidebar.MenuSubItem
|
|
7310
7312
|
|
|
@@ -7313,6 +7315,7 @@ MenuSubItem sub-component
|
|
|
7313
7315
|
Props:
|
|
7314
7316
|
- `active`: boolean
|
|
7315
7317
|
- `href`: string
|
|
7318
|
+
- `target`: React.HTMLAttributeAnchorTarget
|
|
7316
7319
|
|
|
7317
7320
|
#### Sidebar.MenuSubButton
|
|
7318
7321
|
|
|
@@ -7321,6 +7324,7 @@ MenuSubButton sub-component
|
|
|
7321
7324
|
Props:
|
|
7322
7325
|
- `active`: boolean
|
|
7323
7326
|
- `href`: string
|
|
7327
|
+
- `target`: React.HTMLAttributeAnchorTarget
|
|
7324
7328
|
|
|
7325
7329
|
#### Sidebar.Separator
|
|
7326
7330
|
|
package/dist/.build-complete
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1783996853641
|