react-survey-builder 1.0.90 → 1.0.92

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": "react-survey-builder",
3
- "version": "1.0.90",
3
+ "version": "1.0.92",
4
4
  "description": "A complete survey builder for react.",
5
5
  "main": "lib/index.js",
6
6
  "types": "types/index.d.ts",
package/types/index.d.ts CHANGED
@@ -146,6 +146,7 @@ export interface SurveyBuilderProps {
146
146
  headerClassName?: string;
147
147
  labelClassName?: string;
148
148
  paragraphClassName?: string;
149
+ helpClassName?: string;
149
150
  }
150
151
 
151
152
  export class ReactSurveyBuilder extends React.Component<SurveyBuilderProps> {}
@@ -188,6 +189,7 @@ export interface SurveyGeneratorProps {
188
189
  headerClassName?: string;
189
190
  labelClassName?: string;
190
191
  paragraphClassName?: string;
192
+ helpClassName?: string;
191
193
  formId?: string;
192
194
  methods?: Record<any, any>;
193
195
  print?: boolean;