likec4 1.8.0 → 1.8.1
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/__app__/src/main.js +40 -38
- package/dist/__app__/webcomponent/webcomponent.js +26 -24
- package/dist/cli/index.mjs +191 -191
- package/package.json +21 -21
- package/react/index.mjs +7 -5
- package/dist/__app__/tsconfig.tsbuildinfo +0 -1
package/dist/__app__/src/main.js
CHANGED
|
@@ -3037,7 +3037,7 @@ class MotionValue {
|
|
|
3037
3037
|
* @internal
|
|
3038
3038
|
*/
|
|
3039
3039
|
constructor(init, options = {}) {
|
|
3040
|
-
this.version = "11.3.
|
|
3040
|
+
this.version = "11.3.31", this.canTrackVelocity = null, this.events = {}, this.updateAndNotify = (v, render = !0) => {
|
|
3041
3041
|
const currentTime = time.now();
|
|
3042
3042
|
this.updatedAt !== currentTime && this.setPrevFrameValue(), this.prev = this.current, this.setCurrent(v), this.current !== this.prev && this.events.change && this.events.change.notify(this.current), render && this.events.renderRequest && this.events.renderRequest.notify(this.current);
|
|
3043
3043
|
}, this.hasAnimated = !1, this.setCurrent(init), this.owner = options.owner;
|
|
@@ -3237,7 +3237,7 @@ function setTarget(visualElement, definition) {
|
|
|
3237
3237
|
}
|
|
3238
3238
|
}
|
|
3239
3239
|
function getOptimisedAppearId(visualElement) {
|
|
3240
|
-
return visualElement.
|
|
3240
|
+
return visualElement.props[optimizedAppearDataAttribute];
|
|
3241
3241
|
}
|
|
3242
3242
|
class WillChangeMotionValue extends MotionValue {
|
|
3243
3243
|
constructor() {
|
|
@@ -3609,7 +3609,7 @@ class VisualElement {
|
|
|
3609
3609
|
this.current = instance, visualElementStore.set(instance, this), this.projection && !this.projection.instance && this.projection.mount(instance), this.parent && this.isVariantNode && !this.isControllingVariants && (this.removeFromVariantTree = this.parent.addVariantChild(this)), this.values.forEach((value, key) => this.bindToMotionValue(key, value)), hasReducedMotionListener.current || initPrefersReducedMotion(), this.shouldReduceMotion = this.reducedMotionConfig === "never" ? !1 : this.reducedMotionConfig === "always" ? !0 : prefersReducedMotion.current, this.parent && this.parent.children.add(this), this.update(this.props, this.presenceContext);
|
|
3610
3610
|
}
|
|
3611
3611
|
unmount() {
|
|
3612
|
-
visualElementStore.delete(this.current), this.projection && this.projection.unmount(), cancelFrame(this.notifyUpdate), cancelFrame(this.render), this.valueSubscriptions.forEach((remove) => remove()), this.removeFromVariantTree && this.removeFromVariantTree(), this.parent && this.parent.children.delete(this);
|
|
3612
|
+
visualElementStore.delete(this.current), this.projection && this.projection.unmount(), cancelFrame(this.notifyUpdate), cancelFrame(this.render), this.valueSubscriptions.forEach((remove) => remove()), this.valueSubscriptions.clear(), this.removeFromVariantTree && this.removeFromVariantTree(), this.parent && this.parent.children.delete(this);
|
|
3613
3613
|
for (const key in this.events)
|
|
3614
3614
|
this.events[key].clear();
|
|
3615
3615
|
for (const key in this.features) {
|
|
@@ -3619,11 +3619,13 @@ class VisualElement {
|
|
|
3619
3619
|
this.current = null;
|
|
3620
3620
|
}
|
|
3621
3621
|
bindToMotionValue(key, value) {
|
|
3622
|
+
this.valueSubscriptions.has(key) && this.valueSubscriptions.get(key)();
|
|
3622
3623
|
const valueIsTransform = transformProps.has(key), removeOnChange = value.on("change", (latestValue) => {
|
|
3623
3624
|
this.latestValues[key] = latestValue, this.props.onUpdate && frame.preRender(this.notifyUpdate), valueIsTransform && this.projection && (this.projection.isTransformDirty = !0);
|
|
3624
3625
|
}), removeOnRenderRequest = value.on("renderRequest", this.scheduleRender);
|
|
3625
|
-
|
|
3626
|
-
|
|
3626
|
+
let removeSyncCheck;
|
|
3627
|
+
window.MotionCheckAppearSync && (removeSyncCheck = window.MotionCheckAppearSync(this, key, value)), this.valueSubscriptions.set(key, () => {
|
|
3628
|
+
removeOnChange(), removeOnRenderRequest(), removeSyncCheck && removeSyncCheck(), value.owner && value.stop();
|
|
3627
3629
|
});
|
|
3628
3630
|
}
|
|
3629
3631
|
sortNodePosition(other) {
|
|
@@ -6869,7 +6871,7 @@ const isSame = (a2, b2) => Math.abs(a2 - b2) < 2.5, isSamePoint = (a2, b2) => {
|
|
|
6869
6871
|
}
|
|
6870
6872
|
) });
|
|
6871
6873
|
/**
|
|
6872
|
-
* @license @tabler/icons-react v3.
|
|
6874
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
6873
6875
|
*
|
|
6874
6876
|
* This source code is licensed under the MIT license.
|
|
6875
6877
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -6896,7 +6898,7 @@ var defaultAttributes = {
|
|
|
6896
6898
|
}
|
|
6897
6899
|
};
|
|
6898
6900
|
/**
|
|
6899
|
-
* @license @tabler/icons-react v3.
|
|
6901
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
6900
6902
|
*
|
|
6901
6903
|
* This source code is licensed under the MIT license.
|
|
6902
6904
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -6929,210 +6931,210 @@ const createReactComponent = (type, iconName, iconNamePascal, iconNode) => {
|
|
|
6929
6931
|
return Component2.displayName = `${iconNamePascal}`, Component2;
|
|
6930
6932
|
};
|
|
6931
6933
|
/**
|
|
6932
|
-
* @license @tabler/icons-react v3.
|
|
6934
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
6933
6935
|
*
|
|
6934
6936
|
* This source code is licensed under the MIT license.
|
|
6935
6937
|
* See the LICENSE file in the root directory of this source tree.
|
|
6936
6938
|
*/
|
|
6937
6939
|
var IconAlertTriangle = createReactComponent("outline", "alert-triangle", "IconAlertTriangle", [["path", { d: "M12 9v4", key: "svg-0" }], ["path", { d: "M10.363 3.591l-8.106 13.534a1.914 1.914 0 0 0 1.636 2.871h16.214a1.914 1.914 0 0 0 1.636 -2.87l-8.106 -13.536a1.914 1.914 0 0 0 -3.274 0z", key: "svg-1" }], ["path", { d: "M12 16h.01", key: "svg-2" }]]);
|
|
6938
6940
|
/**
|
|
6939
|
-
* @license @tabler/icons-react v3.
|
|
6941
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
6940
6942
|
*
|
|
6941
6943
|
* This source code is licensed under the MIT license.
|
|
6942
6944
|
* See the LICENSE file in the root directory of this source tree.
|
|
6943
6945
|
*/
|
|
6944
6946
|
var IconArrowBigDownLines = createReactComponent("outline", "arrow-big-down-lines", "IconArrowBigDownLines", [["path", { d: "M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z", key: "svg-0" }], ["path", { d: "M15 3h-6", key: "svg-1" }], ["path", { d: "M15 6h-6", key: "svg-2" }]]);
|
|
6945
6947
|
/**
|
|
6946
|
-
* @license @tabler/icons-react v3.
|
|
6948
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
6947
6949
|
*
|
|
6948
6950
|
* This source code is licensed under the MIT license.
|
|
6949
6951
|
* See the LICENSE file in the root directory of this source tree.
|
|
6950
6952
|
*/
|
|
6951
6953
|
var IconArrowDownRight = createReactComponent("outline", "arrow-down-right", "IconArrowDownRight", [["path", { d: "M7 7l10 10", key: "svg-0" }], ["path", { d: "M17 8l0 9l-9 0", key: "svg-1" }]]);
|
|
6952
6954
|
/**
|
|
6953
|
-
* @license @tabler/icons-react v3.
|
|
6955
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
6954
6956
|
*
|
|
6955
6957
|
* This source code is licensed under the MIT license.
|
|
6956
6958
|
* See the LICENSE file in the root directory of this source tree.
|
|
6957
6959
|
*/
|
|
6958
6960
|
var IconArrowLeft = createReactComponent("outline", "arrow-left", "IconArrowLeft", [["path", { d: "M5 12l14 0", key: "svg-0" }], ["path", { d: "M5 12l6 6", key: "svg-1" }], ["path", { d: "M5 12l6 -6", key: "svg-2" }]]);
|
|
6959
6961
|
/**
|
|
6960
|
-
* @license @tabler/icons-react v3.
|
|
6962
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
6961
6963
|
*
|
|
6962
6964
|
* This source code is licensed under the MIT license.
|
|
6963
6965
|
* See the LICENSE file in the root directory of this source tree.
|
|
6964
6966
|
*/
|
|
6965
6967
|
var IconCheck = createReactComponent("outline", "check", "IconCheck", [["path", { d: "M5 12l5 5l10 -10", key: "svg-0" }]]);
|
|
6966
6968
|
/**
|
|
6967
|
-
* @license @tabler/icons-react v3.
|
|
6969
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
6968
6970
|
*
|
|
6969
6971
|
* This source code is licensed under the MIT license.
|
|
6970
6972
|
* See the LICENSE file in the root directory of this source tree.
|
|
6971
6973
|
*/
|
|
6972
6974
|
var IconChevronDown = createReactComponent("outline", "chevron-down", "IconChevronDown", [["path", { d: "M6 9l6 6l6 -6", key: "svg-0" }]]);
|
|
6973
6975
|
/**
|
|
6974
|
-
* @license @tabler/icons-react v3.
|
|
6976
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
6975
6977
|
*
|
|
6976
6978
|
* This source code is licensed under the MIT license.
|
|
6977
6979
|
* See the LICENSE file in the root directory of this source tree.
|
|
6978
6980
|
*/
|
|
6979
6981
|
var IconChevronLeft = createReactComponent("outline", "chevron-left", "IconChevronLeft", [["path", { d: "M15 6l-6 6l6 6", key: "svg-0" }]]);
|
|
6980
6982
|
/**
|
|
6981
|
-
* @license @tabler/icons-react v3.
|
|
6983
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
6982
6984
|
*
|
|
6983
6985
|
* This source code is licensed under the MIT license.
|
|
6984
6986
|
* See the LICENSE file in the root directory of this source tree.
|
|
6985
6987
|
*/
|
|
6986
6988
|
var IconChevronRight = createReactComponent("outline", "chevron-right", "IconChevronRight", [["path", { d: "M9 6l6 6l-6 6", key: "svg-0" }]]);
|
|
6987
6989
|
/**
|
|
6988
|
-
* @license @tabler/icons-react v3.
|
|
6990
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
6989
6991
|
*
|
|
6990
6992
|
* This source code is licensed under the MIT license.
|
|
6991
6993
|
* See the LICENSE file in the root directory of this source tree.
|
|
6992
6994
|
*/
|
|
6993
6995
|
var IconCopy = createReactComponent("outline", "copy", "IconCopy", [["path", { d: "M7 7m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h8.666a2.667 2.667 0 0 1 2.667 2.667v8.666a2.667 2.667 0 0 1 -2.667 2.667h-8.666a2.667 2.667 0 0 1 -2.667 -2.667z", key: "svg-0" }], ["path", { d: "M4.012 16.737a2.005 2.005 0 0 1 -1.012 -1.737v-10c0 -1.1 .9 -2 2 -2h10c.75 0 1.158 .385 1.5 1", key: "svg-1" }]]);
|
|
6994
6996
|
/**
|
|
6995
|
-
* @license @tabler/icons-react v3.
|
|
6997
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
6996
6998
|
*
|
|
6997
6999
|
* This source code is licensed under the MIT license.
|
|
6998
7000
|
* See the LICENSE file in the root directory of this source tree.
|
|
6999
7001
|
*/
|
|
7000
7002
|
var IconExternalLink = createReactComponent("outline", "external-link", "IconExternalLink", [["path", { d: "M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6", key: "svg-0" }], ["path", { d: "M11 13l9 -9", key: "svg-1" }], ["path", { d: "M15 4h5v5", key: "svg-2" }]]);
|
|
7001
7003
|
/**
|
|
7002
|
-
* @license @tabler/icons-react v3.
|
|
7004
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7003
7005
|
*
|
|
7004
7006
|
* This source code is licensed under the MIT license.
|
|
7005
7007
|
* See the LICENSE file in the root directory of this source tree.
|
|
7006
7008
|
*/
|
|
7007
7009
|
var IconFileCode = createReactComponent("outline", "file-code", "IconFileCode", [["path", { d: "M14 3v4a1 1 0 0 0 1 1h4", key: "svg-0" }], ["path", { d: "M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z", key: "svg-1" }], ["path", { d: "M10 13l-1 2l1 2", key: "svg-2" }], ["path", { d: "M14 13l1 2l-1 2", key: "svg-3" }]]);
|
|
7008
7010
|
/**
|
|
7009
|
-
* @license @tabler/icons-react v3.
|
|
7011
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7010
7012
|
*
|
|
7011
7013
|
* This source code is licensed under the MIT license.
|
|
7012
7014
|
* See the LICENSE file in the root directory of this source tree.
|
|
7013
7015
|
*/
|
|
7014
7016
|
var IconFileSymlink = createReactComponent("outline", "file-symlink", "IconFileSymlink", [["path", { d: "M4 21v-4a3 3 0 0 1 3 -3h5", key: "svg-0" }], ["path", { d: "M9 17l3 -3l-3 -3", key: "svg-1" }], ["path", { d: "M14 3v4a1 1 0 0 0 1 1h4", key: "svg-2" }], ["path", { d: "M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5", key: "svg-3" }]]);
|
|
7015
7017
|
/**
|
|
7016
|
-
* @license @tabler/icons-react v3.
|
|
7018
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7017
7019
|
*
|
|
7018
7020
|
* This source code is licensed under the MIT license.
|
|
7019
7021
|
* See the LICENSE file in the root directory of this source tree.
|
|
7020
7022
|
*/
|
|
7021
7023
|
var IconFocusCentered = createReactComponent("outline", "focus-centered", "IconFocusCentered", [["path", { d: "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0", key: "svg-0" }], ["path", { d: "M4 8v-2a2 2 0 0 1 2 -2h2", key: "svg-1" }], ["path", { d: "M4 16v2a2 2 0 0 0 2 2h2", key: "svg-2" }], ["path", { d: "M16 4h2a2 2 0 0 1 2 2v2", key: "svg-3" }], ["path", { d: "M16 20h2a2 2 0 0 0 2 -2v-2", key: "svg-4" }]]);
|
|
7022
7024
|
/**
|
|
7023
|
-
* @license @tabler/icons-react v3.
|
|
7025
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7024
7026
|
*
|
|
7025
7027
|
* This source code is licensed under the MIT license.
|
|
7026
7028
|
* See the LICENSE file in the root directory of this source tree.
|
|
7027
7029
|
*/
|
|
7028
7030
|
var IconFolderOpen = createReactComponent("outline", "folder-open", "IconFolderOpen", [["path", { d: "M5 19l2.757 -7.351a1 1 0 0 1 .936 -.649h12.307a1 1 0 0 1 .986 1.164l-.996 5.211a2 2 0 0 1 -1.964 1.625h-14.026a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2", key: "svg-0" }]]);
|
|
7029
7031
|
/**
|
|
7030
|
-
* @license @tabler/icons-react v3.
|
|
7032
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7031
7033
|
*
|
|
7032
7034
|
* This source code is licensed under the MIT license.
|
|
7033
7035
|
* See the LICENSE file in the root directory of this source tree.
|
|
7034
7036
|
*/
|
|
7035
7037
|
var IconHelpCircle = createReactComponent("outline", "help-circle", "IconHelpCircle", [["path", { d: "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0", key: "svg-0" }], ["path", { d: "M12 16v.01", key: "svg-1" }], ["path", { d: "M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483", key: "svg-2" }]]);
|
|
7036
7038
|
/**
|
|
7037
|
-
* @license @tabler/icons-react v3.
|
|
7039
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7038
7040
|
*
|
|
7039
7041
|
* This source code is licensed under the MIT license.
|
|
7040
7042
|
* See the LICENSE file in the root directory of this source tree.
|
|
7041
7043
|
*/
|
|
7042
7044
|
var IconLayoutDashboard = createReactComponent("outline", "layout-dashboard", "IconLayoutDashboard", [["path", { d: "M5 4h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1", key: "svg-0" }], ["path", { d: "M5 16h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1", key: "svg-1" }], ["path", { d: "M15 12h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1", key: "svg-2" }], ["path", { d: "M15 4h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1", key: "svg-3" }]]);
|
|
7043
7045
|
/**
|
|
7044
|
-
* @license @tabler/icons-react v3.
|
|
7046
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7045
7047
|
*
|
|
7046
7048
|
* This source code is licensed under the MIT license.
|
|
7047
7049
|
* See the LICENSE file in the root directory of this source tree.
|
|
7048
7050
|
*/
|
|
7049
7051
|
var IconLink = createReactComponent("outline", "link", "IconLink", [["path", { d: "M9 15l6 -6", key: "svg-0" }], ["path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464", key: "svg-1" }], ["path", { d: "M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463", key: "svg-2" }]]);
|
|
7050
7052
|
/**
|
|
7051
|
-
* @license @tabler/icons-react v3.
|
|
7053
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7052
7054
|
*
|
|
7053
7055
|
* This source code is licensed under the MIT license.
|
|
7054
7056
|
* See the LICENSE file in the root directory of this source tree.
|
|
7055
7057
|
*/
|
|
7056
7058
|
var IconLoader = createReactComponent("outline", "loader", "IconLoader", [["path", { d: "M12 6l0 -3", key: "svg-0" }], ["path", { d: "M16.25 7.75l2.15 -2.15", key: "svg-1" }], ["path", { d: "M18 12l3 0", key: "svg-2" }], ["path", { d: "M16.25 16.25l2.15 2.15", key: "svg-3" }], ["path", { d: "M12 18l0 3", key: "svg-4" }], ["path", { d: "M7.75 16.25l-2.15 2.15", key: "svg-5" }], ["path", { d: "M6 12l-3 0", key: "svg-6" }], ["path", { d: "M7.75 7.75l-2.15 -2.15", key: "svg-7" }]]);
|
|
7057
7059
|
/**
|
|
7058
|
-
* @license @tabler/icons-react v3.
|
|
7060
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7059
7061
|
*
|
|
7060
7062
|
* This source code is licensed under the MIT license.
|
|
7061
7063
|
* See the LICENSE file in the root directory of this source tree.
|
|
7062
7064
|
*/
|
|
7063
7065
|
var IconMenu2 = createReactComponent("outline", "menu-2", "IconMenu2", [["path", { d: "M4 6l16 0", key: "svg-0" }], ["path", { d: "M4 12l16 0", key: "svg-1" }], ["path", { d: "M4 18l16 0", key: "svg-2" }]]);
|
|
7064
7066
|
/**
|
|
7065
|
-
* @license @tabler/icons-react v3.
|
|
7067
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7066
7068
|
*
|
|
7067
7069
|
* This source code is licensed under the MIT license.
|
|
7068
7070
|
* See the LICENSE file in the root directory of this source tree.
|
|
7069
7071
|
*/
|
|
7070
7072
|
var IconMenu = createReactComponent("outline", "menu", "IconMenu", [["path", { d: "M4 8l16 0", key: "svg-0" }], ["path", { d: "M4 16l16 0", key: "svg-1" }]]);
|
|
7071
7073
|
/**
|
|
7072
|
-
* @license @tabler/icons-react v3.
|
|
7074
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7073
7075
|
*
|
|
7074
7076
|
* This source code is licensed under the MIT license.
|
|
7075
7077
|
* See the LICENSE file in the root directory of this source tree.
|
|
7076
7078
|
*/
|
|
7077
7079
|
var IconMoonStars = createReactComponent("outline", "moon-stars", "IconMoonStars", [["path", { d: "M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z", key: "svg-0" }], ["path", { d: "M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2", key: "svg-1" }], ["path", { d: "M19 11h2m-1 -1v2", key: "svg-2" }]]);
|
|
7078
7080
|
/**
|
|
7079
|
-
* @license @tabler/icons-react v3.
|
|
7081
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7080
7082
|
*
|
|
7081
7083
|
* This source code is licensed under the MIT license.
|
|
7082
7084
|
* See the LICENSE file in the root directory of this source tree.
|
|
7083
7085
|
*/
|
|
7084
7086
|
var IconShare = createReactComponent("outline", "share", "IconShare", [["path", { d: "M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0", key: "svg-0" }], ["path", { d: "M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0", key: "svg-1" }], ["path", { d: "M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0", key: "svg-2" }], ["path", { d: "M8.7 10.7l6.6 -3.4", key: "svg-3" }], ["path", { d: "M8.7 13.3l6.6 3.4", key: "svg-4" }]]);
|
|
7085
7087
|
/**
|
|
7086
|
-
* @license @tabler/icons-react v3.
|
|
7088
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7087
7089
|
*
|
|
7088
7090
|
* This source code is licensed under the MIT license.
|
|
7089
7091
|
* See the LICENSE file in the root directory of this source tree.
|
|
7090
7092
|
*/
|
|
7091
7093
|
var IconSun = createReactComponent("outline", "sun", "IconSun", [["path", { d: "M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0", key: "svg-0" }], ["path", { d: "M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7", key: "svg-1" }]]);
|
|
7092
7094
|
/**
|
|
7093
|
-
* @license @tabler/icons-react v3.
|
|
7095
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7094
7096
|
*
|
|
7095
7097
|
* This source code is licensed under the MIT license.
|
|
7096
7098
|
* See the LICENSE file in the root directory of this source tree.
|
|
7097
7099
|
*/
|
|
7098
7100
|
var IconZoomScan = createReactComponent("outline", "zoom-scan", "IconZoomScan", [["path", { d: "M4 8v-2a2 2 0 0 1 2 -2h2", key: "svg-0" }], ["path", { d: "M4 16v2a2 2 0 0 0 2 2h2", key: "svg-1" }], ["path", { d: "M16 4h2a2 2 0 0 1 2 2v2", key: "svg-2" }], ["path", { d: "M16 20h2a2 2 0 0 0 2 -2v-2", key: "svg-3" }], ["path", { d: "M8 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0", key: "svg-4" }], ["path", { d: "M16 16l-2.5 -2.5", key: "svg-5" }]]);
|
|
7099
7101
|
/**
|
|
7100
|
-
* @license @tabler/icons-react v3.
|
|
7102
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7101
7103
|
*
|
|
7102
7104
|
* This source code is licensed under the MIT license.
|
|
7103
7105
|
* See the LICENSE file in the root directory of this source tree.
|
|
7104
7106
|
*/
|
|
7105
7107
|
var IconFileFilled = createReactComponent("filled", "file-filled", "IconFileFilled", [["path", { d: "M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z", key: "svg-0" }], ["path", { d: "M19 7h-4l-.001 -4.001z", key: "svg-1" }]]);
|
|
7106
7108
|
/**
|
|
7107
|
-
* @license @tabler/icons-react v3.
|
|
7109
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7108
7110
|
*
|
|
7109
7111
|
* This source code is licensed under the MIT license.
|
|
7110
7112
|
* See the LICENSE file in the root directory of this source tree.
|
|
7111
7113
|
*/
|
|
7112
7114
|
var IconFolderFilled = createReactComponent("filled", "folder-filled", "IconFolderFilled", [["path", { d: "M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z", key: "svg-0" }]]);
|
|
7113
7115
|
/**
|
|
7114
|
-
* @license @tabler/icons-react v3.
|
|
7116
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7115
7117
|
*
|
|
7116
7118
|
* This source code is licensed under the MIT license.
|
|
7117
7119
|
* See the LICENSE file in the root directory of this source tree.
|
|
7118
7120
|
*/
|
|
7119
7121
|
var IconPlayerPlayFilled = createReactComponent("filled", "player-play-filled", "IconPlayerPlayFilled", [["path", { d: "M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z", key: "svg-0" }]]);
|
|
7120
7122
|
/**
|
|
7121
|
-
* @license @tabler/icons-react v3.
|
|
7123
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7122
7124
|
*
|
|
7123
7125
|
* This source code is licensed under the MIT license.
|
|
7124
7126
|
* See the LICENSE file in the root directory of this source tree.
|
|
7125
7127
|
*/
|
|
7126
7128
|
var IconPlayerSkipBackFilled = createReactComponent("filled", "player-skip-back-filled", "IconPlayerSkipBackFilled", [["path", { d: "M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z", key: "svg-0" }], ["path", { d: "M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z", key: "svg-1" }]]);
|
|
7127
7129
|
/**
|
|
7128
|
-
* @license @tabler/icons-react v3.
|
|
7130
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7129
7131
|
*
|
|
7130
7132
|
* This source code is licensed under the MIT license.
|
|
7131
7133
|
* See the LICENSE file in the root directory of this source tree.
|
|
7132
7134
|
*/
|
|
7133
7135
|
var IconPlayerSkipForwardFilled = createReactComponent("filled", "player-skip-forward-filled", "IconPlayerSkipForwardFilled", [["path", { d: "M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z", key: "svg-0" }], ["path", { d: "M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z", key: "svg-1" }]]);
|
|
7134
7136
|
/**
|
|
7135
|
-
* @license @tabler/icons-react v3.
|
|
7137
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
7136
7138
|
*
|
|
7137
7139
|
* This source code is licensed under the MIT license.
|
|
7138
7140
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -12592,7 +12594,7 @@ function validatePanelGroupLayout({
|
|
|
12592
12594
|
const nextLayout = [...prevLayout], nextLayoutTotalSize = nextLayout.reduce((accumulated, current) => accumulated + current, 0);
|
|
12593
12595
|
if (nextLayout.length !== panelConstraints.length)
|
|
12594
12596
|
throw Error(`Invalid ${panelConstraints.length} panel layout: ${nextLayout.map((size) => `${size}%`).join(", ")}`);
|
|
12595
|
-
if (!fuzzyNumbersEqual(nextLayoutTotalSize, 100))
|
|
12597
|
+
if (!fuzzyNumbersEqual(nextLayoutTotalSize, 100) && nextLayout.length > 0)
|
|
12596
12598
|
for (let index2 = 0; index2 < panelConstraints.length; index2++) {
|
|
12597
12599
|
const unsafeSize = nextLayout[index2];
|
|
12598
12600
|
assert(unsafeSize != null, `No layout data found for index ${index2}`);
|
|
@@ -8904,7 +8904,7 @@ class MotionValue {
|
|
|
8904
8904
|
* @internal
|
|
8905
8905
|
*/
|
|
8906
8906
|
constructor(init2, options = {}) {
|
|
8907
|
-
this.version = "11.3.
|
|
8907
|
+
this.version = "11.3.31", this.canTrackVelocity = null, this.events = {}, this.updateAndNotify = (v2, render = !0) => {
|
|
8908
8908
|
const currentTime = time.now();
|
|
8909
8909
|
this.updatedAt !== currentTime && this.setPrevFrameValue(), this.prev = this.current, this.setCurrent(v2), this.current !== this.prev && this.events.change && this.events.change.notify(this.current), render && this.events.renderRequest && this.events.renderRequest.notify(this.current);
|
|
8910
8910
|
}, this.hasAnimated = !1, this.setCurrent(init2), this.owner = options.owner;
|
|
@@ -9104,7 +9104,7 @@ function setTarget(visualElement, definition) {
|
|
|
9104
9104
|
}
|
|
9105
9105
|
}
|
|
9106
9106
|
function getOptimisedAppearId(visualElement) {
|
|
9107
|
-
return visualElement.
|
|
9107
|
+
return visualElement.props[optimizedAppearDataAttribute];
|
|
9108
9108
|
}
|
|
9109
9109
|
class WillChangeMotionValue extends MotionValue {
|
|
9110
9110
|
constructor() {
|
|
@@ -9476,7 +9476,7 @@ class VisualElement {
|
|
|
9476
9476
|
this.current = instance, visualElementStore.set(instance, this), this.projection && !this.projection.instance && this.projection.mount(instance), this.parent && this.isVariantNode && !this.isControllingVariants && (this.removeFromVariantTree = this.parent.addVariantChild(this)), this.values.forEach((value, key) => this.bindToMotionValue(key, value)), hasReducedMotionListener.current || initPrefersReducedMotion(), this.shouldReduceMotion = this.reducedMotionConfig === "never" ? !1 : this.reducedMotionConfig === "always" ? !0 : prefersReducedMotion.current, this.parent && this.parent.children.add(this), this.update(this.props, this.presenceContext);
|
|
9477
9477
|
}
|
|
9478
9478
|
unmount() {
|
|
9479
|
-
visualElementStore.delete(this.current), this.projection && this.projection.unmount(), cancelFrame(this.notifyUpdate), cancelFrame(this.render), this.valueSubscriptions.forEach((remove2) => remove2()), this.removeFromVariantTree && this.removeFromVariantTree(), this.parent && this.parent.children.delete(this);
|
|
9479
|
+
visualElementStore.delete(this.current), this.projection && this.projection.unmount(), cancelFrame(this.notifyUpdate), cancelFrame(this.render), this.valueSubscriptions.forEach((remove2) => remove2()), this.valueSubscriptions.clear(), this.removeFromVariantTree && this.removeFromVariantTree(), this.parent && this.parent.children.delete(this);
|
|
9480
9480
|
for (const key in this.events)
|
|
9481
9481
|
this.events[key].clear();
|
|
9482
9482
|
for (const key in this.features) {
|
|
@@ -9486,11 +9486,13 @@ class VisualElement {
|
|
|
9486
9486
|
this.current = null;
|
|
9487
9487
|
}
|
|
9488
9488
|
bindToMotionValue(key, value) {
|
|
9489
|
+
this.valueSubscriptions.has(key) && this.valueSubscriptions.get(key)();
|
|
9489
9490
|
const valueIsTransform = transformProps.has(key), removeOnChange = value.on("change", (latestValue) => {
|
|
9490
9491
|
this.latestValues[key] = latestValue, this.props.onUpdate && frame.preRender(this.notifyUpdate), valueIsTransform && this.projection && (this.projection.isTransformDirty = !0);
|
|
9491
9492
|
}), removeOnRenderRequest = value.on("renderRequest", this.scheduleRender);
|
|
9492
|
-
|
|
9493
|
-
|
|
9493
|
+
let removeSyncCheck;
|
|
9494
|
+
window.MotionCheckAppearSync && (removeSyncCheck = window.MotionCheckAppearSync(this, key, value)), this.valueSubscriptions.set(key, () => {
|
|
9495
|
+
removeOnChange(), removeOnRenderRequest(), removeSyncCheck && removeSyncCheck(), value.owner && value.stop();
|
|
9494
9496
|
});
|
|
9495
9497
|
}
|
|
9496
9498
|
sortNodePosition(other) {
|
|
@@ -23453,7 +23455,7 @@ const isSame = (a2, b2) => Math.abs(a2 - b2) < 2.5, isSamePoint = (a2, b2) => {
|
|
|
23453
23455
|
}
|
|
23454
23456
|
) });
|
|
23455
23457
|
/**
|
|
23456
|
-
* @license @tabler/icons-react v3.
|
|
23458
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23457
23459
|
*
|
|
23458
23460
|
* This source code is licensed under the MIT license.
|
|
23459
23461
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -23480,7 +23482,7 @@ var defaultAttributes = {
|
|
|
23480
23482
|
}
|
|
23481
23483
|
};
|
|
23482
23484
|
/**
|
|
23483
|
-
* @license @tabler/icons-react v3.
|
|
23485
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23484
23486
|
*
|
|
23485
23487
|
* This source code is licensed under the MIT license.
|
|
23486
23488
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -23513,119 +23515,119 @@ const createReactComponent = (type, iconName, iconNamePascal, iconNode) => {
|
|
|
23513
23515
|
return Component.displayName = `${iconNamePascal}`, Component;
|
|
23514
23516
|
};
|
|
23515
23517
|
/**
|
|
23516
|
-
* @license @tabler/icons-react v3.
|
|
23518
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23517
23519
|
*
|
|
23518
23520
|
* This source code is licensed under the MIT license.
|
|
23519
23521
|
* See the LICENSE file in the root directory of this source tree.
|
|
23520
23522
|
*/
|
|
23521
23523
|
var IconAlertTriangle = createReactComponent("outline", "alert-triangle", "IconAlertTriangle", [["path", { d: "M12 9v4", key: "svg-0" }], ["path", { d: "M10.363 3.591l-8.106 13.534a1.914 1.914 0 0 0 1.636 2.871h16.214a1.914 1.914 0 0 0 1.636 -2.87l-8.106 -13.536a1.914 1.914 0 0 0 -3.274 0z", key: "svg-1" }], ["path", { d: "M12 16h.01", key: "svg-2" }]]);
|
|
23522
23524
|
/**
|
|
23523
|
-
* @license @tabler/icons-react v3.
|
|
23525
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23524
23526
|
*
|
|
23525
23527
|
* This source code is licensed under the MIT license.
|
|
23526
23528
|
* See the LICENSE file in the root directory of this source tree.
|
|
23527
23529
|
*/
|
|
23528
23530
|
var IconArrowBigDownLines = createReactComponent("outline", "arrow-big-down-lines", "IconArrowBigDownLines", [["path", { d: "M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z", key: "svg-0" }], ["path", { d: "M15 3h-6", key: "svg-1" }], ["path", { d: "M15 6h-6", key: "svg-2" }]]);
|
|
23529
23531
|
/**
|
|
23530
|
-
* @license @tabler/icons-react v3.
|
|
23532
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23531
23533
|
*
|
|
23532
23534
|
* This source code is licensed under the MIT license.
|
|
23533
23535
|
* See the LICENSE file in the root directory of this source tree.
|
|
23534
23536
|
*/
|
|
23535
23537
|
var IconArrowDownRight = createReactComponent("outline", "arrow-down-right", "IconArrowDownRight", [["path", { d: "M7 7l10 10", key: "svg-0" }], ["path", { d: "M17 8l0 9l-9 0", key: "svg-1" }]]);
|
|
23536
23538
|
/**
|
|
23537
|
-
* @license @tabler/icons-react v3.
|
|
23539
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23538
23540
|
*
|
|
23539
23541
|
* This source code is licensed under the MIT license.
|
|
23540
23542
|
* See the LICENSE file in the root directory of this source tree.
|
|
23541
23543
|
*/
|
|
23542
23544
|
var IconChevronLeft = createReactComponent("outline", "chevron-left", "IconChevronLeft", [["path", { d: "M15 6l-6 6l6 6", key: "svg-0" }]]);
|
|
23543
23545
|
/**
|
|
23544
|
-
* @license @tabler/icons-react v3.
|
|
23546
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23545
23547
|
*
|
|
23546
23548
|
* This source code is licensed under the MIT license.
|
|
23547
23549
|
* See the LICENSE file in the root directory of this source tree.
|
|
23548
23550
|
*/
|
|
23549
23551
|
var IconChevronRight = createReactComponent("outline", "chevron-right", "IconChevronRight", [["path", { d: "M9 6l6 6l-6 6", key: "svg-0" }]]);
|
|
23550
23552
|
/**
|
|
23551
|
-
* @license @tabler/icons-react v3.
|
|
23553
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23552
23554
|
*
|
|
23553
23555
|
* This source code is licensed under the MIT license.
|
|
23554
23556
|
* See the LICENSE file in the root directory of this source tree.
|
|
23555
23557
|
*/
|
|
23556
23558
|
var IconFileSymlink = createReactComponent("outline", "file-symlink", "IconFileSymlink", [["path", { d: "M4 21v-4a3 3 0 0 1 3 -3h5", key: "svg-0" }], ["path", { d: "M9 17l3 -3l-3 -3", key: "svg-1" }], ["path", { d: "M14 3v4a1 1 0 0 0 1 1h4", key: "svg-2" }], ["path", { d: "M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5", key: "svg-3" }]]);
|
|
23557
23559
|
/**
|
|
23558
|
-
* @license @tabler/icons-react v3.
|
|
23560
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23559
23561
|
*
|
|
23560
23562
|
* This source code is licensed under the MIT license.
|
|
23561
23563
|
* See the LICENSE file in the root directory of this source tree.
|
|
23562
23564
|
*/
|
|
23563
23565
|
var IconFocusCentered = createReactComponent("outline", "focus-centered", "IconFocusCentered", [["path", { d: "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0", key: "svg-0" }], ["path", { d: "M4 8v-2a2 2 0 0 1 2 -2h2", key: "svg-1" }], ["path", { d: "M4 16v2a2 2 0 0 0 2 2h2", key: "svg-2" }], ["path", { d: "M16 4h2a2 2 0 0 1 2 2v2", key: "svg-3" }], ["path", { d: "M16 20h2a2 2 0 0 0 2 -2v-2", key: "svg-4" }]]);
|
|
23564
23566
|
/**
|
|
23565
|
-
* @license @tabler/icons-react v3.
|
|
23567
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23566
23568
|
*
|
|
23567
23569
|
* This source code is licensed under the MIT license.
|
|
23568
23570
|
* See the LICENSE file in the root directory of this source tree.
|
|
23569
23571
|
*/
|
|
23570
23572
|
var IconHelpCircle = createReactComponent("outline", "help-circle", "IconHelpCircle", [["path", { d: "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0", key: "svg-0" }], ["path", { d: "M12 16v.01", key: "svg-1" }], ["path", { d: "M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483", key: "svg-2" }]]);
|
|
23571
23573
|
/**
|
|
23572
|
-
* @license @tabler/icons-react v3.
|
|
23574
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23573
23575
|
*
|
|
23574
23576
|
* This source code is licensed under the MIT license.
|
|
23575
23577
|
* See the LICENSE file in the root directory of this source tree.
|
|
23576
23578
|
*/
|
|
23577
23579
|
var IconLayoutDashboard = createReactComponent("outline", "layout-dashboard", "IconLayoutDashboard", [["path", { d: "M5 4h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1", key: "svg-0" }], ["path", { d: "M5 16h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1", key: "svg-1" }], ["path", { d: "M15 12h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1", key: "svg-2" }], ["path", { d: "M15 4h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1", key: "svg-3" }]]);
|
|
23578
23580
|
/**
|
|
23579
|
-
* @license @tabler/icons-react v3.
|
|
23581
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23580
23582
|
*
|
|
23581
23583
|
* This source code is licensed under the MIT license.
|
|
23582
23584
|
* See the LICENSE file in the root directory of this source tree.
|
|
23583
23585
|
*/
|
|
23584
23586
|
var IconLink = createReactComponent("outline", "link", "IconLink", [["path", { d: "M9 15l6 -6", key: "svg-0" }], ["path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464", key: "svg-1" }], ["path", { d: "M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463", key: "svg-2" }]]);
|
|
23585
23587
|
/**
|
|
23586
|
-
* @license @tabler/icons-react v3.
|
|
23588
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23587
23589
|
*
|
|
23588
23590
|
* This source code is licensed under the MIT license.
|
|
23589
23591
|
* See the LICENSE file in the root directory of this source tree.
|
|
23590
23592
|
*/
|
|
23591
23593
|
var IconMenu2 = createReactComponent("outline", "menu-2", "IconMenu2", [["path", { d: "M4 6l16 0", key: "svg-0" }], ["path", { d: "M4 12l16 0", key: "svg-1" }], ["path", { d: "M4 18l16 0", key: "svg-2" }]]);
|
|
23592
23594
|
/**
|
|
23593
|
-
* @license @tabler/icons-react v3.
|
|
23595
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23594
23596
|
*
|
|
23595
23597
|
* This source code is licensed under the MIT license.
|
|
23596
23598
|
* See the LICENSE file in the root directory of this source tree.
|
|
23597
23599
|
*/
|
|
23598
23600
|
var IconMenu = createReactComponent("outline", "menu", "IconMenu", [["path", { d: "M4 8l16 0", key: "svg-0" }], ["path", { d: "M4 16l16 0", key: "svg-1" }]]);
|
|
23599
23601
|
/**
|
|
23600
|
-
* @license @tabler/icons-react v3.
|
|
23602
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23601
23603
|
*
|
|
23602
23604
|
* This source code is licensed under the MIT license.
|
|
23603
23605
|
* See the LICENSE file in the root directory of this source tree.
|
|
23604
23606
|
*/
|
|
23605
23607
|
var IconZoomScan = createReactComponent("outline", "zoom-scan", "IconZoomScan", [["path", { d: "M4 8v-2a2 2 0 0 1 2 -2h2", key: "svg-0" }], ["path", { d: "M4 16v2a2 2 0 0 0 2 2h2", key: "svg-1" }], ["path", { d: "M16 4h2a2 2 0 0 1 2 2v2", key: "svg-2" }], ["path", { d: "M16 20h2a2 2 0 0 0 2 -2v-2", key: "svg-3" }], ["path", { d: "M8 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0", key: "svg-4" }], ["path", { d: "M16 16l-2.5 -2.5", key: "svg-5" }]]);
|
|
23606
23608
|
/**
|
|
23607
|
-
* @license @tabler/icons-react v3.
|
|
23609
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23608
23610
|
*
|
|
23609
23611
|
* This source code is licensed under the MIT license.
|
|
23610
23612
|
* See the LICENSE file in the root directory of this source tree.
|
|
23611
23613
|
*/
|
|
23612
23614
|
var IconPlayerPlayFilled = createReactComponent("filled", "player-play-filled", "IconPlayerPlayFilled", [["path", { d: "M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z", key: "svg-0" }]]);
|
|
23613
23615
|
/**
|
|
23614
|
-
* @license @tabler/icons-react v3.
|
|
23616
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23615
23617
|
*
|
|
23616
23618
|
* This source code is licensed under the MIT license.
|
|
23617
23619
|
* See the LICENSE file in the root directory of this source tree.
|
|
23618
23620
|
*/
|
|
23619
23621
|
var IconPlayerSkipBackFilled = createReactComponent("filled", "player-skip-back-filled", "IconPlayerSkipBackFilled", [["path", { d: "M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z", key: "svg-0" }], ["path", { d: "M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z", key: "svg-1" }]]);
|
|
23620
23622
|
/**
|
|
23621
|
-
* @license @tabler/icons-react v3.
|
|
23623
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23622
23624
|
*
|
|
23623
23625
|
* This source code is licensed under the MIT license.
|
|
23624
23626
|
* See the LICENSE file in the root directory of this source tree.
|
|
23625
23627
|
*/
|
|
23626
23628
|
var IconPlayerSkipForwardFilled = createReactComponent("filled", "player-skip-forward-filled", "IconPlayerSkipForwardFilled", [["path", { d: "M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z", key: "svg-0" }], ["path", { d: "M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z", key: "svg-1" }]]);
|
|
23627
23629
|
/**
|
|
23628
|
-
* @license @tabler/icons-react v3.
|
|
23630
|
+
* @license @tabler/icons-react v3.14.0 - MIT
|
|
23629
23631
|
*
|
|
23630
23632
|
* This source code is licensed under the MIT license.
|
|
23631
23633
|
* See the LICENSE file in the root directory of this source tree.
|