@squiz/formatted-text-editor 2.2.6 → 2.2.7

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.2.7
4
+
5
+ ### Patch Changes
6
+
7
+ - e54139c: Fixed dropdown menu positioning in FTE toolbar
8
+
3
9
  ## 2.2.6
4
10
 
5
11
  ### Patch Changes
package/lib/index.css CHANGED
@@ -5098,6 +5098,7 @@
5098
5098
  padding-top: 0.25rem;
5099
5099
  }
5100
5100
  .squiz-fte-scope.squiz-fte-scope__editor {
5101
+ position: relative;
5101
5102
  font-family: "Open Sans" !important;
5102
5103
  border-radius: 8px;
5103
5104
  --tw-border-opacity: 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squiz/formatted-text-editor",
3
- "version": "2.2.6",
3
+ "version": "2.2.7",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "private": false,
@@ -1,5 +1,6 @@
1
1
  /* 2 class selectors so specificity is higher vs eg. ".squiz-ce-scope *" which would take priority over this. */
2
2
  .squiz-fte-scope.squiz-fte-scope__editor {
3
+ position: relative;
3
4
  font-family: 'Open Sans' !important;
4
5
  @apply bg-white rounded border-gray-300;
5
6