@gisce/react-ooui 2.22.0-rc.3 → 2.22.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/dist/context/ActionViewContext.d.ts +29 -26
- package/dist/context/ActionViewContext.d.ts.map +1 -1
- package/dist/helpers/o2m-columnStorageHelper.d.ts +10 -0
- package/dist/helpers/o2m-columnStorageHelper.d.ts.map +1 -0
- package/dist/helpers/tree-columnStorageHelper.d.ts +6 -0
- package/dist/helpers/tree-columnStorageHelper.d.ts.map +1 -0
- package/dist/helpers/treeHelper.d.ts +4 -1
- package/dist/helpers/treeHelper.d.ts.map +1 -1
- package/dist/hooks/useAvailableHeight.d.ts +7 -0
- package/dist/hooks/useAvailableHeight.d.ts.map +1 -0
- package/dist/hooks/useEffectDebugger.d.ts.map +1 -1
- package/dist/hooks/useFetchTreeViews.d.ts +13 -0
- package/dist/hooks/useFetchTreeViews.d.ts.map +1 -0
- package/dist/hooks/usePrevious.d.ts +2 -0
- package/dist/hooks/usePrevious.d.ts.map +1 -0
- package/dist/locales/ca_ES.d.ts +3 -0
- package/dist/locales/ca_ES.d.ts.map +1 -1
- package/dist/locales/en_US.d.ts +3 -0
- package/dist/locales/en_US.d.ts.map +1 -1
- package/dist/locales/es_ES.d.ts +3 -0
- package/dist/locales/es_ES.d.ts.map +1 -1
- package/dist/react-ooui.es.js +7337 -5787
- package/dist/react-ooui.es.js.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/ui/FloatingDrawer.d.ts +11 -0
- package/dist/ui/FloatingDrawer.d.ts.map +1 -0
- package/dist/ui/GenericErrorDialog.d.ts +1 -0
- package/dist/ui/GenericErrorDialog.d.ts.map +1 -1
- package/dist/ui/TitleHeader.d.ts +1 -0
- package/dist/ui/TitleHeader.d.ts.map +1 -1
- package/dist/views/actionViews/TreeActionView.d.ts.map +1 -1
- package/dist/widgets/base/one2many/AggregatesFooter.d.ts +6 -0
- package/dist/widgets/base/one2many/AggregatesFooter.d.ts.map +1 -0
- package/dist/widgets/base/one2many/One2manyInputInfinite.d.ts.map +1 -1
- package/dist/widgets/base/one2many/One2manyTree.d.ts +4 -9
- package/dist/widgets/base/one2many/One2manyTree.d.ts.map +1 -1
- package/dist/widgets/base/one2many/useOne2manyTree.d.ts +5 -5
- package/dist/widgets/base/one2many/useOne2manyTree.d.ts.map +1 -1
- package/dist/widgets/base/one2many/useOne2manyTreeAggregates.d.ts +1 -2
- package/dist/widgets/base/one2many/useOne2manyTreeAggregates.d.ts.map +1 -1
- package/dist/widgets/base/one2many/useTreeAggregates.d.ts +5 -4
- package/dist/widgets/base/one2many/useTreeAggregates.d.ts.map +1 -1
- package/dist/widgets/base/one2many/useTreeColumnLocalStorage.d.ts +6 -0
- package/dist/widgets/base/one2many/useTreeColumnLocalStorage.d.ts.map +1 -0
- package/dist/widgets/base/one2many/useTreeColumnRemoteStorage.d.ts +6 -0
- package/dist/widgets/base/one2many/useTreeColumnRemoteStorage.d.ts.map +1 -0
- package/dist/widgets/base/one2many/useTreeColumnStorage.d.ts +6 -0
- package/dist/widgets/base/one2many/useTreeColumnStorage.d.ts.map +1 -0
- package/dist/widgets/base/one2many/useTreeColumnStorageFetch.d.ts +7 -0
- package/dist/widgets/base/one2many/useTreeColumnStorageFetch.d.ts.map +1 -0
- package/dist/widgets/views/SearchTreeHeader.d.ts +7 -0
- package/dist/widgets/views/SearchTreeHeader.d.ts.map +1 -0
- package/dist/widgets/views/SearchTreeInfinite.d.ts +26 -0
- package/dist/widgets/views/SearchTreeInfinite.d.ts.map +1 -0
- package/dist/widgets/views/searchFilter/DateRangePicker.d.ts.map +1 -1
- package/dist/widgets/views/searchFilter/PairFields.d.ts.map +1 -1
- package/dist/widgets/views/searchFilter/SideSearchFilter.d.ts +30 -0
- package/dist/widgets/views/searchFilter/SideSearchFilter.d.ts.map +1 -0
- package/package.json +5 -3
- package/dist/widgets/base/one2many/One2manyFooter.d.ts +0 -5
- package/dist/widgets/base/one2many/One2manyFooter.d.ts.map +0 -1
- package/dist/widgets/base/one2many/useOne2manyColumnLocalStorage.d.ts +0 -10
- package/dist/widgets/base/one2many/useOne2manyColumnLocalStorage.d.ts.map +0 -1
- package/dist/widgets/base/one2many/useOne2manyColumnRemoteStorage.d.ts +0 -10
- package/dist/widgets/base/one2many/useOne2manyColumnRemoteStorage.d.ts.map +0 -1
- package/dist/widgets/base/one2many/useOne2manyColumnStorage.d.ts +0 -11
- package/dist/widgets/base/one2many/useOne2manyColumnStorage.d.ts.map +0 -1
- package/dist/widgets/base/one2many/useOne2manyColumnStorageFetch.d.ts +0 -11
- package/dist/widgets/base/one2many/useOne2manyColumnStorageFetch.d.ts.map +0 -1
|
@@ -1,10 +1,34 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { View } from '../*/types';
|
|
3
|
-
|
|
3
|
+
type ActionViewProviderProps = {
|
|
4
4
|
title: string;
|
|
5
|
-
availableViews: View[];
|
|
6
5
|
currentView: View;
|
|
7
6
|
setCurrentView: (view: View) => void;
|
|
7
|
+
availableViews: View[];
|
|
8
|
+
formRef: any;
|
|
9
|
+
searchTreeRef: any;
|
|
10
|
+
onNewClicked: () => void;
|
|
11
|
+
currentId?: number;
|
|
12
|
+
setCurrentId: (id?: number) => void;
|
|
13
|
+
setCurrentItemIndex: (value?: number) => void;
|
|
14
|
+
currentItemIndex?: number;
|
|
15
|
+
results?: any[];
|
|
16
|
+
setResults: (value: any[]) => void;
|
|
17
|
+
currentModel: string;
|
|
18
|
+
sorter: any;
|
|
19
|
+
setSorter: (sorter: any) => void;
|
|
20
|
+
totalItems: number;
|
|
21
|
+
setTotalItems: (totalItems: number) => void;
|
|
22
|
+
selectedRowItems?: any[];
|
|
23
|
+
setSelectedRowItems: (value: any[]) => void;
|
|
24
|
+
setSearchTreeNameSearch: (searchString?: string) => void;
|
|
25
|
+
searchTreeNameSearch?: string;
|
|
26
|
+
goToResourceId: (ids: number[], openInSameTab?: boolean) => Promise<void>;
|
|
27
|
+
limit?: number;
|
|
28
|
+
isActive: boolean;
|
|
29
|
+
children: React.ReactNode;
|
|
30
|
+
};
|
|
31
|
+
export type ActionViewContextType = Omit<ActionViewProviderProps, "children"> & {
|
|
8
32
|
formIsSaving?: boolean;
|
|
9
33
|
setFormIsSaving?: (value: boolean) => void;
|
|
10
34
|
formHasChanges?: boolean;
|
|
@@ -13,16 +37,6 @@ export type ActionViewContextType = {
|
|
|
13
37
|
succeed: boolean;
|
|
14
38
|
id: number;
|
|
15
39
|
}>;
|
|
16
|
-
formRef?: any;
|
|
17
|
-
searchTreeRef?: any;
|
|
18
|
-
onNewClicked: () => void;
|
|
19
|
-
currentId?: number;
|
|
20
|
-
setCurrentId?: (id?: number) => void;
|
|
21
|
-
currentItemIndex?: number;
|
|
22
|
-
setCurrentItemIndex?: (value?: number) => void;
|
|
23
|
-
results?: any[];
|
|
24
|
-
setResults?: (value: any[]) => void;
|
|
25
|
-
currentModel?: string;
|
|
26
40
|
removingItem?: boolean;
|
|
27
41
|
setRemovingItem?: (value: boolean) => void;
|
|
28
42
|
formIsLoading?: boolean;
|
|
@@ -33,34 +47,23 @@ export type ActionViewContextType = {
|
|
|
33
47
|
setGraphIsLoading?: (value: boolean) => void;
|
|
34
48
|
attachments?: any;
|
|
35
49
|
setAttachments?: (value: any) => void;
|
|
36
|
-
selectedRowItems?: any[];
|
|
37
|
-
setSelectedRowItems?: (value: any[]) => void;
|
|
38
50
|
duplicatingItem?: boolean;
|
|
39
51
|
setDuplicatingItem?: (value: boolean) => void;
|
|
40
52
|
searchParams?: any[];
|
|
41
53
|
setSearchParams?: (value: any[]) => void;
|
|
42
54
|
searchVisible?: boolean;
|
|
43
55
|
setSearchVisible?: (value: boolean) => void;
|
|
44
|
-
sorter: any;
|
|
45
|
-
setSorter: (sorter: any) => void;
|
|
46
|
-
totalItems: number;
|
|
47
|
-
setTotalItems: (totalItems: number) => void;
|
|
48
|
-
searchTreeNameSearch?: string;
|
|
49
|
-
setSearchTreeNameSearch?: (searchString?: string) => void;
|
|
50
56
|
previousView?: View;
|
|
51
57
|
setPreviousView?: (view: View) => void;
|
|
52
|
-
goToResourceId?: (ids: number[], openInSameTab?: boolean) => Promise<void>;
|
|
53
58
|
searchValues?: any;
|
|
54
59
|
setSearchValues?: (value: any) => void;
|
|
55
|
-
limit?: number;
|
|
56
60
|
setLimit?: (value: number) => void;
|
|
57
61
|
setTitle?: (value: string) => void;
|
|
58
|
-
|
|
62
|
+
treeFirstVisibleRow: number;
|
|
63
|
+
setTreeFirstVisibleRow: (totalItems: number) => void;
|
|
59
64
|
};
|
|
60
65
|
export declare const ActionViewContext: import("react").Context<ActionViewContextType | null>;
|
|
61
|
-
type ActionViewProviderProps = ActionViewContextType & {
|
|
62
|
-
children: React.ReactNode;
|
|
63
|
-
};
|
|
64
66
|
declare const ActionViewProvider: (props: ActionViewProviderProps) => any;
|
|
67
|
+
export declare const useActionViewContext: (isRoot: boolean) => ActionViewContextType;
|
|
65
68
|
export default ActionViewProvider;
|
|
66
69
|
//# sourceMappingURL=ActionViewContext.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ActionViewContext.d.ts","sourceRoot":"","sources":["../../src/context/ActionViewContext.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAG/B,
|
|
1
|
+
{"version":3,"file":"ActionViewContext.d.ts","sourceRoot":"","sources":["../../src/context/ActionViewContext.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type One2manyTreeDataForHash = {
|
|
2
|
+
parentViewId?: number;
|
|
3
|
+
treeViewId?: number;
|
|
4
|
+
one2ManyFieldName: string;
|
|
5
|
+
};
|
|
6
|
+
export type O2mDataForHashWithModel = One2manyTreeDataForHash & {
|
|
7
|
+
model: string;
|
|
8
|
+
};
|
|
9
|
+
export declare const getKey: (dataForHash: O2mDataForHashWithModel) => string;
|
|
10
|
+
//# sourceMappingURL=o2m-columnStorageHelper.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"o2m-columnStorageHelper.d.ts","sourceRoot":"","sources":["../../src/helpers/o2m-columnStorageHelper.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,uBAAuB,GAAG;IACpC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG,uBAAuB,GAAG;IAC9D,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,eAAO,MAAM,MAAM,gBAAiB,uBAAuB,WAE1D,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tree-columnStorageHelper.d.ts","sourceRoot":"","sources":["../../src/helpers/tree-columnStorageHelper.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,eAAe,GAAG;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,eAAO,MAAM,MAAM,gBAAiB,eAAe,uBAKlD,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Tree as TreeOoui } from "@gisce/ooui";
|
|
2
2
|
import { TreeView, Column } from '../*/types';
|
|
3
|
+
import { SortDirection } from "@gisce/react-formiga-table";
|
|
3
4
|
declare const getTree: (treeView: TreeView) => TreeOoui;
|
|
4
5
|
declare const getTableColumns: (tree: TreeOoui, components: any, context: any) => Column[];
|
|
5
6
|
declare const getTableItems: (treeOoui: TreeOoui, results: any[]) => any[];
|
|
@@ -19,5 +20,7 @@ declare function sortResults({ resultsToSort, sorter, fields, }: {
|
|
|
19
20
|
fields: any;
|
|
20
21
|
}): any[];
|
|
21
22
|
declare function hasActualValues(obj: Record<string, any>): boolean;
|
|
22
|
-
|
|
23
|
+
declare const getOrderFromSortFields: (sortFields?: Record<string, SortDirection>) => string | undefined;
|
|
24
|
+
declare function extractTreeXmlAttribute(archString: string, attributeName: string): string | null;
|
|
25
|
+
export { getTableColumns, getTableItems, getTree, convertBooleansToNumeric, itemHasBooleans, getColorMap, getStatusMap, sortResults, hasActualValues, getOrderFromSortFields, extractTreeXmlAttribute, };
|
|
23
26
|
//# sourceMappingURL=treeHelper.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"treeHelper.d.ts","sourceRoot":"","sources":["../../src/helpers/treeHelper.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,IAAI,IAAI,QAAQ,EAKjB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"treeHelper.d.ts","sourceRoot":"","sources":["../../src/helpers/treeHelper.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,IAAI,IAAI,QAAQ,EAKjB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AAC3C,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAE3D,QAAA,MAAM,OAAO,aAAc,QAAQ,KAAG,QAMrC,CAAC;AAaF,QAAA,MAAM,eAAe,SACb,QAAQ,cACF,GAAG,WACN,GAAG,KACX,MAAM,EAmDR,CAAC;AAEF,QAAA,MAAM,aAAa,aAAc,QAAQ,WAAW,GAAG,EAAE,KAAG,GAAG,EAkC9D,CAAC;AAEF,iBAAS,eAAe,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE;IAAE,MAAM,EAAE,GAAG,CAAC;IAAC,MAAM,EAAE,GAAG,CAAA;CAAE,WAOxE;AAED,iBAAS,wBAAwB,CAAC,EAChC,MAAM,EACN,MAAM,GACP,EAAE;IACD,MAAM,EAAE,GAAG,CAAC;IACZ,MAAM,EAAE,GAAG,CAAC;CACb,OAWA;AAED,iBAAS,WAAW,CAAC,WAAW,EAAE,GAAG,OAEpC;AAED,iBAAS,YAAY,CAAC,MAAM,EAAE,GAAG,OAEhC;AAaD,iBAAS,WAAW,CAAC,EACnB,aAAa,EACb,MAAM,EACN,MAAM,GACP,EAAE;IACD,aAAa,EAAE,GAAG,EAAE,CAAC;IACrB,MAAM,EAAE,GAAG,CAAC;IACZ,MAAM,EAAE,GAAG,CAAC;CACb,SA+BA;AAED,iBAAS,eAAe,CAAC,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,OAAO,CAS1D;AAED,QAAA,MAAM,sBAAsB,gBAAiB,OAAO,MAAM,EAAE,aAAa,CAAC,uBAUzE,CAAC;AAEF,iBAAS,uBAAuB,CAC9B,UAAU,EAAE,MAAM,EAClB,aAAa,EAAE,MAAM,GACpB,MAAM,GAAG,IAAI,CASf;AAED,OAAO,EACL,eAAe,EACf,aAAa,EACb,OAAO,EACP,wBAAwB,EACxB,eAAe,EACf,WAAW,EACX,YAAY,EACZ,WAAW,EACX,eAAe,EACf,sBAAsB,EACtB,uBAAuB,GACxB,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React, { RefObject } from "react";
|
|
2
|
+
export declare const useAvailableHeight: <T extends HTMLElement>({ elementRef, offset, dependencies, }: {
|
|
3
|
+
elementRef: React.RefObject<T>;
|
|
4
|
+
offset?: number | undefined;
|
|
5
|
+
dependencies?: React.DependencyList | undefined;
|
|
6
|
+
}) => number;
|
|
7
|
+
//# sourceMappingURL=useAvailableHeight.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useAvailableHeight.d.ts","sourceRoot":"","sources":["../../src/hooks/useAvailableHeight.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAuB,SAAS,EAAW,MAAM,OAAO,CAAC;AAEvE,eAAO,MAAM,kBAAkB;;;;MAQ3B,MAuBH,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useEffectDebugger.d.ts","sourceRoot":"","sources":["../../src/hooks/useEffectDebugger.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useEffectDebugger.d.ts","sourceRoot":"","sources":["../../src/hooks/useEffectDebugger.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,iBAAiB,eACT,GAAG,gBACD,GAAG,oCA6BlB,CAAC;AAEF,OAAO,EAAE,iBAAiB,EAAE,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { FormView, TreeView } from "..";
|
|
2
|
+
export type UseFetchTreeViewsOpts = {
|
|
3
|
+
model: string;
|
|
4
|
+
formViewProps?: FormView;
|
|
5
|
+
treeViewProps?: TreeView;
|
|
6
|
+
context?: any;
|
|
7
|
+
};
|
|
8
|
+
export declare const useFetchTreeViews: ({ model, formViewProps, treeViewProps, context, }: UseFetchTreeViewsOpts) => {
|
|
9
|
+
loading: boolean;
|
|
10
|
+
treeView: TreeView | undefined;
|
|
11
|
+
formView: FormView | undefined;
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=useFetchTreeViews.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useFetchTreeViews.d.ts","sourceRoot":"","sources":["../../src/hooks/useFetchTreeViews.ts"],"names":[],"mappings":"AACA,OAAO,EAAsB,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,CAAC;AAK5D,MAAM,MAAM,qBAAqB,GAAG;IAClC,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,CAAC,EAAE,QAAQ,CAAC;IACzB,aAAa,CAAC,EAAE,QAAQ,CAAC;IACzB,OAAO,CAAC,EAAE,GAAG,CAAC;CACf,CAAC;AAEF,eAAO,MAAM,iBAAiB,sDAK3B,qBAAqB;;;;CAgDvB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"usePrevious.d.ts","sourceRoot":"","sources":["../../src/hooks/usePrevious.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW,UAAW,GAAG,iBAAiB,GAAG,QAMzD,CAAC"}
|
package/dist/locales/ca_ES.d.ts
CHANGED
|
@@ -93,6 +93,9 @@ declare const _default: {
|
|
|
93
93
|
openInSameWindow: string;
|
|
94
94
|
openInNewTab: string;
|
|
95
95
|
confirmDuplicate: string;
|
|
96
|
+
confirmSelectAllRegisters: string;
|
|
97
|
+
filter: string;
|
|
98
|
+
applyFilters: string;
|
|
96
99
|
};
|
|
97
100
|
export default _default;
|
|
98
101
|
//# sourceMappingURL=ca_ES.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ca_ES.d.ts","sourceRoot":"","sources":["../../src/locales/ca_ES.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ca_ES.d.ts","sourceRoot":"","sources":["../../src/locales/ca_ES.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA2GE"}
|
package/dist/locales/en_US.d.ts
CHANGED
|
@@ -93,6 +93,9 @@ declare const _default: {
|
|
|
93
93
|
openInSameWindow: string;
|
|
94
94
|
openInNewTab: string;
|
|
95
95
|
confirmDuplicate: string;
|
|
96
|
+
confirmSelectAllRegisters: string;
|
|
97
|
+
filter: string;
|
|
98
|
+
applyFilters: string;
|
|
96
99
|
};
|
|
97
100
|
export default _default;
|
|
98
101
|
//# sourceMappingURL=en_US.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en_US.d.ts","sourceRoot":"","sources":["../../src/locales/en_US.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"en_US.d.ts","sourceRoot":"","sources":["../../src/locales/en_US.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAuGE"}
|
package/dist/locales/es_ES.d.ts
CHANGED
|
@@ -93,6 +93,9 @@ declare const _default: {
|
|
|
93
93
|
openInSameWindow: string;
|
|
94
94
|
openInNewTab: string;
|
|
95
95
|
confirmDuplicate: string;
|
|
96
|
+
confirmSelectAllRegisters: string;
|
|
97
|
+
filter: string;
|
|
98
|
+
applyFilters: string;
|
|
96
99
|
};
|
|
97
100
|
export default _default;
|
|
98
101
|
//# sourceMappingURL=es_ES.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es_ES.d.ts","sourceRoot":"","sources":["../../src/locales/es_ES.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"es_ES.d.ts","sourceRoot":"","sources":["../../src/locales/es_ES.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA6GE"}
|