@tellescope/react-components 1.242.9 → 1.243.0
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/lib/cjs/state.d.ts +14 -2
- package/lib/cjs/state.d.ts.map +1 -1
- package/lib/cjs/state.js +2 -2
- package/lib/cjs/state.js.map +1 -1
- package/lib/esm/Forms/form_responses.d.ts +1 -0
- package/lib/esm/Forms/form_responses.d.ts.map +1 -1
- package/lib/esm/Forms/forms.d.ts +3 -3
- package/lib/esm/Forms/forms.v2.d.ts +3 -3
- package/lib/esm/Forms/hooks.d.ts +2 -2
- package/lib/esm/Forms/inputs.d.ts +1 -1
- package/lib/esm/Forms/inputs.v2.d.ts +1 -1
- package/lib/esm/TwilioVideo/hooks.d.ts +1 -1
- package/lib/esm/controls.d.ts +2 -2
- package/lib/esm/state.d.ts +222 -210
- package/lib/esm/state.d.ts.map +1 -1
- package/lib/esm/state.js +2 -2
- package/lib/esm/state.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/src/state.tsx +4 -4
package/lib/esm/Forms/hooks.d.ts
CHANGED
|
@@ -158,7 +158,7 @@ export declare const useTellescopeForm: ({ dontAutoadvance, isPublicForm, form,
|
|
|
158
158
|
isCalledOut?: boolean | undefined;
|
|
159
159
|
disabled?: boolean | undefined;
|
|
160
160
|
isHighlightedOnTimeline?: boolean | undefined;
|
|
161
|
-
computedValueKey?: "Height" | "
|
|
161
|
+
computedValueKey?: "Height" | "State" | "Date of Birth" | "Weight" | "Gender" | undefined;
|
|
162
162
|
intakeField?: string | undefined;
|
|
163
163
|
touched: boolean;
|
|
164
164
|
includeInSubmit: boolean;
|
|
@@ -220,7 +220,7 @@ export declare const useTellescopeForm: ({ dontAutoadvance, isPublicForm, form,
|
|
|
220
220
|
isCalledOut?: boolean | undefined;
|
|
221
221
|
disabled?: boolean | undefined;
|
|
222
222
|
isHighlightedOnTimeline?: boolean | undefined;
|
|
223
|
-
computedValueKey?: "Height" | "
|
|
223
|
+
computedValueKey?: "Height" | "State" | "Date of Birth" | "Weight" | "Gender" | undefined;
|
|
224
224
|
intakeField?: string | undefined;
|
|
225
225
|
touched: boolean;
|
|
226
226
|
includeInSubmit: boolean;
|
|
@@ -22,7 +22,7 @@ export declare const RatingInput: ({ field, value, onChange }: FormInputProps<'r
|
|
|
22
22
|
export declare const RankingInput: ({ field, value, onChange, form }: FormInputProps<'ranking'>) => JSX.Element;
|
|
23
23
|
export declare const DateInput: ({ field, value, onChange, placement, ...props }: {
|
|
24
24
|
field: FormField;
|
|
25
|
-
placement?: "
|
|
25
|
+
placement?: "bottom" | "left" | "right" | "top" | undefined;
|
|
26
26
|
} & FormInputProps<"date"> & Styled) => JSX.Element;
|
|
27
27
|
export declare const TableInput: ({ field, value, onChange, form, ...props }: FormInputProps<'Input Table'>) => JSX.Element;
|
|
28
28
|
export declare const AutoFocusTextField: (props: (import("@mui/material").FilledTextFieldProps | import("@mui/material").OutlinedTextFieldProps | import("@mui/material").StandardTextFieldProps) & {
|
|
@@ -20,7 +20,7 @@ export declare const RatingInput: ({ field, value, onChange }: FormInputProps<'r
|
|
|
20
20
|
export declare const RankingInput: ({ field, value, onChange, form }: FormInputProps<'ranking'>) => JSX.Element;
|
|
21
21
|
export declare const DateInput: ({ field, value, onChange, placement, ...props }: {
|
|
22
22
|
field: FormField;
|
|
23
|
-
placement?: "
|
|
23
|
+
placement?: "bottom" | "left" | "right" | "top" | undefined;
|
|
24
24
|
} & FormInputProps<"date"> & Styled) => JSX.Element;
|
|
25
25
|
export declare const TableInput: ({ field, value, onChange, form, ...props }: FormInputProps<'Input Table'>) => JSX.Element;
|
|
26
26
|
export declare const AutoFocusTextField: (props: TextFieldProps) => JSX.Element;
|
|
@@ -39,6 +39,6 @@ export declare const useTwilioMeetingForCalendarEvent: (calendarEventId: string)
|
|
|
39
39
|
joining: boolean;
|
|
40
40
|
startAndJoinMeeting: () => Promise<void>;
|
|
41
41
|
joinMeeting: () => Promise<void>;
|
|
42
|
-
meetingStatus: "disabled" | "
|
|
42
|
+
meetingStatus: "disabled" | "loading" | "waiting-room" | "joined";
|
|
43
43
|
};
|
|
44
44
|
//# sourceMappingURL=hooks.d.ts.map
|
package/lib/esm/controls.d.ts
CHANGED
|
@@ -76,7 +76,7 @@ export declare const useModalIconButton: (props: UseModalIconButtonProps) => {
|
|
|
76
76
|
id?: string | undefined;
|
|
77
77
|
ariaLabel?: string | undefined;
|
|
78
78
|
disabled?: boolean | undefined;
|
|
79
|
-
color?: "
|
|
79
|
+
color?: "inherit" | "white" | "error" | "primary" | "secondary" | "default" | undefined;
|
|
80
80
|
placement?: TooltipPlacement | undefined;
|
|
81
81
|
onClick?: ((e: any) => void) | undefined;
|
|
82
82
|
showArrow?: boolean | undefined;
|
|
@@ -97,7 +97,7 @@ export declare const IconModal: ({ open, setOpen, children, disabled, onClick, s
|
|
|
97
97
|
id?: string | undefined;
|
|
98
98
|
ariaLabel?: string | undefined;
|
|
99
99
|
disabled?: boolean | undefined;
|
|
100
|
-
color?: "
|
|
100
|
+
color?: "inherit" | "white" | "error" | "primary" | "secondary" | "default" | undefined;
|
|
101
101
|
placement?: TooltipPlacement | undefined;
|
|
102
102
|
onClick?: ((e: any) => void) | undefined;
|
|
103
103
|
showArrow?: boolean | undefined;
|