freemium-survey-components 1.0.92 → 1.0.93

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.
@@ -0,0 +1,8 @@
1
+ import { PointScaleRatingType, QuestionTypeVariantType } from '../../types';
2
+ declare const Emoji: ({ highlight, index, type, scale, }: {
3
+ highlight: boolean;
4
+ index?: number | undefined;
5
+ scale: PointScaleRatingType;
6
+ type: Extract<QuestionTypeVariantType, 'STAR' | 'EMOJI'>;
7
+ }) => JSX.Element;
8
+ export default Emoji;
@@ -0,0 +1,2 @@
1
+ import { QuestionTypeVariantType } from '../types';
2
+ export declare const getIconName: (id: number, variant?: QuestionTypeVariantType | undefined) => string;
@@ -66,6 +66,7 @@ export declare type CustomButtonReviewType = {
66
66
  };
67
67
  export declare type QuestionTypeInfoMetaType = {
68
68
  others?: string | null;
69
+ custom_range?: boolean | null;
69
70
  is_deleted?: boolean | null;
70
71
  othersRequired?: boolean | null;
71
72
  placeholder?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freemium-survey-components",
3
- "version": "1.0.92",
3
+ "version": "1.0.93",
4
4
  "description": "React Survey Ui Components",
5
5
  "main": "lib/index.cjs.js",
6
6
  "module": "lib/index.esm.js",