freemium-survey-components 1.0.98 → 1.0.99

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;
@@ -158,7 +158,7 @@ export declare type SurveyBlockCategoryType = {
158
158
  id?: string | null;
159
159
  question_name?: string | null;
160
160
  };
161
- export declare type SurveyBlockNavType = 'NEXT' | 'END' | 'SPECIFIC' | 'BASED_ON_ANSWER';
161
+ export declare type SurveyBlockNavType = 'NEXT' | 'END' | 'SPECIFIC' | 'BASED_ON_ANSWER' | 'BASED_ON_RATING_GROUP';
162
162
  export declare type DisplayLogicOperators = 'IS' | 'IS_NOT' | 'EMPTY' | 'NOT_EMPTY' | 'LESSER_THAN' | 'GREATER_THAN' | 'LESSER_THAN_OR_EQUALS' | 'GREATER_THAN_OR_EQUALS' | 'CONTAINS' | 'NOT_CONTAINS' | 'INCLUDES' | 'NOT_INCLUDES' | 'BETWEEN' | 'STARTS_WITH' | 'ENDS_WITH' | 'AFTER' | 'BEFORE';
163
163
  export declare type DlDisplayTypes = 'SHOW' | 'HIDE';
164
164
  export declare type DisplayLogicSubTypeOptions = 'RATING' | 'RATING_GROUP';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freemium-survey-components",
3
- "version": "1.0.98",
3
+ "version": "1.0.99",
4
4
  "description": "React Survey Ui Components",
5
5
  "main": "lib/index.cjs.js",
6
6
  "module": "lib/index.esm.js",