@ibiz-template/mob-theme 0.2.10 → 0.2.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/CHANGELOG.md +12 -0
- package/dist/index.system.min.js +1 -1
- package/dist/index.system.min.js.map +1 -1
- package/es/index.d.ts +4 -1
- package/es/index.mjs +10 -1
- package/es/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-m-pickup-view-layout.mjs +1 -1
- package/es/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-pickup-md-view-layout.mjs +1 -1
- package/lib/index.cjs +11 -2
- package/lib/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-m-pickup-view-layout.cjs +1 -1
- package/lib/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-pickup-md-view-layout.cjs +1 -1
- package/package.json +5 -2
package/es/index.d.ts
CHANGED
package/es/index.mjs
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
import './theme/index.css';
|
|
2
|
-
|
|
2
|
+
import { install } from './publish/index.mjs';
|
|
3
3
|
|
|
4
4
|
"use strict";
|
|
5
|
+
var index = {
|
|
6
|
+
install() {
|
|
7
|
+
install((key, model) => {
|
|
8
|
+
ibiz.util.layoutPanel.register(key, model);
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export { index as default };
|
package/lib/index.cjs
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
require('./theme/index.css');
|
|
4
|
-
var index = require('./publish/index.cjs');
|
|
6
|
+
var index$1 = require('./publish/index.cjs');
|
|
5
7
|
|
|
6
8
|
"use strict";
|
|
9
|
+
var index = {
|
|
10
|
+
install() {
|
|
11
|
+
index$1.install((key, model) => {
|
|
12
|
+
ibiz.util.layoutPanel.register(key, model);
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
};
|
|
7
16
|
|
|
8
|
-
exports.
|
|
17
|
+
exports.default = index;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiz-template/mob-theme",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"types": "es/index.d.ts",
|
|
@@ -31,7 +31,10 @@
|
|
|
31
31
|
},
|
|
32
32
|
"author": "chitanda",
|
|
33
33
|
"license": "MIT",
|
|
34
|
-
"
|
|
34
|
+
"devDependencies": {
|
|
35
35
|
"@ibiz-template/theme": "0.3.0"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@ibiz-template/runtime": "^0.4.3"
|
|
36
39
|
}
|
|
37
40
|
}
|