@halo-dev/richtext-editor 0.0.0-alpha.29 → 0.0.0-alpha.30
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/code-block/code-block.d.ts +14 -1
- package/dist/extensions/image/ImageView.vue.d.ts +15 -13
- package/dist/extensions/indent/index.d.ts +22 -0
- package/dist/extensions/index.d.ts +2 -1
- package/dist/rich-text-editor.es.js +870 -542
- package/dist/rich-text-editor.es.js.map +1 -1
- package/dist/rich-text-editor.iife.js +870 -542
- package/dist/rich-text-editor.iife.js.map +1 -1
- package/dist/style.css +17 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -653,6 +653,9 @@ video {
|
|
|
653
653
|
.grid {
|
|
654
654
|
display: grid;
|
|
655
655
|
}
|
|
656
|
+
.hidden {
|
|
657
|
+
display: none;
|
|
658
|
+
}
|
|
656
659
|
.h-11 {
|
|
657
660
|
height: 2.75rem;
|
|
658
661
|
}
|
|
@@ -695,6 +698,9 @@ video {
|
|
|
695
698
|
.w-7 {
|
|
696
699
|
width: 1.75rem;
|
|
697
700
|
}
|
|
701
|
+
.w-72 {
|
|
702
|
+
width: 18rem;
|
|
703
|
+
}
|
|
698
704
|
.w-96 {
|
|
699
705
|
width: 24rem;
|
|
700
706
|
}
|
|
@@ -714,6 +720,9 @@ video {
|
|
|
714
720
|
.cursor-pointer {
|
|
715
721
|
cursor: pointer;
|
|
716
722
|
}
|
|
723
|
+
.resize-x {
|
|
724
|
+
resize: horizontal;
|
|
725
|
+
}
|
|
717
726
|
.resize {
|
|
718
727
|
resize: both;
|
|
719
728
|
}
|
|
@@ -1000,6 +1009,14 @@ video {
|
|
|
1000
1009
|
}
|
|
1001
1010
|
@media (min-width: 640px) {
|
|
1002
1011
|
|
|
1012
|
+
.sm\:\!block {
|
|
1013
|
+
display: block !important;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.sm\:\!w-\[calc\(100\%-18rem\)\] {
|
|
1017
|
+
width: calc(100% - 18rem) !important;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1003
1020
|
.sm\:\!justify-center {
|
|
1004
1021
|
justify-content: center !important;
|
|
1005
1022
|
}
|