@lark-project/js-sdk 2.0.1-alpha.8 → 2.0.1-alpha.9
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 +8 -1
- package/dist/lib/index.js +8 -1
- package/dist/types/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/es/index.js
CHANGED
|
@@ -346,6 +346,13 @@ var _SDKClient = class {
|
|
|
346
346
|
get intercept() {
|
|
347
347
|
return getImplValue(Intercept, this._meegoBizHub);
|
|
348
348
|
}
|
|
349
|
+
/**
|
|
350
|
+
* 控件点位容器特有能力
|
|
351
|
+
* only 2.0
|
|
352
|
+
*/
|
|
353
|
+
get control() {
|
|
354
|
+
return getImplValue(Control, this._meegoBizHub);
|
|
355
|
+
}
|
|
349
356
|
/**
|
|
350
357
|
* 应用导航
|
|
351
358
|
*/
|
|
@@ -452,7 +459,7 @@ var SDKClient = _SDKClient;
|
|
|
452
459
|
/**
|
|
453
460
|
* SDK 版本号
|
|
454
461
|
*/
|
|
455
|
-
SDKClient.version = "2.0.1-alpha.
|
|
462
|
+
SDKClient.version = "2.0.1-alpha.9";
|
|
456
463
|
|
|
457
464
|
// src/types/biz.ts
|
|
458
465
|
var AttributeType = /* @__PURE__ */ ((AttributeType2) => {
|
package/dist/lib/index.js
CHANGED
|
@@ -400,6 +400,13 @@ var _SDKClient = class {
|
|
|
400
400
|
get intercept() {
|
|
401
401
|
return getImplValue(Intercept, this._meegoBizHub);
|
|
402
402
|
}
|
|
403
|
+
/**
|
|
404
|
+
* 控件点位容器特有能力
|
|
405
|
+
* only 2.0
|
|
406
|
+
*/
|
|
407
|
+
get control() {
|
|
408
|
+
return getImplValue(Control, this._meegoBizHub);
|
|
409
|
+
}
|
|
403
410
|
/**
|
|
404
411
|
* 应用导航
|
|
405
412
|
*/
|
|
@@ -506,7 +513,7 @@ var SDKClient = _SDKClient;
|
|
|
506
513
|
/**
|
|
507
514
|
* SDK 版本号
|
|
508
515
|
*/
|
|
509
|
-
SDKClient.version = "2.0.1-alpha.
|
|
516
|
+
SDKClient.version = "2.0.1-alpha.9";
|
|
510
517
|
|
|
511
518
|
// src/types/biz.ts
|
|
512
519
|
var AttributeType = /* @__PURE__ */ ((AttributeType2) => {
|
package/dist/types/index.d.ts
CHANGED