@scmlatam/web-ui 0.1.93 → 0.1.96
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/context-CRqFLvGk.js +7 -0
- package/dist/extends-9CbO0Z4Q.js +12 -0
- package/dist/fp.esm-BNINKTlV.js +1526 -0
- package/dist/get-context-qXpuAzJ1.js +106 -0
- package/dist/web-ui.css +2 -1
- package/dist/web-ui.d.ts +7 -3
- package/dist/web-ui.js +74512 -11
- package/dist/web-ui.umd.cjs +511 -190
- package/package.json +25 -25
- package/dist/fp.esm-Dkdh137l.js +0 -1668
- package/dist/get-context-C_VxMKFg.js +0 -77
- package/dist/main-wAo3KYwh.js +0 -80081
package/dist/web-ui.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ export { CheckboxFieldForm }
|
|
|
55
55
|
|
|
56
56
|
export { CheckboxGroupForm }
|
|
57
57
|
|
|
58
|
-
export declare const Core: ({ sidebar, routes, product, account, languages, loginForm: form, }: CoreProps) => JSX.Element;
|
|
58
|
+
export declare const Core: ({ sidebar, routes, product, account, languages, loginForm: form, unsavedChangesAlert, }: CoreProps) => JSX.Element;
|
|
59
59
|
|
|
60
60
|
export declare const CoreContext: Context<ICoreContext>;
|
|
61
61
|
|
|
@@ -104,8 +104,12 @@ declare interface ICoreContext {
|
|
|
104
104
|
setSingleShortcut: (value: PickersShortcutsItem<PickerValidValue>[]) => void;
|
|
105
105
|
rangeShortcut: PickersShortcutsItem<PickerValidValue>[];
|
|
106
106
|
setRangeShortcut: (value: PickersShortcutsItem<PickerValidValue>[]) => void;
|
|
107
|
-
encrypter: (storage:
|
|
108
|
-
decrypter: (storage:
|
|
107
|
+
encrypter: (storage: "session" | "local", key: string, data: string) => void;
|
|
108
|
+
decrypter: (storage: "session" | "local", key: string) => string;
|
|
109
|
+
openUnsaved: boolean;
|
|
110
|
+
setOpenUnsaved: (value: boolean) => void;
|
|
111
|
+
redirect: string;
|
|
112
|
+
setRedirect: (value: string) => void;
|
|
109
113
|
}
|
|
110
114
|
|
|
111
115
|
export { ITableContext }
|