@sankhyalabs/ezui 6.5.0-dev.2 → 6.5.0-dev.4
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/ez-grid.cjs.entry.js +9 -0
- package/dist/cjs/ezui.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/ez-grid/ez-grid.js +22 -0
- package/dist/collection/components/ez-grid/utils/InMemoryFilterColumnDataSource.js +3 -0
- package/dist/custom-elements/index.js +9 -0
- package/dist/esm/ez-grid.entry.js +9 -0
- package/dist/esm/ezui.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/{p-5e1c1c64.entry.js → p-18e383c1.entry.js} +1 -1
- package/dist/types/components/ez-grid/ez-grid.d.ts +1 -0
- package/dist/types/components/ez-grid/utils/InMemoryFilterColumnDataSource.d.ts +1 -0
- package/dist/types/components/ez-multi-selection-list/interfaces/IMultiSelectionListDataSource.d.ts +1 -0
- package/dist/types/components.d.ts +1 -0
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export default class InMemoryFilterColumnDataSource implements IMultiSelectionLi
|
|
|
7
7
|
private lastAppliedFilters;
|
|
8
8
|
private readonly FILTER_COLUMN_TERM;
|
|
9
9
|
constructor(dataUnit: DataUnit);
|
|
10
|
+
refresh(): void;
|
|
10
11
|
onDataUnitAction: (action: any) => void;
|
|
11
12
|
private getAppliedFilterNames;
|
|
12
13
|
getStaticOptions(fieldName: string): Promise<Array<IMultiSelectionOption>>;
|
package/dist/types/components/ez-multi-selection-list/interfaces/IMultiSelectionListDataSource.d.ts
CHANGED
|
@@ -4,4 +4,5 @@ export interface IMultiSelectionListDataSource {
|
|
|
4
4
|
getStaticOptions: (fieldName: string, options?: IStaticOptionsFetchConfig) => Promise<IMultiSelectionOption[] | undefined>;
|
|
5
5
|
fetchData: (filterTerm: string, fieldName: string) => Promise<IMultiSelectionOption[]>;
|
|
6
6
|
sortItems: (fieldName: string, items: IMultiSelectionOption[]) => IMultiSelectionOption[];
|
|
7
|
+
refresh?: () => void;
|
|
7
8
|
}
|
|
@@ -1417,6 +1417,7 @@ export namespace Components {
|
|
|
1417
1417
|
* Define um validador responsável pela integridade dos registros.
|
|
1418
1418
|
*/
|
|
1419
1419
|
"recordsValidator": IRecordValidator;
|
|
1420
|
+
"refreshColumnFilterDataSource": () => Promise<void>;
|
|
1420
1421
|
/**
|
|
1421
1422
|
* Atualiza linhas da grade.
|
|
1422
1423
|
*/
|