vue-lib-exo-corrected 1.0.0 → 1.0.1-beta.1
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/components/Molecules/ListLayout/ListLayout.vue.d.ts +2 -0
- package/dist/components/Molecules/ListNote/ListNote.vue.d.ts +27 -0
- package/dist/components/Molecules/ListUsers/ListUsers.vue.d.ts +27 -0
- package/dist/components/Molecules/NoteCard/NoteCard.vue.d.ts +27 -0
- package/dist/components/Molecules/NoteCreation/NoteCreation.vue.d.ts +4 -0
- package/dist/components/Molecules/UserCard/UserCard.vue.d.ts +27 -0
- package/dist/index.d.ts +14 -1
- package/dist/services/utils/markdownUtils.d.ts +6 -0
- package/dist/style.css +2 -2
- package/dist/vue-lib-exo-corrected.js +5081 -4920
- package/dist/vue-lib-exo-corrected.umd.cjs +6 -3
- package/package.json +2 -2
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
notes: {
|
|
4
|
+
type: __PropType<{
|
|
5
|
+
id: string | number;
|
|
6
|
+
contentMd: string;
|
|
7
|
+
createdAt: string;
|
|
8
|
+
status?: "active" | "completed" | undefined;
|
|
9
|
+
priority?: "medium" | "high" | "low" | undefined;
|
|
10
|
+
tags?: string[] | undefined;
|
|
11
|
+
}[]>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
notes: {
|
|
16
|
+
type: __PropType<{
|
|
17
|
+
id: string | number;
|
|
18
|
+
contentMd: string;
|
|
19
|
+
createdAt: string;
|
|
20
|
+
status?: "active" | "completed" | undefined;
|
|
21
|
+
priority?: "medium" | "high" | "low" | undefined;
|
|
22
|
+
tags?: string[] | undefined;
|
|
23
|
+
}[]>;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
users: {
|
|
4
|
+
type: __PropType<{
|
|
5
|
+
id: string | number;
|
|
6
|
+
name: string;
|
|
7
|
+
email: string;
|
|
8
|
+
role?: string | undefined;
|
|
9
|
+
isActive?: boolean | undefined;
|
|
10
|
+
avatar?: string | undefined;
|
|
11
|
+
}[]>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
users: {
|
|
16
|
+
type: __PropType<{
|
|
17
|
+
id: string | number;
|
|
18
|
+
name: string;
|
|
19
|
+
email: string;
|
|
20
|
+
role?: string | undefined;
|
|
21
|
+
isActive?: boolean | undefined;
|
|
22
|
+
avatar?: string | undefined;
|
|
23
|
+
}[]>;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
note: {
|
|
4
|
+
type: __PropType<{
|
|
5
|
+
id: string | number;
|
|
6
|
+
contentMd: string;
|
|
7
|
+
createdAt: string;
|
|
8
|
+
status?: "active" | "completed" | undefined;
|
|
9
|
+
priority?: "medium" | "high" | "low" | undefined;
|
|
10
|
+
tags?: string[] | undefined;
|
|
11
|
+
}>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
note: {
|
|
16
|
+
type: __PropType<{
|
|
17
|
+
id: string | number;
|
|
18
|
+
contentMd: string;
|
|
19
|
+
createdAt: string;
|
|
20
|
+
status?: "active" | "completed" | undefined;
|
|
21
|
+
priority?: "medium" | "high" | "low" | undefined;
|
|
22
|
+
tags?: string[] | undefined;
|
|
23
|
+
}>;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "create"[], "create", import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
2
|
+
onCreate?: ((...args: any[]) => any) | undefined;
|
|
3
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
user: {
|
|
4
|
+
type: __PropType<{
|
|
5
|
+
id: string | number;
|
|
6
|
+
name: string;
|
|
7
|
+
email: string;
|
|
8
|
+
role?: string | undefined;
|
|
9
|
+
isActive?: boolean | undefined;
|
|
10
|
+
avatar?: string | undefined;
|
|
11
|
+
}>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
user: {
|
|
16
|
+
type: __PropType<{
|
|
17
|
+
id: string | number;
|
|
18
|
+
name: string;
|
|
19
|
+
email: string;
|
|
20
|
+
role?: string | undefined;
|
|
21
|
+
isActive?: boolean | undefined;
|
|
22
|
+
avatar?: string | undefined;
|
|
23
|
+
}>;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default _sfc_main;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,26 @@
|
|
|
1
1
|
import MarkdownText from "./components/Molecules/MarkdownText/MarkdownText.vue";
|
|
2
2
|
import Layout from "./components/Organisms/Layout/Layout.vue";
|
|
3
|
+
import ListLayout from "./components/Molecules/ListLayout/ListLayout.vue";
|
|
4
|
+
import ListNote from "./components/Molecules/ListNote/ListNote.vue";
|
|
5
|
+
import ListUsers from "./components/Molecules/ListUsers/ListUsers.vue";
|
|
6
|
+
import NoteCard from "./components/Molecules/NoteCard/NoteCard.vue";
|
|
7
|
+
import NoteCreation from "./components/Molecules/NoteCreation/NoteCreation.vue";
|
|
8
|
+
import UserCard from "./components/Molecules/UserCard/UserCard.vue";
|
|
3
9
|
import { DEFAULT_VUETIFY_CONFIG } from "./lidinAppKitConfig/vuetifyConfig/defaultVuetifyConfig";
|
|
4
10
|
import { createLidinAppKit } from "./lidinAppKitConfig/createLidinAppKit.ts";
|
|
5
11
|
import { useLanguage } from "./modules/globalAppData/composables/useLanguage.ts";
|
|
6
12
|
import { useTheme } from "./modules/globalAppData/composables/useTheme.ts";
|
|
7
13
|
import { generateRandomUuid } from "./services/utils/randomId.ts";
|
|
8
|
-
|
|
14
|
+
import { extractTitleFromMarkdown } from "./services/utils/markdownUtils.ts";
|
|
15
|
+
export { useLanguage, useTheme, createLidinAppKit, DEFAULT_VUETIFY_CONFIG, MarkdownText, Layout, ListLayout, ListNote, ListUsers, NoteCard, NoteCreation, UserCard, generateRandomUuid, extractTitleFromMarkdown, };
|
|
9
16
|
|
|
10
17
|
import type { DefineComponent } from 'vue';
|
|
11
18
|
|
|
12
19
|
export declare const MarkdownText: DefineComponent<{}, {}, any>;
|
|
13
20
|
export declare const Layout: DefineComponent<{}, {}, any>;
|
|
21
|
+
export declare const ListLayout: DefineComponent<{}, {}, any>;
|
|
22
|
+
export declare const ListNote: DefineComponent<{}, {}, any>;
|
|
23
|
+
export declare const ListUsers: DefineComponent<{}, {}, any>;
|
|
24
|
+
export declare const NoteCard: DefineComponent<{}, {}, any>;
|
|
25
|
+
export declare const NoteCreation: DefineComponent<{}, {}, any>;
|
|
26
|
+
export declare const UserCard: DefineComponent<{}, {}, any>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Extracts the title from markdown content (first line starting with #)
|
|
3
|
+
* @param contentMd - The markdown content
|
|
4
|
+
* @returns The extracted title or null if no title found
|
|
5
|
+
*/
|
|
6
|
+
export declare const extractTitleFromMarkdown: (contentMd: string) => string | null;
|