@byline/host-tanstack-start 3.4.1 → 3.5.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.
|
@@ -220,6 +220,7 @@ function AdminRolesListView({ data }) {
|
|
|
220
220
|
orderChanged ? /*#__PURE__*/ jsx("div", {
|
|
221
221
|
className: classnames('byline-roles-list-save', list_module.save),
|
|
222
222
|
children: /*#__PURE__*/ jsx("form", {
|
|
223
|
+
method: "post",
|
|
223
224
|
onSubmit: handleOnSave,
|
|
224
225
|
noValidate: true,
|
|
225
226
|
className: classnames('byline-roles-list-save-form', list_module.saveForm),
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"private": false,
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
|
-
"version": "3.
|
|
6
|
+
"version": "3.5.1",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=20.9.0"
|
|
9
9
|
},
|
|
@@ -115,13 +115,13 @@
|
|
|
115
115
|
"react-swipeable": "^7.0.2",
|
|
116
116
|
"uuid": "^14.0.0",
|
|
117
117
|
"zod": "^4.4.3",
|
|
118
|
-
"@byline/admin": "3.
|
|
119
|
-
"@byline/
|
|
120
|
-
"@byline/
|
|
121
|
-
"@byline/
|
|
122
|
-
"@byline/core": "3.
|
|
123
|
-
"@byline/
|
|
124
|
-
"@byline/
|
|
118
|
+
"@byline/admin": "3.5.1",
|
|
119
|
+
"@byline/i18n": "3.5.1",
|
|
120
|
+
"@byline/ai": "3.5.1",
|
|
121
|
+
"@byline/ui": "3.5.1",
|
|
122
|
+
"@byline/core": "3.5.1",
|
|
123
|
+
"@byline/auth": "3.5.1",
|
|
124
|
+
"@byline/client": "3.5.1"
|
|
125
125
|
},
|
|
126
126
|
"peerDependencies": {
|
|
127
127
|
"@tanstack/react-router": "^1.167.0",
|
|
@@ -264,6 +264,7 @@ export function AdminRolesListView({ data }: { data: AdminRoleListResponse }) {
|
|
|
264
264
|
{orderChanged ? (
|
|
265
265
|
<div className={cx('byline-roles-list-save', styles.save)}>
|
|
266
266
|
<form
|
|
267
|
+
method="post"
|
|
267
268
|
onSubmit={handleOnSave}
|
|
268
269
|
noValidate
|
|
269
270
|
className={cx('byline-roles-list-save-form', styles.saveForm)}
|