classcard-ui 0.2.1495 → 0.2.1497
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/classcard-ui.common.js +345 -373
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +345 -373
- package/dist/classcard-ui.umd.js.map +1 -1
- package/dist/classcard-ui.umd.min.js +2 -2
- package/dist/classcard-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CTokenEditor/CTokenEditor.vue +5 -0
- package/src/components/index.js +3 -3
- package/src/.DS_Store +0 -0
package/package.json
CHANGED
|
@@ -151,6 +151,11 @@ class TokenBlot extends Embed {
|
|
|
151
151
|
|
|
152
152
|
TokenBlot.blotName = "token";
|
|
153
153
|
TokenBlot.tagName = "span";
|
|
154
|
+
// Scope the blot to spans carrying the token marker class. Without this, the
|
|
155
|
+
// blot matches EVERY <span> (Quill registers globally by tagName), so plain
|
|
156
|
+
// spans in other editors (e.g. CEditor content) get swallowed and rendered as
|
|
157
|
+
// generic "Variable →" chips.
|
|
158
|
+
TokenBlot.className = "ql-token-chip";
|
|
154
159
|
|
|
155
160
|
const existingTokenFormat = Quill.import("formats/token");
|
|
156
161
|
if (!existingTokenFormat || typeof existingTokenFormat.create !== "function") {
|
package/src/components/index.js
CHANGED
|
@@ -17,8 +17,8 @@ export { default as CCheckbox } from "./CCheckbox";
|
|
|
17
17
|
export { default as CCollapsibleSection } from "./CCollapsibleSection";
|
|
18
18
|
export { default as CColorDots } from "./CColorDots";
|
|
19
19
|
export { default as CDatepicker } from "./CDatepicker";
|
|
20
|
-
export { default as CDualSelect } from "./
|
|
21
|
-
export { default as CEditor } from "./
|
|
20
|
+
export { default as CDualSelect } from "./CDualSelect";
|
|
21
|
+
export { default as CEditor } from "./CEditor";
|
|
22
22
|
export { default as CFormSectionHeading } from "./CFormSectionHeading";
|
|
23
23
|
export { default as CGroupedFilterDropdown } from "./CGroupedFilterDropdown";
|
|
24
24
|
export { default as CIcon } from "./CIcon";
|
|
@@ -57,4 +57,4 @@ export { default as CProgress } from "./CProgress";
|
|
|
57
57
|
export { default as CToolTip } from "./CToolTip";
|
|
58
58
|
export { default as CIconSelect } from "./CIconSelect";
|
|
59
59
|
export { default as CAlertModal } from "./CAlertModal";
|
|
60
|
-
export { default as CTokenEditor } from "./CTokenEditor";
|
|
60
|
+
export { default as CTokenEditor } from "./CTokenEditor";
|
package/src/.DS_Store
DELETED
|
Binary file
|