@jinntec/jinntap 1.11.0 → 1.12.1
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/editor-styles.css +21 -1
- package/package.json +16 -6
- package/dist/jinn-tap.es.js +0 -14458
- package/dist/jinn-tap.umd.js +0 -219
package/dist/editor-styles.css
CHANGED
|
@@ -34,7 +34,7 @@ tei-title[level="m"] {
|
|
|
34
34
|
tei-div {
|
|
35
35
|
border-right: 2px solid var(--tei-div-color-0);
|
|
36
36
|
margin-right: 2px;
|
|
37
|
-
padding-right:
|
|
37
|
+
padding-right: 4px;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
tei-div > tei-div {
|
|
@@ -152,6 +152,26 @@ tei-listAnnotation {
|
|
|
152
152
|
padding-left: 0;
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
+
tei-listAnnotation:empty::before {
|
|
156
|
+
display: none;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
tei-opener, tei-closer, tei-signed, tei-dateline {
|
|
160
|
+
display: block;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
tei-opener {
|
|
164
|
+
margin-bottom: 1rem;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
tei-closer {
|
|
168
|
+
margin-top: 1rem;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
tei-dateline {
|
|
172
|
+
text-align: right;
|
|
173
|
+
}
|
|
174
|
+
|
|
155
175
|
tei-listAnnotation::before {
|
|
156
176
|
padding: 1rem 0 0;
|
|
157
177
|
margin-top: 2rem;
|
package/package.json
CHANGED
|
@@ -1,21 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jinntec/jinntap",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.1",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"main": "./dist/
|
|
6
|
-
"module": "./dist/
|
|
7
|
-
"types": "./dist/
|
|
5
|
+
"main": "./dist/index.es.js",
|
|
6
|
+
"module": "./dist/index.es.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
+
"import": "./dist/index.es.js",
|
|
11
|
+
"types": "./dist/index.d.ts"
|
|
12
|
+
},
|
|
13
|
+
"./jinn-tap": {
|
|
10
14
|
"import": "./dist/jinn-tap.es.js",
|
|
11
|
-
"require": "./dist/jinn-tap.umd.js",
|
|
12
15
|
"types": "./dist/jinn-tap.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"./jinn-toast": {
|
|
18
|
+
"import": "./dist/jinn-toast.es.js",
|
|
19
|
+
"types": "./dist/jinn-toast.d.ts"
|
|
13
20
|
}
|
|
14
21
|
},
|
|
15
22
|
"files": [
|
|
16
23
|
"dist/jinn-tap.es.js",
|
|
17
|
-
"dist/jinn-tap.umd.js",
|
|
18
24
|
"dist/jinn-tap.d.ts",
|
|
25
|
+
"dist/jinn-toast.es.js",
|
|
26
|
+
"dist/jinn-toast.d.ts",
|
|
27
|
+
"dist/index.es.js",
|
|
28
|
+
"dist/index.d.ts",
|
|
19
29
|
"dist/editor-styles.css",
|
|
20
30
|
"dist/jinntap-logo.png",
|
|
21
31
|
"dist/jinntap-logo-128.png"
|