@jinntec/jinntap 1.24.1 → 1.25.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 +11 -0
- package/dist/jinn-tap.es.js +15 -0
- package/dist/jinn-toast.es.js +1 -1
- package/package.json +1 -1
package/dist/editor-styles.css
CHANGED
|
@@ -331,6 +331,17 @@ tei-ref {
|
|
|
331
331
|
text-decoration: underline;
|
|
332
332
|
}
|
|
333
333
|
|
|
334
|
+
tei-quote{
|
|
335
|
+
&::before {
|
|
336
|
+
content: "“";
|
|
337
|
+
font-size: var(--s2);
|
|
338
|
+
position: absolute;
|
|
339
|
+
}
|
|
340
|
+
> * {
|
|
341
|
+
padding-left: 2rem
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
|
|
334
345
|
.ProseMirror-selectednode {
|
|
335
346
|
outline: 2px solid var(--pico-primary);
|
|
336
347
|
}
|
package/dist/jinn-tap.es.js
CHANGED
|
@@ -50993,6 +50993,17 @@ const dq = /* @__PURE__ */ Qz(uq), hq = {
|
|
|
50993
50993
|
underline: {
|
|
50994
50994
|
type: "inline"
|
|
50995
50995
|
},
|
|
50996
|
+
rs: {
|
|
50997
|
+
type: "inline",
|
|
50998
|
+
attributes: {
|
|
50999
|
+
corresp: {
|
|
51000
|
+
type: "string"
|
|
51001
|
+
},
|
|
51002
|
+
type: {
|
|
51003
|
+
type: "string"
|
|
51004
|
+
}
|
|
51005
|
+
}
|
|
51006
|
+
},
|
|
50996
51007
|
hi: {
|
|
50997
51008
|
type: "inline",
|
|
50998
51009
|
attributes: {
|
|
@@ -51086,6 +51097,10 @@ const dq = /* @__PURE__ */ Qz(uq), hq = {
|
|
|
51086
51097
|
}
|
|
51087
51098
|
}
|
|
51088
51099
|
},
|
|
51100
|
+
quote: {
|
|
51101
|
+
type: "block",
|
|
51102
|
+
content: "block*"
|
|
51103
|
+
},
|
|
51089
51104
|
figure: {
|
|
51090
51105
|
type: "block",
|
|
51091
51106
|
selectable: !0,
|
package/dist/jinn-toast.es.js
CHANGED
|
@@ -136,7 +136,7 @@ class l extends HTMLElement {
|
|
|
136
136
|
r.appendChild(n), n.offsetHeight, n.classList.add("show"), e || setTimeout(s, this.duration);
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
|
-
customElements.define("jinn-toast", l);
|
|
139
|
+
customElements.get("jinn-toast") || customElements.define("jinn-toast", l);
|
|
140
140
|
export {
|
|
141
141
|
l as JinnToast
|
|
142
142
|
};
|