@lark-apaas/client-toolkit 1.0.20-alpha.placeholder.1 → 1.0.20
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/lib/apis/components/PagePlaceholder.d.ts +1 -0
- package/lib/apis/components/PagePlaceholder.js +2 -0
- package/lib/apis/components/Welcome.d.ts +1 -1
- package/lib/apis/components/Welcome.js +2 -2
- package/lib/components/PagePlaceholder/index.d.ts +6 -0
- package/lib/components/{PlaceHolder → PagePlaceholder}/index.js +3 -3
- package/package.json +1 -1
- package/lib/apis/components/PlaceHolder.d.ts +0 -1
- package/lib/apis/components/PlaceHolder.js +0 -2
- package/lib/components/PlaceHolder/index.d.ts +0 -6
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as PagePlaceholder } from '../../components/PagePlaceholder';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as Welcome } from '../../components/
|
|
1
|
+
export { default as Welcome } from '../../components/PagePlaceholder';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export {
|
|
1
|
+
import PagePlaceholder from "../../components/PagePlaceholder/index.js";
|
|
2
|
+
export { PagePlaceholder as Welcome };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
const
|
|
3
|
+
const PagePlaceholder = ({ title = '页面待开发', description = '页面暂未开发,请耐心等待...' })=>/*#__PURE__*/ jsxs("center", {
|
|
4
4
|
className: "pt-10 md:pt-9 bg-background p-6 text-center",
|
|
5
5
|
children: [
|
|
6
6
|
/*#__PURE__*/ jsx("center", {
|
|
@@ -22,5 +22,5 @@ const PlaceHolder_PlaceHolder = ({ title = '页面待开发', description = '页
|
|
|
22
22
|
})
|
|
23
23
|
]
|
|
24
24
|
});
|
|
25
|
-
const
|
|
26
|
-
export {
|
|
25
|
+
const components_PagePlaceholder = PagePlaceholder;
|
|
26
|
+
export { components_PagePlaceholder as default };
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as PlaceHolder } from '../../components/PlaceHolder';
|