@useloops/design-system 1.4.419 → 1.4.421
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/esm/index.js +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2273,6 +2273,9 @@ interface QuestionBlockProps {
|
|
|
2273
2273
|
questionText: string;
|
|
2274
2274
|
supportText?: string;
|
|
2275
2275
|
loading?: boolean;
|
|
2276
|
+
slotProps?: {
|
|
2277
|
+
supportText?: Omit<TypographyProps, 'variation' | 'component'>;
|
|
2278
|
+
};
|
|
2276
2279
|
}
|
|
2277
2280
|
declare const QuestionBlock: FunctionComponent<QuestionBlockProps>;
|
|
2278
2281
|
|
|
@@ -2378,7 +2381,7 @@ type VideoControlsProps = {
|
|
|
2378
2381
|
declare const _default: react.MemoExoticComponent<react.ForwardRefExoticComponent<VideoControlsProps & react.RefAttributes<any>>>;
|
|
2379
2382
|
|
|
2380
2383
|
interface SearchInputProps {
|
|
2381
|
-
onChange?: (event:
|
|
2384
|
+
onChange?: (event: react__default.ChangeEvent<HTMLInputElement>) => void;
|
|
2382
2385
|
}
|
|
2383
2386
|
declare const SearchInput: FunctionComponent<SearchInputProps>;
|
|
2384
2387
|
|