@habit.analytics/habit-claims-journey-components 2.2.0 → 2.3.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/README.md +1 -0
- package/dist/components/runner/FormRunnerWidget.d.ts +20 -2
- package/dist/i18n/locales/en.d.ts +2 -0
- package/dist/index.cjs +26 -26
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +3891 -3831
- package/dist/schemas/form-config.schema.json.d.ts +1 -0
- package/dist/types/journey.d.ts +2 -0
- package/package.json +1 -1
|
@@ -184,6 +184,7 @@ declare const _default: {
|
|
|
184
184
|
"properties": {
|
|
185
185
|
"title": { "type": "string" },
|
|
186
186
|
"show_pricing": { "type": "boolean" },
|
|
187
|
+
"show_sidebar": { "type": "boolean", "description": "Show the live summary sidebar/accordion during the journey. Defaults to true." },
|
|
187
188
|
"sections": { "type": "array", "items": { "$ref": "#/definitions/SummarySection" } }
|
|
188
189
|
}
|
|
189
190
|
},
|
package/dist/types/journey.d.ts
CHANGED
|
@@ -394,6 +394,8 @@ export interface SummarySection {
|
|
|
394
394
|
export interface SummaryPanelConfig {
|
|
395
395
|
title: string;
|
|
396
396
|
show_pricing?: boolean;
|
|
397
|
+
/** Whether the live summary sidebar/accordion is shown during the journey. Defaults to true. */
|
|
398
|
+
show_sidebar?: boolean;
|
|
397
399
|
sections: SummarySection[];
|
|
398
400
|
}
|
|
399
401
|
export interface InitConfig {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@habit.analytics/habit-claims-journey-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"author": "Habit (https://www.habit.io/)",
|
|
5
5
|
"description": "Visual graph-based journey builder and step-by-step form runner React widgets for claims workflows",
|
|
6
6
|
"keywords": [
|