@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.
@@ -0,0 +1 @@
1
+ export { default as PagePlaceholder } from '../../components/PagePlaceholder';
@@ -0,0 +1,2 @@
1
+ import PagePlaceholder from "../../components/PagePlaceholder/index.js";
2
+ export { PagePlaceholder };
@@ -1 +1 @@
1
- export { default as Welcome } from '../../components/PlaceHolder';
1
+ export { default as Welcome } from '../../components/PagePlaceholder';
@@ -1,2 +1,2 @@
1
- import PlaceHolder from "../../components/PlaceHolder/index.js";
2
- export { PlaceHolder as Welcome };
1
+ import PagePlaceholder from "../../components/PagePlaceholder/index.js";
2
+ export { PagePlaceholder as Welcome };
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ declare const PagePlaceholder: React.FC<{
3
+ title?: string;
4
+ description?: string;
5
+ }>;
6
+ export default PagePlaceholder;
@@ -1,6 +1,6 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import "react";
3
- const PlaceHolder_PlaceHolder = ({ title = '页面待开发', description = '页面暂未开发,请耐心等待...' })=>/*#__PURE__*/ jsxs("center", {
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 PlaceHolder = PlaceHolder_PlaceHolder;
26
- export { PlaceHolder as default };
25
+ const components_PagePlaceholder = PagePlaceholder;
26
+ export { components_PagePlaceholder as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-apaas/client-toolkit",
3
- "version": "1.0.20-alpha.placeholder.1",
3
+ "version": "1.0.20",
4
4
  "types": "./lib/index.d.ts",
5
5
  "main": "./lib/index.js",
6
6
  "files": [
@@ -1 +0,0 @@
1
- export { default as PlaceHolder } from '../../components/PlaceHolder';
@@ -1,2 +0,0 @@
1
- import PlaceHolder from "../../components/PlaceHolder/index.js";
2
- export { PlaceHolder };
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- declare const PlaceHolder: React.FC<{
3
- title: string;
4
- description: string;
5
- }>;
6
- export default PlaceHolder;