@cc-component/cc-ex-component 1.3.3 → 1.3.5
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.
|
@@ -39,7 +39,7 @@ export class BaseWindow extends BaseReference {
|
|
|
39
39
|
* @param param.comp 关闭的按钮组件
|
|
40
40
|
* @param param.time 关闭的按钮的时间
|
|
41
41
|
*/
|
|
42
|
-
public
|
|
42
|
+
public pop(param?: { is_anim?: boolean, param?: any, finish?: Function }) {
|
|
43
43
|
this.paramClose = param;
|
|
44
44
|
this.param?.callBack?.(param?.param)//回调方法
|
|
45
45
|
if (param?.is_anim && this.root && this.maskOpacity) {
|
package/index.ts
CHANGED
|
@@ -5,9 +5,11 @@ export * from './assets/core/ViewModel';
|
|
|
5
5
|
export * from './assets/core/ReferenceComponent';
|
|
6
6
|
export * from './assets/core/BaseReference';
|
|
7
7
|
export * from './assets/core/BaseViewModelData';
|
|
8
|
+
export * from './assets/core/BaseWindow';
|
|
8
9
|
export * from './assets/interface/Interface';
|
|
9
10
|
export * from './assets/interface/ExComponentModule';
|
|
10
11
|
|
|
12
|
+
|
|
11
13
|
export * from './assets/lib/tableView/TableView';
|
|
12
14
|
export * from './assets/lib/collectView/lib_collect/yx-collection-view';
|
|
13
15
|
export * from './assets/lib/collectView/lib_collect/yx-flow-layout';
|