@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/dist/esm/index.js
CHANGED
|
@@ -2130,7 +2130,7 @@ var Wrapper = styled.div(_templateObject$o || (_templateObject$o = _taggedTempla
|
|
|
2130
2130
|
var disabled = _ref.disabled;
|
|
2131
2131
|
return disabled ? 'not-allowed' : 'pointer';
|
|
2132
2132
|
});
|
|
2133
|
-
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) {
|
|
2133
|
+
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) {
|
|
2134
2134
|
var position = _ref2.position;
|
|
2135
2135
|
return position === 'top' && css(_templateObject3$9 || (_templateObject3$9 = _taggedTemplateLiteral(["\n bottom: 110%;\n left: 50%;\n transform: translateX(-50%);\n "])));
|
|
2136
2136
|
}, function (_ref3) {
|
|
@@ -5947,6 +5947,9 @@ var Studio = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
5947
5947
|
useEffect(function () {
|
|
5948
5948
|
setLanguageLocale(validateLocale(locale));
|
|
5949
5949
|
}, [locale]);
|
|
5950
|
+
useEffect(function () {
|
|
5951
|
+
setCustomImagesList(_toConsumableArray(customImages));
|
|
5952
|
+
}, [customImages]);
|
|
5950
5953
|
useEffect(function () {
|
|
5951
5954
|
setLoadingFonts(true);
|
|
5952
5955
|
loadAllGoogleFonts().then(function (msg) {
|