admins-components 1.2.6 → 1.2.7
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.
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
colCount: number;
|
|
3
|
+
options: TableToListColumnOptions[];
|
|
4
|
+
};
|
|
5
|
+
export interface TableToListColumnOptions {
|
|
6
|
+
label: string;
|
|
7
|
+
property: string;
|
|
8
|
+
checked: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11
|
+
save: (items: TableToListColumnOptions[]) => any;
|
|
12
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
onSave?: ((items: TableToListColumnOptions[]) => any) | undefined;
|
|
14
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
15
|
+
export default _default;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
2
|
import { default as CheckBox } from './components/CheckBox.vue';
|
|
3
|
-
import { default as CheckBoxList } from './components/CheckBoxList.vue';
|
|
4
|
-
import { default as DropDown } from './components/DropDown.vue';
|
|
5
|
-
import { default as DropDownCallBack } from './components/DropDownCallBack.vue';
|
|
6
|
-
import { default as DropDownMenu } from './components/DropDownMenu.vue';
|
|
3
|
+
import { default as CheckBoxList, CheckBoxListItem } from './components/CheckBoxList.vue';
|
|
4
|
+
import { default as DropDown, DropDownItem } from './components/DropDown.vue';
|
|
5
|
+
import { default as DropDownCallBack, DropDownCallBackItem } from './components/DropDownCallBack.vue';
|
|
6
|
+
import { default as DropDownMenu, DropDownMenuItem } from './components/DropDownMenu.vue';
|
|
7
7
|
import { default as FilterCompact } from './components/FilterCompact.vue';
|
|
8
|
-
import { default as FilterControl } from './components/FilterControl.vue';
|
|
8
|
+
import { default as FilterControl, FilterDateFilter, IFilterItem } from './components/FilterControl.vue';
|
|
9
9
|
import { default as IconButton } from './components/IconButton.vue';
|
|
10
|
-
import { default as PaginatorControl } from './components/PaginatorControl.vue';
|
|
10
|
+
import { default as PaginatorControl, PaginatorSettings } from './components/PaginatorControl.vue';
|
|
11
11
|
import { default as RadioButton } from './components/RadioButton.vue';
|
|
12
|
-
import { default as RadioButtonGroup } from './components/RadioButtonGroup.vue';
|
|
12
|
+
import { default as RadioButtonGroup, RadioButtonGroupItem } from './components/RadioButtonGroup.vue';
|
|
13
13
|
import { default as SpinningProgress } from './components/SpinningProgress.vue';
|
|
14
|
-
import { default as TableToList } from './components/TableToList.vue';
|
|
15
|
-
import { default as TextListBox } from './components/TextListBox.vue';
|
|
16
|
-
import { default as ToastComponent } from './components/ToastComponent.vue';
|
|
14
|
+
import { default as TableToList, Action, Column, Sort, TableToListConfig } from './components/TableToList.vue';
|
|
15
|
+
import { default as TextListBox, TextListBoxItem } from './components/TextListBox.vue';
|
|
16
|
+
import { default as ToastComponent, Toast } from './components/ToastComponent.vue';
|
|
17
17
|
import { default as ToastWrapper } from './components/ToastWrapper.vue';
|
|
18
|
-
|
|
18
|
+
import { TableToListColumnOptions } from './components/TableToListOptions.vue';
|
|
19
|
+
declare const _default: {
|
|
19
20
|
install(app: App): void;
|
|
20
21
|
};
|
|
21
|
-
export
|
|
22
|
-
export
|
|
22
|
+
export default _default;
|
|
23
|
+
export { CheckBox, CheckBoxList, DropDown, DropDownMenu, DropDownCallBack, FilterCompact, FilterControl, IconButton, PaginatorControl, RadioButton, RadioButtonGroup, SpinningProgress, TableToList, TextListBox, ToastComponent, ToastWrapper };
|
|
24
|
+
export { CheckBoxListItem, DropDownItem, DropDownCallBackItem, DropDownMenuItem, FilterDateFilter, IFilterItem, PaginatorSettings, RadioButtonGroupItem, TableToListConfig, Column, Sort, Action, TableToListColumnOptions, TextListBoxItem, Toast };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "admins-components",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -10,12 +10,11 @@
|
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
13
14
|
"import": "./dist/admins-components.js",
|
|
14
15
|
"require": "./dist/admins-components.umd.cjs",
|
|
15
|
-
"types": "./dist/index.d.ts",
|
|
16
16
|
"default": "./dist/admins-components.js"
|
|
17
|
-
}
|
|
18
|
-
"./style.css": "./dist/style.css"
|
|
17
|
+
}
|
|
19
18
|
},
|
|
20
19
|
"scripts": {
|
|
21
20
|
"dev": "vite",
|