@firecms/core 3.0.0-canary.107 → 3.0.0-canary.108

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@firecms/core",
3
3
  "type": "module",
4
- "version": "3.0.0-canary.107",
4
+ "version": "3.0.0-canary.108",
5
5
  "description": "Awesome Firebase/Firestore-based headless open-source CMS",
6
6
  "funding": {
7
7
  "url": "https://github.com/sponsors/firecmsco"
@@ -46,9 +46,9 @@
46
46
  "./package.json": "./package.json"
47
47
  },
48
48
  "dependencies": {
49
- "@firecms/editor": "^3.0.0-canary.107",
50
- "@firecms/formex": "^3.0.0-canary.107",
51
- "@firecms/ui": "^3.0.0-canary.107",
49
+ "@firecms/editor": "^3.0.0-canary.108",
50
+ "@firecms/formex": "^3.0.0-canary.108",
51
+ "@firecms/ui": "^3.0.0-canary.108",
52
52
  "@hello-pangea/dnd": "^16.6.0",
53
53
  "@radix-ui/react-portal": "^1.1.1",
54
54
  "clsx": "^2.1.1",
@@ -100,7 +100,7 @@
100
100
  "dist",
101
101
  "src"
102
102
  ],
103
- "gitHead": "07f66833d1cc898c000b92029a8c33992a1dea55",
103
+ "gitHead": "1e73e3d81ee4168288b90bf29ad8822ce5f20dd1",
104
104
  "publishConfig": {
105
105
  "access": "public"
106
106
  },
@@ -6,7 +6,7 @@ import {
6
6
  randomString,
7
7
  useStorageSource
8
8
  } from "../../index";
9
- import { Paper } from "@firecms/ui";
9
+ import { cls, fieldBackgroundHoverMixin, fieldBackgroundMixin } from "@firecms/ui";
10
10
  import { FireCMSEditor } from "@firecms/editor";
11
11
  import React, { useCallback, useEffect, useRef, useState } from "react";
12
12
  import { resolveStorageFilenameString, resolveStoragePathString } from "../../util/storage";
@@ -119,9 +119,9 @@ export function MarkdownEditorFieldBinding({
119
119
  required={property.validation?.required}
120
120
  title={property.name}
121
121
  className={"text-text-secondary dark:text-text-secondary-dark ml-3.5"}/>
122
- <Paper>
122
+ <div className={cls("rounded-md", fieldBackgroundMixin, fieldBackgroundHoverMixin)}>
123
123
  {editor}
124
- </Paper>
124
+ </div>
125
125
  <FieldHelperText includeDescription={includeDescription}
126
126
  showError={showError}
127
127
  error={error}