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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "classcard-ui",
3
- "version": "0.2.1495",
3
+ "version": "0.2.1497",
4
4
  "main": "dist/classcard-ui.umd.min.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -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") {
@@ -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 "./CEditor";
21
- export { default as CEditor } from "./CDualSelect";
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