@10yun/cv-mobile-ui 0.5.9 → 0.5.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.
Files changed (44) hide show
  1. package/extend/permission.js +1 -2
  2. package/package.json +1 -1
  3. package/plugins/uni-richText.js +1 -1
  4. package/plugins/uni-socket.js +6 -8
  5. package/ui-cv/cv-geo-local/cv-geo-local.vue +0 -1
  6. package/ui-cv/cv-layout-topbar/cv-layout-topbar.vue +238 -0
  7. package/ui-cv/cv-markdown-show/lib/highlight/uni-highlight.min.js +9001 -5133
  8. package/ui-sdks/sdk-app-update/img/logo.png +0 -0
  9. package/ui-sdks/sdk-app-update/img/update_bg.png +0 -0
  10. package/ui-sdks/sdk-app-update/img/update_bg_top.png +0 -0
  11. package/{ui-cv/cv-update-app/cv-update-app.vue → ui-sdks/sdk-app-update/sdk-app-update.vue} +2 -2
  12. package/ui-sdks/sdk-app-update/xxxx +62 -0
  13. package/ui-sdks/sdk-privacy-policy/sdk-privacy-policy.vue +113 -0
  14. package/ui-sdks/sdk-u-charts/app-echarts.min.js +23 -0
  15. package/ui-sdks/sdk-u-charts/config-echarts.js +420 -0
  16. package/ui-sdks/sdk-u-charts/config-ucharts.js +630 -0
  17. package/ui-sdks/sdk-u-charts/h5-echarts.min.js +23 -0
  18. package/ui-sdks/sdk-u-charts/u-charts.js +7398 -0
  19. package/ui-sdks/sdk-u-charts/u-charts.min.js +1 -0
  20. package/ui-sdks/sdk-webview-main/WebViewMain.vue +1 -0
  21. package/ui-sdks/sdk-webview-main/main.js +0 -0
  22. package/ui-sdks/sdk-webview-main/mixin.js +0 -0
  23. package/ui-uni/uParse/src/components/wxParseAudio.vue +26 -0
  24. package/ui-uni/uParse/src/components/wxParseImg.vue +94 -0
  25. package/ui-uni/uParse/src/components/wxParseTable.vue +55 -0
  26. package/ui-uni/uParse/src/components/wxParseTemplate0.vue +103 -0
  27. package/ui-uni/uParse/src/components/wxParseTemplate1.vue +88 -0
  28. package/ui-uni/uParse/src/components/wxParseTemplate10.vue +88 -0
  29. package/ui-uni/uParse/src/components/wxParseTemplate11.vue +86 -0
  30. package/ui-uni/uParse/src/components/wxParseTemplate2.vue +88 -0
  31. package/ui-uni/uParse/src/components/wxParseTemplate3.vue +88 -0
  32. package/ui-uni/uParse/src/components/wxParseTemplate4.vue +88 -0
  33. package/ui-uni/uParse/src/components/wxParseTemplate5.vue +88 -0
  34. package/ui-uni/uParse/src/components/wxParseTemplate6.vue +88 -0
  35. package/ui-uni/uParse/src/components/wxParseTemplate7.vue +88 -0
  36. package/ui-uni/uParse/src/components/wxParseTemplate8.vue +88 -0
  37. package/ui-uni/uParse/src/components/wxParseTemplate9.vue +88 -0
  38. package/ui-uni/uParse/src/components/wxParseVideo.vue +15 -0
  39. package/ui-uni/uParse/src/editor.css +495 -0
  40. package/ui-uni/uParse/src/libs/html2json.js +261 -0
  41. package/ui-uni/uParse/src/libs/htmlparser.js +156 -0
  42. package/ui-uni/uParse/src/libs/wxDiscode.js +195 -0
  43. package/ui-uni/uParse/src/wxParse.css +270 -0
  44. package/ui-uni/uParse/src/wxParse.vue +206 -0
