@digitalculture/ochre-sdk 0.11.24 → 0.11.25
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -624,7 +624,7 @@ function parseStringDocumentItem(item) {
|
|
|
624
624
|
if (textAnnotationProperty != null) {
|
|
625
625
|
if ((typeof textAnnotationProperty.value === "object" && "uuid" in textAnnotationProperty.value && textAnnotationProperty.value.uuid != null ? textAnnotationProperty.value.uuid : null) === TEXT_ANNOTATION_TEXT_STYLING_UUID && textAnnotationProperty.property != null) {
|
|
626
626
|
const textStylingType = "text-styling";
|
|
627
|
-
let textStylingVariant = "
|
|
627
|
+
let textStylingVariant = "block";
|
|
628
628
|
let textStylingSize = "md";
|
|
629
629
|
let textStylingCss = [];
|
|
630
630
|
const textStylingProperties = Array.isArray(textAnnotationProperty.property) ? textAnnotationProperty.property : [textAnnotationProperty.property];
|
package/package.json
CHANGED