@symbo.ls/sync 2.11.497 → 2.11.500
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/cjs/{Notifications.js → SyncNotifications.js} +3 -3
- package/dist/cjs/index.js +4 -5
- package/dist/esm/index.js +2 -3
- package/index.js +2 -3
- package/package.json +6 -6
- package/DefaultSyncApp.js +0 -1
- package/dist/cjs/DefaultSyncApp.js +0 -1
- package/dist/esm/DefaultSyncApp.js +0 -0
- /package/{Notifications.js → SyncNotifications.js} +0 -0
- /package/dist/esm/{Notifications.js → SyncNotifications.js} +0 -0
|
@@ -16,12 +16,12 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var
|
|
20
|
-
__export(
|
|
19
|
+
var SyncNotifications_exports = {};
|
|
20
|
+
__export(SyncNotifications_exports, {
|
|
21
21
|
Notifications: () => Notifications,
|
|
22
22
|
connectedToSymbols: () => connectedToSymbols
|
|
23
23
|
});
|
|
24
|
-
module.exports = __toCommonJS(
|
|
24
|
+
module.exports = __toCommonJS(SyncNotifications_exports);
|
|
25
25
|
const NOTIF_COLORS = {
|
|
26
26
|
success: "green",
|
|
27
27
|
error: "red",
|
package/dist/cjs/index.js
CHANGED
|
@@ -29,10 +29,9 @@ var import_init = require("@symbo.ls/init");
|
|
|
29
29
|
var import_client = require("@symbo.ls/socket/client");
|
|
30
30
|
var import_globals = require("@domql/globals");
|
|
31
31
|
var import_utils = require("@domql/utils");
|
|
32
|
-
var
|
|
32
|
+
var import_SyncNotifications = require("./SyncNotifications");
|
|
33
33
|
var import_Inspect = require("./Inspect");
|
|
34
|
-
__reExport(sync_exports, require("./
|
|
35
|
-
__reExport(sync_exports, require("./Notifications"), module.exports);
|
|
34
|
+
__reExport(sync_exports, require("./SyncNotifications"), module.exports);
|
|
36
35
|
__reExport(sync_exports, require("./Inspect"), module.exports);
|
|
37
36
|
const isLocalhost = import_globals.window && import_globals.window.location && import_globals.window.location.host.includes("local");
|
|
38
37
|
const onConnect = (element, state) => {
|
|
@@ -78,7 +77,7 @@ const onChange = (el, s, ctx) => {
|
|
|
78
77
|
(0, import_init.init)(designSystem);
|
|
79
78
|
}
|
|
80
79
|
if (ctx.editor.verbose && event === "clients") {
|
|
81
|
-
(0,
|
|
80
|
+
(0, import_SyncNotifications.connectedToSymbols)(data, el, s);
|
|
82
81
|
}
|
|
83
82
|
};
|
|
84
83
|
};
|
|
@@ -98,5 +97,5 @@ const SyncComponent = {
|
|
|
98
97
|
}
|
|
99
98
|
};
|
|
100
99
|
const DefaultSyncApp = {
|
|
101
|
-
extend: [SyncComponent, import_Inspect.Inspect,
|
|
100
|
+
extend: [SyncComponent, import_Inspect.Inspect, import_SyncNotifications.Notifications]
|
|
102
101
|
};
|
package/dist/esm/index.js
CHANGED
|
@@ -3,10 +3,9 @@ import { init } from "@symbo.ls/init";
|
|
|
3
3
|
import { connect } from "@symbo.ls/socket/client";
|
|
4
4
|
import { window } from "@domql/globals";
|
|
5
5
|
import { overwriteShallow } from "@domql/utils";
|
|
6
|
-
import { connectedToSymbols, Notifications } from "./
|
|
6
|
+
import { connectedToSymbols, Notifications } from "./SyncNotifications";
|
|
7
7
|
import { Inspect } from "./Inspect";
|
|
8
|
-
export * from "./
|
|
9
|
-
export * from "./Notifications";
|
|
8
|
+
export * from "./SyncNotifications";
|
|
10
9
|
export * from "./Inspect";
|
|
11
10
|
const isLocalhost = window && window.location && window.location.host.includes("local");
|
|
12
11
|
const onConnect = (element, state) => {
|
package/index.js
CHANGED
|
@@ -5,11 +5,10 @@ import { init } from '@symbo.ls/init'
|
|
|
5
5
|
import { connect } from '@symbo.ls/socket/client'
|
|
6
6
|
import { window } from '@domql/globals'
|
|
7
7
|
import { overwriteShallow } from '@domql/utils'
|
|
8
|
-
import { connectedToSymbols, Notifications } from './
|
|
8
|
+
import { connectedToSymbols, Notifications } from './SyncNotifications'
|
|
9
9
|
import { Inspect } from './Inspect'
|
|
10
10
|
|
|
11
|
-
export * from './
|
|
12
|
-
export * from './Notifications'
|
|
11
|
+
export * from './SyncNotifications'
|
|
13
12
|
export * from './Inspect'
|
|
14
13
|
|
|
15
14
|
const isLocalhost = window && window.location && window.location.host.includes('local')
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/sync",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.500",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"module": "index.js",
|
|
6
|
-
"gitHead": "
|
|
6
|
+
"gitHead": "26be30022a9bbce9288b98f013bb1c3381767960",
|
|
7
7
|
"files": [
|
|
8
8
|
"*.js",
|
|
9
9
|
"dist"
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"@domql/globals": "latest",
|
|
33
33
|
"@domql/router": "^2.5.0",
|
|
34
34
|
"@domql/utils": "^2.5.0",
|
|
35
|
-
"@symbo.ls/init": "^2.11.
|
|
36
|
-
"@symbo.ls/scratch": "^2.11.
|
|
37
|
-
"@symbo.ls/socket": "^2.11.
|
|
38
|
-
"@symbo.ls/uikit": "^2.11.
|
|
35
|
+
"@symbo.ls/init": "^2.11.500",
|
|
36
|
+
"@symbo.ls/scratch": "^2.11.500",
|
|
37
|
+
"@symbo.ls/socket": "^2.11.500",
|
|
38
|
+
"@symbo.ls/uikit": "^2.11.500"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@babel/core": "^7.12.0"
|
package/DefaultSyncApp.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
'use strict'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|