@sprig-technologies/sprig-browser 2.26.0 → 2.26.2
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-FFayU6Cl.js +5179 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.js +1 -1
- package/dist/view-0V5XIs3c.js +5285 -0
- package/package.json +1 -1
- package/dist/index-dkZjZ4rB.js +0 -5819
- package/dist/view-t7AHmGU9.js +0 -6242
package/dist/index.d.ts
CHANGED
|
@@ -2097,7 +2097,9 @@ interface MultipleChoiceOption {
|
|
|
2097
2097
|
id: number;
|
|
2098
2098
|
label: string;
|
|
2099
2099
|
optionProperties: null | {
|
|
2100
|
-
allowsTextEntry
|
|
2100
|
+
allowsTextEntry?: boolean;
|
|
2101
|
+
noneOfTheAbove?: boolean;
|
|
2102
|
+
isPinned?: boolean;
|
|
2101
2103
|
};
|
|
2102
2104
|
order: number;
|
|
2103
2105
|
productId: number;
|
|
@@ -2113,7 +2115,7 @@ interface CommonMultipleChoiceProps {
|
|
|
2113
2115
|
buttonText?: string;
|
|
2114
2116
|
captionText: string;
|
|
2115
2117
|
conceptUrl: ConceptUrl;
|
|
2116
|
-
randomize: "none" | "
|
|
2118
|
+
randomize: "none" | "all";
|
|
2117
2119
|
required: boolean;
|
|
2118
2120
|
};
|
|
2119
2121
|
}
|
package/dist/index.js
CHANGED