admins-components 1.2.4 → 1.2.6
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/index.d.ts +5 -0
- package/dist/src/components/CheckBox.vue.d.ts +17 -0
- package/dist/src/components/CheckBoxList.vue.d.ts +12 -0
- package/dist/src/components/DropDown.vue.d.ts +38 -0
- package/dist/src/components/DropDownCallBack.vue.d.ts +19 -0
- package/dist/src/components/DropDownMenu.vue.d.ts +18 -0
- package/dist/src/components/FilterCompact.vue.d.ts +14 -0
- package/dist/{FilterControl.d.ts → src/components/FilterControl.vue.d.ts} +6 -2
- package/dist/src/components/IconButton.vue.d.ts +11 -0
- package/dist/src/components/PaginatorControl.vue.d.ts +18 -0
- package/dist/src/components/RadioButton.vue.d.ts +12 -0
- package/dist/src/components/RadioButtonGroup.vue.d.ts +15 -0
- package/dist/src/components/SpinningProgress.vue.d.ts +5 -0
- package/dist/{TableToList.d.ts → src/components/TableToList.vue.d.ts} +15 -3
- package/dist/src/components/TextListBox.vue.d.ts +16 -0
- package/dist/src/components/ToastComponent.vue.d.ts +14 -0
- package/dist/src/components/ToastWrapper.vue.d.ts +19 -0
- package/dist/src/index.d.ts +22 -0
- package/package.json +8 -4
- package/dist/CheckBox.d.ts +0 -2
- package/dist/CheckBoxList.d.ts +0 -8
- package/dist/DropDown.d.ts +0 -7
- package/dist/DropDownCallBack.d.ts +0 -8
- package/dist/DropDownMenu.d.ts +0 -7
- package/dist/FilterCompact.d.ts +0 -6
- package/dist/IconButton.d.ts +0 -2
- package/dist/PaginatorControl.d.ts +0 -8
- package/dist/RadioButton.d.ts +0 -2
- package/dist/RadioButtonGroup.d.ts +0 -7
- package/dist/SpinningProgress.d.ts +0 -2
- package/dist/TextListBox.d.ts +0 -9
- package/dist/ToastComponent.d.ts +0 -9
- package/dist/ToastWrapper.d.ts +0 -2
- /package/dist/{admins-components.cjs.js → admins-components.cjs} +0 -0
- /package/dist/{admins-components.es.js → admins-components.js} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
id: string;
|
|
3
|
+
label: string;
|
|
4
|
+
checked: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
7
|
+
changed: (option: {
|
|
8
|
+
id: string;
|
|
9
|
+
checked: boolean;
|
|
10
|
+
}) => any;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
|
+
onChanged?: ((option: {
|
|
13
|
+
id: string;
|
|
14
|
+
checked: boolean;
|
|
15
|
+
}) => any) | undefined;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
17
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
items: CheckBoxListItem[];
|
|
3
|
+
callback: (id: string, checked: boolean) => any;
|
|
4
|
+
};
|
|
5
|
+
export interface CheckBoxListItem {
|
|
6
|
+
id: string;
|
|
7
|
+
label: string;
|
|
8
|
+
checked: boolean;
|
|
9
|
+
childrend: CheckBoxListItem[];
|
|
10
|
+
}
|
|
11
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
export default _default;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
export interface DropDownItem {
|
|
3
|
+
icon?: string;
|
|
4
|
+
label: string;
|
|
5
|
+
id: string;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import('vue').DefineComponent<{
|
|
8
|
+
id: string;
|
|
9
|
+
label: string;
|
|
10
|
+
selected?: string | undefined | null;
|
|
11
|
+
options: Ref<DropDownItem[]>;
|
|
12
|
+
opentop?: boolean;
|
|
13
|
+
disableFilter?: boolean;
|
|
14
|
+
storeselected?: boolean;
|
|
15
|
+
filterevent?: boolean;
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
18
|
+
selected: (option: DropDownItem) => any;
|
|
19
|
+
filtered: (filter: string) => any;
|
|
20
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
21
|
+
id: string;
|
|
22
|
+
label: string;
|
|
23
|
+
selected?: string | undefined | null;
|
|
24
|
+
options: Ref<DropDownItem[]>;
|
|
25
|
+
opentop?: boolean;
|
|
26
|
+
disableFilter?: boolean;
|
|
27
|
+
storeselected?: boolean;
|
|
28
|
+
filterevent?: boolean;
|
|
29
|
+
disabled?: boolean;
|
|
30
|
+
}> & Readonly<{
|
|
31
|
+
onSelected?: ((option: DropDownItem) => any) | undefined;
|
|
32
|
+
onFiltered?: ((filter: string) => any) | undefined;
|
|
33
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
34
|
+
DropDownTriggerButton: HTMLButtonElement;
|
|
35
|
+
DropDownMenu: HTMLDivElement;
|
|
36
|
+
ddSearch: HTMLInputElement;
|
|
37
|
+
}, HTMLDivElement>;
|
|
38
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
id: string;
|
|
4
|
+
default: DropDownCallBackItem;
|
|
5
|
+
selected?: string;
|
|
6
|
+
enabled?: boolean;
|
|
7
|
+
options: Ref<DropDownCallBackItem[]>;
|
|
8
|
+
};
|
|
9
|
+
export interface DropDownCallBackItem {
|
|
10
|
+
icon?: string;
|
|
11
|
+
label: string;
|
|
12
|
+
value: string;
|
|
13
|
+
callback: (property: string) => any;
|
|
14
|
+
}
|
|
15
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
16
|
+
DropDownTriggerButton: HTMLButtonElement;
|
|
17
|
+
DropDownMenu: HTMLDivElement;
|
|
18
|
+
}, HTMLDivElement>;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
label?: string;
|
|
3
|
+
icon?: string;
|
|
4
|
+
options: DropDownMenuItem[];
|
|
5
|
+
item: any;
|
|
6
|
+
id: string;
|
|
7
|
+
right?: boolean;
|
|
8
|
+
};
|
|
9
|
+
export interface DropDownMenuItem {
|
|
10
|
+
icon: string;
|
|
11
|
+
label: string;
|
|
12
|
+
command: (item: any) => any;
|
|
13
|
+
}
|
|
14
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
15
|
+
DropDownTriggerButton: HTMLButtonElement;
|
|
16
|
+
DropDownMenu: HTMLDivElement;
|
|
17
|
+
}, HTMLDivElement>;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { FilterDate, FilterDropDown, FilterText } from './FilterControl.vue';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
items: {
|
|
4
|
+
filter: FilterDate | FilterDropDown | FilterText;
|
|
5
|
+
icon: string;
|
|
6
|
+
label: string;
|
|
7
|
+
}[];
|
|
8
|
+
};
|
|
9
|
+
export interface FilterDateFilter {
|
|
10
|
+
from: string;
|
|
11
|
+
untill: string;
|
|
12
|
+
}
|
|
13
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
|
+
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
|
-
import { DropDownItem } from './DropDown';
|
|
2
|
+
import { DropDownItem } from './DropDown.vue';
|
|
3
3
|
export interface IFilterItem {
|
|
4
4
|
type: "text" | "date" | "dropdown";
|
|
5
5
|
key: string;
|
|
@@ -36,5 +36,9 @@ export interface FilterDateFilter {
|
|
|
36
36
|
from: string;
|
|
37
37
|
untill: string;
|
|
38
38
|
}
|
|
39
|
-
declare const _default:
|
|
39
|
+
declare const _default: import('vue').DefineComponent<{
|
|
40
|
+
item: IFilterItem;
|
|
41
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
42
|
+
item: IFilterItem;
|
|
43
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
40
44
|
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
icon: string;
|
|
3
|
+
active?: boolean;
|
|
4
|
+
big?: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
7
|
+
click: () => any;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
+
onClick?: (() => any) | undefined;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
export interface PaginatorSettings {
|
|
3
|
+
total: number;
|
|
4
|
+
pagesize: number;
|
|
5
|
+
page: number;
|
|
6
|
+
sizes: number[];
|
|
7
|
+
}
|
|
8
|
+
type __VLS_Props = {
|
|
9
|
+
settings: Ref<PaginatorSettings>;
|
|
10
|
+
};
|
|
11
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
12
|
+
pagesize: (value: number) => any;
|
|
13
|
+
page: (value: number) => any;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
+
onPagesize?: ((value: number) => any) | undefined;
|
|
16
|
+
onPage?: ((value: number) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
group: string;
|
|
3
|
+
label: string;
|
|
4
|
+
id: any;
|
|
5
|
+
selected?: boolean;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
8
|
+
selected: (id: any) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
|
+
onSelected?: ((id: any) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
12
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface RadioButtonGroupItem {
|
|
2
|
+
label: string;
|
|
3
|
+
id: any;
|
|
4
|
+
selected?: boolean;
|
|
5
|
+
}
|
|
6
|
+
type __VLS_Props = {
|
|
7
|
+
group: string;
|
|
8
|
+
items: RadioButtonGroupItem[];
|
|
9
|
+
};
|
|
10
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11
|
+
selected: (id: any) => any;
|
|
12
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
onSelected?: ((id: any) => any) | undefined;
|
|
14
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
loading: boolean;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
|
-
import { IFilterItem } from './FilterControl';
|
|
3
|
-
import { PaginatorSettings } from './PaginatorControl';
|
|
2
|
+
import { IFilterItem } from './FilterControl.vue';
|
|
3
|
+
import { PaginatorSettings } from './PaginatorControl.vue';
|
|
4
4
|
export interface TableToListConfig {
|
|
5
5
|
selectableId?: string | undefined;
|
|
6
6
|
columns: Column[];
|
|
@@ -31,5 +31,17 @@ export interface Action {
|
|
|
31
31
|
enabled: (item: any) => boolean;
|
|
32
32
|
command: (item: any) => any;
|
|
33
33
|
}
|
|
34
|
-
declare const _default:
|
|
34
|
+
declare const _default: import('vue').DefineComponent<{
|
|
35
|
+
items: any[];
|
|
36
|
+
config: TableToListConfig;
|
|
37
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
38
|
+
pagesize: (value: number) => any;
|
|
39
|
+
page: (value: number) => any;
|
|
40
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
41
|
+
items: any[];
|
|
42
|
+
config: TableToListConfig;
|
|
43
|
+
}> & Readonly<{
|
|
44
|
+
onPagesize?: ((value: number) => any) | undefined;
|
|
45
|
+
onPage?: ((value: number) => any) | undefined;
|
|
46
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
35
47
|
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
items: TextListBoxItem[];
|
|
3
|
+
};
|
|
4
|
+
export interface TextListBoxItem {
|
|
5
|
+
id: string;
|
|
6
|
+
label: string;
|
|
7
|
+
hideDelete?: boolean;
|
|
8
|
+
showId?: boolean;
|
|
9
|
+
childrend: TextListBoxItem[] | undefined;
|
|
10
|
+
}
|
|
11
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
12
|
+
deleted: (id: string) => any;
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
|
+
onDeleted?: ((id: string) => any) | undefined;
|
|
15
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
defaultDisplayDuration: number;
|
|
3
|
+
};
|
|
4
|
+
export interface Toast {
|
|
5
|
+
title: string;
|
|
6
|
+
message: string;
|
|
7
|
+
type: "info" | "success" | "warning" | "error";
|
|
8
|
+
id?: Date;
|
|
9
|
+
displayDuration?: number;
|
|
10
|
+
}
|
|
11
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
12
|
+
addToast: (toast: Toast) => void;
|
|
13
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
2
|
+
toast: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3
|
+
defaultDisplayDuration: number;
|
|
4
|
+
}> & Readonly<{}>, {
|
|
5
|
+
addToast: (toast: import('./ToastComponent.vue').Toast) => void;
|
|
6
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
7
|
+
P: {};
|
|
8
|
+
B: {};
|
|
9
|
+
D: {};
|
|
10
|
+
C: {};
|
|
11
|
+
M: {};
|
|
12
|
+
Defaults: {};
|
|
13
|
+
}, Readonly<{
|
|
14
|
+
defaultDisplayDuration: number;
|
|
15
|
+
}> & Readonly<{}>, {
|
|
16
|
+
addToast: (toast: import('./ToastComponent.vue').Toast) => void;
|
|
17
|
+
}, {}, {}, {}, {}> | null;
|
|
18
|
+
}, any>;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { App } from 'vue';
|
|
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';
|
|
7
|
+
import { default as FilterCompact } from './components/FilterCompact.vue';
|
|
8
|
+
import { default as FilterControl } from './components/FilterControl.vue';
|
|
9
|
+
import { default as IconButton } from './components/IconButton.vue';
|
|
10
|
+
import { default as PaginatorControl } from './components/PaginatorControl.vue';
|
|
11
|
+
import { default as RadioButton } from './components/RadioButton.vue';
|
|
12
|
+
import { default as RadioButtonGroup } from './components/RadioButtonGroup.vue';
|
|
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';
|
|
17
|
+
import { default as ToastWrapper } from './components/ToastWrapper.vue';
|
|
18
|
+
declare const plugin: {
|
|
19
|
+
install(app: App): void;
|
|
20
|
+
};
|
|
21
|
+
export { CheckBox, CheckBoxList, DropDown, DropDownMenu, DropDownCallBack, FilterCompact, FilterControl, IconButton, PaginatorControl, RadioButton, RadioButtonGroup, SpinningProgress, TableToList, TextListBox, ToastComponent, ToastWrapper, };
|
|
22
|
+
export default plugin;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "admins-components",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -9,9 +9,13 @@
|
|
|
9
9
|
"module": "./dist/admins-components.js",
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
11
|
"exports": {
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/admins-components.js",
|
|
14
|
+
"require": "./dist/admins-components.umd.cjs",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"default": "./dist/admins-components.js"
|
|
17
|
+
},
|
|
18
|
+
"./style.css": "./dist/style.css"
|
|
15
19
|
},
|
|
16
20
|
"scripts": {
|
|
17
21
|
"dev": "vite",
|
package/dist/CheckBox.d.ts
DELETED
package/dist/CheckBoxList.d.ts
DELETED
package/dist/DropDown.d.ts
DELETED
package/dist/DropDownMenu.d.ts
DELETED
package/dist/FilterCompact.d.ts
DELETED
package/dist/IconButton.d.ts
DELETED
package/dist/RadioButton.d.ts
DELETED
package/dist/TextListBox.d.ts
DELETED
package/dist/ToastComponent.d.ts
DELETED
package/dist/ToastWrapper.d.ts
DELETED
|
File without changes
|
|
File without changes
|