@silexlabs/silex-dashboard 1.0.44 → 1.0.46

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.
Files changed (36) hide show
  1. package/_site/assets/bg-purpel-silex.webp +0 -0
  2. package/_site/assets/bg-silex-purpel.webp +0 -0
  3. package/_site/assets/empty-projects-sos.gif +0 -0
  4. package/_site/assets/favicon-32x32.png +0 -0
  5. package/_site/assets/logo-silex.svg +1 -0
  6. package/_site/assets/picto-silex@3x.png +0 -0
  7. package/_site/css/connectors-61bd21c2345101e48cc530cacf3afc0156ce7e089fcef3a34f853a537f0c55f2.css +1 -0
  8. package/_site/css/websites-4b9b2b0a0a907b33eca109d50c2a3eee97f1955c742cef487110d21a0bbf8f50.css +1 -0
  9. package/_site/en/connectors/index.html +384 -0
  10. package/_site/en/index.html +384 -0
  11. package/_site/fr/connectors/index.html +384 -0
  12. package/_site/fr/index.html +384 -0
  13. package/_site/js/main.js +362 -0
  14. package/_site/js/main.js.LICENSE.txt +38 -0
  15. package/_site/js/vue.cjs.js +89 -0
  16. package/_site/js/vue.cjs.prod.js +75 -0
  17. package/_site/js/vue.d.mts +7 -0
  18. package/_site/js/vue.d.ts +7 -0
  19. package/_site/js/vue.esm-browser.js +16744 -0
  20. package/_site/js/vue.esm-browser.prod.js +12 -0
  21. package/_site/js/vue.esm-bundler.js +80 -0
  22. package/_site/js/vue.global.js +16729 -0
  23. package/_site/js/vue.global.prod.js +12 -0
  24. package/_site/js/vue.runtime.esm-browser.js +11158 -0
  25. package/_site/js/vue.runtime.esm-browser.prod.js +12 -0
  26. package/_site/js/vue.runtime.esm-bundler.js +26 -0
  27. package/_site/js/vue.runtime.global.js +11305 -0
  28. package/_site/js/vue.runtime.global.prod.js +12 -0
  29. package/collections/connectors/en.md +16 -34
  30. package/collections/connectors/fr.md +16 -34
  31. package/package.json +1 -1
  32. package/silex/server-config.js +0 -2
  33. package/templates/connectors-en.html +49 -51
  34. package/templates/connectors-fr.html +49 -51
  35. package/templates/websites-en.html +79 -79
  36. package/templates/websites-fr.html +79 -79
