@lark-apaas/client-toolkit-lite 1.1.1-alpha.0 → 1.1.1-alpha.2

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/index.cjs CHANGED
@@ -1177,17 +1177,40 @@ var AppContainer_default = AppContainer;
1177
1177
  var import_react8 = __toESM(require("react"), 1);
1178
1178
  var Welcome = /* @__PURE__ */ __name(({ title = "\u9875\u9762\u5F85\u5F00\u53D1", description = "\u9875\u9762\u6682\u672A\u5F00\u53D1\uFF0C\u8BF7\u8010\u5FC3\u7B49\u5F85..." }) => {
1179
1179
  return /* @__PURE__ */ import_react8.default.createElement("div", {
1180
- className: "flex flex-col items-center justify-center px-6 w-full h-[calc(100vh-64px)] text-center"
1180
+ style: {
1181
+ display: "flex",
1182
+ flexDirection: "column",
1183
+ alignItems: "center",
1184
+ justifyContent: "center",
1185
+ width: "100%",
1186
+ height: "calc(100vh - 64px)",
1187
+ padding: "0 24px",
1188
+ textAlign: "center"
1189
+ }
1181
1190
  }, /* @__PURE__ */ import_react8.default.createElement("img", {
1182
- className: "rounded-md mb-6",
1191
+ style: {
1192
+ borderRadius: 6,
1193
+ marginBottom: 24
1194
+ },
1183
1195
  width: "320",
1184
1196
  height: "200",
1185
1197
  src: "https://lf3-static.bytednsdoc.com/obj/eden-cn/LMfspH/ljhwZthlaukjlkulzlp/miao/welcome.svg",
1186
1198
  alt: "Welcome"
1187
1199
  }), /* @__PURE__ */ import_react8.default.createElement("div", {
1188
- className: "text-center text-foreground text-base font-medium mb-1 leading-6"
1200
+ style: {
1201
+ fontSize: 16,
1202
+ fontWeight: 500,
1203
+ lineHeight: "24px",
1204
+ marginBottom: 4,
1205
+ color: "#1f2329"
1206
+ }
1189
1207
  }, title), /* @__PURE__ */ import_react8.default.createElement("div", {
1190
- className: "text-center text-muted-foreground text-base leading-6 line-clamp-2 sm:max-w-[480px]"
1208
+ style: {
1209
+ fontSize: 16,
1210
+ lineHeight: "24px",
1211
+ color: "#8f959e",
1212
+ maxWidth: 480
1213
+ }
1191
1214
  }, description));
1192
1215
  }, "Welcome");
1193
1216
  var Welcome_default = Welcome;