@apia/util 4.0.45 → 4.0.46
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 +26 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -873,6 +873,7 @@ interface TMessage {
|
|
|
873
873
|
content?: string;
|
|
874
874
|
title?: string;
|
|
875
875
|
type?: string;
|
|
876
|
+
stack?: string;
|
|
876
877
|
}
|
|
877
878
|
interface TNotificationMessage {
|
|
878
879
|
onClose?: string;
|
|
@@ -885,6 +886,7 @@ interface TNotificationMessage {
|
|
|
885
886
|
exceptions?: {
|
|
886
887
|
exception: TMessage | TMessage[];
|
|
887
888
|
};
|
|
889
|
+
actions?: TApiaActions;
|
|
888
890
|
}
|
|
889
891
|
|
|
890
892
|
type TAttribute = {
|
|
@@ -996,6 +998,18 @@ interface IStatesSource {
|
|
|
996
998
|
isLight: boolean;
|
|
997
999
|
}
|
|
998
1000
|
|
|
1001
|
+
type NotificationIcon = string;
|
|
1002
|
+
type NotificationType = 'info' | 'error' | 'success' | 'warning' | 'modal';
|
|
1003
|
+
type NotificationDefinition = {
|
|
1004
|
+
icon?: NotificationIcon;
|
|
1005
|
+
id?: string | number;
|
|
1006
|
+
isOpen?: boolean;
|
|
1007
|
+
message: string;
|
|
1008
|
+
stackTrace?: string;
|
|
1009
|
+
title?: string;
|
|
1010
|
+
type?: NotificationType;
|
|
1011
|
+
};
|
|
1012
|
+
|
|
999
1013
|
type TId = string | number;
|
|
1000
1014
|
type TModify<T, R> = Omit<T, keyof R> & R;
|
|
1001
1015
|
type TMap$1<T> = Record<string | number, T>;
|
|
@@ -1382,6 +1396,14 @@ declare function useImperativeComponentContext<Events extends TMap = TMap>(): {
|
|
|
1382
1396
|
eventsStore: TEventsHandlers<Events>;
|
|
1383
1397
|
};
|
|
1384
1398
|
|
|
1399
|
+
interface ILabelsContainer {
|
|
1400
|
+
labels: {
|
|
1401
|
+
[key: string]: {
|
|
1402
|
+
text: string;
|
|
1403
|
+
title: string;
|
|
1404
|
+
};
|
|
1405
|
+
};
|
|
1406
|
+
}
|
|
1385
1407
|
/**
|
|
1386
1408
|
* Dado un nombre de etiqueta, devuelve el texto que esa etiqueta contiene en
|
|
1387
1409
|
* el idioma actual. En este momento, lo único que hace realmente esta función
|
|
@@ -1393,6 +1415,9 @@ declare function useImperativeComponentContext<Events extends TMap = TMap>(): {
|
|
|
1393
1415
|
*
|
|
1394
1416
|
* Permite el pasaje de tokens para el reemplazo automático de los mismos.
|
|
1395
1417
|
*
|
|
1418
|
+
* @param outerWindow - En librerías que puedan trabajar tanto en Browser como en Node es requerido pasar el window como parámetro para evitar que la función vaya directamente al window.
|
|
1419
|
+
*
|
|
1420
|
+
*
|
|
1396
1421
|
* @example
|
|
1397
1422
|
*
|
|
1398
1423
|
* // Suponemos la etiqueta msgUsu = { text: 'Usuario <TOK1>', title: 'Usuario <TOK1>' }
|
|
@@ -2075,5 +2100,5 @@ declare class TasksQueue {
|
|
|
2075
2100
|
run<T>(task: Task<T>): Promise<T | undefined>;
|
|
2076
2101
|
}
|
|
2077
2102
|
|
|
2078
|
-
export { AudioRecorder, type AudioRecorderState, BasicStoredElement, BouncingEmitter, type Callback, ClassNameBuilder, type DebounceOptions, type DeepReadonly, type DownloadStringAsDocProps, EventEmitter, History, type IOnFocusConfiguration, type IParameter, type ISetBoundary, type IStatesSource, Locker, type Map, Mutex, PropsSelectorUndefinedObject, PropsStore, ScrollLocker, Semaphore, StatefulEmitter, type StatefulStoreUpdateProps, type StatefulStoreUpdater, type TActionBehavior, type TActionSource, 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 TAttribute, type TBasicAction, type TBehavior, type TCallback, type TCell, type TColumn, type TDateFormat, type TDispatchCallback, type TDownloadUrlOptions, type TFieldEvent, type TFieldScriptEvent, type TFieldScriptEvents, type TFieldServerEvent, type TFieldServerEvents, type TFilter, type TFncParams, type TFocusRetriever, type THistoryCount, type THistoryStep, type THistoryStepChange, type TId, type TKey, type TLoadStructure, type TMap$1 as TMap, type TMessage, type TModify, type TNotificationMessage, type TOption, type TPropsComparator, type TPropsConfiguration, type TPropsSelector, type TRefresh, type TRequireOnlyOne, type TRow, type TShortcutBranch, type TState, type TStateIcon, type TUpdateFieldConfiguration, type TWithAlignment, type TWithAttributes, type TWithOptions, type TWithStylesModifiers, type Task, TasksQueue, type ThrottleOptions, type UnSubscriber, Url, addBoundary, alignment, animate, apiaDateToStandarFormat, arrayOrArray, autoDisconnectMutationObserver, awaitTime, cantFocusSelector, cloneDeep, customEvents, dateToApiaFormat, debugDispatcher, decodeBase64ToUtf8, decodeHTMLEntities, decrypt, deepEqual, defaultGetNameFromResponse, disableChildrenFocus, downloadStringAsDoc, downloadUrl, enableChildrenFocus, encodeStrToBase64Utf8, encrypt, findOffsetRelativeToScrollParent, findScrollContainer, focus, focusSelector, formatMessage, freezeDeep, getDateFormat, getFocusSelector, getIndex, getJSObjFromXML, getLabel, getSpecificParent, getValueByPath, globalFocus, globals, isChild, isDebugDispatcherEnabled, isFocusable, isPropsConfigurationObject, isSetter, isTrue, makeImperativeComponent, makeSingleImperativeComponent, makeStatefulStore, noNaN, notificationsSelector, openAndReadFile, openAndReadFiles, parseAsSize, parseXMLRequestResponse, parseXmlAsync, persistentStorage, postNavigation, propsStore, screenLocker, scrollParentIntoElement, setValueByPath, shallowCompareArrays, shallowEqual, shortcutController, toBoolean, ucfirst, uniqueId, useCombinedRefs, useDebouncedCallback, useDebouncedState, useDomState, useImperativeComponentContext, useImperativeComponentEvents, useIntermediateValue, useLatest, useLocalStorage, useMatchScrollDirection, useMount, useMountTransition, usePanAndZoom, usePrevious, usePropsSelector, useShallowMemo, useStateRef, useSubscription, useUnmount, useUpdateEffect, useWhyUpdated };
|
|
2103
|
+
export { AudioRecorder, type AudioRecorderState, BasicStoredElement, BouncingEmitter, type Callback, ClassNameBuilder, type DebounceOptions, type DeepReadonly, type DownloadStringAsDocProps, EventEmitter, History, type ILabelsContainer, type IOnFocusConfiguration, type IParameter, type ISetBoundary, type IStatesSource, Locker, type Map, Mutex, type NotificationDefinition, type NotificationIcon, type NotificationType, PropsSelectorUndefinedObject, PropsStore, ScrollLocker, Semaphore, StatefulEmitter, type StatefulStoreUpdateProps, type StatefulStoreUpdater, type TActionBehavior, type TActionSource, 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 TAttribute, type TBasicAction, type TBehavior, type TCallback, type TCell, type TColumn, type TDateFormat, type TDispatchCallback, type TDownloadUrlOptions, type TFieldEvent, type TFieldScriptEvent, type TFieldScriptEvents, type TFieldServerEvent, type TFieldServerEvents, type TFilter, type TFncParams, type TFocusRetriever, type THistoryCount, type THistoryStep, type THistoryStepChange, type TId, type TKey, type TLoadStructure, type TMap$1 as TMap, type TMessage, type TModify, type TNotificationMessage, type TOption, type TPropsComparator, type TPropsConfiguration, type TPropsSelector, type TRefresh, type TRequireOnlyOne, type TRow, type TShortcutBranch, type TState, type TStateIcon, type TUpdateFieldConfiguration, type TWithAlignment, type TWithAttributes, type TWithOptions, type TWithStylesModifiers, type Task, TasksQueue, type ThrottleOptions, type UnSubscriber, Url, addBoundary, alignment, animate, apiaDateToStandarFormat, arrayOrArray, autoDisconnectMutationObserver, awaitTime, cantFocusSelector, cloneDeep, customEvents, dateToApiaFormat, debugDispatcher, decodeBase64ToUtf8, decodeHTMLEntities, decrypt, deepEqual, defaultGetNameFromResponse, disableChildrenFocus, downloadStringAsDoc, downloadUrl, enableChildrenFocus, encodeStrToBase64Utf8, encrypt, findOffsetRelativeToScrollParent, findScrollContainer, focus, focusSelector, formatMessage, freezeDeep, getDateFormat, getFocusSelector, getIndex, getJSObjFromXML, getLabel, getSpecificParent, getValueByPath, globalFocus, globals, isChild, isDebugDispatcherEnabled, isFocusable, isPropsConfigurationObject, isSetter, isTrue, makeImperativeComponent, makeSingleImperativeComponent, makeStatefulStore, noNaN, notificationsSelector, openAndReadFile, openAndReadFiles, parseAsSize, parseXMLRequestResponse, parseXmlAsync, persistentStorage, postNavigation, propsStore, screenLocker, scrollParentIntoElement, setValueByPath, shallowCompareArrays, shallowEqual, shortcutController, toBoolean, ucfirst, uniqueId, useCombinedRefs, useDebouncedCallback, useDebouncedState, useDomState, useImperativeComponentContext, useImperativeComponentEvents, useIntermediateValue, useLatest, useLocalStorage, useMatchScrollDirection, useMount, useMountTransition, usePanAndZoom, usePrevious, usePropsSelector, useShallowMemo, useStateRef, useSubscription, useUnmount, useUpdateEffect, useWhyUpdated };
|
|
2079
2104
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -2505,8 +2505,8 @@ function getLabel(name, replaceTokens, outerWindow) {
|
|
|
2505
2505
|
const actualWindow = outerWindow ?? window;
|
|
2506
2506
|
const label = {
|
|
2507
2507
|
...actualWindow.labels[name] ?? {
|
|
2508
|
-
text:
|
|
2509
|
-
title:
|
|
2508
|
+
text: `${name}`,
|
|
2509
|
+
title: `${name}`
|
|
2510
2510
|
}
|
|
2511
2511
|
};
|
|
2512
2512
|
if (replaceTokens?.text !== void 0)
|