@elliemae/pui-app-sdk 5.3.4 → 5.3.6
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/cjs/utils/window.js +7 -1
- package/dist/esm/utils/window.js +7 -1
- package/dist/types/lib/utils/storybook/cjs/vite.d.ts +3 -3
- package/dist/types/lib/utils/storybook/cjs/webpack.d.ts +4 -4
- package/dist/types/lib/utils/storybook/preview.d.ts +1 -1
- package/dist/types/lib/utils/testing/render-with-state-addons.d.ts +1 -1
- package/dist/types/lib/view/app-root/hosted-app.d.ts +1 -1
- package/dist/types/lib/view/app-root/index.d.ts +1 -1
- package/dist/types/lib/view/app-root/stand-alone-app.d.ts +1 -1
- package/dist/types/lib/view/app-router.d.ts +1 -1
- package/dist/types/lib/view/breakpoint/index.stories.d.ts +1 -1
- package/dist/types/lib/view/error-boundary/default-error-template.d.ts +1 -1
- package/dist/types/lib/view/error-boundary/index.d.ts +1 -1
- package/dist/types/lib/view/error-toast/index.stories.d.ts +2 -2
- package/dist/types/lib/view/fields/autocomplete/index.d.ts +1 -1
- package/dist/types/lib/view/fields/check-box/index.d.ts +1 -1
- package/dist/types/lib/view/fields/combo-box/index.d.ts +1 -1
- package/dist/types/lib/view/fields/combo-box-v3/index.d.ts +1 -1
- package/dist/types/lib/view/fields/date-input/index.d.ts +1 -1
- package/dist/types/lib/view/fields/date-picker/index.d.ts +1 -1
- package/dist/types/lib/view/fields/date-range-picker/index.d.ts +1 -1
- package/dist/types/lib/view/fields/date-time-picker/index.d.ts +1 -1
- package/dist/types/lib/view/fields/form-item-layout/index.d.ts +1 -1
- package/dist/types/lib/view/fields/form-layout-block-item/index.d.ts +1 -1
- package/dist/types/lib/view/fields/input-mask/index.d.ts +1 -1
- package/dist/types/lib/view/fields/input-text/index.d.ts +1 -1
- package/dist/types/lib/view/fields/large-text-box/index.d.ts +1 -1
- package/dist/types/lib/view/fields/masked-input-text/index.d.ts +1 -1
- package/dist/types/lib/view/fields/radio/index.d.ts +1 -1
- package/dist/types/lib/view/fields/radio-group/index.d.ts +1 -1
- package/dist/types/lib/view/fields/text-box/index.d.ts +1 -1
- package/dist/types/lib/view/fields/toggle/index.d.ts +1 -1
- package/dist/types/lib/view/fields/watch-value.d.ts +1 -1
- package/dist/types/lib/view/form/index.d.ts +1 -1
- package/dist/types/lib/view/form/personal-info-section.d.ts +3 -3
- package/dist/types/lib/view/form/submit-button/index.d.ts +1 -1
- package/dist/types/lib/view/live-message/index.d.ts +1 -1
- package/dist/types/lib/view/live-message/index.stories.d.ts +1 -1
- package/dist/types/lib/view/loadable/index.d.ts +1 -1
- package/dist/types/lib/view/login/index.d.ts +1 -1
- package/dist/types/lib/view/modals/error/index.d.ts +1 -1
- package/dist/types/lib/view/page.d.ts +1 -1
- package/dist/types/lib/view/render-with-host-data/index.d.ts +1 -1
- package/dist/types/lib/view/require-auth.d.ts +1 -1
- package/dist/types/lib/view/session-timeout/index.d.ts +1 -1
- package/dist/types/lib/view/session-timeout/index.stories.d.ts +1 -1
- package/dist/types/lib/view/storybook/decorator.d.ts +1 -1
- package/package.json +8 -8
package/dist/cjs/utils/window.js
CHANGED
|
@@ -53,4 +53,10 @@ const getCurrentBreakpoint = () => {
|
|
|
53
53
|
return "medium";
|
|
54
54
|
return "large";
|
|
55
55
|
};
|
|
56
|
-
const getAssetPath = () =>
|
|
56
|
+
const getAssetPath = () => {
|
|
57
|
+
const assetPath = window?.emui?._ASSET_PATH || "latest/";
|
|
58
|
+
if (!window.emui?.version)
|
|
59
|
+
return assetPath;
|
|
60
|
+
const majorMinorVersion = window.emui?.version.match(/^(?:\d+\.\d+)*/g);
|
|
61
|
+
return majorMinorVersion && majorMinorVersion[0] ? assetPath.replace("latest/", `${majorMinorVersion[0]}/`) : assetPath;
|
|
62
|
+
};
|
package/dist/esm/utils/window.js
CHANGED
|
@@ -27,7 +27,13 @@ const getCurrentBreakpoint = () => {
|
|
|
27
27
|
return "medium";
|
|
28
28
|
return "large";
|
|
29
29
|
};
|
|
30
|
-
const getAssetPath = () =>
|
|
30
|
+
const getAssetPath = () => {
|
|
31
|
+
const assetPath = window?.emui?._ASSET_PATH || "latest/";
|
|
32
|
+
if (!window.emui?.version)
|
|
33
|
+
return assetPath;
|
|
34
|
+
const majorMinorVersion = window.emui?.version.match(/^(?:\d+\.\d+)*/g);
|
|
35
|
+
return majorMinorVersion && majorMinorVersion[0] ? assetPath.replace("latest/", `${majorMinorVersion[0]}/`) : assetPath;
|
|
36
|
+
};
|
|
31
37
|
export {
|
|
32
38
|
getAssetPath,
|
|
33
39
|
getCurrentBreakpoint,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export declare
|
|
1
|
+
export declare let stories: {
|
|
2
2
|
directory: string;
|
|
3
3
|
}[];
|
|
4
|
-
export declare
|
|
4
|
+
export declare let addons: {
|
|
5
5
|
name: string;
|
|
6
6
|
options: {
|
|
7
7
|
optimizationLevel: number;
|
|
@@ -11,7 +11,7 @@ export declare const addons: {
|
|
|
11
11
|
};
|
|
12
12
|
}[];
|
|
13
13
|
export declare namespace core {
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
let builder: string;
|
|
15
|
+
let disableTelemetry: boolean;
|
|
16
16
|
}
|
|
17
17
|
export { managerWebpack, webpackFinal };
|
|
@@ -27,5 +27,5 @@ export declare const getParameters: (storyBookTheme: {
|
|
|
27
27
|
hideEmpty: boolean;
|
|
28
28
|
};
|
|
29
29
|
};
|
|
30
|
-
export declare const decorators: ((story: () => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) => JSX.Element)[];
|
|
30
|
+
export declare const decorators: ((story: () => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) => import("react/jsx-runtime.js").JSX.Element)[];
|
|
31
31
|
export declare const loaders: (() => Promise<void>)[];
|
|
@@ -19,5 +19,5 @@ interface RenderWithStateAddOnsProps {
|
|
|
19
19
|
theme?: Theme;
|
|
20
20
|
[x: string]: any;
|
|
21
21
|
}
|
|
22
|
-
export declare const RenderWithStateAddOns: ({ Component, reducer, saga, theme, ...rest }: RenderWithStateAddOnsProps) => JSX.Element | null;
|
|
22
|
+
export declare const RenderWithStateAddOns: ({ Component, reducer, saga, theme, ...rest }: RenderWithStateAddOnsProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
23
23
|
export {};
|
|
@@ -3,5 +3,5 @@ type HostedAppProps = {
|
|
|
3
3
|
WaitMessage: React.ReactNode;
|
|
4
4
|
children: React.ReactNode;
|
|
5
5
|
};
|
|
6
|
-
export declare const HostedApp: ({ WaitMessage, children }: HostedAppProps) => JSX.Element;
|
|
6
|
+
export declare const HostedApp: ({ WaitMessage, children }: HostedAppProps) => import("react/jsx-runtime.js").JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -13,5 +13,5 @@ type AppRootProps = {
|
|
|
13
13
|
errorTemplate?: React.ComponentType;
|
|
14
14
|
strictMode?: boolean;
|
|
15
15
|
};
|
|
16
|
-
export declare const AppRoot: ({ store, history, basename, theme, manageSession, WaitMessage, errorTemplate, children, strictMode, }: AppRootProps) => JSX.Element;
|
|
16
|
+
export declare const AppRoot: ({ store, history, basename, theme, manageSession, WaitMessage, errorTemplate, children, strictMode, }: AppRootProps) => import("react/jsx-runtime.js").JSX.Element;
|
|
17
17
|
export {};
|
|
@@ -4,5 +4,5 @@ type StandAloneAppProps = {
|
|
|
4
4
|
WaitMessage: React.ReactNode;
|
|
5
5
|
children: React.ReactNode;
|
|
6
6
|
};
|
|
7
|
-
export declare const StandAloneApp: ({ manageSession, WaitMessage, children, }: StandAloneAppProps) => JSX.Element;
|
|
7
|
+
export declare const StandAloneApp: ({ manageSession, WaitMessage, children, }: StandAloneAppProps) => import("react/jsx-runtime.js").JSX.Element;
|
|
8
8
|
export {};
|
|
@@ -5,5 +5,5 @@ interface AppRouterProps {
|
|
|
5
5
|
basename?: string;
|
|
6
6
|
children?: React.ReactNode;
|
|
7
7
|
}
|
|
8
|
-
export declare const AppRouter: ({ history, basename, ...props }: AppRouterProps) => JSX.Element;
|
|
8
|
+
export declare const AppRouter: ({ history, basename, ...props }: AppRouterProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export {};
|
|
@@ -4,4 +4,4 @@ export interface ErrorTemplateProps {
|
|
|
4
4
|
componentStack: string;
|
|
5
5
|
} | null;
|
|
6
6
|
}
|
|
7
|
-
export declare const DefaultErrorTemplate: ({ error, errorInfo, }: ErrorTemplateProps) => JSX.Element;
|
|
7
|
+
export declare const DefaultErrorTemplate: ({ error, errorInfo, }: ErrorTemplateProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -8,6 +8,6 @@ export declare class ErrorBoundary extends React.Component<ErrorBoundaryProps> {
|
|
|
8
8
|
componentDidCatch(error: Error, errorInfo: {
|
|
9
9
|
componentStack: string;
|
|
10
10
|
}): void;
|
|
11
|
-
render(): string | number | boolean | React.
|
|
11
|
+
render(): string | number | boolean | Iterable<React.ReactNode> | import("react/jsx-runtime.js").JSX.Element | null | undefined;
|
|
12
12
|
}
|
|
13
13
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Meta } from '@storybook/react';
|
|
2
2
|
declare const _default: Meta;
|
|
3
3
|
export default _default;
|
|
4
|
-
export declare const BasicError: () => JSX.Element;
|
|
5
|
-
export declare const ToastDifferentTypes: () => JSX.Element;
|
|
4
|
+
export declare const BasicError: () => import("react/jsx-runtime.js").JSX.Element;
|
|
5
|
+
export declare const ToastDifferentTypes: () => import("react/jsx-runtime.js").JSX.Element;
|
|
@@ -8,5 +8,5 @@ export type AutocompleteProps = {
|
|
|
8
8
|
options: DSAutocompleteProps['options'];
|
|
9
9
|
children: DSAutocompleteProps['children'];
|
|
10
10
|
};
|
|
11
|
-
export declare const Autocomplete: ({ children, ...rest }: AutocompleteProps) => JSX.Element;
|
|
11
|
+
export declare const Autocomplete: ({ children, ...rest }: AutocompleteProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export {};
|
|
@@ -6,4 +6,4 @@ export type CheckBoxProps<TFieldValues extends FieldValues = FieldValues, TName
|
|
|
6
6
|
rules?: Omit<RegisterOptions<TFieldValues, TName>, 'valueAsNumber' | 'valueAsDate' | 'setValueAs'>;
|
|
7
7
|
[x: string]: any;
|
|
8
8
|
};
|
|
9
|
-
export declare const CheckBox: ({ name, defaultValue, rules, ...rest }: CheckBoxProps) => JSX.Element;
|
|
9
|
+
export declare const CheckBox: ({ name, defaultValue, rules, ...rest }: CheckBoxProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,4 +5,4 @@ export type ComboBoxProps<TFieldValues extends FieldValues = FieldValues, TName
|
|
|
5
5
|
rules?: Omit<RegisterOptions<TFieldValues, TName>, 'valueAsNumber' | 'valueAsDate' | 'setValueAs'>;
|
|
6
6
|
[x: string]: any;
|
|
7
7
|
};
|
|
8
|
-
export declare const ComboBox: ({ name, defaultValue, rules, ...rest }: ComboBoxProps) => JSX.Element;
|
|
8
|
+
export declare const ComboBox: ({ name, defaultValue, rules, ...rest }: ComboBoxProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -9,5 +9,5 @@ export type ComboBoxV3Props<TFieldValues extends FieldValues = FieldValues, TNam
|
|
|
9
9
|
rules?: Omit<RegisterOptions<TFieldValues, TName>, 'valueAsNumber' | 'valueAsDate' | 'setValueAs'>;
|
|
10
10
|
[x: string]: any;
|
|
11
11
|
} & Optional<Omit<DSComboboxProps, 'selectedValues' | 'onChange'>, 'filteredOptions'>;
|
|
12
|
-
export declare const ComboBoxV3: ({ name, defaultValue, rules, filteredOptions, ...rest }: ComboBoxV3Props) => JSX.Element;
|
|
12
|
+
export declare const ComboBoxV3: ({ name, defaultValue, rules, filteredOptions, ...rest }: ComboBoxV3Props) => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export {};
|
|
@@ -5,4 +5,4 @@ export type DateInputProps<TFieldValues extends FieldValues = FieldValues, TName
|
|
|
5
5
|
rules?: Omit<RegisterOptions<TFieldValues, TName>, 'valueAsNumber' | 'valueAsDate' | 'setValueAs'>;
|
|
6
6
|
[x: string]: any;
|
|
7
7
|
};
|
|
8
|
-
export declare const DateInput: ({ name, defaultValue, rules, ...rest }: DateInputProps) => JSX.Element;
|
|
8
|
+
export declare const DateInput: ({ name, defaultValue, rules, ...rest }: DateInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -6,4 +6,4 @@ export type DatePickerProps<TFieldValues extends FieldValues = FieldValues, TNam
|
|
|
6
6
|
rules?: Omit<RegisterOptions<TFieldValues, TName>, 'valueAsNumber' | 'valueAsDate' | 'setValueAs'>;
|
|
7
7
|
[x: string]: any;
|
|
8
8
|
};
|
|
9
|
-
export declare const DatePicker: ({ name, defaultValue, rules, ...rest }: DatePickerProps) => JSX.Element;
|
|
9
|
+
export declare const DatePicker: ({ name, defaultValue, rules, ...rest }: DatePickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,4 +5,4 @@ export type DateRangePickerProps<TFieldValues extends FieldValues = FieldValues,
|
|
|
5
5
|
rules?: Omit<RegisterOptions<TFieldValues, TName>, 'valueAsNumber' | 'valueAsDate' | 'setValueAs'>;
|
|
6
6
|
[x: string]: any;
|
|
7
7
|
};
|
|
8
|
-
export declare const DateRangePicker: ({ name, defaultValue, rules, ...rest }: DateRangePickerProps) => JSX.Element;
|
|
8
|
+
export declare const DateRangePicker: ({ name, defaultValue, rules, ...rest }: DateRangePickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -8,5 +8,5 @@ export type DateTimePickerProps<TFieldValues extends FieldValues = FieldValues,
|
|
|
8
8
|
rules?: Omit<RegisterOptions<TFieldValues, TName>, 'valueAsNumber' | 'valueAsDate' | 'setValueAs'>;
|
|
9
9
|
[x: string]: any;
|
|
10
10
|
} & Partial<DSDateTimePickerProps>;
|
|
11
|
-
export declare const DateTimePicker: ({ name, defaultValue, rules, type, ...rest }: DateTimePickerProps) => JSX.Element;
|
|
11
|
+
export declare const DateTimePicker: ({ name, defaultValue, rules, type, ...rest }: DateTimePickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export {};
|
|
@@ -6,4 +6,4 @@ export type FormItemLayoutProps = {
|
|
|
6
6
|
labelText?: string;
|
|
7
7
|
[x: string]: any;
|
|
8
8
|
};
|
|
9
|
-
export declare const FormItemLayout: ({ name, ...rest }: FormItemLayoutProps) => JSX.Element;
|
|
9
|
+
export declare const FormItemLayout: ({ name, ...rest }: FormItemLayoutProps) => import("react/jsx-runtime.js").JSX.Element;
|
|
@@ -5,4 +5,4 @@ export type FormLayoutBlockItemProps = {
|
|
|
5
5
|
children: React.ReactNode;
|
|
6
6
|
[x: string]: any;
|
|
7
7
|
};
|
|
8
|
-
export declare const FormLayoutBlockItem: ({ inputID, label, ...rest }: FormLayoutBlockItemProps) => JSX.Element;
|
|
8
|
+
export declare const FormLayoutBlockItem: ({ inputID, label, ...rest }: FormLayoutBlockItemProps) => import("react/jsx-runtime.js").JSX.Element;
|
|
@@ -10,5 +10,5 @@ export type InputMaskProps<TFieldValues extends FieldValues = FieldValues, TName
|
|
|
10
10
|
onBlur?: (e: React.BaseSyntheticEvent) => void;
|
|
11
11
|
[x: string]: any;
|
|
12
12
|
};
|
|
13
|
-
export declare const InputMask: ({ name, defaultValue, rules, onChange: changeHandler, onBlur: onBlurHandler, ...rest }: InputMaskProps) => JSX.Element;
|
|
13
|
+
export declare const InputMask: ({ name, defaultValue, rules, onChange: changeHandler, onBlur: onBlurHandler, ...rest }: InputMaskProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
14
|
export { MASK_TYPES, MASK_PIPES };
|
|
@@ -6,4 +6,4 @@ export type InputTextProps<TFieldValues extends FieldValues = FieldValues, TName
|
|
|
6
6
|
defaultValue?: string;
|
|
7
7
|
rules?: Omit<RegisterOptions<TFieldValues, TName>, 'valueAsNumber' | 'valueAsDate' | 'setValueAs'>;
|
|
8
8
|
} & React.ComponentProps<typeof DSInputText>;
|
|
9
|
-
export declare const InputText: ({ name, defaultValue, rules, ...rest }: InputTextProps) => JSX.Element;
|
|
9
|
+
export declare const InputText: ({ name, defaultValue, rules, ...rest }: InputTextProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -6,4 +6,4 @@ export type LargeTextBoxProps<TFieldValues extends FieldValues = FieldValues, TN
|
|
|
6
6
|
mask: <T>(value: T) => T;
|
|
7
7
|
[x: string]: any;
|
|
8
8
|
};
|
|
9
|
-
export declare const LargeTextBox: ({ name, defaultValue, rules, ...rest }: LargeTextBoxProps) => JSX.Element;
|
|
9
|
+
export declare const LargeTextBox: ({ name, defaultValue, rules, ...rest }: LargeTextBoxProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -12,5 +12,5 @@ export type MaskedInputTextProps = CommonProps & {
|
|
|
12
12
|
useMask: DSMaskT.NumberHook | DSMaskT.PhoneHook | DSMaskT.Hook;
|
|
13
13
|
maskOpts: Partial<Omit<DSMaskT.RegExpHookArgs, 'onChange' | 'valueSetter'> | Omit<DSMaskT.PhoneHookArgs, 'onChange' | 'valueSetter'> | Omit<DSMaskT.NumberHookArgs, 'onChange' | 'valueSetter'>>;
|
|
14
14
|
};
|
|
15
|
-
export declare const MaskedInputText: ({ name, defaultValue, rules, useMask, maskOpts, ...rest }: MaskedInputTextProps) => JSX.Element;
|
|
15
|
+
export declare const MaskedInputText: ({ name, defaultValue, rules, useMask, maskOpts, ...rest }: MaskedInputTextProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
16
|
export {};
|
|
@@ -6,4 +6,4 @@ export type RadioProps<TFieldValues extends FieldValues = FieldValues, TName ext
|
|
|
6
6
|
rules?: Omit<RegisterOptions<TFieldValues, TName>, 'valueAsNumber' | 'valueAsDate' | 'setValueAs'>;
|
|
7
7
|
[x: string]: any;
|
|
8
8
|
};
|
|
9
|
-
export declare const Radio: ({ name, defaultChecked, rules, ...rest }: RadioProps) => JSX.Element;
|
|
9
|
+
export declare const Radio: ({ name, defaultChecked, rules, ...rest }: RadioProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export type RadioGroupProps<TFieldValues extends FieldValues = FieldValues, TNam
|
|
|
4
4
|
rules?: Omit<RegisterOptions<TFieldValues, TName>, 'valueAsNumber' | 'valueAsDate' | 'setValueAs'>;
|
|
5
5
|
[x: string]: any;
|
|
6
6
|
};
|
|
7
|
-
export declare const RadioGroup: ({ name, rules, ...rest }: RadioGroupProps) => JSX.Element;
|
|
7
|
+
export declare const RadioGroup: ({ name, rules, ...rest }: RadioGroupProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,4 +5,4 @@ export type TextBoxProps<TFieldValues extends FieldValues = FieldValues, TName e
|
|
|
5
5
|
rules?: Omit<RegisterOptions<TFieldValues, TName>, 'valueAsNumber' | 'valueAsDate' | 'setValueAs'>;
|
|
6
6
|
[x: string]: any;
|
|
7
7
|
};
|
|
8
|
-
export declare const TextBox: ({ name, defaultValue, rules, ...rest }: TextBoxProps) => JSX.Element;
|
|
8
|
+
export declare const TextBox: ({ name, defaultValue, rules, ...rest }: TextBoxProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -9,5 +9,5 @@ export type ToggleProps<TFieldValues extends FieldValues = FieldValues, TName ex
|
|
|
9
9
|
rules?: Omit<RegisterOptions<TFieldValues, TName>, 'valueAsNumber' | 'valueAsDate' | 'setValueAs'>;
|
|
10
10
|
[x: string]: any;
|
|
11
11
|
} & DSControlledToggleProps;
|
|
12
|
-
export declare const Toggle: ({ name, defaultValue, rules, ...rest }: ToggleProps) => JSX.Element;
|
|
12
|
+
export declare const Toggle: ({ name, defaultValue, rules, ...rest }: ToggleProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export {};
|
|
@@ -9,4 +9,4 @@ export type FormProps<TFieldValues extends FieldValues, TContext extends object
|
|
|
9
9
|
export type CustomFormProviderProps = FormProviderProps & {
|
|
10
10
|
formProps: UseFormProps;
|
|
11
11
|
};
|
|
12
|
-
export declare const Form: <TFieldValues extends FieldValues = FieldValues, TContext extends object = object>({ classname, reactHookFormProps, children, onSubmit, }: FormProps<TFieldValues, TContext>) => JSX.Element;
|
|
12
|
+
export declare const Form: <TFieldValues extends FieldValues = FieldValues, TContext extends object = object>({ classname, reactHookFormProps, children, onSubmit, }: FormProps<TFieldValues, TContext>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const FirstName: () => JSX.Element;
|
|
2
|
-
export declare const DOB: () => JSX.Element;
|
|
3
|
-
export declare const State: () => JSX.Element;
|
|
4
|
-
export declare const MaritalStatus: () => JSX.Element;
|
|
2
|
+
export declare const DOB: () => import("react/jsx-runtime.js").JSX.Element;
|
|
3
|
+
export declare const State: () => import("react/jsx-runtime.js").JSX.Element;
|
|
4
|
+
export declare const MaritalStatus: () => import("react/jsx-runtime.js").JSX.Element;
|
|
@@ -7,4 +7,4 @@ export type FormSubmitButtonProps = {
|
|
|
7
7
|
children: React.ReactNode;
|
|
8
8
|
[x: string]: any;
|
|
9
9
|
};
|
|
10
|
-
export declare const FormSubmitButton: ({ ...rest }: FormSubmitButtonProps) => JSX.Element;
|
|
10
|
+
export declare const FormSubmitButton: ({ ...rest }: FormSubmitButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const LiveMessage: () => JSX.Element;
|
|
1
|
+
export declare const LiveMessage: () => import("react/jsx-runtime.js").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { SuspenseProps, ComponentType } from 'react';
|
|
2
2
|
export declare const loadable: <T extends ComponentType<any>>(importFunc: () => Promise<{
|
|
3
3
|
default: T;
|
|
4
|
-
}>, fallback?: SuspenseProps['fallback']) => (props: any) => JSX.Element;
|
|
4
|
+
}>, fallback?: SuspenseProps['fallback']) => (props: any) => import("react/jsx-runtime.js").JSX.Element;
|
|
@@ -5,5 +5,5 @@ interface LoginParams {
|
|
|
5
5
|
responseType: string;
|
|
6
6
|
children: React.ReactNode;
|
|
7
7
|
}
|
|
8
|
-
export declare const Login: ({ clientId, scope, responseType, children, }: LoginParams) => JSX.Element | null;
|
|
8
|
+
export declare const Login: ({ clientId, scope, responseType, children, }: LoginParams) => import("react/jsx-runtime.js").JSX.Element | null;
|
|
9
9
|
export {};
|
|
@@ -6,4 +6,4 @@ export interface ErrorProps {
|
|
|
6
6
|
primaryMessage: React.ReactNode;
|
|
7
7
|
secondaryMessage?: React.ReactNode;
|
|
8
8
|
}
|
|
9
|
-
export declare const Error: ({ open, primaryMessage, secondaryMessage, }: ErrorProps) => JSX.Element;
|
|
9
|
+
export declare const Error: ({ open, primaryMessage, secondaryMessage, }: ErrorProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,5 +4,5 @@ interface PageProps {
|
|
|
4
4
|
pageTitle: string;
|
|
5
5
|
children: React.ReactNode;
|
|
6
6
|
}
|
|
7
|
-
export declare const Page: ({ pageTitle, children }: PageProps) => JSX.Element;
|
|
7
|
+
export declare const Page: ({ pageTitle, children }: PageProps) => import("react/jsx-runtime.js").JSX.Element;
|
|
8
8
|
export {};
|
|
@@ -4,5 +4,5 @@ interface DataProps {
|
|
|
4
4
|
guestAppId: string;
|
|
5
5
|
hostedAppUrl: string;
|
|
6
6
|
}
|
|
7
|
-
export declare const renderWithHostData: (data: DataProps) => () => JSX.Element;
|
|
7
|
+
export declare const renderWithHostData: (data: DataProps) => () => import("react/jsx-runtime.js").JSX.Element;
|
|
8
8
|
export {};
|
|
@@ -5,4 +5,4 @@ export interface RequireAuthProps {
|
|
|
5
5
|
responseType?: string;
|
|
6
6
|
children: React.ReactNode;
|
|
7
7
|
}
|
|
8
|
-
export declare const RequireAuth: ({ children, clientId, scope, responseType, }: RequireAuthProps) => JSX.Element;
|
|
8
|
+
export declare const RequireAuth: ({ children, clientId, scope, responseType, }: RequireAuthProps) => import("react/jsx-runtime.js").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SessionTimeout: () => JSX.Element;
|
|
1
|
+
export declare const SessionTimeout: () => import("react/jsx-runtime.js").JSX.Element;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
import { Theme } from '@elliemae/pui-theme';
|
|
3
3
|
import { AppStore } from '../../data/store.js';
|
|
4
4
|
type StoreFn = () => React.ReactElement;
|
|
5
|
-
export declare const withAppDecorator: (theme: Theme, store: AppStore, story: StoreFn) => JSX.Element;
|
|
5
|
+
export declare const withAppDecorator: (theme: Theme, store: AppStore, story: StoreFn) => import("react/jsx-runtime.js").JSX.Element;
|
|
6
6
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-app-sdk",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.6",
|
|
4
4
|
"description": "ICE MT UI Platform Application SDK ",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"@elliemae/pui-user-monitoring": "^1.20.0"
|
|
135
135
|
},
|
|
136
136
|
"devDependencies": {
|
|
137
|
-
"@elliemae/app-react-dependencies": "~4.
|
|
137
|
+
"@elliemae/app-react-dependencies": "~4.10.0",
|
|
138
138
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.7.0",
|
|
139
139
|
"@elliemae/ds-backdrop": "~3.14.16",
|
|
140
140
|
"@elliemae/ds-basic": "~3.14.16",
|
|
@@ -151,14 +151,14 @@
|
|
|
151
151
|
"@elliemae/ds-popperjs": "~3.14.16",
|
|
152
152
|
"@elliemae/ds-toast": "~3.14.16",
|
|
153
153
|
"@elliemae/em-ssf-guest": "~1.11.3",
|
|
154
|
-
"@elliemae/pui-cli": "~8.
|
|
155
|
-
"@elliemae/pui-diagnostics": "~3.
|
|
156
|
-
"@elliemae/pui-doc-gen": "~1.
|
|
157
|
-
"@elliemae/pui-e2e-test-sdk": "~8.
|
|
154
|
+
"@elliemae/pui-cli": "~8.13.0",
|
|
155
|
+
"@elliemae/pui-diagnostics": "~3.3.1",
|
|
156
|
+
"@elliemae/pui-doc-gen": "~1.7.1",
|
|
157
|
+
"@elliemae/pui-e2e-test-sdk": "~8.1.4",
|
|
158
158
|
"@elliemae/pui-micro-frontend-base": "~1.14.0",
|
|
159
|
-
"@elliemae/pui-scripting-object": "~1.
|
|
159
|
+
"@elliemae/pui-scripting-object": "~1.26.0",
|
|
160
160
|
"@elliemae/pui-theme": "~2.7.0",
|
|
161
|
-
"@elliemae/pui-user-monitoring": "~1.
|
|
161
|
+
"@elliemae/pui-user-monitoring": "~1.21.3",
|
|
162
162
|
"@types/react-aria-live": "~2.0.2",
|
|
163
163
|
"@elliemae/ds-utilities": "^3.19.0"
|
|
164
164
|
}
|