@frontify/guideline-blocks-settings 0.29.11 → 0.29.13
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/CHANGELOG.md +13 -0
- package/dist/components/BlockItemWrapper/Toolbar.es.js +11 -11
- package/dist/components/BlockItemWrapper/Toolbar.es.js.map +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +3 -3
- package/src/components/BlockItemWrapper/Toolbar.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontify/guideline-blocks-settings",
|
|
3
|
-
"version": "0.29.
|
|
3
|
+
"version": "0.29.13",
|
|
4
4
|
"description": "Provides types and helpers for the guideline block development",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"@udecode/plate": "^21.5.0",
|
|
63
63
|
"slate": "^0.94.1",
|
|
64
64
|
"slate-react": "^0.98.3",
|
|
65
|
-
"@frontify/app-bridge": "^3.0.0-beta.
|
|
66
|
-
"@frontify/sidebar-settings": "^0.
|
|
65
|
+
"@frontify/app-bridge": "^3.0.0-beta.100",
|
|
66
|
+
"@frontify/sidebar-settings": "^0.7.0"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"react": "^18",
|
|
@@ -45,7 +45,7 @@ export const Toolbar = ({
|
|
|
45
45
|
{...item.draggableProps}
|
|
46
46
|
className={joinClassNames([
|
|
47
47
|
FOCUS_VISIBLE_STYLE,
|
|
48
|
-
'tw-bg-base tw-inline-flex tw-items-center tw-justify-center tw-w-6 tw-h-6 tw-rounded-sm',
|
|
48
|
+
'tw-bg-base tw-relative tw-inline-flex tw-items-center tw-justify-center tw-w-6 tw-h-6 tw-rounded-sm focus-visible:tw-z-10',
|
|
49
49
|
isDragging
|
|
50
50
|
? 'tw-cursor-grabbing tw-bg-box-selected-pressed'
|
|
51
51
|
: 'tw-cursor-grab hover:tw-bg-box-selected-hover',
|