@steedos/webapp 2.1.90 → 2.2.3
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.
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
var react_1 = __importDefault(require("react"));
|
|
7
|
+
// Register amis render
|
|
8
|
+
var Amis = function (props) {
|
|
9
|
+
var schema = props.schema, data = props.data;
|
|
10
|
+
return react_1.default.createElement(react_1.default.Fragment, null,
|
|
11
|
+
react_1.default.createElement("div", { id: "amis-root" }, window.amis.render(schema, data)));
|
|
12
|
+
};
|
|
13
|
+
exports.default = Amis;
|
|
14
|
+
//# sourceMappingURL=amis.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"amis.js","sourceRoot":"","sources":["../../src/components/amis.tsx"],"names":[],"mappings":";;;;;AAAA,gDAAmD;AAEnD,wBAAwB;AACxB,IAAM,IAAI,GAAG,UAAA,KAAK;IACT,IAAA,MAAM,GAAU,KAAK,OAAf,EAAE,IAAI,GAAI,KAAK,KAAT,CAAU;IAC7B,OAAO;QACH,uCAAK,EAAE,EAAC,WAAW,IACjB,MAAc,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CACpC,CACP,CAAC;AACN,CAAC,CAAA;AAED,kBAAe,IAAI,CAAA"}
|
package/lib/components/index.js
CHANGED
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.IntlProvider = exports.Navbar = exports.Logo = exports.Card = exports.Background = void 0;
|
|
6
|
+
exports.IntlProvider = exports.Amis = exports.Navbar = exports.Logo = exports.Card = exports.Background = void 0;
|
|
7
7
|
var Background_1 = __importDefault(require("./Background"));
|
|
8
8
|
exports.Background = Background_1.default;
|
|
9
9
|
var Card_1 = __importDefault(require("./Card"));
|
|
@@ -12,6 +12,8 @@ var Logo_1 = __importDefault(require("./Logo"));
|
|
|
12
12
|
exports.Logo = Logo_1.default;
|
|
13
13
|
var Navbar_1 = __importDefault(require("./Navbar"));
|
|
14
14
|
exports.Navbar = Navbar_1.default;
|
|
15
|
+
var amis_1 = __importDefault(require("./amis"));
|
|
16
|
+
exports.Amis = amis_1.default;
|
|
15
17
|
var intl_provider_1 = require("./intl_provider");
|
|
16
18
|
Object.defineProperty(exports, "IntlProvider", { enumerable: true, get: function () { return __importDefault(intl_provider_1).default; } });
|
|
17
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":";;;;;;AAAA,4DAAsC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":";;;;;;AAAA,4DAAsC;AAMpC,qBANK,oBAAU,CAML;AALZ,gDAA0B;AAMxB,eANK,cAAI,CAML;AALN,gDAA0B;AAMxB,eANK,cAAI,CAML;AALN,oDAA8B;AAM5B,iBANK,gBAAM,CAML;AALR,gDAA0B;AAMxB,eANK,cAAI,CAML;AAGN,iDAA0D;AAAjD,8HAAA,OAAO,OAAgB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/webapp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/exports.js",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "57dfca5cd66528b2fbe6878f73f2e84b915d5e32"
|
|
83
83
|
}
|