@compill/admin 1.0.58 → 1.0.59
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/index.cjs.js +6 -5
- package/index.esm.js +6 -5
- package/package.json +1 -1
package/index.cjs.js
CHANGED
@@ -951,12 +951,13 @@ function PageSidebarSection(_a) {
|
|
951
951
|
function PageTitle(_a) {
|
952
952
|
var {
|
953
953
|
children
|
954
|
-
} = _a
|
955
|
-
__rest$1(_a, ["children"]);
|
956
|
-
return jsxRuntime.jsx("div", {
|
957
|
-
trait: "typo.h5"
|
954
|
+
} = _a,
|
955
|
+
props = __rest$1(_a, ["children"]);
|
956
|
+
return jsxRuntime.jsx("div", Object.assign({
|
957
|
+
trait: "typo.h5"
|
958
|
+
}, props, {
|
958
959
|
children: children
|
959
|
-
});
|
960
|
+
}));
|
960
961
|
}
|
961
962
|
|
962
963
|
function PageTopBar(_a) {
|
package/index.esm.js
CHANGED
@@ -942,12 +942,13 @@ function PageSidebarSection(_a) {
|
|
942
942
|
function PageTitle(_a) {
|
943
943
|
var {
|
944
944
|
children
|
945
|
-
} = _a
|
946
|
-
__rest$1(_a, ["children"]);
|
947
|
-
return jsx("div", {
|
948
|
-
trait: "typo.h5"
|
945
|
+
} = _a,
|
946
|
+
props = __rest$1(_a, ["children"]);
|
947
|
+
return jsx("div", Object.assign({
|
948
|
+
trait: "typo.h5"
|
949
|
+
}, props, {
|
949
950
|
children: children
|
950
|
-
});
|
951
|
+
}));
|
951
952
|
}
|
952
953
|
|
953
954
|
function PageTopBar(_a) {
|