@jinntec/jinntap 1.11.0 → 1.12.0
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 +8 -0
- 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
|
@@ -152,6 +152,14 @@ 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 {
|
|
160
|
+
display: block;
|
|
161
|
+
}
|
|
162
|
+
|
|
155
163
|
tei-listAnnotation::before {
|
|
156
164
|
padding: 1rem 0 0;
|
|
157
165
|
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.0",
|
|
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"
|