vue2-bbl-editor 1.3.2 → 1.3.3
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/vue2-bbl-editor.common.js +22219 -21600
- package/dist/vue2-bbl-editor.common.js.map +1 -1
- package/dist/vue2-bbl-editor.css +1 -1
- package/dist/vue2-bbl-editor.umd.js +22224 -21605
- package/dist/vue2-bbl-editor.umd.js.map +1 -1
- package/dist/vue2-bbl-editor.umd.min.js +25115 -5
- package/dist/vue2-bbl-editor.umd.min.js.map +1 -1
- package/dist/vue2-html-bbl-editor.css +50 -0
- package/package.json +4 -2
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
.bbl-html-section{
|
|
2
|
+
position: relative;
|
|
3
|
+
word-wrap: break-word;
|
|
4
|
+
white-space: pre-wrap;
|
|
5
|
+
white-space: break-spaces;
|
|
6
|
+
-webkit-font-variant-ligatures: none;
|
|
7
|
+
font-variant-ligatures: none;
|
|
8
|
+
font-feature-settings: "liga" 0;
|
|
9
|
+
}
|
|
10
|
+
.bbl-html-section h1,
|
|
11
|
+
.bbl-html-section h2,
|
|
12
|
+
.bbl-html-section h3,
|
|
13
|
+
.bbl-html-section h4,
|
|
14
|
+
.bbl-html-section h5,
|
|
15
|
+
.bbl-html-section h6{
|
|
16
|
+
margin-block-start: 0.67em;
|
|
17
|
+
margin-block-end: 0.67em;
|
|
18
|
+
margin-inline-start: 0px;
|
|
19
|
+
margin-inline-end: 0px;
|
|
20
|
+
}
|
|
21
|
+
.bbl-html-section table{
|
|
22
|
+
border-collapse: collapse;
|
|
23
|
+
width: 100%;
|
|
24
|
+
border: 1px solid #d1d5db;
|
|
25
|
+
table-layout: fixed;
|
|
26
|
+
}
|
|
27
|
+
.bbl-html-section td,
|
|
28
|
+
.bbl-html-section th{
|
|
29
|
+
border: 1px solid #d1d5db;
|
|
30
|
+
padding: 8px 12px;
|
|
31
|
+
text-align: left;
|
|
32
|
+
vertical-align: top;
|
|
33
|
+
position: relative;
|
|
34
|
+
min-width: 100px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.bbl-html-section th {
|
|
38
|
+
background: #f9fafb;
|
|
39
|
+
font-weight: inherit;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.bbl-html-section p {
|
|
43
|
+
margin: 0px;
|
|
44
|
+
display: block;
|
|
45
|
+
margin-block-start: 1em;
|
|
46
|
+
margin-block-end: 1em;
|
|
47
|
+
margin-inline-start: 0px;
|
|
48
|
+
margin-inline-end: 0px;
|
|
49
|
+
unicode-bidi: isolate;
|
|
50
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue2-bbl-editor",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"description": "A production-ready, fully configurable rich text editor for Vue 2.6 built with Tiptap",
|
|
5
5
|
"main": "dist/vue2-bbl-editor.common.js",
|
|
6
6
|
"module": "dist/vue2-bbl-editor.esm.js",
|
|
@@ -48,7 +48,9 @@
|
|
|
48
48
|
"scripts": {
|
|
49
49
|
"serve": "vue-cli-service serve",
|
|
50
50
|
"build": "vue-cli-service build",
|
|
51
|
-
"build:lib": "
|
|
51
|
+
"build:lib": "npm run build:lib:main && npm run build:lib:preserve-html-css",
|
|
52
|
+
"build:lib:main": "vue-cli-service build --target lib --name vue2-bbl-editor src/index.js",
|
|
53
|
+
"build:lib:preserve-html-css": "node scripts/preserve-html-css.js",
|
|
52
54
|
"lint": "vue-cli-service lint",
|
|
53
55
|
"test": "jest",
|
|
54
56
|
"test:watch": "jest --watch",
|