@arbisoft/react-design-tool 1.0.1 → 1.0.3
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/README.md +10 -0
- package/dist/cjs/index.js +4 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +4 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,6 +12,16 @@ With this tool, you can:
|
|
|
12
12
|
- **Save** the final design data and image output
|
|
13
13
|
|
|
14
14
|
Perfect for integrating into applications that require user-driven visual content creation.
|
|
15
|
+
## 🎬 Studio Preview
|
|
16
|
+
|
|
17
|
+
**Live Walkthrough (GIF)**
|
|
18
|
+
|
|
19
|
+

|
|
20
|
+
## 🖥️ Demo
|
|
21
|
+
|
|
22
|
+
Check out the live demo here:
|
|
23
|
+
|
|
24
|
+
[](https://codesandbox.io/p/sandbox/fdftlr)
|
|
15
25
|
|
|
16
26
|
## 📦 Installation
|
|
17
27
|
|
package/dist/cjs/index.js
CHANGED
|
@@ -2132,7 +2132,7 @@ var Wrapper = styled.div(_templateObject$o || (_templateObject$o = _taggedTempla
|
|
|
2132
2132
|
var disabled = _ref.disabled;
|
|
2133
2133
|
return disabled ? 'not-allowed' : 'pointer';
|
|
2134
2134
|
});
|
|
2135
|
-
var TooltipText = styled.div(_templateObject2$j || (_templateObject2$j = _taggedTemplateLiteral(["\n visibility: hidden;\n background-color: rgba(0, 0, 0, 0.7);\n color: white;\n text-align: center;\n padding: 4px 10px;\n border-radius: 4px;\n position: absolute;\n z-index: 9999;\n white-space: nowrap;\n opacity: 0;\n transition: all 0.1s;\n font-size: 13px;\n\n ", "\n ", "\n ", "\n ", "\n\n ", ":hover & {\n visibility: visible;\n opacity: 1;\n }\n"])), function (_ref2) {
|
|
2135
|
+
var TooltipText = styled.div(_templateObject2$j || (_templateObject2$j = _taggedTemplateLiteral(["\n visibility: hidden;\n background-color: rgba(0, 0, 0, 0.7);\n color: white;\n text-align: center;\n padding: 4px 10px;\n border-radius: 4px;\n position: absolute;\n z-index: 9999;\n white-space: nowrap;\n opacity: 0;\n transition: all 0.1s;\n font-size: 13px;\n font-family: ", ";\n font-weight: ", ";\n\n ", "\n ", "\n ", "\n ", "\n\n ", ":hover & {\n visibility: visible;\n opacity: 1;\n }\n"])), theme.fonts.primary, theme.fontWeights[400], function (_ref2) {
|
|
2136
2136
|
var position = _ref2.position;
|
|
2137
2137
|
return position === 'top' && styled.css(_templateObject3$9 || (_templateObject3$9 = _taggedTemplateLiteral(["\n bottom: 110%;\n left: 50%;\n transform: translateX(-50%);\n "])));
|
|
2138
2138
|
}, function (_ref3) {
|
|
@@ -5949,6 +5949,9 @@ var Studio = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
5949
5949
|
React.useEffect(function () {
|
|
5950
5950
|
setLanguageLocale(validateLocale(locale));
|
|
5951
5951
|
}, [locale]);
|
|
5952
|
+
React.useEffect(function () {
|
|
5953
|
+
setCustomImagesList(_toConsumableArray(customImages));
|
|
5954
|
+
}, [customImages]);
|
|
5952
5955
|
React.useEffect(function () {
|
|
5953
5956
|
setLoadingFonts(true);
|
|
5954
5957
|
loadAllGoogleFonts().then(function (msg) {
|