@apia/util 3.0.8 → 3.0.10
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 +17 -5
- package/dist/index.js +95 -104
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -141,6 +141,14 @@ declare function downloadUrl(url: string, getNameFromResponse?: (blob: AxiosResp
|
|
|
141
141
|
declare function downloadUrl(url: string, fileName: string): Promise<void>;
|
|
142
142
|
|
|
143
143
|
declare function openAndReadFile(): Promise<string | ArrayBuffer | null>;
|
|
144
|
+
type TReadFile = {
|
|
145
|
+
content: string | ArrayBuffer;
|
|
146
|
+
name: string;
|
|
147
|
+
};
|
|
148
|
+
declare function openAndReadFiles(inputProps?: Partial<{
|
|
149
|
+
accept: string;
|
|
150
|
+
multiple: string;
|
|
151
|
+
}>): Promise<TReadFile[]>;
|
|
144
152
|
|
|
145
153
|
interface IAutoDisconnectMutationObserverConf {
|
|
146
154
|
/** Por defecto es true */
|
|
@@ -682,10 +690,12 @@ type TApiaFilter = {
|
|
|
682
690
|
asAdditional?: boolean;
|
|
683
691
|
column?: string;
|
|
684
692
|
currentValue: TApiaFilterValue;
|
|
693
|
+
changeFiltersTimestamp?: number;
|
|
685
694
|
deleteFiltersTimestamp?: number;
|
|
686
695
|
error?: string;
|
|
687
696
|
id: string | number;
|
|
688
697
|
isMeta?: boolean;
|
|
698
|
+
isSize?: boolean;
|
|
689
699
|
placeholder?: string;
|
|
690
700
|
runAutomatically?: boolean;
|
|
691
701
|
title?: string;
|
|
@@ -700,6 +710,7 @@ type TApiaFilter = {
|
|
|
700
710
|
*/
|
|
701
711
|
group?: string;
|
|
702
712
|
options?: TApiaFilterOption[];
|
|
713
|
+
sizeMultiplier?: number;
|
|
703
714
|
type?: 'date' | 'D' | 'S' | 'number' | 'N' | 'apiaNumber';
|
|
704
715
|
hide?: boolean;
|
|
705
716
|
hideToFilter?: boolean;
|
|
@@ -963,7 +974,8 @@ type THistoryStepChange<T> = THistoryCount & THistoryStep<T> & {
|
|
|
963
974
|
hasPrevious: boolean;
|
|
964
975
|
hasNext: boolean;
|
|
965
976
|
};
|
|
966
|
-
type THistoryConfiguration = {
|
|
977
|
+
type THistoryConfiguration<T> = {
|
|
978
|
+
initialContent?: T;
|
|
967
979
|
maxLength: number;
|
|
968
980
|
};
|
|
969
981
|
/**
|
|
@@ -999,7 +1011,6 @@ type THistoryConfiguration = {
|
|
|
999
1011
|
declare class History<T> extends EventEmitter<{
|
|
1000
1012
|
stepChange: THistoryStepChange<T>;
|
|
1001
1013
|
}> {
|
|
1002
|
-
private configuration;
|
|
1003
1014
|
private autocloseTimeout;
|
|
1004
1015
|
private currentStep;
|
|
1005
1016
|
private content;
|
|
@@ -1007,7 +1018,8 @@ declare class History<T> extends EventEmitter<{
|
|
|
1007
1018
|
protected enabled: boolean;
|
|
1008
1019
|
private _isOpen;
|
|
1009
1020
|
private timeoutMs;
|
|
1010
|
-
|
|
1021
|
+
private configuration;
|
|
1022
|
+
constructor(onCloseWindow: (push: (newState: T) => void) => unknown, configuration?: Partial<THistoryConfiguration<T>>);
|
|
1011
1023
|
private closeWindow;
|
|
1012
1024
|
private getEvent;
|
|
1013
1025
|
private onCloseWindow;
|
|
@@ -1024,7 +1036,7 @@ declare class History<T> extends EventEmitter<{
|
|
|
1024
1036
|
get isOpen(): boolean;
|
|
1025
1037
|
openWindow: () => void;
|
|
1026
1038
|
reset: () => void;
|
|
1027
|
-
updateConfig: (newConfiguration: Partial<THistoryConfiguration
|
|
1039
|
+
updateConfig: (newConfiguration: Partial<THistoryConfiguration<T>>) => void;
|
|
1028
1040
|
useStep: () => Pick<THistoryStepChange<T>, "hasNext" | "hasPrevious" | "currentStep">;
|
|
1029
1041
|
}
|
|
1030
1042
|
|
|
@@ -1862,5 +1874,5 @@ declare function toBoolean(value: unknown): boolean;
|
|
|
1862
1874
|
|
|
1863
1875
|
declare const parseXmlAsync: <T>(xml: string) => Promise<T>;
|
|
1864
1876
|
|
|
1865
|
-
export { BasicStoredElement, BouncingEmitter, type Callback, type DebounceOptions, type DownloadStringAsDocProps, EventEmitter, History, type IOnFocusConfiguration, type IParameter, type ISetBoundary, type Map, PropsSelectorUndefinedObject, PropsStore, StatefulEmitter, type StatefulStoreUpdateProps, type StatefulStoreUpdater, type TApiaAction, type TApiaActions, type TApiaCellDefinition, type TApiaComplexCell, type TApiaFieldPropsObj, type TApiaFilter, type TApiaFilterOption, type TApiaFilterValue, type TApiaFormButton, type TApiaFormElement, type TApiaFormElementOption, type TApiaFunction, type TApiaFunctionPageInfo, type TApiaLoad, type TApiaLoadForm, type TApiaLoadText, type TApiaMessage, type TApiaMultiplePossibleValue, type TApiaPossibleValue, type TApiaRadioPossibleValue, type TApiaRowDefinition, type TApiaSelectPossibleValue, type TApiaSystemMessageObj, type TApiaTableFunction, type TCallback, type TDateFormat, type TDispatchCallback, type TFieldEvent, type TFieldScriptEvent, type TFieldScriptEvents, type TFieldServerEvent, type TFieldServerEvents, type TFncParams, type TFocusRetriever, type THistoryCount, type THistoryStep, type THistoryStepChange, type TId, type TKey, type TMap$1 as TMap, type TMessage, type TModify, type TNotificationMessage, type TPropsComparator, type TPropsConfiguration, type TPropsSelector, type TRequireOnlyOne, type TShortcutBranch, type TUpdateFieldConfiguration, type ThrottleOptions, type UnSubscriber, Url, addBoundary, alignment, animate, apiaDateToStandarFormat, arrayOrArray, autoDisconnectMutationObserver, cantFocusSelector, customEvents, dateToApiaFormat, debugDispatcher, decodeHTMLEntities, decrypt, defaultGetNameFromResponse, disableChildrenFocus, downloadStringAsDoc, downloadUrl, enableChildrenFocus, encrypt, findOffsetRelativeToScrollParent, findScrollContainer, focus, focusSelector, formatMessage, getDateFormat, getFocusSelector, getIndex, getLabel, getSpecificParent, getValueByPath, globalFocus, isChild, isDebugDispatcherEnabled, isPropsConfigurationObject, isSetter, makeImperativeComponent, makeSingleImperativeComponent, makeStatefulStore, noNaN, notificationsSelector, openAndReadFile, parseAsSize, parseXmlAsync, persistentStorage, propsStore, screenLocker, scrollParentIntoElement, setValueByPath, shallowCompareArrays, shallowEqual, shortcutController, toBoolean, ucfirst, useCombinedRefs, useDebouncedCallback, useDebouncedState, useDomState, useImperativeComponentContext, useImperativeComponentEvents, useIntermediateValue, useLatest, useLocalStorage, useMount, usePanAndZoom, usePrevious, usePropsSelector, useShallowMemo, useStateRef, useSubscription, useUnmount, useUpdateEffect, useWhyUpdated };
|
|
1877
|
+
export { BasicStoredElement, BouncingEmitter, type Callback, type DebounceOptions, type DownloadStringAsDocProps, EventEmitter, History, type IOnFocusConfiguration, type IParameter, type ISetBoundary, type Map, PropsSelectorUndefinedObject, PropsStore, StatefulEmitter, type StatefulStoreUpdateProps, type StatefulStoreUpdater, type TApiaAction, type TApiaActions, type TApiaCellDefinition, type TApiaComplexCell, type TApiaFieldPropsObj, type TApiaFilter, type TApiaFilterOption, type TApiaFilterValue, type TApiaFormButton, type TApiaFormElement, type TApiaFormElementOption, type TApiaFunction, type TApiaFunctionPageInfo, type TApiaLoad, type TApiaLoadForm, type TApiaLoadText, type TApiaMessage, type TApiaMultiplePossibleValue, type TApiaPossibleValue, type TApiaRadioPossibleValue, type TApiaRowDefinition, type TApiaSelectPossibleValue, type TApiaSystemMessageObj, type TApiaTableFunction, type TCallback, type TDateFormat, type TDispatchCallback, type TFieldEvent, type TFieldScriptEvent, type TFieldScriptEvents, type TFieldServerEvent, type TFieldServerEvents, type TFncParams, type TFocusRetriever, type THistoryCount, type THistoryStep, type THistoryStepChange, type TId, type TKey, type TMap$1 as TMap, type TMessage, type TModify, type TNotificationMessage, type TPropsComparator, type TPropsConfiguration, type TPropsSelector, type TRequireOnlyOne, type TShortcutBranch, type TUpdateFieldConfiguration, type ThrottleOptions, type UnSubscriber, Url, addBoundary, alignment, animate, apiaDateToStandarFormat, arrayOrArray, autoDisconnectMutationObserver, cantFocusSelector, customEvents, dateToApiaFormat, debugDispatcher, decodeHTMLEntities, decrypt, defaultGetNameFromResponse, disableChildrenFocus, downloadStringAsDoc, downloadUrl, enableChildrenFocus, encrypt, findOffsetRelativeToScrollParent, findScrollContainer, focus, focusSelector, formatMessage, getDateFormat, getFocusSelector, getIndex, getLabel, getSpecificParent, getValueByPath, globalFocus, isChild, isDebugDispatcherEnabled, isPropsConfigurationObject, isSetter, makeImperativeComponent, makeSingleImperativeComponent, makeStatefulStore, noNaN, notificationsSelector, openAndReadFile, openAndReadFiles, parseAsSize, parseXmlAsync, persistentStorage, propsStore, screenLocker, scrollParentIntoElement, setValueByPath, shallowCompareArrays, shallowEqual, shortcutController, toBoolean, ucfirst, useCombinedRefs, useDebouncedCallback, useDebouncedState, useDomState, useImperativeComponentContext, useImperativeComponentEvents, useIntermediateValue, useLatest, useLocalStorage, useMount, usePanAndZoom, usePrevious, usePropsSelector, useShallowMemo, useStateRef, useSubscription, useUnmount, useUpdateEffect, useWhyUpdated };
|
|
1866
1878
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -322,16 +322,6 @@ const shortcutController = new class ShortcutController {
|
|
|
322
322
|
return;
|
|
323
323
|
let container = this.shortcuts;
|
|
324
324
|
const actualKeys = category ? [...this.categories[category], ...keys] : keys;
|
|
325
|
-
if (this.shortcutsStrings.includes(
|
|
326
|
-
actualKeys.map((current) => this.parseKeyToString(current)).join("")
|
|
327
|
-
)) {
|
|
328
|
-
console.warn(
|
|
329
|
-
`The shortcut ${actualKeys.map((current) => this.parseKeyToString(current)).join(
|
|
330
|
-
""
|
|
331
|
-
)} is being setted twice. The controller wont register more than one instance but this could be a hint if some unexpected behavior.`
|
|
332
|
-
);
|
|
333
|
-
return;
|
|
334
|
-
}
|
|
335
325
|
for (const key of actualKeys) {
|
|
336
326
|
const actualKey = typeof key === "string" ? this.parseKey(key) : key;
|
|
337
327
|
if (actualKey.key === "")
|
|
@@ -355,7 +345,7 @@ const shortcutController = new class ShortcutController {
|
|
|
355
345
|
this.shortcutsStrings.push(
|
|
356
346
|
actualKeys.map((current) => this.parseKeyToString(current)).join("")
|
|
357
347
|
);
|
|
358
|
-
container.callbacks
|
|
348
|
+
container.callbacks = [callback];
|
|
359
349
|
}
|
|
360
350
|
}();
|
|
361
351
|
|
|
@@ -411,6 +401,44 @@ function openAndReadFile() {
|
|
|
411
401
|
});
|
|
412
402
|
});
|
|
413
403
|
}
|
|
404
|
+
function openAndReadFiles(inputProps) {
|
|
405
|
+
return new Promise((resolve) => {
|
|
406
|
+
const input = document.createElement("input");
|
|
407
|
+
input.type = "file";
|
|
408
|
+
input.style.display = "none";
|
|
409
|
+
document.body.append(input);
|
|
410
|
+
Object.assign(input, inputProps);
|
|
411
|
+
input.addEventListener("change", (ev) => {
|
|
412
|
+
const fileInput = ev.target;
|
|
413
|
+
if ((fileInput?.files?.length ?? 0) === 0) {
|
|
414
|
+
resolve([]);
|
|
415
|
+
} else {
|
|
416
|
+
const files = [];
|
|
417
|
+
const sources = fileInput.files;
|
|
418
|
+
[...sources].forEach((c) => {
|
|
419
|
+
const reader = new FileReader();
|
|
420
|
+
reader.onload = (event) => {
|
|
421
|
+
fileInput.value = "";
|
|
422
|
+
const content = event.target?.result;
|
|
423
|
+
if (content) {
|
|
424
|
+
files.push({
|
|
425
|
+
content,
|
|
426
|
+
name: c.name
|
|
427
|
+
});
|
|
428
|
+
} else {
|
|
429
|
+
files.push(null);
|
|
430
|
+
}
|
|
431
|
+
if (files.length === sources.length) {
|
|
432
|
+
resolve(files.filter((c2) => !!c2));
|
|
433
|
+
}
|
|
434
|
+
};
|
|
435
|
+
reader.readAsText(c);
|
|
436
|
+
});
|
|
437
|
+
}
|
|
438
|
+
});
|
|
439
|
+
input.click();
|
|
440
|
+
});
|
|
441
|
+
}
|
|
414
442
|
|
|
415
443
|
function autoDisconnectMutationObserver(element, callback, conf) {
|
|
416
444
|
let timeoutRegister = -1;
|
|
@@ -860,54 +888,55 @@ const useDebouncedCallback = (callback, { runWhenTriggered, timeout } = { runWhe
|
|
|
860
888
|
);
|
|
861
889
|
};
|
|
862
890
|
|
|
863
|
-
function usePrevious
|
|
864
|
-
const
|
|
865
|
-
const
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
return
|
|
891
|
+
function usePrevious(value) {
|
|
892
|
+
const previousValue = useRef(void 0);
|
|
893
|
+
const currentValue = useRef(void 0);
|
|
894
|
+
previousValue.current = currentValue.current;
|
|
895
|
+
currentValue.current = value;
|
|
896
|
+
return previousValue;
|
|
869
897
|
}
|
|
870
898
|
|
|
871
|
-
function shallowEqual
|
|
872
|
-
if (
|
|
873
|
-
return true;
|
|
874
|
-
if (!Object.is(a, b) && typeof a !== typeof b) {
|
|
899
|
+
function shallowEqual(a, b) {
|
|
900
|
+
if (typeof a !== typeof b)
|
|
875
901
|
return false;
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
return false;
|
|
881
|
-
}
|
|
882
|
-
for (let i = 0; i < a.length; i++) {
|
|
883
|
-
if (!Object.is(a[i], b[i])) {
|
|
884
|
-
return false;
|
|
885
|
-
}
|
|
886
|
-
}
|
|
887
|
-
return true;
|
|
888
|
-
} else if (a && b) {
|
|
889
|
-
for (const [key, value] of Object.entries(a)) {
|
|
890
|
-
if (!Object.is(value, b[key])) {
|
|
891
|
-
return false;
|
|
892
|
-
}
|
|
893
|
-
}
|
|
894
|
-
for (const [key, value] of Object.entries(b)) {
|
|
895
|
-
if (!Object.is(value, a[key])) {
|
|
896
|
-
return false;
|
|
897
|
-
}
|
|
898
|
-
}
|
|
899
|
-
return true;
|
|
900
|
-
} else if (a && !b || !a && b) {
|
|
902
|
+
if (typeof a === "object" && a && typeof b === "object" && b) {
|
|
903
|
+
const aKeys = Object.keys(a);
|
|
904
|
+
const bKeys = Object.keys(b);
|
|
905
|
+
if (aKeys.length !== bKeys.length)
|
|
901
906
|
return false;
|
|
907
|
+
for (let i = 0; i < aKeys.length; i++) {
|
|
908
|
+
if (a[aKeys[i]] !== b[bKeys[i]])
|
|
909
|
+
return false;
|
|
902
910
|
}
|
|
911
|
+
} else {
|
|
912
|
+
if (a !== b)
|
|
913
|
+
return false;
|
|
903
914
|
}
|
|
904
|
-
return
|
|
915
|
+
return true;
|
|
916
|
+
}
|
|
917
|
+
function shallowCompareArrays(a, b) {
|
|
918
|
+
if (a.length !== b.length)
|
|
919
|
+
return false;
|
|
920
|
+
for (let i = 0; i < a.length; i++) {
|
|
921
|
+
const differ = shallowEqual(a, b);
|
|
922
|
+
if (!differ)
|
|
923
|
+
return false;
|
|
924
|
+
}
|
|
925
|
+
return true;
|
|
926
|
+
}
|
|
927
|
+
function useShallowMemo(creator, deps) {
|
|
928
|
+
const value = useRef(creator());
|
|
929
|
+
const previousDeps = usePrevious(deps);
|
|
930
|
+
if (!shallowEqual(previousDeps.current ?? [], deps)) {
|
|
931
|
+
value.current = creator();
|
|
932
|
+
}
|
|
933
|
+
return value.current;
|
|
905
934
|
}
|
|
906
935
|
|
|
907
936
|
function useIntermediateValue(currentValue) {
|
|
908
937
|
const [innerState, setInnerState] = useState(currentValue);
|
|
909
|
-
const previousValue = usePrevious
|
|
910
|
-
if (!shallowEqual
|
|
938
|
+
const previousValue = usePrevious(currentValue);
|
|
939
|
+
if (!shallowEqual(currentValue, previousValue.current)) {
|
|
911
940
|
setInnerState(currentValue);
|
|
912
941
|
}
|
|
913
942
|
return [innerState, setInnerState];
|
|
@@ -931,14 +960,6 @@ function useUnmount(unmountCallback) {
|
|
|
931
960
|
}, []);
|
|
932
961
|
}
|
|
933
962
|
|
|
934
|
-
function usePrevious(value) {
|
|
935
|
-
const previousValue = useRef(void 0);
|
|
936
|
-
const currentValue = useRef(void 0);
|
|
937
|
-
previousValue.current = currentValue.current;
|
|
938
|
-
currentValue.current = value;
|
|
939
|
-
return previousValue;
|
|
940
|
-
}
|
|
941
|
-
|
|
942
963
|
function useStateRef(initialState) {
|
|
943
964
|
const [state, setState] = useState(initialState);
|
|
944
965
|
const stateRef = useRef(state);
|
|
@@ -974,43 +995,6 @@ function useUpdateEffect(effect, deps) {
|
|
|
974
995
|
}, deps);
|
|
975
996
|
}
|
|
976
997
|
|
|
977
|
-
function shallowEqual(a, b) {
|
|
978
|
-
if (typeof a !== typeof b)
|
|
979
|
-
return false;
|
|
980
|
-
if (typeof a === "object" && a && typeof b === "object" && b) {
|
|
981
|
-
const aKeys = Object.keys(a);
|
|
982
|
-
const bKeys = Object.keys(b);
|
|
983
|
-
if (aKeys.length !== bKeys.length)
|
|
984
|
-
return false;
|
|
985
|
-
for (let i = 0; i < aKeys.length; i++) {
|
|
986
|
-
if (a[aKeys[i]] !== b[bKeys[i]])
|
|
987
|
-
return false;
|
|
988
|
-
}
|
|
989
|
-
} else {
|
|
990
|
-
if (a !== b)
|
|
991
|
-
return false;
|
|
992
|
-
}
|
|
993
|
-
return true;
|
|
994
|
-
}
|
|
995
|
-
function shallowCompareArrays(a, b) {
|
|
996
|
-
if (a.length !== b.length)
|
|
997
|
-
return false;
|
|
998
|
-
for (let i = 0; i < a.length; i++) {
|
|
999
|
-
const differ = shallowEqual(a, b);
|
|
1000
|
-
if (!differ)
|
|
1001
|
-
return false;
|
|
1002
|
-
}
|
|
1003
|
-
return true;
|
|
1004
|
-
}
|
|
1005
|
-
function useShallowMemo(creator, deps) {
|
|
1006
|
-
const value = useRef(creator());
|
|
1007
|
-
const previousDeps = usePrevious(deps);
|
|
1008
|
-
if (!shallowEqual(previousDeps.current ?? [], deps)) {
|
|
1009
|
-
value.current = creator();
|
|
1010
|
-
}
|
|
1011
|
-
return value.current;
|
|
1012
|
-
}
|
|
1013
|
-
|
|
1014
998
|
function useWhyUpdated(label, e) {
|
|
1015
999
|
const previousData = usePrevious(e);
|
|
1016
1000
|
const diffs = [];
|
|
@@ -1974,9 +1958,8 @@ const focus = new (_a = class {
|
|
|
1974
1958
|
}, _a)(document.getElementById("root"));
|
|
1975
1959
|
|
|
1976
1960
|
class History extends EventEmitter {
|
|
1977
|
-
constructor(onCloseWindow, configuration
|
|
1961
|
+
constructor(onCloseWindow, configuration) {
|
|
1978
1962
|
super();
|
|
1979
|
-
this.configuration = configuration;
|
|
1980
1963
|
this.autocloseTimeout = -1;
|
|
1981
1964
|
this.currentStep = 0;
|
|
1982
1965
|
this.content = [];
|
|
@@ -1997,14 +1980,17 @@ class History extends EventEmitter {
|
|
|
1997
1980
|
currentStep: this.currentStep,
|
|
1998
1981
|
stepCount,
|
|
1999
1982
|
hasNext: this.currentStep < stepCount,
|
|
2000
|
-
hasPrevious: this.currentStep
|
|
1983
|
+
hasPrevious: this.currentStep > 0
|
|
2001
1984
|
};
|
|
2002
1985
|
return event;
|
|
2003
1986
|
};
|
|
2004
1987
|
this.push = (el) => {
|
|
2005
1988
|
this.content = [...this.content.slice(0, this.currentStep + 1), el];
|
|
2006
1989
|
this.content = this.content.slice(
|
|
2007
|
-
Math.max(
|
|
1990
|
+
Math.max(
|
|
1991
|
+
0,
|
|
1992
|
+
this.content.length - (this.configuration?.maxLength ?? Infinity)
|
|
1993
|
+
)
|
|
2008
1994
|
);
|
|
2009
1995
|
this.currentStep = this.content.length - 1;
|
|
2010
1996
|
this.shoutStepChange(true);
|
|
@@ -2028,7 +2014,7 @@ class History extends EventEmitter {
|
|
|
2028
2014
|
};
|
|
2029
2015
|
this.back = () => {
|
|
2030
2016
|
clearTimeout(this.autocloseTimeout);
|
|
2031
|
-
if (this.currentStep
|
|
2017
|
+
if (this.currentStep > 0) {
|
|
2032
2018
|
this.currentStep -= 1;
|
|
2033
2019
|
this.shoutStepChange();
|
|
2034
2020
|
}
|
|
@@ -2058,14 +2044,14 @@ class History extends EventEmitter {
|
|
|
2058
2044
|
this.reset = () => {
|
|
2059
2045
|
clearTimeout(this.autocloseTimeout);
|
|
2060
2046
|
this.content = [];
|
|
2061
|
-
this.currentStep =
|
|
2047
|
+
this.currentStep = 0;
|
|
2062
2048
|
this.openWindow();
|
|
2063
2049
|
};
|
|
2064
2050
|
this.updateConfig = (newConfiguration) => {
|
|
2065
2051
|
this.configuration = { ...this.configuration, ...newConfiguration };
|
|
2066
2052
|
};
|
|
2067
2053
|
this.useStep = () => {
|
|
2068
|
-
const [hasPrevious, setHasPrevious] = useState({ hasNext: false, hasPrevious: false, currentStep:
|
|
2054
|
+
const [hasPrevious, setHasPrevious] = useState({ hasNext: false, hasPrevious: false, currentStep: this.currentStep });
|
|
2069
2055
|
useMount(() => {
|
|
2070
2056
|
return this.on("stepChange", (ev) => {
|
|
2071
2057
|
setHasPrevious({
|
|
@@ -2077,12 +2063,17 @@ class History extends EventEmitter {
|
|
|
2077
2063
|
});
|
|
2078
2064
|
return hasPrevious;
|
|
2079
2065
|
};
|
|
2066
|
+
this.configuration = Object.assign({ maxLength: 15 }, configuration);
|
|
2067
|
+
this.content.push(configuration?.initialContent ?? null);
|
|
2080
2068
|
this.onCloseWindow = onCloseWindow;
|
|
2081
2069
|
}
|
|
2082
2070
|
emit(eventName, params) {
|
|
2083
2071
|
this.emitting++;
|
|
2084
|
-
|
|
2085
|
-
|
|
2072
|
+
try {
|
|
2073
|
+
super.emit(eventName, params);
|
|
2074
|
+
} finally {
|
|
2075
|
+
this.emitting--;
|
|
2076
|
+
}
|
|
2086
2077
|
}
|
|
2087
2078
|
get isOpen() {
|
|
2088
2079
|
return this._isOpen;
|
|
@@ -2647,5 +2638,5 @@ const parseXmlAsync = async (xml) => {
|
|
|
2647
2638
|
return result;
|
|
2648
2639
|
};
|
|
2649
2640
|
|
|
2650
|
-
export { BasicStoredElement, BouncingEmitter, EventEmitter, History, PropsSelectorUndefinedObject, PropsStore, StatefulEmitter, Url, addBoundary, alignment, animate, apiaDateToStandarFormat, arrayOrArray, autoDisconnectMutationObserver, cantFocusSelector, customEvents, dateToApiaFormat, debugDispatcher, decodeHTMLEntities, decrypt, defaultGetNameFromResponse, disableChildrenFocus, downloadStringAsDoc, downloadUrl, enableChildrenFocus, encrypt, findOffsetRelativeToScrollParent, findScrollContainer, focus, focusSelector, formatMessage, getDateFormat, getFocusSelector, getIndex, getLabel, getSpecificParent, getValueByPath, globalFocus, isChild, isDebugDispatcherEnabled, isPropsConfigurationObject, isSetter, makeImperativeComponent, makeSingleImperativeComponent, makeStatefulStore, noNaN, notificationsSelector, openAndReadFile, parseAsSize, parseXmlAsync, persistentStorage$1 as persistentStorage, propsStore, screenLocker, scrollParentIntoElement, setValueByPath, shallowCompareArrays, shallowEqual, shortcutController, toBoolean, ucfirst, useCombinedRefs, useDebouncedCallback, useDebouncedState, useDomState, useImperativeComponentContext, useImperativeComponentEvents$1 as useImperativeComponentEvents, useIntermediateValue, useLatest, useLocalStorage, useMount, usePanAndZoom, usePrevious, usePropsSelector, useShallowMemo, useStateRef, useSubscription, useUnmount, useUpdateEffect, useWhyUpdated };
|
|
2641
|
+
export { BasicStoredElement, BouncingEmitter, EventEmitter, History, PropsSelectorUndefinedObject, PropsStore, StatefulEmitter, Url, addBoundary, alignment, animate, apiaDateToStandarFormat, arrayOrArray, autoDisconnectMutationObserver, cantFocusSelector, customEvents, dateToApiaFormat, debugDispatcher, decodeHTMLEntities, decrypt, defaultGetNameFromResponse, disableChildrenFocus, downloadStringAsDoc, downloadUrl, enableChildrenFocus, encrypt, findOffsetRelativeToScrollParent, findScrollContainer, focus, focusSelector, formatMessage, getDateFormat, getFocusSelector, getIndex, getLabel, getSpecificParent, getValueByPath, globalFocus, isChild, isDebugDispatcherEnabled, isPropsConfigurationObject, isSetter, makeImperativeComponent, makeSingleImperativeComponent, makeStatefulStore, noNaN, notificationsSelector, openAndReadFile, openAndReadFiles, parseAsSize, parseXmlAsync, persistentStorage$1 as persistentStorage, propsStore, screenLocker, scrollParentIntoElement, setValueByPath, shallowCompareArrays, shallowEqual, shortcutController, toBoolean, ucfirst, useCombinedRefs, useDebouncedCallback, useDebouncedState, useDomState, useImperativeComponentContext, useImperativeComponentEvents$1 as useImperativeComponentEvents, useIntermediateValue, useLatest, useLocalStorage, useMount, usePanAndZoom, usePrevious, usePropsSelector, useShallowMemo, useStateRef, useSubscription, useUnmount, useUpdateEffect, useWhyUpdated };
|
|
2651
2642
|
//# sourceMappingURL=index.js.map
|