@halo-dev/richtext-editor 0.0.0-alpha.14 → 0.0.0-alpha.15
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/extensions/commands-menu/suggestion.d.ts +6 -1
- package/dist/extensions/index.d.ts +2 -1
- package/dist/menus/index.d.ts +6 -1
- package/dist/rich-text-editor.es.js +664 -278
- package/dist/rich-text-editor.es.js.map +1 -1
- package/dist/rich-text-editor.iife.js +663 -277
- package/dist/rich-text-editor.iife.js.map +1 -1
- package/dist/style.css +11 -4
- package/package.json +2 -1
package/dist/style.css
CHANGED
|
@@ -1139,6 +1139,9 @@ video {
|
|
|
1139
1139
|
.h-full {
|
|
1140
1140
|
height: 100%;
|
|
1141
1141
|
}
|
|
1142
|
+
.h-5 {
|
|
1143
|
+
height: 1.25rem;
|
|
1144
|
+
}
|
|
1142
1145
|
.h-6 {
|
|
1143
1146
|
height: 1.5rem;
|
|
1144
1147
|
}
|
|
@@ -1225,14 +1228,14 @@ video {
|
|
|
1225
1228
|
--tw-bg-opacity: 1;
|
|
1226
1229
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
1227
1230
|
}
|
|
1228
|
-
.\!bg-gray-100 {
|
|
1229
|
-
--tw-bg-opacity: 1 !important;
|
|
1230
|
-
background-color: rgb(243 244 246 / var(--tw-bg-opacity)) !important;
|
|
1231
|
-
}
|
|
1232
1231
|
.bg-gray-100 {
|
|
1233
1232
|
--tw-bg-opacity: 1;
|
|
1234
1233
|
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
|
1235
1234
|
}
|
|
1235
|
+
.\!bg-gray-100 {
|
|
1236
|
+
--tw-bg-opacity: 1 !important;
|
|
1237
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity)) !important;
|
|
1238
|
+
}
|
|
1236
1239
|
.\!bg-white {
|
|
1237
1240
|
--tw-bg-opacity: 1 !important;
|
|
1238
1241
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
|
|
@@ -1257,6 +1260,10 @@ video {
|
|
|
1257
1260
|
padding-top: 0.25rem;
|
|
1258
1261
|
padding-bottom: 0.25rem;
|
|
1259
1262
|
}
|
|
1263
|
+
.px-1 {
|
|
1264
|
+
padding-left: 0.25rem;
|
|
1265
|
+
padding-right: 0.25rem;
|
|
1266
|
+
}
|
|
1260
1267
|
.px-2 {
|
|
1261
1268
|
padding-left: 0.5rem;
|
|
1262
1269
|
padding-right: 0.5rem;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halo-dev/richtext-editor",
|
|
3
|
-
"version": "0.0.0-alpha.
|
|
3
|
+
"version": "0.0.0-alpha.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -60,6 +60,7 @@
|
|
|
60
60
|
"@tiptap/extension-gapcursor": "^2.0.0-beta.202",
|
|
61
61
|
"@tiptap/extension-hard-break": "^2.0.0-beta.202",
|
|
62
62
|
"@tiptap/extension-heading": "^2.0.0-beta.202",
|
|
63
|
+
"@tiptap/extension-highlight": "2.0.0-beta.204",
|
|
63
64
|
"@tiptap/extension-history": "^2.0.0-beta.202",
|
|
64
65
|
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.202",
|
|
65
66
|
"@tiptap/extension-image": "2.0.0-beta.202",
|