@@ -0,0 +1,38 @@
1
+ /*!
2
+ * Backbone.Undo.js v0.2
3
+ *
4
+ * Copyright (c)2013 Oliver Sartun
5
+ * Released under the MIT License
6
+ *
7
+ * Documentation and full license available at
8
+ * https://github.com/osartun/Backbone.Undo.js
9
+ */
10
+
11
+ /*!
12
+ * jQuery JavaScript Library v3.7.0
13
+ * https://jquery.com/
14
+ *
15
+ * Copyright OpenJS Foundation and other contributors
16
+ * Released under the MIT license
17
+ * https://jquery.org/license
18
+ *
19
+ * Date: 2023-05-11T18:29Z
20
+ */
21
+
22
+ /*! @silexlabs/grapesjs-filter-styles - 0.0.3 */
23
+
24
+ /*! @silexlabs/grapesjs-loading - 1.0.9 */
25
+
26
+ /*! grapesjs-style-border - 1.0.4 */
27
+
28
+ /**
29
+ * @license
30
+ * Copyright 2017 Google LLC
31
+ * SPDX-License-Identifier: BSD-3-Clause
32
+ */
33
+
34
+ /**
35
+ * @license
36
+ * Copyright 2021 Google LLC
37
+ * SPDX-License-Identifier: BSD-3-Clause
38
+ */
@@ -0,0 +1,89 @@
1
+ /**
2
+ * vue v3.4.24
3
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
+ * @license MIT
5
+ **/
6
+ 'use strict';
7
+
8
+ Object.defineProperty(exports, '__esModule', { value: true });
9
+
10
+ var compilerDom = require('@vue/compiler-dom');
11
+ var runtimeDom = require('@vue/runtime-dom');
12
+ var shared = require('@vue/shared');
13
+
14
+ function _interopNamespaceDefault(e) {
15
+ var n = Object.create(null);
16
+ if (e) {
17
+ for (var k in e) {
18
+ n[k] = e[k];
19
+ }
20
+ }
21
+ n.default = e;
22
+ return Object.freeze(n);
23
+ }
24
+
25
+ var runtimeDom__namespace = /*#__PURE__*/_interopNamespaceDefault(runtimeDom);
26
+
27
+ const compileCache = /* @__PURE__ */ new WeakMap();
28
+ function getCache(options) {
29
+ let c = compileCache.get(options != null ? options : shared.EMPTY_OBJ);
30
+ if (!c) {
31
+ c = /* @__PURE__ */ Object.create(null);
32
+ compileCache.set(options != null ? options : shared.EMPTY_OBJ, c);
33
+ }
34
+ return c;
35
+ }
36
+ function compileToFunction(template, options) {
37
+ if (!shared.isString(template)) {
38
+ if (template.nodeType) {
39
+ template = template.innerHTML;
40
+ } else {
41
+ runtimeDom.warn(`invalid template option: `, template);
42
+ return shared.NOOP;
43
+ }
44
+ }
45
+ const key = template;
46
+ const cache = getCache(options);
47
+ const cached = cache[key];
48
+ if (cached) {
49
+ return cached;
50
+ }
51
+ if (template[0] === "#") {
52
+ const el = document.querySelector(template);
53
+ if (!el) {
54
+ runtimeDom.warn(`Template element not found or is empty: ${template}`);
55
+ }
56
+ template = el ? el.innerHTML : ``;
57
+ }
58
+ const opts = shared.extend(
59
+ {
60
+ hoistStatic: true,
61
+ onError: onError ,
62
+ onWarn: (e) => onError(e, true)
63
+ },
64
+ options
65
+ );
66
+ if (!opts.isCustomElement && typeof customElements !== "undefined") {
67
+ opts.isCustomElement = (tag) => !!customElements.get(tag);
68
+ }
69
+ const { code } = compilerDom.compile(template, opts);
70
+ function onError(err, asWarning = false) {
71
+ const message = asWarning ? err.message : `Template compilation error: ${err.message}`;
72
+ const codeFrame = err.loc && shared.generateCodeFrame(
73
+ template,
74
+ err.loc.start.offset,
75
+ err.loc.end.offset
76
+ );
77
+ runtimeDom.warn(codeFrame ? `${message}
78
+ ${codeFrame}` : message);
79
+ }
80
+ const render = new Function("Vue", code)(runtimeDom__namespace);
81
+ render._rc = true;
82
+ return cache[key] = render;
83
+ }
84
+ runtimeDom.registerRuntimeCompiler(compileToFunction);
85
+
86
+ exports.compile = compileToFunction;
87
+ Object.keys(runtimeDom).forEach(function (k) {
88
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = runtimeDom[k];
89
+ });
@@ -0,0 +1,75 @@
1
+ /**
2
+ * vue v3.4.24
3
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
+ * @license MIT
5
+ **/
6
+ 'use strict';
7
+
8
+ Object.defineProperty(exports, '__esModule', { value: true });
9
+
10
+ var compilerDom = require('@vue/compiler-dom');
11
+ var runtimeDom = require('@vue/runtime-dom');
12
+ var shared = require('@vue/shared');
13
+
14
+ function _interopNamespaceDefault(e) {
15
+ var n = Object.create(null);
16
+ if (e) {
17
+ for (var k in e) {
18
+ n[k] = e[k];
19
+ }
20
+ }
21
+ n.default = e;
22
+ return Object.freeze(n);
23
+ }
24
+
25
+ var runtimeDom__namespace = /*#__PURE__*/_interopNamespaceDefault(runtimeDom);
26
+
27
+ const compileCache = /* @__PURE__ */ new WeakMap();
28
+ function getCache(options) {
29
+ let c = compileCache.get(options != null ? options : shared.EMPTY_OBJ);
30
+ if (!c) {
31
+ c = /* @__PURE__ */ Object.create(null);
32
+ compileCache.set(options != null ? options : shared.EMPTY_OBJ, c);
33
+ }
34
+ return c;
35
+ }
36
+ function compileToFunction(template, options) {
37
+ if (!shared.isString(template)) {
38
+ if (template.nodeType) {
39
+ template = template.innerHTML;
40
+ } else {
41
+ return shared.NOOP;
42
+ }
43
+ }
44
+ const key = template;
45
+ const cache = getCache(options);
46
+ const cached = cache[key];
47
+ if (cached) {
48
+ return cached;
49
+ }
50
+ if (template[0] === "#") {
51
+ const el = document.querySelector(template);
52
+ template = el ? el.innerHTML : ``;
53
+ }
54
+ const opts = shared.extend(
55
+ {
56
+ hoistStatic: true,
57
+ onError: void 0,
58
+ onWarn: shared.NOOP
59
+ },
60
+ options
61
+ );
62
+ if (!opts.isCustomElement && typeof customElements !== "undefined") {
63
+ opts.isCustomElement = (tag) => !!customElements.get(tag);
64
+ }
65
+ const { code } = compilerDom.compile(template, opts);
66
+ const render = new Function("Vue", code)(runtimeDom__namespace);
67
+ render._rc = true;
68
+ return cache[key] = render;
69
+ }
70
+ runtimeDom.registerRuntimeCompiler(compileToFunction);
71
+
72
+ exports.compile = compileToFunction;
73
+ Object.keys(runtimeDom).forEach(function (k) {
74
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = runtimeDom[k];
75
+ });
@@ -0,0 +1,7 @@
1
+ import { CompilerOptions } from '@vue/compiler-dom';
2
+ import { RenderFunction } from '@vue/runtime-dom';
3
+ export * from '@vue/runtime-dom';
4
+
5
+ export declare function compileToFunction(template: string | HTMLElement, options?: CompilerOptions): RenderFunction;
6
+
7
+ export { compileToFunction as compile };
@@ -0,0 +1,7 @@
1
+ import { CompilerOptions } from '@vue/compiler-dom';
2
+ import { RenderFunction } from '@vue/runtime-dom';
3
+ export * from '@vue/runtime-dom';
4
+
5
+ export declare function compileToFunction(template: string | HTMLElement, options?: CompilerOptions): RenderFunction;
6
+
7
+ export { compileToFunction as compile };