admins-components 5.11.3 → 6.0.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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
2
|
import { DropDownItem } from './DropDown.vue';
|
|
3
|
+
import { Site } from '../utils';
|
|
3
4
|
export interface IFilterItem {
|
|
4
5
|
type: "text" | "date" | "dropdown" | "dropdowncheckbox" | "siteidselector";
|
|
5
6
|
key: string;
|
|
@@ -39,8 +40,9 @@ export declare class FilterSiteIdSelector implements IFilterItem {
|
|
|
39
40
|
key: string;
|
|
40
41
|
entityType: string;
|
|
41
42
|
label: string;
|
|
43
|
+
sites: Site[];
|
|
42
44
|
filtered: (key: string, value: string[]) => any;
|
|
43
|
-
constructor(key: string, entityType: string, label: string, filtered: (key: string, value: string[]) => any);
|
|
45
|
+
constructor(key: string, entityType: string, label: string, sites: Site[], filtered: (key: string, value: string[]) => any);
|
|
44
46
|
type: "siteidselector";
|
|
45
47
|
}
|
|
46
48
|
export declare class FilterDate implements IFilterItem {
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { Site } from '../utils/articleEditorService';
|
|
1
2
|
type __VLS_Props = {
|
|
2
3
|
entityType: string;
|
|
3
4
|
label: string;
|
|
5
|
+
sites: Site[];
|
|
4
6
|
};
|
|
5
7
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
6
8
|
selected: (siteIds: string[]) => any;
|
|
@@ -6,5 +6,7 @@ export interface Item {
|
|
|
6
6
|
deletedAt: string;
|
|
7
7
|
siteId: string;
|
|
8
8
|
}
|
|
9
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
9
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
10
|
+
t2ldialog: HTMLDialogElement;
|
|
11
|
+
}, any>;
|
|
10
12
|
export default _default;
|