@silexlabs/silex-dashboard 1.0.45 → 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.
- package/_site/en/connectors/index.html +16 -3
- package/_site/fr/connectors/index.html +16 -3
- package/_site/js/vue.cjs.js +1 -1
- package/_site/js/vue.cjs.prod.js +1 -1
- package/_site/js/vue.esm-browser.js +43 -39
- package/_site/js/vue.esm-browser.prod.js +4 -4
- package/_site/js/vue.esm-bundler.js +1 -1
- package/_site/js/vue.global.js +43 -39
- package/_site/js/vue.global.prod.js +4 -4
- package/_site/js/vue.runtime.esm-browser.js +28 -25
- package/_site/js/vue.runtime.esm-browser.prod.js +3 -3
- package/_site/js/vue.runtime.esm-bundler.js +1 -1
- package/_site/js/vue.runtime.global.js +28 -25
- package/_site/js/vue.runtime.global.prod.js +4 -4
- package/collections/connectors/en.md +16 -34
- package/collections/connectors/fr.md +16 -34
- package/package.json +1 -1
- package/templates/connectors-en.html +49 -51
- package/templates/connectors-fr.html +49 -51
- package/templates/websites-en.html +79 -79
- package/templates/websites-fr.html +79 -79
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* vue v3.4.
|
|
2
|
+
* vue v3.4.24
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -10,7 +10,7 @@ var Vue = (function (exports) {
|
|
|
10
10
|
// @__NO_SIDE_EFFECTS__
|
|
11
11
|
function makeMap(str, expectsLowerCase) {
|
|
12
12
|
const set = new Set(str.split(","));
|
|
13
|
-
return
|
|
13
|
+
return (val) => set.has(val);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
const EMPTY_OBJ = Object.freeze({}) ;
|
|
@@ -2359,21 +2359,21 @@ getter: `, this.getter);
|
|
|
2359
2359
|
vnode,
|
|
2360
2360
|
proxy,
|
|
2361
2361
|
withProxy,
|
|
2362
|
-
props,
|
|
2363
2362
|
propsOptions: [propsOptions],
|
|
2364
2363
|
slots,
|
|
2365
2364
|
attrs,
|
|
2366
2365
|
emit,
|
|
2367
2366
|
render,
|
|
2368
2367
|
renderCache,
|
|
2368
|
+
props,
|
|
2369
2369
|
data,
|
|
2370
2370
|
setupState,
|
|
2371
2371
|
ctx,
|
|
2372
2372
|
inheritAttrs
|
|
2373
2373
|
} = instance;
|
|
2374
|
+
const prev = setCurrentRenderingInstance(instance);
|
|
2374
2375
|
let result;
|
|
2375
2376
|
let fallthroughAttrs;
|
|
2376
|
-
const prev = setCurrentRenderingInstance(instance);
|
|
2377
2377
|
{
|
|
2378
2378
|
accessedAttrs = false;
|
|
2379
2379
|
}
|
|
@@ -2395,7 +2395,7 @@ getter: `, this.getter);
|
|
|
2395
2395
|
thisProxy,
|
|
2396
2396
|
proxyToUse,
|
|
2397
2397
|
renderCache,
|
|
2398
|
-
props,
|
|
2398
|
+
true ? shallowReadonly(props) : props,
|
|
2399
2399
|
setupState,
|
|
2400
2400
|
data,
|
|
2401
2401
|
ctx
|
|
@@ -2409,7 +2409,7 @@ getter: `, this.getter);
|
|
|
2409
2409
|
}
|
|
2410
2410
|
result = normalizeVNode(
|
|
2411
2411
|
render2.length > 1 ? render2(
|
|
2412
|
-
props,
|
|
2412
|
+
true ? shallowReadonly(props) : props,
|
|
2413
2413
|
true ? {
|
|
2414
2414
|
get attrs() {
|
|
2415
2415
|
markAttrsAccessed();
|
|
@@ -2419,9 +2419,8 @@ getter: `, this.getter);
|
|
|
2419
2419
|
emit
|
|
2420
2420
|
} : { attrs, slots, emit }
|
|
2421
2421
|
) : render2(
|
|
2422
|
-
props,
|
|
2422
|
+
true ? shallowReadonly(props) : props,
|
|
2423
2423
|
null
|
|
2424
|
-
/* we know it doesn't need it */
|
|
2425
2424
|
)
|
|
2426
2425
|
);
|
|
2427
2426
|
fallthroughAttrs = Component.props ? attrs : getFunctionalFallthrough(attrs);
|
|
@@ -3882,11 +3881,19 @@ If this is a native custom element, make sure to exclude it from component resol
|
|
|
3882
3881
|
}
|
|
3883
3882
|
}
|
|
3884
3883
|
function getKeepAliveChild(vnode) {
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3884
|
+
if (!isKeepAlive(vnode)) {
|
|
3885
|
+
return vnode;
|
|
3886
|
+
}
|
|
3887
|
+
if (vnode.component) {
|
|
3888
|
+
return vnode.component.subTree;
|
|
3889
|
+
}
|
|
3890
|
+
const { shapeFlag, children } = vnode;
|
|
3891
|
+
if (shapeFlag & 16) {
|
|
3892
|
+
return children[0];
|
|
3893
|
+
}
|
|
3894
|
+
if (shapeFlag & 32 && isFunction(children.default)) {
|
|
3895
|
+
return children.default();
|
|
3896
|
+
}
|
|
3890
3897
|
}
|
|
3891
3898
|
function setTransitionHooks(vnode, hooks) {
|
|
3892
3899
|
if (vnode.shapeFlag & 6 && vnode.component) {
|
|
@@ -5938,21 +5945,17 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
5938
5945
|
instance.slots.default = () => normalized;
|
|
5939
5946
|
};
|
|
5940
5947
|
const initSlots = (instance, children) => {
|
|
5948
|
+
const slots = instance.slots = createInternalObject();
|
|
5941
5949
|
if (instance.vnode.shapeFlag & 32) {
|
|
5942
5950
|
const type = children._;
|
|
5943
5951
|
if (type) {
|
|
5944
|
-
|
|
5945
|
-
def(
|
|
5952
|
+
extend(slots, children);
|
|
5953
|
+
def(slots, "_", type);
|
|
5946
5954
|
} else {
|
|
5947
|
-
normalizeObjectSlots(
|
|
5948
|
-
children,
|
|
5949
|
-
instance.slots = createInternalObject());
|
|
5950
|
-
}
|
|
5951
|
-
} else {
|
|
5952
|
-
instance.slots = createInternalObject();
|
|
5953
|
-
if (children) {
|
|
5954
|
-
normalizeVNodeSlots(instance, children);
|
|
5955
|
+
normalizeObjectSlots(children, slots);
|
|
5955
5956
|
}
|
|
5957
|
+
} else if (children) {
|
|
5958
|
+
normalizeVNodeSlots(instance, children);
|
|
5956
5959
|
}
|
|
5957
5960
|
};
|
|
5958
5961
|
const updateSlots = (instance, children, optimized) => {
|
|
@@ -9546,7 +9549,7 @@ Component that was made reactive: `,
|
|
|
9546
9549
|
return true;
|
|
9547
9550
|
}
|
|
9548
9551
|
|
|
9549
|
-
const version = "3.4.
|
|
9552
|
+
const version = "3.4.24";
|
|
9550
9553
|
const warn = warn$1 ;
|
|
9551
9554
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
9552
9555
|
const devtools = devtools$1 ;
|
|
@@ -9742,8 +9745,8 @@ Component that was made reactive: `,
|
|
|
9742
9745
|
el._isLeaving = true;
|
|
9743
9746
|
const resolve = () => finishLeave(el, done);
|
|
9744
9747
|
addTransitionClass(el, leaveFromClass);
|
|
9745
|
-
forceReflow();
|
|
9746
9748
|
addTransitionClass(el, leaveActiveClass);
|
|
9749
|
+
forceReflow();
|
|
9747
9750
|
nextFrame(() => {
|
|
9748
9751
|
if (!el._isLeaving) {
|
|
9749
9752
|
return;
|