@byline/ui 1.2.1 → 1.3.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/dist/admin/tabs.d.ts +1 -1
- package/package.json +4 -4
- package/src/admin/tabs.tsx +7 -1
package/dist/admin/tabs.d.ts
CHANGED
|
@@ -21,5 +21,5 @@ interface AdminTabsProps {
|
|
|
21
21
|
* `.byline-admin-tab-active`, `.byline-admin-tab-label`,
|
|
22
22
|
* `.byline-admin-tab-badge`.
|
|
23
23
|
*/
|
|
24
|
-
export declare const AdminTabs: ({ tabs, activeTab, onChange, errorCounts, className }: AdminTabsProps) => import("react").JSX.Element;
|
|
24
|
+
export declare const AdminTabs: ({ tabs, activeTab, onChange, errorCounts, className, }: AdminTabsProps) => import("react").JSX.Element;
|
|
25
25
|
export {};
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"private": false,
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.3.0",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=20.9.0"
|
|
9
9
|
},
|
|
@@ -65,9 +65,9 @@
|
|
|
65
65
|
"react-diff-viewer-continued": "^4.2.2",
|
|
66
66
|
"zod": "^4.4.2",
|
|
67
67
|
"zod-form-data": "^3.0.1",
|
|
68
|
-
"@byline/
|
|
69
|
-
"@byline/core": "1.
|
|
70
|
-
"@byline/
|
|
68
|
+
"@byline/admin": "1.3.0",
|
|
69
|
+
"@byline/core": "1.3.0",
|
|
70
|
+
"@byline/client": "1.3.0"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
73
|
"react": "^19.0.0",
|
package/src/admin/tabs.tsx
CHANGED
|
@@ -38,7 +38,13 @@ interface AdminTabsProps {
|
|
|
38
38
|
* `.byline-admin-tab-active`, `.byline-admin-tab-label`,
|
|
39
39
|
* `.byline-admin-tab-badge`.
|
|
40
40
|
*/
|
|
41
|
-
export const AdminTabs = ({
|
|
41
|
+
export const AdminTabs = ({
|
|
42
|
+
tabs,
|
|
43
|
+
activeTab,
|
|
44
|
+
onChange,
|
|
45
|
+
errorCounts,
|
|
46
|
+
className,
|
|
47
|
+
}: AdminTabsProps) => {
|
|
42
48
|
return (
|
|
43
49
|
<div
|
|
44
50
|
role="tablist"
|