@lauravivan/notion-portfolio 1.1.0 → 1.1.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/index.es.js +5105 -4973
- package/dist/notion-portfolio.css +1 -1
- package/dist/packages/core/@client/components/Database/Database.vue.d.ts +1 -3
- package/dist/packages/core/@client/components/Database/DatabaseGalleryLayout.vue.d.ts +1 -3
- package/dist/packages/core/@client/components/Link/LinkMention.vue.d.ts +6 -4
- package/dist/packages/core/@client/components/{ToggleList.vue.d.ts → List/Toggle/ToggleList.vue.d.ts} +1 -1
- package/dist/packages/core/@client/components/List/Toggle/index.d.ts +1 -0
- package/dist/packages/core/@client/components/List/index.d.ts +1 -0
- package/dist/packages/core/@client/components/index.d.ts +1 -3
- package/dist/packages/core/components/Content/Banner.vue.d.ts +6 -0
- package/dist/packages/core/components/Content/Content.vue.d.ts +21 -0
- package/dist/packages/core/components/Content/Title.vue.d.ts +6 -0
- package/dist/packages/core/components/Content/Wrapper.vue.d.ts +17 -0
- package/dist/packages/core/components/Content/index.d.ts +4 -0
- package/dist/packages/core/components/DatabaseInfo.vue.d.ts +6 -0
- package/dist/packages/core/{@client/components → components/Modal}/MainModalView.vue.d.ts +2 -4
- package/dist/packages/core/components/Settings.vue.d.ts +12 -0
- package/dist/packages/core/enum/icons.d.ts +1 -1
- package/dist/packages/core/index.d.ts +2 -2
- package/dist/packages/core/store/store.d.ts +6 -7
- package/package.json +1 -1
- /package/dist/packages/core/{@client/components → components/Modal}/Modal.vue.d.ts +0 -0
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { PageInfo } from '../../../@types';
|
|
2
|
-
import { Component } from 'vue';
|
|
3
2
|
type __VLS_Props = {
|
|
4
3
|
layout: "gallery" | "table";
|
|
5
|
-
title
|
|
4
|
+
title?: string;
|
|
6
5
|
cardPreviewIsCover?: boolean;
|
|
7
|
-
component: Component;
|
|
8
6
|
pages: PageInfo[];
|
|
9
7
|
};
|
|
10
8
|
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>;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { PageInfo } from '../../../@types';
|
|
2
|
-
import { Component } from 'vue';
|
|
3
2
|
type __VLS_Props = {
|
|
4
|
-
title
|
|
3
|
+
title?: string;
|
|
5
4
|
cardPreviewIsCover: boolean;
|
|
6
|
-
component: Component;
|
|
7
5
|
pages: PageInfo[];
|
|
8
6
|
};
|
|
9
7
|
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>;
|
|
@@ -1,18 +1,20 @@
|
|
|
1
|
+
import { PageInfo } from '../../../@types';
|
|
1
2
|
type __VLS_Props = {
|
|
2
|
-
href
|
|
3
|
+
href?: string;
|
|
3
4
|
emoji: string;
|
|
4
|
-
|
|
5
|
+
page?: PageInfo;
|
|
5
6
|
};
|
|
6
7
|
declare function __VLS_template(): {
|
|
7
8
|
attrs: Partial<{}>;
|
|
8
9
|
slots: {
|
|
9
10
|
default?(_: {}): any;
|
|
11
|
+
default?(_: {}): any;
|
|
10
12
|
};
|
|
11
13
|
refs: {};
|
|
12
|
-
rootEl:
|
|
14
|
+
rootEl: any;
|
|
13
15
|
};
|
|
14
16
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
17
|
+
declare const __VLS_component: 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>;
|
|
16
18
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
19
|
export default _default;
|
|
18
20
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ToggleList } from './ToggleList.vue';
|
|
@@ -1,15 +1,13 @@
|
|
|
1
|
-
export { default as Modal } from './Modal.vue';
|
|
2
1
|
export { default as Divider } from './Divider.vue';
|
|
3
2
|
export { default as Text } from './Text.vue';
|
|
4
3
|
export { default as Breadcrumb } from './Breadcrumb.vue';
|
|
5
4
|
export { default as Image } from './Image.vue';
|
|
6
5
|
export { default as Empty } from './Empty.vue';
|
|
7
|
-
export { default as MainModalView } from './MainModalView.vue';
|
|
8
6
|
export { default as Callout } from './Callout.vue';
|
|
9
7
|
export { default as Heading } from './Heading.vue';
|
|
10
8
|
export { default as Loader } from './Loader.vue';
|
|
11
9
|
export { default as TextHighlight } from './TextHighlight.vue';
|
|
12
|
-
export { BulletItem, BulletList, ToDoItem, ToDoList } from './List';
|
|
10
|
+
export { BulletItem, BulletList, ToDoItem, ToDoList, ToggleList } from './List';
|
|
13
11
|
export { Database } from './Database';
|
|
14
12
|
export { Bookmark, LinkMention, Link } from './Link';
|
|
15
13
|
export { Column, Columns } from './Column';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PageInfo } from '../../@types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
page: PageInfo;
|
|
4
|
+
};
|
|
5
|
+
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>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { PageInfo } from '../../@types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
page: PageInfo;
|
|
4
|
+
};
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
7
|
+
slots: {
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: HTMLDivElement;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: 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>;
|
|
15
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PageInfo } from '../../@types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
page: PageInfo;
|
|
4
|
+
};
|
|
5
|
+
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>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: HTMLElement;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
|
|
11
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PageInfo } from '../@types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
page: PageInfo;
|
|
4
|
+
};
|
|
5
|
+
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>;
|
|
6
|
+
export default _default;
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import { PageInfo } from '../../@types';
|
|
2
|
-
import { Component } from 'vue';
|
|
3
2
|
type __VLS_Props = {
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
hideMainModal: () => void;
|
|
4
|
+
addMainModalListener: () => void;
|
|
6
5
|
provideName: string;
|
|
7
6
|
page: PageInfo;
|
|
8
|
-
component: Component;
|
|
9
7
|
};
|
|
10
8
|
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>;
|
|
11
9
|
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
hideSettingsModal: () => void;
|
|
3
|
+
addSettingsModalListener: () => void;
|
|
4
|
+
menuProvider: string;
|
|
5
|
+
modalStyles: {
|
|
6
|
+
top: string;
|
|
7
|
+
right: string;
|
|
8
|
+
};
|
|
9
|
+
pageId: string;
|
|
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, {}, HTMLDivElement>;
|
|
12
|
+
export default _default;
|
|
@@ -17,7 +17,7 @@ declare enum Icons {
|
|
|
17
17
|
code = "eva:code-outline",
|
|
18
18
|
link = "eva:link-outline",
|
|
19
19
|
add = "eva:plus-outline",
|
|
20
|
-
expand = "
|
|
20
|
+
expand = "material-symbols:expand-content-rounded",
|
|
21
21
|
clock = "eva:clock-fill",
|
|
22
22
|
list = "eva:list-outline",
|
|
23
23
|
close = "eva:close-outline",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export { Aside, Header, Tabs } from './components';
|
|
2
|
-
export { Bookmark, Breadcrumb, BulletItem, BulletList, Callout, Column, Database, Divider, Empty, Heading, Image, LinkMention, Loader,
|
|
2
|
+
export { Bookmark, Breadcrumb, BulletItem, BulletList, Callout, Column, Database, Divider, Empty, Heading, Image, LinkMention, Loader, Text, ToDoItem, ToDoList, TextHighlight, Link, Columns, ToggleList, } from './@client/components';
|
|
3
3
|
export { isTouchDevice } from './util';
|
|
4
4
|
export { MainLayout } from './layouts';
|
|
5
5
|
export { NotFoundPage } from './pages';
|
|
6
6
|
export { useStore, piniaInstance } from './store';
|
|
7
|
-
export { useAside, useDisplay
|
|
7
|
+
export { useAside, useDisplay } from './hooks';
|
|
8
8
|
export type { PageInfo, IMetadata } from './@types';
|
|
@@ -194,13 +194,12 @@ declare const useStore: import('pinia').Store<"global", State, {
|
|
|
194
194
|
};
|
|
195
195
|
isAsideOpen: boolean;
|
|
196
196
|
} & import('pinia').PiniaCustomStateProperties<State>) => {
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
pageSize: string;
|
|
197
|
+
[x: string]: {
|
|
198
|
+
settings: {
|
|
199
|
+
fontFamily: string;
|
|
200
|
+
fontSize: string;
|
|
201
|
+
pageSize: string;
|
|
202
|
+
};
|
|
204
203
|
};
|
|
205
204
|
} | undefined;
|
|
206
205
|
getActivePage: (state: {
|
package/package.json
CHANGED
|
File without changes
|