@useloops/design-system 1.4.411 → 1.4.413

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.d.ts CHANGED
@@ -2236,12 +2236,14 @@ interface QuestionBlockProps {
2236
2236
  preQuestionText?: string;
2237
2237
  questionText: string;
2238
2238
  supportText?: string;
2239
+ loading?: boolean;
2239
2240
  }
2240
2241
  declare const QuestionBlock: FunctionComponent<QuestionBlockProps>;
2241
2242
 
2242
2243
  type QuestionType = 'single-punch' | 'multi-punch' | 'slider' | 'likert' | 'rank' | 'open-question' | 'emoji' | 'focus';
2243
2244
  interface QuestionLabelProps extends PropsWithChildren {
2244
2245
  type?: QuestionType;
2246
+ loading?: boolean;
2245
2247
  }
2246
2248
  declare const QuestionLabel: FunctionComponent<QuestionLabelProps>;
2247
2249