@@ -0,0 +1,88 @@
1
+ <template>
2
+ <!--判断是否是标签节点-->
3
+ <block v-if="node.node == 'element'">
4
+ <!--button类型-->
5
+ <button v-if="node.tag == 'button'" type="default" size="mini" :class="node.classStr" :style="node.styleStr">
6
+ <wx-parse-template :node="node" />
7
+ </button>
8
+
9
+ <!--a类型-->
10
+ <view v-else-if="node.tag == 'a'" @click="wxParseATap(node.attr,$event)" :class="node.classStr" :data-href="node.attr.href" :style="node.styleStr">
11
+ <block v-for="(node, index) of node.nodes" :key="index">
12
+ <wx-parse-template :node="node" />
13
+ </block>
14
+ </view>
15
+
16
+ <!--li类型-->
17
+ <view v-else-if="node.tag == 'li'" :class="node.classStr" :style="node.styleStr">
18
+ <block v-for="(node, index) of node.nodes" :key="index">
19
+ <wx-parse-template :node="node" />
20
+ </block>
21
+ </view>
22
+
23
+ <!--table类型-->
24
+ <wx-parse-table v-else-if="node.tag == 'table'" :class="node.classStr" :style="node.styleStr" :node="node" />
25
+
26
+ <!--br类型-->
27
+ <!-- #ifndef H5 -->
28
+ <text v-else-if="node.tag == 'br'">\n</text>
29
+ <!-- #endif -->
30
+ <!-- #ifdef H5 -->
31
+ <br v-else-if="node.tag == 'br'">
32
+ <!-- #endif -->
33
+
34
+ <!--video类型-->
35
+ <wx-parse-video :node="node" v-else-if="node.tag == 'video'"/>
36
+
37
+ <!--audio类型-->
38
+ <wx-parse-audio :node="node" v-else-if="node.tag == 'audio'"/>
39
+
40
+ <!--img类型-->
41
+ <wx-parse-img :node="node" v-else-if="node.tag == 'img'" :style="node.styleStr"/>
42
+
43
+ <!--其他标签-->
44
+ <view v-else :class="node.classStr" :style="node.styleStr">
45
+ <block v-for="(node, index) of node.nodes" :key="index">
46
+ <wx-parse-template :node="node" />
47
+ </block>
48
+ </view>
49
+ </block>
50
+
51
+ <!--判断是否是文本节点-->
52
+ <block v-else-if="node.node == 'text' ">{{node.text}}</block>
53
+ </template>
54
+
55
+ <script>
56
+ import wxParseTemplate from './wxParseTemplate9';
57
+ import wxParseImg from './wxParseImg';
58
+ import wxParseVideo from './wxParseVideo';
59
+ import wxParseAudio from './wxParseAudio';
60
+ import wxParseTable from './wxParseTable';
61
+
62
+ export default {
63
+ name: 'wxParseTemplate8',
64
+ props: {
65
+ node: {},
66
+ },
67
+ components: {
68
+ wxParseTemplate,
69
+ wxParseImg,
70
+ wxParseVideo,
71
+ wxParseAudio,
72
+ wxParseTable
73
+ },
74
+ methods: {
75
+ wxParseATap(attr,e) {
76
+ const {
77
+ href
78
+ } = e.currentTarget.dataset;
79
+ if (!href) return;
80
+ let parent = this.$parent;
81
+ while(!parent.preview || typeof parent.preview !== 'function') {
82
+ parent = parent.$parent;
83
+ }
84
+ parent.navigate(href, e, attr);
85
+ }
86
+ }
87
+ };
88
+ </script>
@@ -0,0 +1,88 @@
1
+ <template>
2
+ <!--判断是否是标签节点-->
3
+ <block v-if="node.node == 'element'">
4
+ <!--button类型-->
5
+ <button v-if="node.tag == 'button'" type="default" size="mini" :class="node.classStr" :style="node.styleStr">
6
+ <wx-parse-template :node="node" />
7
+ </button>
8
+
9
+ <!--a类型-->
10
+ <view v-else-if="node.tag == 'a'" @click="wxParseATap(node.attr,$event)" :class="node.classStr" :data-href="node.attr.href" :style="node.styleStr">
11
+ <block v-for="(node, index) of node.nodes" :key="index">
12
+ <wx-parse-template :node="node" />
13
+ </block>
14
+ </view>
15
+
16
+ <!--li类型-->
17
+ <view v-else-if="node.tag == 'li'" :class="node.classStr" :style="node.styleStr">
18
+ <block v-for="(node, index) of node.nodes" :key="index">
19
+ <wx-parse-template :node="node" />
20
+ </block>
21
+ </view>
22
+
23
+ <!--table类型-->
24
+ <wx-parse-table v-else-if="node.tag == 'table'" :class="node.classStr" :style="node.styleStr" :node="node" />
25
+
26
+ <!--br类型-->
27
+ <!-- #ifndef H5 -->
28
+ <text v-else-if="node.tag == 'br'">\n</text>
29
+ <!-- #endif -->
30
+ <!-- #ifdef H5 -->
31
+ <br v-else-if="node.tag == 'br'">
32
+ <!-- #endif -->
33
+
34
+ <!--video类型-->
35
+ <wx-parse-video :node="node" v-else-if="node.tag == 'video'"/>
36
+
37
+ <!--audio类型-->
38
+ <wx-parse-audio :node="node" v-else-if="node.tag == 'audio'"/>
39
+
40
+ <!--img类型-->
41
+ <wx-parse-img :node="node" v-else-if="node.tag == 'img'" :style="node.styleStr"/>
42
+
43
+ <!--其他标签-->
44
+ <view v-else :class="node.classStr" :style="node.styleStr">
45
+ <block v-for="(node, index) of node.nodes" :key="index">
46
+ <wx-parse-template :node="node" />
47
+ </block>
48
+ </view>
49
+ </block>
50
+
51
+ <!--判断是否是文本节点-->
52
+ <block v-else-if="node.node == 'text' ">{{node.text}}</block>
53
+ </template>
54
+
55
+ <script>
56
+ import wxParseTemplate from './wxParseTemplate10';
57
+ import wxParseImg from './wxParseImg';
58
+ import wxParseVideo from './wxParseVideo';
59
+ import wxParseAudio from './wxParseAudio';
60
+ import wxParseTable from './wxParseTable';
61
+
62
+ export default {
63
+ name: 'wxParseTemplate9',
64
+ props: {
65
+ node: {},
66
+ },
67
+ components: {
68
+ wxParseTemplate,
69
+ wxParseImg,
70
+ wxParseVideo,
71
+ wxParseAudio,
72
+ wxParseTable
73
+ },
74
+ methods: {
75
+ wxParseATap(attr,e) {
76
+ const {
77
+ href
78
+ } = e.currentTarget.dataset;
79
+ if (!href) return;
80
+ let parent = this.$parent;
81
+ while(!parent.preview || typeof parent.preview !== 'function') {
82
+ parent = parent.$parent;
83
+ }
84
+ parent.navigate(href, e, attr);
85
+ }
86
+ }
87
+ };
88
+ </script>
@@ -0,0 +1,15 @@
1
+ <template>
2
+ <!--增加video标签支持,并循环添加-->
3
+ <view :class="node.classStr" :style="node.styleStr">
4
+ <video :class="node.classStr" :style="node.styleStr" class="video-video" :src="node.attr.src"></video>
5
+ </view>
6
+ </template>
7
+
8
+ <script>
9
+ export default {
10
+ name: 'wxParseVideo',
11
+ props: {
12
+ node: {},
13
+ },
14
+ };
15
+ </script>
@@ -0,0 +1,495 @@
1
+ .ql-container {
2
+ display: block;
3
+ position: relative;
4
+ box-sizing: border-box;
5
+ -webkit-user-select: text;
6
+ user-select: text;
7
+ outline: none;
8
+ overflow: hidden;
9
+ width: 100%;
10
+ height: auto;
11
+ min-height: 30px;
12
+ }
13
+
14
+ .ql-container[hidden] {
15
+ display: none;
16
+ }
17
+
18
+ .ql-container .ql-editor {
19
+ position: relative;
20
+ font-size: inherit;
21
+ line-height: inherit;
22
+ font-family: inherit;
23
+ min-height: inherit;
24
+ width: 100%;
25
+ height: 100%;
26
+ padding: 0;
27
+ overflow-x: hidden;
28
+ overflow-y: auto;
29
+ -webkit-tap-highlight-color: transparent;
30
+ -webkit-touch-callout: none;
31
+ -webkit-overflow-scrolling: touch;
32
+ }
33
+
34
+ .ql-container .ql-editor::-webkit-scrollbar {
35
+ width: 0 !important;
36
+ }
37
+
38
+ .ql-container .ql-editor.scroll-disabled {
39
+ overflow: hidden;
40
+ }
41
+
42
+ .ql-container .ql-image-overlay {
43
+ display: flex;
44
+ position: absolute;
45
+ box-sizing: border-box;
46
+ border: 1px dashed #ccc;
47
+ justify-content: center;
48
+ align-items: center;
49
+ -webkit-user-select: none;
50
+ user-select: none;
51
+ }
52
+
53
+ .ql-container .ql-image-overlay .ql-image-size {
54
+ position: absolute;
55
+ padding: 4px 8px;
56
+ text-align: center;
57
+ background-color: #fff;
58
+ color: #888;
59
+ border: 1px solid #ccc;
60
+ box-sizing: border-box;
61
+ opacity: 0.8;
62
+ right: 4px;
63
+ top: 4px;
64
+ font-size: 12px;
65
+ display: inline-block;
66
+ width: auto;
67
+ }
68
+
69
+ .ql-container .ql-image-overlay .ql-image-toolbar {
70
+ position: relative;
71
+ text-align: center;
72
+ box-sizing: border-box;
73
+ background: #000;
74
+ border-radius: 5px;
75
+ color: #fff;
76
+ font-size: 0;
77
+ min-height: 24px;
78
+ z-index: 100;
79
+ }
80
+
81
+ .ql-container .ql-image-overlay .ql-image-toolbar span {
82
+ display: inline-block;
83
+ cursor: pointer;
84
+ padding: 5px;
85
+ font-size: 12px;
86
+ border-right: 1px solid #fff;
87
+ }
88
+
89
+ .ql-container .ql-image-overlay .ql-image-toolbar span:last-child {
90
+ border-right: 0;
91
+ }
92
+
93
+ .ql-container .ql-image-overlay .ql-image-toolbar span.triangle-up {
94
+ padding: 0;
95
+ position: absolute;
96
+ top: -12px;
97
+ left: 50%;
98
+ transform: translatex(-50%);
99
+ width: 0;
100
+ height: 0;
101
+ border-width: 6px;
102
+ border-style: solid;
103
+ border-color: transparent transparent black transparent;
104
+ }
105
+
106
+ .ql-container .ql-image-overlay .ql-image-handle {
107
+ position: absolute;
108
+ height: 12px;
109
+ width: 12px;
110
+ border-radius: 50%;
111
+ border: 1px solid #ccc;
112
+ box-sizing: border-box;
113
+ background: #fff;
114
+ }
115
+
116
+ .ql-container img {
117
+ display: inline-block;
118
+ max-width: 100%;
119
+ }
120
+
121
+ .ql-container .img {
122
+ display: inline-block;
123
+ max-width: 100%;
124
+ }
125
+
126
+ .ql-clipboard p {
127
+ margin: 0;
128
+ padding: 0;
129
+ }
130
+
131
+ .ql-editor {
132
+ box-sizing: border-box;
133
+ height: 100%;
134
+ outline: none;
135
+ overflow-y: auto;
136
+ tab-size: 4;
137
+ -moz-tab-size: 4;
138
+ text-align: left;
139
+ white-space: pre-wrap;
140
+ word-wrap: break-word;
141
+ }
142
+
143
+ .ql-editor>* {
144
+ cursor: text;
145
+ }
146
+
147
+ .ql-editor p,
148
+ .ql-editor ol,
149
+ .ql-editor ul,
150
+ .ql-editor pre,
151
+ .ql-editor blockquote,
152
+ .ql-editor h1,
153
+ .ql-editor h2,
154
+ .ql-editor h3,
155
+ .ql-editor h4,
156
+ .ql-editor h5,
157
+ .ql-editor h6 {
158
+ margin: 0;
159
+ padding: 0;
160
+ counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
161
+ }
162
+
163
+ .ql-editor ol>li,
164
+ .ql-editor ul>li {
165
+ list-style-type: none;
166
+ }
167
+
168
+ .ql-editor ul>li::before {
169
+ content: '\2022';
170
+ }
171
+
172
+ .ql-editor ul[data-checked=true],
173
+ .ql-editor ul[data-checked=false] {
174
+ pointer-events: none;
175
+ }
176
+
177
+ .ql-editor ul[data-checked=true]>li *,
178
+ .ql-editor ul[data-checked=false]>li * {
179
+ pointer-events: all;
180
+ }
181
+
182
+ .ql-editor ul[data-checked=true]>li::before,
183
+ .ql-editor ul[data-checked=false]>li::before {
184
+ color: #777;
185
+ cursor: pointer;
186
+ pointer-events: all;
187
+ }
188
+
189
+ .ql-editor ul[data-checked=true]>li::before {
190
+ content: '\2611';
191
+ }
192
+
193
+ .ql-editor ul[data-checked=false]>li::before {
194
+ content: '\2610';
195
+ }
196
+
197
+ .ql-editor li::before {
198
+ display: inline-block;
199
+ white-space: nowrap;
200
+ width: 2em;
201
+ }
202
+
203
+ .ql-editor ol li {
204
+ counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
205
+ counter-increment: list-0;
206
+ }
207
+
208
+ .ql-editor ol li:before {
209
+ content: counter(list-0, decimal) '. ';
210
+ }
211
+
212
+ .ql-editor ol li.ql-indent-1 {
213
+ counter-increment: list-1;
214
+ }
215
+
216
+ .ql-editor ol li.ql-indent-1:before {
217
+ content: counter(list-1, lower-alpha) '. ';
218
+ }
219
+
220
+ .ql-editor ol li.ql-indent-1 {
221
+ counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
222
+ }
223
+
224
+ .ql-editor ol li.ql-indent-2 {
225
+ counter-increment: list-2;
226
+ }
227
+
228
+ .ql-editor ol li.ql-indent-2:before {
229
+ content: counter(list-2, lower-roman) '. ';
230
+ }
231
+
232
+ .ql-editor ol li.ql-indent-2 {
233
+ counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
234
+ }
235
+
236
+ .ql-editor ol li.ql-indent-3 {
237
+ counter-increment: list-3;
238
+ }
239
+
240
+ .ql-editor ol li.ql-indent-3:before {
241
+ content: counter(list-3, decimal) '. ';
242
+ }
243
+
244
+ .ql-editor ol li.ql-indent-3 {
245
+ counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
246
+ }
247
+
248
+ .ql-editor ol li.ql-indent-4 {
249
+ counter-increment: list-4;
250
+ }
251
+
252
+ .ql-editor ol li.ql-indent-4:before {
253
+ content: counter(list-4, lower-alpha) '. ';
254
+ }
255
+
256
+ .ql-editor ol li.ql-indent-4 {
257
+ counter-reset: list-5 list-6 list-7 list-8 list-9;
258
+ }
259
+
260
+ .ql-editor ol li.ql-indent-5 {
261
+ counter-increment: list-5;
262
+ }
263
+
264
+ .ql-editor ol li.ql-indent-5:before {
265
+ content: counter(list-5, lower-roman) '. ';
266
+ }
267
+
268
+ .ql-editor ol li.ql-indent-5 {
269
+ counter-reset: list-6 list-7 list-8 list-9;
270
+ }
271
+
272
+ .ql-editor ol li.ql-indent-6 {
273
+ counter-increment: list-6;
274
+ }
275
+
276
+ .ql-editor ol li.ql-indent-6:before {
277
+ content: counter(list-6, decimal) '. ';
278
+ }
279
+
280
+ .ql-editor ol li.ql-indent-6 {
281
+ counter-reset: list-7 list-8 list-9;
282
+ }
283
+
284
+ .ql-editor ol li.ql-indent-7 {
285
+ counter-increment: list-7;
286
+ }
287
+
288
+ .ql-editor ol li.ql-indent-7:before {
289
+ content: counter(list-7, lower-alpha) '. ';
290
+ }
291
+
292
+ .ql-editor ol li.ql-indent-7 {
293
+ counter-reset: list-8 list-9;
294
+ }
295
+
296
+ .ql-editor ol li.ql-indent-8 {
297
+ counter-increment: list-8;
298
+ }
299
+
300
+ .ql-editor ol li.ql-indent-8:before {
301
+ content: counter(list-8, lower-roman) '. ';
302
+ }
303
+
304
+ .ql-editor ol li.ql-indent-8 {
305
+ counter-reset: list-9;
306
+ }
307
+
308
+ .ql-editor ol li.ql-indent-9 {
309
+ counter-increment: list-9;
310
+ }
311
+
312
+ .ql-editor ol li.ql-indent-9:before {
313
+ content: counter(list-9, decimal) '. ';
314
+ }
315
+
316
+ .ql-editor .ql-indent-1:not(.ql-direction-rtl) {
317
+ padding-left: 2em;
318
+ }
319
+
320
+ .ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
321
+ padding-left: 2em;
322
+ }
323
+
324
+ .ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
325
+ padding-right: 2em;
326
+ }
327
+
328
+ .ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
329
+ padding-right: 2em;
330
+ }
331
+
332
+ .ql-editor .ql-indent-2:not(.ql-direction-rtl) {
333
+ padding-left: 4em;
334
+ }
335
+
336
+ .ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
337
+ padding-left: 4em;
338
+ }
339
+
340
+ .ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
341
+ padding-right: 4em;
342
+ }
343
+
344
+ .ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
345
+ padding-right: 4em;
346
+ }
347
+
348
+ .ql-editor .ql-indent-3:not(.ql-direction-rtl) {
349
+ padding-left: 6em;
350
+ }
351
+
352
+ .ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
353
+ padding-left: 6em;
354
+ }
355
+
356
+ .ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
357
+ padding-right: 6em;
358
+ }
359
+
360
+ .ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
361
+ padding-right: 6em;
362
+ }
363
+
364
+ .ql-editor .ql-indent-4:not(.ql-direction-rtl) {
365
+ padding-left: 8em;
366
+ }
367
+
368
+ .ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
369
+ padding-left: 8em;
370
+ }
371
+
372
+ .ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
373
+ padding-right: 8em;
374
+ }
375
+
376
+ .ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
377
+ padding-right: 8em;
378
+ }
379
+
380
+ .ql-editor .ql-indent-5:not(.ql-direction-rtl) {
381
+ padding-left: 10em;
382
+ }
383
+
384
+ .ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
385
+ padding-left: 10em;
386
+ }
387
+
388
+ .ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
389
+ padding-right: 10em;
390
+ }
391
+
392
+ .ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
393
+ padding-right: 10em;
394
+ }
395
+
396
+ .ql-editor .ql-indent-6:not(.ql-direction-rtl) {
397
+ padding-left: 12em;
398
+ }
399
+
400
+ .ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
401
+ padding-left: 12em;
402
+ }
403
+
404
+ .ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
405
+ padding-right: 12em;
406
+ }
407
+
408
+ .ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
409
+ padding-right: 12em;
410
+ }
411
+
412
+ .ql-editor .ql-indent-7:not(.ql-direction-rtl) {
413
+ padding-left: 14em;
414
+ }
415
+
416
+ .ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
417
+ padding-left: 14em;
418
+ }
419
+
420
+ .ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
421
+ padding-right: 14em;
422
+ }
423
+
424
+ .ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
425
+ padding-right: 14em;
426
+ }
427
+
428
+ .ql-editor .ql-indent-8:not(.ql-direction-rtl) {
429
+ padding-left: 16em;
430
+ }
431
+
432
+ .ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
433
+ padding-left: 16em;
434
+ }
435
+
436
+ .ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
437
+ padding-right: 16em;
438
+ }
439
+
440
+ .ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
441
+ padding-right: 16em;
442
+ }
443
+
444
+ .ql-editor .ql-indent-9:not(.ql-direction-rtl) {
445
+ padding-left: 18em;
446
+ }
447
+
448
+ .ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
449
+ padding-left: 18em;
450
+ }
451
+
452
+ .ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
453
+ padding-right: 18em;
454
+ }
455
+
456
+ .ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
457
+ padding-right: 18em;
458
+ }
459
+
460
+ .ql-editor .ql-direction-rtl {
461
+ direction: rtl;
462
+ text-align: inherit;
463
+ }
464
+
465
+ .ql-editor .ql-align-center {
466
+ text-align: center;
467
+ }
468
+
469
+ .ql-editor .ql-align-justify {
470
+ text-align: justify;
471
+ }
472
+
473
+ .ql-editor .ql-align-right {
474
+ text-align: right;
475
+ }
476
+
477
+ .ql-editor.ql-blank::before {
478
+ color: rgba(0, 0, 0, 0.6);
479
+ content: attr(data-placeholder);
480
+ font-style: italic;
481
+ pointer-events: none;
482
+ position: absolute;
483
+ }
484
+
485
+ .ql-container.ql-disabled .ql-editor ul[data-checked]>li::before {
486
+ pointer-events: none;
487
+ }
488
+
489
+ .ql-clipboard {
490
+ left: -100000px;
491
+ height: 1px;
492
+ overflow-y: hidden;
493
+ position: absolute;
494
+ top: 50%;
495
+ }