@ruya.sa/richtext-slate 3.71.3 → 3.71.4
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/dist/field/buttons.scss +1 -1
- package/dist/field/elements/blockquote/index.scss +1 -1
- package/dist/field/elements/link/Element/index.scss +1 -1
- package/dist/field/elements/link/LinkDrawer/index.scss +1 -1
- package/dist/field/elements/ol/index.scss +1 -1
- package/dist/field/elements/relationship/Button/index.scss +1 -1
- package/dist/field/elements/relationship/Element/index.scss +1 -1
- package/dist/field/elements/ul/index.scss +1 -1
- package/dist/field/elements/upload/Button/index.scss +1 -1
- package/dist/field/elements/upload/Element/index.scss +1 -1
- package/dist/field/icons/IndentLeft/index.scss +1 -1
- package/dist/field/icons/IndentRight/index.scss +1 -1
- package/dist/field/icons/Link/index.scss +1 -1
- package/dist/field/icons/Relationship/index.scss +1 -1
- package/dist/field/icons/Upload/index.scss +1 -1
- package/dist/field/index.scss +1 -1
- package/package.json +52 -33
package/dist/field/buttons.scss
CHANGED
package/dist/field/index.scss
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruya.sa/richtext-slate",
|
|
3
|
-
"version": "3.71.
|
|
3
|
+
"version": "3.71.4",
|
|
4
4
|
"description": "The officially supported Slate richtext adapter for Payload",
|
|
5
5
|
"homepage": "https://payloadcms.com",
|
|
6
6
|
"repository": {
|
|
@@ -24,62 +24,81 @@
|
|
|
24
24
|
"type": "module",
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
|
27
|
-
"import": "./
|
|
28
|
-
"types": "./
|
|
29
|
-
"default": "./
|
|
30
|
-
},
|
|
31
|
-
"./rsc": {
|
|
32
|
-
"import": "./dist/exports/server/rsc.js",
|
|
33
|
-
"types": "./dist/exports/server/rsc.d.ts",
|
|
34
|
-
"default": "./dist/exports/server/rsc.js"
|
|
27
|
+
"import": "./src/index.tsx",
|
|
28
|
+
"types": "./src/index.tsx",
|
|
29
|
+
"default": "./src/index.tsx"
|
|
35
30
|
},
|
|
36
31
|
"./client": {
|
|
37
|
-
"import": "./
|
|
38
|
-
"types": "./
|
|
39
|
-
"default": "./
|
|
32
|
+
"import": "./src/exports/client/index.ts",
|
|
33
|
+
"types": "./src/exports/client/index.ts",
|
|
34
|
+
"default": "./src/exports/client/index.ts"
|
|
35
|
+
},
|
|
36
|
+
"./rsc": {
|
|
37
|
+
"import": "./src/exports/server/rsc.ts",
|
|
38
|
+
"types": "./src/exports/server/rsc.ts",
|
|
39
|
+
"default": "./src/exports/server/rsc.ts"
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
|
-
"main": "./
|
|
43
|
-
"types": "./
|
|
42
|
+
"main": "./src/index.tsx",
|
|
43
|
+
"types": "./src/index.tsx",
|
|
44
44
|
"files": [
|
|
45
45
|
"dist"
|
|
46
46
|
],
|
|
47
|
+
"scripts": {
|
|
48
|
+
"build": "pnpm copyfiles && pnpm build:types && pnpm build:swc",
|
|
49
|
+
"build:debug": "pnpm build",
|
|
50
|
+
"build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths",
|
|
51
|
+
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
52
|
+
"clean": "rimraf -g {dist,*.tsbuildinfo}",
|
|
53
|
+
"copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,json}\" dist/",
|
|
54
|
+
"lint": "eslint .",
|
|
55
|
+
"lint:fix": "eslint . --fix"
|
|
56
|
+
},
|
|
47
57
|
"dependencies": {
|
|
58
|
+
"@ruya.sa/translations": "workspace:*",
|
|
59
|
+
"@ruya.sa/ui": "workspace:*",
|
|
48
60
|
"is-hotkey": "0.2.0",
|
|
49
61
|
"slate": "0.91.4",
|
|
50
62
|
"slate-history": "0.86.0",
|
|
51
63
|
"slate-hyperscript": "0.81.3",
|
|
52
|
-
"slate-react": "0.92.0"
|
|
53
|
-
"@ruya.sa/translations": "3.71.3",
|
|
54
|
-
"@ruya.sa/ui": "3.71.3"
|
|
64
|
+
"slate-react": "0.92.0"
|
|
55
65
|
},
|
|
56
66
|
"devDependencies": {
|
|
67
|
+
"@ruya.sa/eslint-config": "workspace:*",
|
|
57
68
|
"@types/is-hotkey": "^0.1.10",
|
|
58
69
|
"@types/node": "22.15.30",
|
|
59
70
|
"@types/react": "19.2.1",
|
|
60
71
|
"@types/react-dom": "19.2.1",
|
|
61
|
-
"@ruya.sa/payload": "
|
|
62
|
-
"@ruya.sa/eslint-config": "3.28.0"
|
|
72
|
+
"@ruya.sa/payload": "workspace:*"
|
|
63
73
|
},
|
|
64
74
|
"peerDependencies": {
|
|
75
|
+
"@ruya.sa/payload": "workspace:*",
|
|
65
76
|
"react": "^19.0.1 || ^19.1.2 || ^19.2.1",
|
|
66
|
-
"react-dom": "^19.0.1 || ^19.1.2 || ^19.2.1"
|
|
67
|
-
"@ruya.sa/payload": "3.71.3"
|
|
77
|
+
"react-dom": "^19.0.1 || ^19.1.2 || ^19.2.1"
|
|
68
78
|
},
|
|
69
79
|
"engines": {
|
|
70
80
|
"node": "^18.20.2 || >=20.9.0"
|
|
71
81
|
},
|
|
72
82
|
"publishConfig": {
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
83
|
+
"exports": {
|
|
84
|
+
".": {
|
|
85
|
+
"import": "./dist/index.js",
|
|
86
|
+
"types": "./dist/index.d.ts",
|
|
87
|
+
"default": "./dist/index.js"
|
|
88
|
+
},
|
|
89
|
+
"./rsc": {
|
|
90
|
+
"import": "./dist/exports/server/rsc.js",
|
|
91
|
+
"types": "./dist/exports/server/rsc.d.ts",
|
|
92
|
+
"default": "./dist/exports/server/rsc.js"
|
|
93
|
+
},
|
|
94
|
+
"./client": {
|
|
95
|
+
"import": "./dist/exports/client/index.js",
|
|
96
|
+
"types": "./dist/exports/client/index.d.ts",
|
|
97
|
+
"default": "./dist/exports/client/index.js"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"main": "./dist/index.js",
|
|
101
|
+
"registry": "https://registry.npmjs.org/",
|
|
102
|
+
"types": "./dist/index.d.ts"
|
|
84
103
|
}
|
|
85
|
-
}
|
|
104
|
+
}
|