@adminforth/rich-editor 1.6.8 → 1.6.10
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/build.log +2 -2
- package/custom/quillEditor.vue +65 -2
- package/dist/custom/quillEditor.vue +65 -2
- package/package.json +1 -1
package/build.log
CHANGED
|
@@ -10,5 +10,5 @@ custom/package.json
|
|
|
10
10
|
custom/quillEditor.vue
|
|
11
11
|
custom/tsconfig.json
|
|
12
12
|
|
|
13
|
-
sent
|
|
14
|
-
total size is
|
|
13
|
+
sent 33,826 bytes received 115 bytes 67,882.00 bytes/sec
|
|
14
|
+
total size is 33,409 speedup is 0.98
|
package/custom/quillEditor.vue
CHANGED
|
@@ -756,7 +756,13 @@ function removeCompletionOnBlur() {
|
|
|
756
756
|
@apply dark:bg-darkInputBackground;
|
|
757
757
|
}
|
|
758
758
|
|
|
759
|
-
.ql-table-menus-container, .ql-table-dropdown-list {
|
|
759
|
+
.ql-table-menus-container, .ql-table-dropdown-list, .ql-table-properties-form {
|
|
760
|
+
|
|
761
|
+
h2 {
|
|
762
|
+
@apply dark:text-darkInputText;
|
|
763
|
+
@apply text-lightInputText;
|
|
764
|
+
}
|
|
765
|
+
|
|
760
766
|
@apply dark:bg-darkForm;
|
|
761
767
|
@apply bg-lightForm;
|
|
762
768
|
@apply dark:border-darkInputBorder;
|
|
@@ -791,9 +797,49 @@ function removeCompletionOnBlur() {
|
|
|
791
797
|
@apply dark:fill-darkInputBackground dark:stroke-darkPrimary;
|
|
792
798
|
}
|
|
793
799
|
|
|
800
|
+
.properties-form-action-row {
|
|
801
|
+
button {
|
|
802
|
+
@apply dark:bg-darkEditViewButtonBackground;
|
|
803
|
+
@apply bg-lightEditViewButtonBackground;
|
|
804
|
+
@apply dark:text-darkInputText;
|
|
805
|
+
@apply text-lightInputText;
|
|
806
|
+
|
|
807
|
+
&:hover {
|
|
808
|
+
@apply dark:bg-darkEditViewButtonBackgroundHover;
|
|
809
|
+
@apply bg-lightEditViewButtonBackgroundHover;
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
label {
|
|
815
|
+
top: -75%;
|
|
816
|
+
@apply dark:text-darkInputText;
|
|
817
|
+
@apply text-lightInputText;
|
|
818
|
+
@apply dark:bg-darkForm;
|
|
819
|
+
@apply bg-lightForm;
|
|
820
|
+
}
|
|
794
821
|
}
|
|
795
822
|
|
|
796
|
-
.ql-table-
|
|
823
|
+
.ql-table-properties-form .properties-form-row .ql-table-check-container .ql-table-btns-checked {
|
|
824
|
+
@apply dark:bg-darkEditViewButtonBackgroundHover;
|
|
825
|
+
@apply bg-lightEditViewButtonBackgroundHover;
|
|
826
|
+
svg path {
|
|
827
|
+
@apply dark:stroke-darkPrimary;
|
|
828
|
+
@apply stroke-lightPrimary;
|
|
829
|
+
}
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.ql-table-properties-form .properties-form-row .ql-table-check-container .ql-table-tooltip-hover:hover {
|
|
833
|
+
@apply dark:bg-darkEditViewButtonBackgroundHover;
|
|
834
|
+
@apply bg-lightEditViewButtonBackgroundHover;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.ql-table-dropdown-properties .ql-table-dropdown-list li:hover {
|
|
838
|
+
@apply dark:bg-darkInputBackground;
|
|
839
|
+
@apply bg-lightInputBackground;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
.ql-table-dropdown,.ql-table-dropdown li {
|
|
797
843
|
&:hover {
|
|
798
844
|
@apply dark:bg-darkInputBackground;
|
|
799
845
|
@apply bg-lightInputBackground;
|
|
@@ -813,4 +859,21 @@ function removeCompletionOnBlur() {
|
|
|
813
859
|
border-bottom: theme('colors.darkForm') !important;
|
|
814
860
|
}
|
|
815
861
|
|
|
862
|
+
.ql-table-color-container .color-picker .color-picker-select {
|
|
863
|
+
@apply dark:bg-darkForm;
|
|
864
|
+
@apply bg-lightForm;
|
|
865
|
+
.erase-container:hover {
|
|
866
|
+
@apply dark:bg-darkInputBackground;
|
|
867
|
+
@apply bg-lightInputBackground;
|
|
868
|
+
}
|
|
869
|
+
svg path {
|
|
870
|
+
@apply dark:stroke-darkPrimary;
|
|
871
|
+
@apply stroke-lightPrimary;
|
|
872
|
+
}
|
|
873
|
+
.color-picker-palette {
|
|
874
|
+
@apply dark:bg-darkForm;
|
|
875
|
+
@apply bg-lightForm;
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
|
|
816
879
|
</style>
|
|
@@ -756,7 +756,13 @@ function removeCompletionOnBlur() {
|
|
|
756
756
|
@apply dark:bg-darkInputBackground;
|
|
757
757
|
}
|
|
758
758
|
|
|
759
|
-
.ql-table-menus-container, .ql-table-dropdown-list {
|
|
759
|
+
.ql-table-menus-container, .ql-table-dropdown-list, .ql-table-properties-form {
|
|
760
|
+
|
|
761
|
+
h2 {
|
|
762
|
+
@apply dark:text-darkInputText;
|
|
763
|
+
@apply text-lightInputText;
|
|
764
|
+
}
|
|
765
|
+
|
|
760
766
|
@apply dark:bg-darkForm;
|
|
761
767
|
@apply bg-lightForm;
|
|
762
768
|
@apply dark:border-darkInputBorder;
|
|
@@ -791,9 +797,49 @@ function removeCompletionOnBlur() {
|
|
|
791
797
|
@apply dark:fill-darkInputBackground dark:stroke-darkPrimary;
|
|
792
798
|
}
|
|
793
799
|
|
|
800
|
+
.properties-form-action-row {
|
|
801
|
+
button {
|
|
802
|
+
@apply dark:bg-darkEditViewButtonBackground;
|
|
803
|
+
@apply bg-lightEditViewButtonBackground;
|
|
804
|
+
@apply dark:text-darkInputText;
|
|
805
|
+
@apply text-lightInputText;
|
|
806
|
+
|
|
807
|
+
&:hover {
|
|
808
|
+
@apply dark:bg-darkEditViewButtonBackgroundHover;
|
|
809
|
+
@apply bg-lightEditViewButtonBackgroundHover;
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
label {
|
|
815
|
+
top: -75%;
|
|
816
|
+
@apply dark:text-darkInputText;
|
|
817
|
+
@apply text-lightInputText;
|
|
818
|
+
@apply dark:bg-darkForm;
|
|
819
|
+
@apply bg-lightForm;
|
|
820
|
+
}
|
|
794
821
|
}
|
|
795
822
|
|
|
796
|
-
.ql-table-
|
|
823
|
+
.ql-table-properties-form .properties-form-row .ql-table-check-container .ql-table-btns-checked {
|
|
824
|
+
@apply dark:bg-darkEditViewButtonBackgroundHover;
|
|
825
|
+
@apply bg-lightEditViewButtonBackgroundHover;
|
|
826
|
+
svg path {
|
|
827
|
+
@apply dark:stroke-darkPrimary;
|
|
828
|
+
@apply stroke-lightPrimary;
|
|
829
|
+
}
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.ql-table-properties-form .properties-form-row .ql-table-check-container .ql-table-tooltip-hover:hover {
|
|
833
|
+
@apply dark:bg-darkEditViewButtonBackgroundHover;
|
|
834
|
+
@apply bg-lightEditViewButtonBackgroundHover;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.ql-table-dropdown-properties .ql-table-dropdown-list li:hover {
|
|
838
|
+
@apply dark:bg-darkInputBackground;
|
|
839
|
+
@apply bg-lightInputBackground;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
.ql-table-dropdown,.ql-table-dropdown li {
|
|
797
843
|
&:hover {
|
|
798
844
|
@apply dark:bg-darkInputBackground;
|
|
799
845
|
@apply bg-lightInputBackground;
|
|
@@ -813,4 +859,21 @@ function removeCompletionOnBlur() {
|
|
|
813
859
|
border-bottom: theme('colors.darkForm') !important;
|
|
814
860
|
}
|
|
815
861
|
|
|
862
|
+
.ql-table-color-container .color-picker .color-picker-select {
|
|
863
|
+
@apply dark:bg-darkForm;
|
|
864
|
+
@apply bg-lightForm;
|
|
865
|
+
.erase-container:hover {
|
|
866
|
+
@apply dark:bg-darkInputBackground;
|
|
867
|
+
@apply bg-lightInputBackground;
|
|
868
|
+
}
|
|
869
|
+
svg path {
|
|
870
|
+
@apply dark:stroke-darkPrimary;
|
|
871
|
+
@apply stroke-lightPrimary;
|
|
872
|
+
}
|
|
873
|
+
.color-picker-palette {
|
|
874
|
+
@apply dark:bg-darkForm;
|
|
875
|
+
@apply bg-lightForm;
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
|
|
816
879
|
</style>
|