@lark-project/js-sdk 2.0.1-alpha.1 → 2.0.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/es/index.js +7 -1
- package/dist/lib/index.js +7 -1
- package/dist/types/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/es/index.js
CHANGED
|
@@ -308,6 +308,12 @@ var _SDKClient = class {
|
|
|
308
308
|
get toast() {
|
|
309
309
|
return getImplValue(Toast, this._meegoBizHub);
|
|
310
310
|
}
|
|
311
|
+
/**
|
|
312
|
+
* 富文本编辑器
|
|
313
|
+
*/
|
|
314
|
+
get richTextEditor() {
|
|
315
|
+
return getImplValue(RichTextEditor, this._meegoBizHub);
|
|
316
|
+
}
|
|
311
317
|
/**
|
|
312
318
|
* 模态框
|
|
313
319
|
*/
|
|
@@ -382,7 +388,7 @@ var SDKClient = _SDKClient;
|
|
|
382
388
|
/**
|
|
383
389
|
* SDK 版本号
|
|
384
390
|
*/
|
|
385
|
-
SDKClient.version = "2.0.1-alpha.
|
|
391
|
+
SDKClient.version = "2.0.1-alpha.2";
|
|
386
392
|
|
|
387
393
|
// src/types/biz.ts
|
|
388
394
|
var AttributeType = /* @__PURE__ */ ((AttributeType2) => {
|
package/dist/lib/index.js
CHANGED
|
@@ -359,6 +359,12 @@ var _SDKClient = class {
|
|
|
359
359
|
get toast() {
|
|
360
360
|
return getImplValue(Toast, this._meegoBizHub);
|
|
361
361
|
}
|
|
362
|
+
/**
|
|
363
|
+
* 富文本编辑器
|
|
364
|
+
*/
|
|
365
|
+
get richTextEditor() {
|
|
366
|
+
return getImplValue(RichTextEditor, this._meegoBizHub);
|
|
367
|
+
}
|
|
362
368
|
/**
|
|
363
369
|
* 模态框
|
|
364
370
|
*/
|
|
@@ -433,7 +439,7 @@ var SDKClient = _SDKClient;
|
|
|
433
439
|
/**
|
|
434
440
|
* SDK 版本号
|
|
435
441
|
*/
|
|
436
|
-
SDKClient.version = "2.0.1-alpha.
|
|
442
|
+
SDKClient.version = "2.0.1-alpha.2";
|
|
437
443
|
|
|
438
444
|
// src/types/biz.ts
|
|
439
445
|
var AttributeType = /* @__PURE__ */ ((AttributeType2) => {
|
package/dist/types/index.d.ts
CHANGED