admins-components 1.2.15 → 1.2.16
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/src/index.d.ts
CHANGED
|
@@ -16,9 +16,10 @@ import { default as TableToListOptions, TableToListColumnOptions } from './compo
|
|
|
16
16
|
import { default as TextListBox, TextListBoxItem } from './components/TextListBox.vue';
|
|
17
17
|
import { default as ToastComponent, Toast } from './components/ToastComponent.vue';
|
|
18
18
|
import { default as ToastWrapper } from './components/ToastWrapper.vue';
|
|
19
|
+
import { TabelToListOptionsPersister } from './utils/TableToListColumnOptionsPersister';
|
|
19
20
|
declare const _default: {
|
|
20
21
|
install(app: App): void;
|
|
21
22
|
};
|
|
22
23
|
export default _default;
|
|
23
24
|
export { CheckBox, CheckBoxList, DropDown, DropDownMenu, DropDownCallBack, FilterCompact, FilterControl, IconButton, PaginatorControl, RadioButton, RadioButtonGroup, SpinningProgress, TableToList, TableToListOptions, TextListBox, ToastComponent, ToastWrapper };
|
|
24
|
-
export { CheckBoxListItem, DropDownItem, DropDownCallBackItem, DropDownMenuItem, FilterDateFilter, IFilterItem, PaginatorSettings, RadioButtonGroupItem, TableToListConfig, Column, Sort, Action, TableToListColumnOptions, TextListBoxItem, Toast, FilterText, FilterDropDown, FilterDate };
|
|
25
|
+
export { CheckBoxListItem, DropDownItem, DropDownCallBackItem, DropDownMenuItem, FilterDateFilter, IFilterItem, PaginatorSettings, RadioButtonGroupItem, TableToListConfig, Column, Sort, Action, TableToListColumnOptions, TextListBoxItem, Toast, FilterText, FilterDropDown, FilterDate, TabelToListOptionsPersister };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
import { TableToListConfig } from '../components/TableToList.vue';
|
|
3
|
+
import { TableToListColumnOptions } from '../components/TableToListOptions.vue';
|
|
4
|
+
export declare class TabelToListOptionsPersister {
|
|
5
|
+
static getId: (base: string, version: string) => string;
|
|
6
|
+
static saveOptions: (base: string, ttlcos: TableToListColumnOptions[]) => void;
|
|
7
|
+
static cleanOptions: (base: string, version: string) => void;
|
|
8
|
+
static loadOptions: (base: string, version: string, t2lconfig: TableToListConfig, options: Ref<TableToListColumnOptions[] | null>) => void;
|
|
9
|
+
}
|