admins-components 9.0.60 → 9.0.62
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/admins-components100.js +109 -103
- package/dist/admins-components100.js.map +1 -1
- package/dist/admins-components102.js.map +1 -1
- package/dist/admins-components61.js +26 -22
- package/dist/admins-components61.js.map +1 -1
- package/dist/admins-components62.js.map +1 -1
- package/dist/admins-components65.js +63 -60
- package/dist/admins-components65.js.map +1 -1
- package/dist/admins-components67.js.map +1 -1
- package/dist/admins-components68.js +35 -32
- package/dist/admins-components68.js.map +1 -1
- package/dist/admins-components70.js.map +1 -1
- package/dist/src/components/data-table/DataCards.vue.d.ts +12 -2
- package/dist/src/components/data-table/DataCell.vue.d.ts +15 -1
- package/dist/src/components/data-table/DataList.vue.d.ts +11 -2
- package/dist/src/components/data-table/DataTable.vue.d.ts +12 -2
- package/dist/src/styles/components/modal.scss_vue_type_style_index_0_src_true_lang.css +1 -1
- package/package.json +1 -1
|
@@ -4,8 +4,22 @@ type __VLS_Props = {
|
|
|
4
4
|
col: Column;
|
|
5
5
|
copy?: boolean;
|
|
6
6
|
};
|
|
7
|
-
declare
|
|
7
|
+
declare var __VLS_1: {
|
|
8
|
+
item: any;
|
|
9
|
+
col: any;
|
|
10
|
+
value: any;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_Slots = {} & {
|
|
13
|
+
cell?: (props: typeof __VLS_1) => any;
|
|
14
|
+
};
|
|
15
|
+
declare const __VLS_base: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
8
16
|
copy: boolean;
|
|
9
17
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
10
19
|
declare const _default: typeof __VLS_export;
|
|
11
20
|
export default _default;
|
|
21
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -38,7 +38,7 @@ export declare function getDefaultFetchData(filters: FilterItem[], storageKey: s
|
|
|
38
38
|
};
|
|
39
39
|
declare const _default: typeof __VLS_export;
|
|
40
40
|
export default _default;
|
|
41
|
-
declare const __VLS_export: import('vue').DefineComponent<DataListProps, {
|
|
41
|
+
declare const __VLS_export: __VLS_WithSlots<import('vue').DefineComponent<DataListProps, {
|
|
42
42
|
openOptions: () => boolean;
|
|
43
43
|
closeOptions: () => boolean;
|
|
44
44
|
openFilters: () => boolean;
|
|
@@ -72,4 +72,13 @@ declare const __VLS_export: import('vue').DefineComponent<DataListProps, {
|
|
|
72
72
|
useFilters: boolean;
|
|
73
73
|
searchConfig: DataSearchProps;
|
|
74
74
|
filterConfig: DataFiltersProps;
|
|
75
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any
|
|
75
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
76
|
+
[x: string]: ((props: any) => any) | undefined;
|
|
77
|
+
} & {
|
|
78
|
+
[x: string]: ((props: any) => any) | undefined;
|
|
79
|
+
}>;
|
|
80
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
81
|
+
new (): {
|
|
82
|
+
$slots: S;
|
|
83
|
+
};
|
|
84
|
+
};
|
|
@@ -3,7 +3,7 @@ export type { LayoutMode, DataListConfig, DataListSettings, DataTableSettings, D
|
|
|
3
3
|
export { dataTableSettingsDefaults, dataCardsSettingsDefaults, dataListSettingsDefaults, } from '../../types/data-list';
|
|
4
4
|
declare const _default: typeof __VLS_export;
|
|
5
5
|
export default _default;
|
|
6
|
-
declare const __VLS_export: import('vue').DefineComponent<{
|
|
6
|
+
declare const __VLS_export: __VLS_WithSlots<import('vue').DefineComponent<{
|
|
7
7
|
config: DataListConfig;
|
|
8
8
|
items: Record<string, unknown>[];
|
|
9
9
|
settings?: DataTableSettings;
|
|
@@ -40,4 +40,14 @@ declare const __VLS_export: import('vue').DefineComponent<{
|
|
|
40
40
|
key: string;
|
|
41
41
|
direction: "desc" | "asc";
|
|
42
42
|
} | null;
|
|
43
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any
|
|
43
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
44
|
+
[x: string]: ((props: {
|
|
45
|
+
item: any;
|
|
46
|
+
col: any;
|
|
47
|
+
}) => any) | undefined;
|
|
48
|
+
}>;
|
|
49
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
50
|
+
new (): {
|
|
51
|
+
$slots: S;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.ac-component .c-modal-backdrop{z-index:1100;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);background:#0006;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.ac-component .c-modal{background:var(--neutral-0);border-radius:.75rem;flex-direction:column;min-width:
|
|
1
|
+
.ac-component .c-modal-backdrop{z-index:1100;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);background:#0006;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.ac-component .c-modal{background:var(--neutral-0);border-radius:.75rem;flex-direction:column;min-width:clamp(18rem,60dvw,26rem);max-width:calc(100dvw - 2rem);max-height:calc(100dvh - 4rem);animation:.15s ease-out c-modal-enter;display:flex;overflow:hidden;box-shadow:0 8px 32px #0000001f}.ac-component .c-modal-header{border-bottom:1px solid var(--neutral-100);justify-content:space-between;align-items:center;padding:.5rem;display:flex}.ac-component .c-modal-title{color:var(--neutral-900);padding-left:.5rem;font-size:1rem;font-weight:600}.ac-component .c-modal-close{color:var(--neutral-600);cursor:pointer;background:0 0;border:none;border-radius:999px;justify-content:center;align-items:center;padding:.5rem .625rem;font-size:1rem;transition:background-color .15s,color .15s;display:inline-flex}.ac-component .c-modal-close i{transform:translate(.5px)}.ac-component .c-modal-close:hover{background:var(--neutral-100);color:var(--neutral-900)}.ac-component .c-modal-close:focus-visible{outline:none;box-shadow:0 0 0 2px #f265221f}.ac-component .c-modal-body{flex-direction:column;flex:1;padding:1rem;display:flex;overflow-y:auto}.ac-component .c-modal-footer{border-top:1px solid var(--neutral-100);justify-content:flex-end;align-items:center;gap:.5rem;padding:.75rem 1.25rem;display:flex}.ac-component .c-confirm-modal-message{color:var(--neutral-700);margin:0;font-size:.875rem;line-height:1.5}@keyframes c-modal-enter{0%{opacity:0;transform:scale(.95)translateY(-.5rem)}to{opacity:1;transform:scale(1)translateY(0)}}
|