pome-ui 2.0.0-preview6 → 2.0.0-preview7
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/package.json +1 -1
- package/pome-ui.dev.js +10 -0
- package/pome-ui.dev.min.js +1 -1
- package/pome-ui.js +10 -0
- package/pome-ui.min.js +1 -1
package/package.json
CHANGED
package/pome-ui.dev.js
CHANGED
|
@@ -17438,6 +17438,15 @@ function build(options, exports) {
|
|
|
17438
17438
|
eval(js);
|
|
17439
17439
|
}
|
|
17440
17440
|
|
|
17441
|
+
|
|
17442
|
+
function UseInlineAddin(script) {
|
|
17443
|
+
var Addin = function (view, opt) {
|
|
17444
|
+
exports._addins.push({ view, opt });
|
|
17445
|
+
};
|
|
17446
|
+
|
|
17447
|
+
eval(script);
|
|
17448
|
+
}
|
|
17449
|
+
|
|
17441
17450
|
exports.root = root;
|
|
17442
17451
|
exports.useConfig = UseConfig;
|
|
17443
17452
|
exports.mapRoute = MapRoute;
|
|
@@ -17449,6 +17458,7 @@ function build(options, exports) {
|
|
|
17449
17458
|
exports.mount = mount;
|
|
17450
17459
|
exports.useRoutes = useRoutes;
|
|
17451
17460
|
exports.useAddin = UseAddin;
|
|
17461
|
+
exports.useInlineAddin = UseInlineAddin;
|
|
17452
17462
|
|
|
17453
17463
|
return exports;
|
|
17454
17464
|
};
|