@widget-js/core 24.1.1-beta.59 → 24.1.1-beta.60
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 +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -6
- package/dist/index.d.ts +8 -6
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1052,6 +1052,7 @@ var Page = class _Page {
|
|
|
1052
1052
|
var Widget = class _Widget extends Page {
|
|
1053
1053
|
categories;
|
|
1054
1054
|
supportDeployMode;
|
|
1055
|
+
options;
|
|
1055
1056
|
/**
|
|
1056
1057
|
* 组件包所需的App版本
|
|
1057
1058
|
*/
|
|
@@ -1077,6 +1078,7 @@ var Widget = class _Widget extends Page {
|
|
|
1077
1078
|
this.supportDeployMode = options.supportDeployMode ?? 1 /* NORMAL */ | 16 /* OVERLAP */;
|
|
1078
1079
|
this.socialLinks = options.socialLinks;
|
|
1079
1080
|
this.disabled = options.disabled;
|
|
1081
|
+
this.options = options.options;
|
|
1080
1082
|
this.requiredAppVersion = options.requiredAppVersion;
|
|
1081
1083
|
this.routes = options.routes ?? [];
|
|
1082
1084
|
}
|