@ibiz-template/runtime 0.1.10 → 0.1.11
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/out/interface/controller/controller/control/i-calendar-exp-bar.controller.d.ts +4 -4
- package/out/interface/controller/controller/control/i-calendar-exp-bar.controller.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/interface/controller/controller/control/i-calendar-exp-bar.controller.ts +6 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ITreeExpBarEvent } from '../../event';
|
|
3
|
-
import { ITreeExpBarState } from '../../state';
|
|
1
|
+
import { ICalendarExpBar } from '@ibiz/model-core';
|
|
4
2
|
import { IExpBarControlController } from './i-exp-bar-control.controller';
|
|
3
|
+
import { ICalendarExpBarState } from '../../state';
|
|
4
|
+
import { ICalendarExpBarEvent } from '../../event';
|
|
5
5
|
/**
|
|
6
6
|
* 日历部件控制器
|
|
7
7
|
* @author lxm
|
|
@@ -10,6 +10,6 @@ import { IExpBarControlController } from './i-exp-bar-control.controller';
|
|
|
10
10
|
* @interface ICalendarController
|
|
11
11
|
* @extends {IMDControlController}
|
|
12
12
|
*/
|
|
13
|
-
export interface ICalendarExpBarController extends IExpBarControlController<
|
|
13
|
+
export interface ICalendarExpBarController extends IExpBarControlController<ICalendarExpBar, ICalendarExpBarState, ICalendarExpBarEvent> {
|
|
14
14
|
}
|
|
15
15
|
//# sourceMappingURL=i-calendar-exp-bar.controller.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"i-calendar-exp-bar.controller.d.ts","sourceRoot":"","sources":["../../../../../src/interface/controller/controller/control/i-calendar-exp-bar.controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"i-calendar-exp-bar.controller.d.ts","sourceRoot":"","sources":["../../../../../src/interface/controller/controller/control/i-calendar-exp-bar.controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAC;AAC1E,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AACnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAEnD;;;;;;;GAOG;AACH,MAAM,WAAW,yBACf,SAAQ,wBAAwB,CAC9B,eAAe,EACf,oBAAoB,EACpB,oBAAoB,CACrB;CAAG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiz-template/runtime",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "控制器包",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "out/index.js",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"qx-util": "^0.4.8",
|
|
54
54
|
"ramda": "^0.29.0"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "a45429e48191f79d0b2efba18399779f43993536"
|
|
57
57
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ITreeExpBarEvent } from '../../event';
|
|
3
|
-
import { ITreeExpBarState } from '../../state';
|
|
1
|
+
import { ICalendarExpBar } from '@ibiz/model-core';
|
|
4
2
|
import { IExpBarControlController } from './i-exp-bar-control.controller';
|
|
3
|
+
import { ICalendarExpBarState } from '../../state';
|
|
4
|
+
import { ICalendarExpBarEvent } from '../../event';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* 日历部件控制器
|
|
@@ -13,7 +13,7 @@ import { IExpBarControlController } from './i-exp-bar-control.controller';
|
|
|
13
13
|
*/
|
|
14
14
|
export interface ICalendarExpBarController
|
|
15
15
|
extends IExpBarControlController<
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
ICalendarExpBar,
|
|
17
|
+
ICalendarExpBarState,
|
|
18
|
+
ICalendarExpBarEvent
|
|
19
19
|
> {}
|