@aeria-ui/ui 0.0.87 → 0.0.89
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/{_id_-090c4448.js → _id_-37c83f35.js} +2 -2
- package/dist/{activation-3f758882.js → activation-46990c40.js} +2 -2
- package/dist/components/aeria-insert-panel/aeria-insert-panel.vue.d.ts +26 -6
- package/dist/components/index.d.ts +21 -17
- package/dist/{index-30662a00.js → index-4ba787c5.js} +1 -1
- package/dist/{index-5b6214ff.js → index-4fc7259a.js} +2 -2
- package/dist/{index-339eb5da.js → index-61a4a8b7.js} +2 -2
- package/dist/index-fb9f4da7.js +3515 -0
- package/dist/{signin-4f04dd22.js → signin-277485f6.js} +1 -1
- package/dist/{signup-e12dbeb1.js → signup-c87489a0.js} +2 -2
- package/dist/style.css +1 -1
- package/dist/ui.js +27 -25
- package/package.json +2 -2
- package/dist/index-a9156ef8.js +0 -3507
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { defineComponent as n, watch as r, openBlock as c, createBlock as l } from "vue";
|
|
2
2
|
import { getGlobalStateManager as a, useStore as m } from "@aeria-ui/state-management";
|
|
3
|
-
import { e as s } from "./index-
|
|
3
|
+
import { e as s } from "./index-fb9f4da7.js";
|
|
4
4
|
import "@aeria-ui/i18n";
|
|
5
|
-
import "@aeria-ui/core";
|
|
6
5
|
import "@aeriajs/common";
|
|
6
|
+
import "@aeria-ui/core";
|
|
7
7
|
import "vue-router";
|
|
8
8
|
const k = /* @__PURE__ */ n({
|
|
9
9
|
__name: "[id]",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { defineComponent as k, withAsyncContext as $, ref as x, unref as p, openBlock as f, createElementBlock as _, createVNode as r, withCtx as i, withModifiers as S, createTextVNode as v, createElementVNode as g } from "vue";
|
|
2
2
|
import { useStore as y } from "@aeria-ui/state-management";
|
|
3
3
|
import { useRouter as A } from "vue-router";
|
|
4
|
-
import { A as I, _ as R, a as w } from "./index-
|
|
4
|
+
import { A as I, _ as R, a as w } from "./index-fb9f4da7.js";
|
|
5
5
|
import "@aeria-ui/i18n";
|
|
6
|
-
import "@aeria-ui/core";
|
|
7
6
|
import "@aeriajs/common";
|
|
7
|
+
import "@aeria-ui/core";
|
|
8
8
|
const b = {
|
|
9
9
|
key: 0,
|
|
10
10
|
style: { display: "grid", gap: "1rem" }
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
type Props = {
|
|
2
2
|
collection?: string;
|
|
3
|
-
|
|
3
|
+
form?: string[];
|
|
4
|
+
visible?: any;
|
|
5
|
+
modelValue?: any;
|
|
4
6
|
readOnly?: boolean;
|
|
5
7
|
includeId?: boolean;
|
|
6
8
|
includeTimestamps?: boolean;
|
|
@@ -8,13 +10,23 @@ type Props = {
|
|
|
8
10
|
declare function __VLS_template(): Partial<Record<string, (_: any) => any>> & {
|
|
9
11
|
header?(_: {}): any;
|
|
10
12
|
};
|
|
11
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
12
|
-
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
14
|
+
visible: boolean;
|
|
15
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
"update:visible": (value: boolean) => void;
|
|
17
|
+
"update:modelValue": (value: any) => void;
|
|
18
|
+
insert: (value: any) => void;
|
|
13
19
|
cancel: () => void;
|
|
14
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props
|
|
15
|
-
|
|
20
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
21
|
+
visible: boolean;
|
|
22
|
+
}>>> & {
|
|
23
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
24
|
+
onInsert?: ((value: any) => any) | undefined;
|
|
25
|
+
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
16
26
|
onCancel?: (() => any) | undefined;
|
|
17
|
-
}, {
|
|
27
|
+
}, {
|
|
28
|
+
visible: any;
|
|
29
|
+
}, {}>;
|
|
18
30
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
19
31
|
export default _default;
|
|
20
32
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -26,6 +38,14 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
26
38
|
required: true;
|
|
27
39
|
};
|
|
28
40
|
};
|
|
41
|
+
type __VLS_WithDefaults<P, D> = {
|
|
42
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
43
|
+
default: D[K];
|
|
44
|
+
}> : P[K];
|
|
45
|
+
};
|
|
46
|
+
type __VLS_Prettify<T> = {
|
|
47
|
+
[K in keyof T]: T[K];
|
|
48
|
+
} & {};
|
|
29
49
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
30
50
|
new (): {
|
|
31
51
|
$slots: S;
|
|
@@ -1,20 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { default as AeriaAccordion } from './aeria-accordion/aeria-accordion.vue';
|
|
2
|
+
import { default as AeriaBadge } from './aeria-badge/aeria-badge.vue';
|
|
3
|
+
import { default as AeriaBareButton } from './aeria-bare-button/aeria-bare-button.vue';
|
|
4
|
+
import { default as AeriaButton } from './aeria-button/aeria-button.vue';
|
|
5
|
+
import { default as AeriaCard } from './aeria-card/aeria-card.vue';
|
|
6
|
+
import { default as AeriaContextMenu } from './aeria-context-menu/aeria-context-menu.vue';
|
|
7
|
+
import { default as AeriaCrud } from './aeria-crud/aeria-crud.vue';
|
|
8
|
+
import { default as AeriaGrid } from './aeria-grid/aeria-grid.vue';
|
|
9
|
+
import { default as AeriaFilterPanel } from './aeria-filter-panel/aeria-filter-panel.vue';
|
|
10
|
+
import { default as AeriaIcon } from './aeria-icon/aeria-icon.vue';
|
|
11
|
+
import { default as AeriaInfo } from './aeria-info/aeria-info.vue';
|
|
12
|
+
import { default as AeriaInsertPanel } from './aeria-insert-panel/aeria-insert-panel.vue';
|
|
13
|
+
import { default as AeriaMain } from './aeria-main/aeria-main.vue';
|
|
14
|
+
import { default as AeriaMenu } from './aeria-menu/aeria-menu.vue';
|
|
15
|
+
import { default as AeriaPagination } from './aeria-pagination/aeria-pagination.vue';
|
|
16
|
+
import { default as AeriaPanel } from './aeria-panel/aeria-panel.vue';
|
|
17
|
+
import { default as AeriaPicture } from './aeria-picture/aeria-picture.vue';
|
|
18
|
+
import { default as AeriaTable } from './aeria-table/aeria-table.vue';
|
|
19
|
+
import { default as AeriaTabs } from './aeria-tabs/aeria-tabs.vue';
|
|
20
|
+
|
|
21
|
+
export { AeriaAccordion, AeriaBadge, AeriaBareButton, AeriaButton, AeriaCard, AeriaContextMenu, AeriaCrud, AeriaGrid, AeriaFilterPanel, AeriaIcon, AeriaInfo, AeriaInsertPanel, AeriaMain, AeriaMenu, AeriaPagination, AeriaPanel, AeriaPicture, AeriaTable, AeriaTabs, };
|
|
18
22
|
export * from './form/index.js';
|
|
19
23
|
export * from './utils/index.js';
|
|
20
24
|
export * from './dashboard/index.js';
|
|
@@ -2,7 +2,7 @@ import { defineComponent as S, ref as b, resolveDirective as h, openBlock as u,
|
|
|
2
2
|
import { useRouter as P } from "vue-router";
|
|
3
3
|
import { useStore as g } from "@aeria-ui/state-management";
|
|
4
4
|
import { STORAGE_NAMESPACE as v } from "@aeria-ui/core";
|
|
5
|
-
import { f as z, g as E, b as f, h as I, a as O, A as B, i as U } from "./index-
|
|
5
|
+
import { f as z, g as E, b as f, h as I, a as O, A as B, i as U } from "./index-fb9f4da7.js";
|
|
6
6
|
import "@aeria-ui/i18n";
|
|
7
7
|
import "@aeriajs/common";
|
|
8
8
|
const x = { class: "profile__user-name" }, D = /* @__PURE__ */ S({
|
|
@@ -2,9 +2,9 @@ import { defineComponent as c, ref as u, openBlock as m, createBlock as _, withC
|
|
|
2
2
|
import { useRouter as v } from "vue-router";
|
|
3
3
|
import { useI18n as x } from "@aeria-ui/i18n";
|
|
4
4
|
import { useStore as n } from "@aeria-ui/state-management";
|
|
5
|
-
import { h as V, _ as k, a as y } from "./index-
|
|
6
|
-
import "@aeria-ui/core";
|
|
5
|
+
import { h as V, _ as k, a as y } from "./index-fb9f4da7.js";
|
|
7
6
|
import "@aeriajs/common";
|
|
7
|
+
import "@aeria-ui/core";
|
|
8
8
|
const D = /* @__PURE__ */ c({
|
|
9
9
|
__name: "index",
|
|
10
10
|
setup(S) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { defineComponent as e, openBlock as t, createBlock as r, createSlots as n, withCtx as c, renderSlot as i, createCommentVNode as l } from "vue";
|
|
2
|
-
import { d as m } from "./index-
|
|
2
|
+
import { d as m } from "./index-fb9f4da7.js";
|
|
3
3
|
import "@aeria-ui/i18n";
|
|
4
|
-
import "@aeria-ui/core";
|
|
5
4
|
import "@aeriajs/common";
|
|
6
5
|
import "@aeria-ui/state-management";
|
|
6
|
+
import "@aeria-ui/core";
|
|
7
7
|
import "vue-router";
|
|
8
8
|
const _ = /* @__PURE__ */ e({
|
|
9
9
|
__name: "index",
|