canvu-react 0.3.30 → 0.3.32
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.cjs +55 -78
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +55 -78
- package/dist/index.js.map +1 -1
- package/dist/native.cjs +55 -78
- package/dist/native.cjs.map +1 -1
- package/dist/native.js +55 -78
- package/dist/native.js.map +1 -1
- package/dist/react.cjs +57 -79
- package/dist/react.cjs.map +1 -1
- package/dist/react.js +57 -79
- package/dist/react.js.map +1 -1
- package/dist/realtime.cjs +2 -1
- package/dist/realtime.cjs.map +1 -1
- package/dist/realtime.js +2 -1
- package/dist/realtime.js.map +1 -1
- package/dist/tldraw.cjs +54 -77
- package/dist/tldraw.cjs.map +1 -1
- package/dist/tldraw.js +54 -77
- package/dist/tldraw.js.map +1 -1
- package/package.json +1 -1
package/dist/realtime.js
CHANGED
|
@@ -860,6 +860,7 @@ function useCanvuPluginContribution(pluginId, contribution) {
|
|
|
860
860
|
return () => unregisterContribution(pluginId);
|
|
861
861
|
}, [contribution, pluginId, registerContribution, unregisterContribution]);
|
|
862
862
|
}
|
|
863
|
+
var architecturalCloudIconPath = "M11 3 Q15.72 1.11 16.44 3.31 Q19.25 2.05 18.39 4.28 Q20.81 4.17 19 7 Q20.81 9.83 18.39 9.72 Q19.25 11.95 16.44 10.69 Q15.72 12.89 11 11 Q6.28 12.89 5.56 10.69 Q2.75 11.95 3.61 9.72 Q1.19 9.83 3 7 Q1.19 4.17 3.61 4.28 Q2.75 2.05 5.56 3.31 Q6.28 1.11 11 3 Z";
|
|
863
864
|
var base = {
|
|
864
865
|
width: 20,
|
|
865
866
|
height: 20,
|
|
@@ -871,7 +872,7 @@ var base = {
|
|
|
871
872
|
strokeLinejoin: "round"
|
|
872
873
|
};
|
|
873
874
|
function IconArchitecturalCloud(props) {
|
|
874
|
-
return /* @__PURE__ */ jsx("svg", { ...base, ...props, "aria-hidden": true, children: /* @__PURE__ */ jsx("path", { d:
|
|
875
|
+
return /* @__PURE__ */ jsx("svg", { ...base, ...props, "aria-hidden": true, children: /* @__PURE__ */ jsx("path", { d: architecturalCloudIconPath, transform: "translate(1 5)" }) });
|
|
875
876
|
}
|
|
876
877
|
function IconLaser(props) {
|
|
877
878
|
return /* @__PURE__ */ jsxs("svg", { ...base, ...props, "aria-hidden": true, children: [
|