@startinblox/core 2.0.0-beta.11 → 2.0.0-beta.12
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/dist/index.js +3 -4
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -1305,7 +1305,6 @@ function requireJsonldContextParser() {
|
|
|
1305
1305
|
return jsonldContextParser;
|
|
1306
1306
|
}
|
|
1307
1307
|
var jsonldContextParserExports = requireJsonldContextParser();
|
|
1308
|
-
const JSONLDContextParser = /* @__PURE__ */ getDefaultExportFromCjs(jsonldContextParserExports);
|
|
1309
1308
|
var loglevel$1 = { exports: {} };
|
|
1310
1309
|
var loglevel = loglevel$1.exports;
|
|
1311
1310
|
var hasRequiredLoglevel;
|
|
@@ -10799,7 +10798,7 @@ function requireJsonld() {
|
|
|
10799
10798
|
}
|
|
10800
10799
|
var jsonldExports = requireJsonld();
|
|
10801
10800
|
const jsonld = /* @__PURE__ */ getDefaultExportFromCjs(jsonldExports);
|
|
10802
|
-
const ContextParser$1 =
|
|
10801
|
+
const ContextParser$1 = jsonldContextParserExports.ContextParser;
|
|
10803
10802
|
class CustomGetter {
|
|
10804
10803
|
// search attributes to give to server
|
|
10805
10804
|
constructor(resourceId, resource, clientContext, serverContext, parentId = "", serverPagination = {}, serverSearch = {}) {
|
|
@@ -11134,7 +11133,7 @@ class CustomGetter {
|
|
|
11134
11133
|
});
|
|
11135
11134
|
}
|
|
11136
11135
|
}
|
|
11137
|
-
const ContextParser =
|
|
11136
|
+
const ContextParser = jsonldContextParserExports.ContextParser;
|
|
11138
11137
|
const myParser = new ContextParser();
|
|
11139
11138
|
const base_context = {
|
|
11140
11139
|
"@vocab": "https://cdn.startinblox.com/owl#",
|
|
@@ -12644,7 +12643,7 @@ const SolidAcChecker = {
|
|
|
12644
12643
|
populate: trackRenderAsync(async function() {
|
|
12645
12644
|
if (!this.resource) return;
|
|
12646
12645
|
let displayElement;
|
|
12647
|
-
const ContextParser2 =
|
|
12646
|
+
const ContextParser2 = jsonldContextParserExports.ContextParser;
|
|
12648
12647
|
const permissions = await this.resource.permissions;
|
|
12649
12648
|
if (this.permission) {
|
|
12650
12649
|
displayElement = permissions.some((p2) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@startinblox/core",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.12",
|
|
4
4
|
"description": "This is a series of web component respecting both the web components standards and the Linked Data Platform convention.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"doc"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
+
"dev": "vite",
|
|
16
17
|
"build": "vite build",
|
|
17
18
|
"watch": "vite build --watch --sourcemap 'inline'",
|
|
18
19
|
"serve": "node --watch server.js",
|