@privyid/persona 1.0.0 → 1.1.0
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/accordion/AccordionItems.vue.d.ts +6 -6
- package/dist/components/aspect-ratio/index.d.ts +1 -1
- package/dist/components/avatar/AvatarTruncate.vue.d.ts +7 -7
- package/dist/components/checkbox/index.d.ts +1 -1
- package/dist/components/filterbar/Filterbar.vue.d.ts +14 -7
- package/dist/components/filterbar/pinned/PinnedDate.vue.d.ts +13 -9
- package/dist/components/filterbar/pinned/PinnedMultiselect.vue.d.ts +14 -8
- package/dist/components/filterbar/pinned/PinnedSelect.vue.d.ts +15 -10
- package/dist/components/filterbar/pinned/PinnedToggle.vue.d.ts +16 -14
- package/dist/components/global/store.d.ts +2 -2
- package/dist/components/input-password/index.d.ts +1 -1
- package/dist/components/markdown/index.d.ts +1 -1
- package/dist/components/meta.json +48 -48
- package/dist/components/nav/Nav.vue +1 -1
- package/dist/components/nav/NavItem.vue +1 -5
- package/dist/components/overlay/utils/use-loading.d.ts +1 -1
- package/dist/components/pdf-helipad/utils/use-drag.d.ts +1 -1
- package/dist/components/pdf-object/index.d.ts +16 -16
- package/dist/components/pdf-object/utils/use-drag.d.ts +1 -1
- package/dist/components/pdf-object/utils/use-drop.d.ts +1 -1
- package/dist/components/pdf-object/utils/use-resize.d.ts +1 -1
- package/dist/components/pdf-viewer/PdfNavigation.vue +43 -3
- package/dist/components/pdf-viewer/PdfViewer.vue +38 -1
- package/dist/components/pdf-viewer/index.d.ts +7 -3
- package/dist/components/pdf-viewer/index.mjs +3 -1
- package/dist/components/pdf-viewer/utils/use-idle.d.ts +1 -1
- package/dist/components/pdf-viewer/utils/use-sticky.d.ts +1 -1
- package/dist/components/pdf-viewer/utils/use-viewer.d.ts +10 -10
- package/dist/components/pspdfkit/PspdfViewer.vue +10 -0
- package/dist/components/pspdfkit/utils/use-drop.d.ts +1 -1
- package/dist/components/pspdfkit/utils/use-viewer.d.ts +7 -7
- package/dist/components/radio/index.d.ts +1 -1
- package/dist/components/sidebar/SidebarContent.vue.d.ts +5 -5
- package/dist/components/steps/StepSlider.vue.d.ts +5 -5
- package/dist/components/table/Table.vue.d.ts +85 -9
- package/dist/components/tabs/TabContent.vue.d.ts +7 -7
- package/dist/components/time/index.d.ts +2 -2
- package/dist/components/tooltip/index.d.ts +1 -1
- package/dist/components/wizard/WizardHeader.vue.d.ts +5 -5
- package/package.json +14 -14
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* https://github.com/vuejs/rfcs/discussions/585
|
|
4
4
|
*/
|
|
5
5
|
import type { PropType } from 'vue-demi';
|
|
6
|
-
declare const _default: import("vue-demi").DefineComponent<{
|
|
6
|
+
declare const _default: import("vue-demi").DefineComponent<import("vue-demi").ExtractPropTypes<{
|
|
7
7
|
modelValue: {
|
|
8
8
|
type: PropType<number | number[]>;
|
|
9
9
|
default: undefined;
|
|
@@ -16,9 +16,9 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
16
16
|
type: BooleanConstructor;
|
|
17
17
|
default: boolean;
|
|
18
18
|
};
|
|
19
|
-
}
|
|
19
|
+
}>, () => import("vue-demi").VNode<import("vue-demi").RendererNode, import("vue-demi").RendererElement, {
|
|
20
20
|
[key: string]: any;
|
|
21
|
-
}>[],
|
|
21
|
+
}>[], {}, {}, {}, import("vue-demi").ComponentOptionsMixin, import("vue-demi").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue-demi").PublicProps, Readonly<import("vue-demi").ExtractPropTypes<{
|
|
22
22
|
modelValue: {
|
|
23
23
|
type: PropType<number | number[]>;
|
|
24
24
|
default: undefined;
|
|
@@ -31,11 +31,11 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
31
31
|
type: BooleanConstructor;
|
|
32
32
|
default: boolean;
|
|
33
33
|
};
|
|
34
|
-
}>> & {
|
|
34
|
+
}>> & Readonly<{
|
|
35
35
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
36
|
-
}
|
|
36
|
+
}>, {
|
|
37
37
|
modelValue: number | number[];
|
|
38
38
|
multiple: boolean;
|
|
39
39
|
noCaret: boolean;
|
|
40
|
-
}, {}>;
|
|
40
|
+
}, {}, {}, {}, string, import("vue-demi").ComponentProvideOptions, true, {}, any>;
|
|
41
41
|
export default _default;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { Directive } from 'vue-demi';
|
|
2
2
|
export declare const pAspectRatio: Directive<HTMLElement, number>;
|
|
3
|
-
export declare const vPAspectRatio: import("vue-demi").ObjectDirective<HTMLElement, number>;
|
|
3
|
+
export declare const vPAspectRatio: import("vue-demi").ObjectDirective<HTMLElement, number, string, string>;
|
|
@@ -4,28 +4,28 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import type { PropType } from 'vue-demi';
|
|
6
6
|
import type { SizeVariant } from '.';
|
|
7
|
-
declare const _default: import("vue-demi").DefineComponent<{
|
|
7
|
+
declare const _default: import("vue-demi").DefineComponent<import("vue-demi").ExtractPropTypes<{
|
|
8
8
|
size: {
|
|
9
9
|
type: PropType<SizeVariant>;
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
12
12
|
length: {
|
|
13
|
-
type: (
|
|
13
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
14
14
|
default: number;
|
|
15
15
|
};
|
|
16
|
-
}
|
|
16
|
+
}>, () => import("vue-demi").VNode<import("vue-demi").RendererNode, import("vue-demi").RendererElement, {
|
|
17
17
|
[key: string]: any;
|
|
18
|
-
}>[],
|
|
18
|
+
}>[], {}, {}, {}, import("vue-demi").ComponentOptionsMixin, import("vue-demi").ComponentOptionsMixin, {}, string, import("vue-demi").PublicProps, Readonly<import("vue-demi").ExtractPropTypes<{
|
|
19
19
|
size: {
|
|
20
20
|
type: PropType<SizeVariant>;
|
|
21
21
|
default: string;
|
|
22
22
|
};
|
|
23
23
|
length: {
|
|
24
|
-
type: (
|
|
24
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
25
25
|
default: number;
|
|
26
26
|
};
|
|
27
|
-
}
|
|
27
|
+
}>> & Readonly<{}>, {
|
|
28
28
|
size: SizeVariant;
|
|
29
29
|
length: string | number;
|
|
30
|
-
}, {}>;
|
|
30
|
+
}, {}, {}, {}, string, import("vue-demi").ComponentProvideOptions, true, {}, any>;
|
|
31
31
|
export default _default;
|
|
@@ -4,4 +4,4 @@ export interface CheckboxProps extends InputProps<unknown> {
|
|
|
4
4
|
value: unknown;
|
|
5
5
|
uncheckedValue: unknown;
|
|
6
6
|
}
|
|
7
|
-
export declare function useVModel(props: CheckboxProps): import("vue-demi").Ref<boolean>;
|
|
7
|
+
export declare function useVModel(props: CheckboxProps): import("vue-demi").Ref<boolean, boolean>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { PropType } from 'vue-demi';
|
|
2
2
|
import type { FilterItem } from '.';
|
|
3
|
-
declare const _default: import("vue-demi").DefineComponent<{
|
|
3
|
+
declare const _default: import("vue-demi").DefineComponent<import("vue-demi").ExtractPropTypes<{
|
|
4
4
|
schema: {
|
|
5
5
|
type: PropType<FilterItem[]>;
|
|
6
6
|
default: () => never[];
|
|
@@ -9,13 +9,13 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
9
9
|
type: PropType<Record<string, unknown>>;
|
|
10
10
|
default: () => {};
|
|
11
11
|
};
|
|
12
|
-
}
|
|
13
|
-
model: import("vue-demi").Ref<Record<string, unknown>>;
|
|
12
|
+
}>, {
|
|
13
|
+
model: import("vue-demi").Ref<Record<string, unknown>, Record<string, unknown>>;
|
|
14
14
|
pinnedItems: import("vue-demi").ComputedRef<FilterItem[]>;
|
|
15
15
|
getValue: (key: string) => unknown;
|
|
16
16
|
setValue: (key: string, value: unknown) => void;
|
|
17
17
|
reset: () => void;
|
|
18
|
-
},
|
|
18
|
+
}, {}, {}, {}, import("vue-demi").ComponentOptionsMixin, import("vue-demi").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue-demi").PublicProps, Readonly<import("vue-demi").ExtractPropTypes<{
|
|
19
19
|
schema: {
|
|
20
20
|
type: PropType<FilterItem[]>;
|
|
21
21
|
default: () => never[];
|
|
@@ -24,10 +24,17 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
24
24
|
type: PropType<Record<string, unknown>>;
|
|
25
25
|
default: () => {};
|
|
26
26
|
};
|
|
27
|
-
}>> & {
|
|
27
|
+
}>> & Readonly<{
|
|
28
28
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
29
|
-
}
|
|
29
|
+
}>, {
|
|
30
30
|
modelValue: Record<string, unknown>;
|
|
31
31
|
schema: FilterItem[];
|
|
32
|
-
}, {}
|
|
32
|
+
}, {}, {
|
|
33
|
+
Button: any;
|
|
34
|
+
Dropdown: any;
|
|
35
|
+
Date: any;
|
|
36
|
+
Select: any;
|
|
37
|
+
Multiselect: any;
|
|
38
|
+
Toggle: any;
|
|
39
|
+
}, {}, string, import("vue-demi").ComponentProvideOptions, true, {}, any>;
|
|
33
40
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { PropType } from 'vue-demi';
|
|
2
2
|
import type { FilterDate } from '..';
|
|
3
3
|
import type { CalendarMode } from '../../calendar/adapter/adapter';
|
|
4
|
-
declare const _default: import("vue-demi").DefineComponent<{
|
|
4
|
+
declare const _default: import("vue-demi").DefineComponent<import("vue-demi").ExtractPropTypes<{
|
|
5
5
|
schema: {
|
|
6
6
|
type: PropType<FilterDate>;
|
|
7
7
|
required: true;
|
|
@@ -26,12 +26,12 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
26
26
|
type: PropType<CalendarMode>;
|
|
27
27
|
default: string;
|
|
28
28
|
};
|
|
29
|
-
}
|
|
30
|
-
model: import("vue-demi").Ref<Date>;
|
|
29
|
+
}>, {
|
|
30
|
+
model: import("vue-demi").Ref<Date, Date>;
|
|
31
31
|
value: import("vue-demi").ComputedRef<string>;
|
|
32
|
-
isOpen: import("vue-demi").Ref<boolean>;
|
|
32
|
+
isOpen: import("vue-demi").Ref<boolean, boolean>;
|
|
33
33
|
close: () => void;
|
|
34
|
-
},
|
|
34
|
+
}, {}, {}, {}, import("vue-demi").ComponentOptionsMixin, import("vue-demi").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue-demi").PublicProps, Readonly<import("vue-demi").ExtractPropTypes<{
|
|
35
35
|
schema: {
|
|
36
36
|
type: PropType<FilterDate>;
|
|
37
37
|
required: true;
|
|
@@ -56,13 +56,17 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
56
56
|
type: PropType<CalendarMode>;
|
|
57
57
|
default: string;
|
|
58
58
|
};
|
|
59
|
-
}>> & {
|
|
59
|
+
}>> & Readonly<{
|
|
60
60
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
61
|
-
}
|
|
62
|
-
modelValue: Date;
|
|
61
|
+
}>, {
|
|
63
62
|
mode: "date" | "month" | "year";
|
|
63
|
+
modelValue: Date;
|
|
64
64
|
min: Date;
|
|
65
65
|
max: Date;
|
|
66
66
|
format: string;
|
|
67
|
-
}, {}
|
|
67
|
+
}, {}, {
|
|
68
|
+
Dropdown: any;
|
|
69
|
+
DropdownHeader: any;
|
|
70
|
+
Calendar: any;
|
|
71
|
+
}, {}, string, import("vue-demi").ComponentProvideOptions, true, {}, any>;
|
|
68
72
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { PropType } from 'vue-demi';
|
|
2
2
|
import type { FilterSelect } from '..';
|
|
3
3
|
import type { SelectItem } from '../../select';
|
|
4
|
-
declare const _default: import("vue-demi").DefineComponent<{
|
|
4
|
+
declare const _default: import("vue-demi").DefineComponent<import("vue-demi").ExtractPropTypes<{
|
|
5
5
|
schema: {
|
|
6
6
|
type: PropType<FilterSelect>;
|
|
7
7
|
required: true;
|
|
@@ -14,13 +14,13 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
14
14
|
type: ArrayConstructor;
|
|
15
15
|
default: () => never[];
|
|
16
16
|
};
|
|
17
|
-
}
|
|
18
|
-
model: import("vue-demi").Ref<unknown[]>;
|
|
17
|
+
}>, {
|
|
18
|
+
model: import("vue-demi").Ref<unknown[], unknown[]>;
|
|
19
19
|
items: import("vue-demi").ComputedRef<SelectItem[]>;
|
|
20
|
-
isOpen: import("vue-demi").Ref<boolean>;
|
|
20
|
+
isOpen: import("vue-demi").Ref<boolean, boolean>;
|
|
21
21
|
selected: import("vue-demi").ComputedRef<SelectItem[]>;
|
|
22
22
|
close: () => void;
|
|
23
|
-
},
|
|
23
|
+
}, {}, {}, {}, import("vue-demi").ComponentOptionsMixin, import("vue-demi").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue-demi").PublicProps, Readonly<import("vue-demi").ExtractPropTypes<{
|
|
24
24
|
schema: {
|
|
25
25
|
type: PropType<FilterSelect>;
|
|
26
26
|
required: true;
|
|
@@ -33,10 +33,16 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
33
33
|
type: ArrayConstructor;
|
|
34
34
|
default: () => never[];
|
|
35
35
|
};
|
|
36
|
-
}>> & {
|
|
36
|
+
}>> & Readonly<{
|
|
37
37
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
38
|
-
}
|
|
38
|
+
}>, {
|
|
39
39
|
modelValue: unknown[];
|
|
40
40
|
options: string[] | SelectItem[];
|
|
41
|
-
}, {}
|
|
41
|
+
}, {}, {
|
|
42
|
+
Badge: any;
|
|
43
|
+
Dropdown: any;
|
|
44
|
+
DropdownItem: any;
|
|
45
|
+
DropdownHeader: any;
|
|
46
|
+
Checkbox: any;
|
|
47
|
+
}, {}, string, import("vue-demi").ComponentProvideOptions, true, {}, any>;
|
|
42
48
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { PropType } from 'vue-demi';
|
|
2
2
|
import type { FilterSelect } from '..';
|
|
3
3
|
import type { SelectItem } from '../../select';
|
|
4
|
-
declare const _default: import("vue-demi").DefineComponent<{
|
|
4
|
+
declare const _default: import("vue-demi").DefineComponent<import("vue-demi").ExtractPropTypes<{
|
|
5
5
|
schema: {
|
|
6
6
|
type: PropType<FilterSelect>;
|
|
7
7
|
required: true;
|
|
@@ -11,16 +11,16 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
11
11
|
default: () => never[];
|
|
12
12
|
};
|
|
13
13
|
modelValue: {
|
|
14
|
-
type: (
|
|
14
|
+
type: (BooleanConstructor | ArrayConstructor | StringConstructor | NumberConstructor | ObjectConstructor | DateConstructor)[];
|
|
15
15
|
default: undefined;
|
|
16
16
|
};
|
|
17
|
-
}
|
|
18
|
-
model: import("vue-demi").Ref<string | number | boolean | Date | Record<string, any> | unknown[]>;
|
|
17
|
+
}>, {
|
|
18
|
+
model: import("vue-demi").Ref<string | number | boolean | Date | Record<string, any> | unknown[], string | number | boolean | Date | Record<string, any> | unknown[]>;
|
|
19
19
|
items: import("vue-demi").ComputedRef<SelectItem[]>;
|
|
20
|
-
isOpen: import("vue-demi").Ref<boolean>;
|
|
20
|
+
isOpen: import("vue-demi").Ref<boolean, boolean>;
|
|
21
21
|
selected: import("vue-demi").ComputedRef<SelectItem | undefined>;
|
|
22
22
|
close: () => void;
|
|
23
|
-
},
|
|
23
|
+
}, {}, {}, {}, import("vue-demi").ComponentOptionsMixin, import("vue-demi").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue-demi").PublicProps, Readonly<import("vue-demi").ExtractPropTypes<{
|
|
24
24
|
schema: {
|
|
25
25
|
type: PropType<FilterSelect>;
|
|
26
26
|
required: true;
|
|
@@ -30,13 +30,18 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
30
30
|
default: () => never[];
|
|
31
31
|
};
|
|
32
32
|
modelValue: {
|
|
33
|
-
type: (
|
|
33
|
+
type: (BooleanConstructor | ArrayConstructor | StringConstructor | NumberConstructor | ObjectConstructor | DateConstructor)[];
|
|
34
34
|
default: undefined;
|
|
35
35
|
};
|
|
36
|
-
}>> & {
|
|
36
|
+
}>> & Readonly<{
|
|
37
37
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
38
|
-
}
|
|
38
|
+
}>, {
|
|
39
39
|
modelValue: string | number | boolean | Date | Record<string, any> | unknown[];
|
|
40
40
|
options: string[] | SelectItem[];
|
|
41
|
-
}, {}
|
|
41
|
+
}, {}, {
|
|
42
|
+
Dropdown: any;
|
|
43
|
+
DropdownItem: any;
|
|
44
|
+
DropdownHeader: any;
|
|
45
|
+
Radio: any;
|
|
46
|
+
}, {}, string, import("vue-demi").ComponentProvideOptions, true, {}, any>;
|
|
42
47
|
export default _default;
|
|
@@ -1,57 +1,59 @@
|
|
|
1
1
|
import type { PropType } from 'vue-demi';
|
|
2
2
|
import type { FilterToggle } from '..';
|
|
3
|
-
declare const _default: import("vue-demi").DefineComponent<{
|
|
3
|
+
declare const _default: import("vue-demi").DefineComponent<import("vue-demi").ExtractPropTypes<{
|
|
4
4
|
schema: {
|
|
5
5
|
type: PropType<FilterToggle>;
|
|
6
6
|
required: true;
|
|
7
7
|
};
|
|
8
8
|
modelValue: {
|
|
9
|
-
type: (
|
|
9
|
+
type: (BooleanConstructor | ArrayConstructor | StringConstructor | NumberConstructor | ObjectConstructor | DateConstructor)[];
|
|
10
10
|
default: boolean;
|
|
11
11
|
};
|
|
12
12
|
value: {
|
|
13
|
-
type: (
|
|
13
|
+
type: (BooleanConstructor | ArrayConstructor | StringConstructor | NumberConstructor | ObjectConstructor | DateConstructor)[];
|
|
14
14
|
default: boolean;
|
|
15
15
|
};
|
|
16
16
|
uncheckedValue: {
|
|
17
|
-
type: (
|
|
17
|
+
type: (BooleanConstructor | ArrayConstructor | StringConstructor | NumberConstructor | ObjectConstructor | DateConstructor)[];
|
|
18
18
|
default: boolean;
|
|
19
19
|
};
|
|
20
20
|
checked: {
|
|
21
21
|
type: BooleanConstructor;
|
|
22
22
|
default: boolean;
|
|
23
23
|
};
|
|
24
|
-
}
|
|
25
|
-
model: import("vue-demi").Ref<boolean>;
|
|
24
|
+
}>, {
|
|
25
|
+
model: import("vue-demi").Ref<boolean, boolean>;
|
|
26
26
|
toggle: () => void;
|
|
27
|
-
},
|
|
27
|
+
}, {}, {}, {}, import("vue-demi").ComponentOptionsMixin, import("vue-demi").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue-demi").PublicProps, Readonly<import("vue-demi").ExtractPropTypes<{
|
|
28
28
|
schema: {
|
|
29
29
|
type: PropType<FilterToggle>;
|
|
30
30
|
required: true;
|
|
31
31
|
};
|
|
32
32
|
modelValue: {
|
|
33
|
-
type: (
|
|
33
|
+
type: (BooleanConstructor | ArrayConstructor | StringConstructor | NumberConstructor | ObjectConstructor | DateConstructor)[];
|
|
34
34
|
default: boolean;
|
|
35
35
|
};
|
|
36
36
|
value: {
|
|
37
|
-
type: (
|
|
37
|
+
type: (BooleanConstructor | ArrayConstructor | StringConstructor | NumberConstructor | ObjectConstructor | DateConstructor)[];
|
|
38
38
|
default: boolean;
|
|
39
39
|
};
|
|
40
40
|
uncheckedValue: {
|
|
41
|
-
type: (
|
|
41
|
+
type: (BooleanConstructor | ArrayConstructor | StringConstructor | NumberConstructor | ObjectConstructor | DateConstructor)[];
|
|
42
42
|
default: boolean;
|
|
43
43
|
};
|
|
44
44
|
checked: {
|
|
45
45
|
type: BooleanConstructor;
|
|
46
46
|
default: boolean;
|
|
47
47
|
};
|
|
48
|
-
}>> & {
|
|
49
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
48
|
+
}>> & Readonly<{
|
|
50
49
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
51
|
-
|
|
50
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
51
|
+
}>, {
|
|
52
52
|
value: string | number | boolean | Date | Record<string, any> | unknown[];
|
|
53
53
|
modelValue: string | number | boolean | Date | Record<string, any> | unknown[];
|
|
54
54
|
checked: boolean;
|
|
55
55
|
uncheckedValue: string | number | boolean | Date | Record<string, any> | unknown[];
|
|
56
|
-
}, {}
|
|
56
|
+
}, {}, {
|
|
57
|
+
Button: any;
|
|
58
|
+
}, {}, string, import("vue-demi").ComponentProvideOptions, true, {}, any>;
|
|
57
59
|
export default _default;
|
|
@@ -27,7 +27,7 @@ export declare function createStore(): Ref<State>;
|
|
|
27
27
|
export declare function setStore(state: Ref<State>): void;
|
|
28
28
|
export declare function initStore(): Ref<State>;
|
|
29
29
|
export declare function destroyStore(): void;
|
|
30
|
-
export declare function useStore(): Ref<State>;
|
|
30
|
+
export declare function useStore(): Ref<State, State>;
|
|
31
31
|
export declare function setLang(lang: Lang): void;
|
|
32
32
|
export declare function getLang(): Lang;
|
|
33
33
|
export declare function getCDN(): string;
|
|
@@ -45,5 +45,5 @@ export declare function setPSPDFLicenseKey(licenseKey: string): void;
|
|
|
45
45
|
* // get lang
|
|
46
46
|
* console.log(lang.value)
|
|
47
47
|
*/
|
|
48
|
-
export declare function useLang(): Ref<Lang>;
|
|
48
|
+
export declare function useLang(): Ref<Lang, Lang>;
|
|
49
49
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { MaybeRef } from '@vueuse/core';
|
|
2
|
-
export declare function usePasswordStrength(input: MaybeRef<string>): import("vue-demi").Ref<number>;
|
|
2
|
+
export declare function usePasswordStrength(input: MaybeRef<string>): import("vue-demi").Ref<number, number>;
|
|
@@ -26,4 +26,4 @@ export interface MarkdownOption {
|
|
|
26
26
|
*/
|
|
27
27
|
export declare function markdown(text?: string, _option?: Partial<MarkdownOption>): string;
|
|
28
28
|
export declare const pMd: Directive<HTMLElement, string>;
|
|
29
|
-
export declare const vPMd: import("vue-demi").FunctionDirective<HTMLElement, string>;
|
|
29
|
+
export declare const vPMd: import("vue-demi").FunctionDirective<HTMLElement, string, string, string>;
|
|
@@ -2,57 +2,57 @@
|
|
|
2
2
|
"PAccordion": "components/accordion/Accordion.vue",
|
|
3
3
|
"PAccordionItem": "components/accordion/AccordionItem.vue",
|
|
4
4
|
"PAccordionItems": "components/accordion/AccordionItems.vue",
|
|
5
|
+
"PBadge": "components/badge/Badge.vue",
|
|
5
6
|
"PAvatar": "components/avatar/Avatar.vue",
|
|
6
7
|
"PAvatarGroup": "components/avatar/AvatarGroup.vue",
|
|
7
8
|
"PAvatarTruncate": "components/avatar/AvatarTruncate.vue",
|
|
8
9
|
"PBanner": "components/banner/Banner.vue",
|
|
9
|
-
"
|
|
10
|
+
"PButton": "components/button/Button.vue",
|
|
10
11
|
"PBreadcrumb": "components/breadcrumbs/Breadcrumb.vue",
|
|
11
12
|
"PBreadcrumbItem": "components/breadcrumbs/BreadcrumbItem.vue",
|
|
12
13
|
"PBreadcrumbItemDropdown": "components/breadcrumbs/BreadcrumbItemDropdown.vue",
|
|
13
|
-
"PButton": "components/button/Button.vue",
|
|
14
|
-
"PButtonGroup": "components/button-group/ButtonGroup.vue",
|
|
15
|
-
"PCamera": "components/camera/Camera.vue",
|
|
16
14
|
"PCalendar": "components/calendar/Calendar.vue",
|
|
15
|
+
"PButtonGroup": "components/button-group/ButtonGroup.vue",
|
|
17
16
|
"PCaption": "components/caption/Caption.vue",
|
|
17
|
+
"PCamera": "components/camera/Camera.vue",
|
|
18
18
|
"PCard": "components/card/Card.vue",
|
|
19
19
|
"PCardSection": "components/card/CardSection.vue",
|
|
20
20
|
"PCarousel": "components/carousel/Carousel.vue",
|
|
21
21
|
"PCarouselBody": "components/carousel/CarouselBody.vue",
|
|
22
22
|
"PCarouselItem": "components/carousel/CarouselItem.vue",
|
|
23
|
+
"PCollapse": "components/collapse/Collapse.vue",
|
|
24
|
+
"PCheckbox": "components/checkbox/Checkbox.vue",
|
|
23
25
|
"PChart": "components/chart/Chart.vue",
|
|
24
26
|
"PChartSet": "components/chart/ChartSet.vue",
|
|
25
27
|
"PChartVal": "components/chart/ChartVal.vue",
|
|
26
|
-
"PCheckbox": "components/checkbox/Checkbox.vue",
|
|
27
|
-
"PCollapse": "components/collapse/Collapse.vue",
|
|
28
|
-
"PCropper": "components/cropper/Cropper.vue",
|
|
29
|
-
"PDatepicker": "components/datepicker/Datepicker.vue",
|
|
30
28
|
"PContextualBar": "components/contextual-bar/ContextualBar.vue",
|
|
29
|
+
"PDatepicker": "components/datepicker/Datepicker.vue",
|
|
31
30
|
"PDialog": "components/dialog/Dialog.vue",
|
|
32
31
|
"PDialogFooter": "components/dialog/DialogFooter.vue",
|
|
32
|
+
"PCropper": "components/cropper/Cropper.vue",
|
|
33
33
|
"PDivider": "components/divider/Divider.vue",
|
|
34
34
|
"PDot": "components/dot/Dot.vue",
|
|
35
|
+
"PDropdownSubitem": "components/dropdown-subitem/DropdownSubitem.vue",
|
|
36
|
+
"PDropzone": "components/dropzone/Dropzone.vue",
|
|
35
37
|
"PDropdown": "components/dropdown/Dropdown.vue",
|
|
36
38
|
"PDropdownHeader": "components/dropdown/DropdownHeader.vue",
|
|
37
39
|
"PDropdownItem": "components/dropdown/DropdownItem.vue",
|
|
38
40
|
"PDropdownText": "components/dropdown/DropdownText.vue",
|
|
39
|
-
"PDropdownSubitem": "components/dropdown-subitem/DropdownSubitem.vue",
|
|
40
|
-
"PDropzone": "components/dropzone/Dropzone.vue",
|
|
41
|
-
"PFormGroup": "components/form-group/FormGroup.vue",
|
|
42
41
|
"PFilterbar": "components/filterbar/Filterbar.vue",
|
|
43
|
-
"
|
|
44
|
-
"PinputColor": "components/input-color/inputColor.vue",
|
|
42
|
+
"PFormGroup": "components/form-group/FormGroup.vue",
|
|
45
43
|
"PInput": "components/input/Input.vue",
|
|
44
|
+
"PinputColor": "components/input-color/inputColor.vue",
|
|
45
|
+
"PHeading": "components/heading/Heading.vue",
|
|
46
|
+
"PInputPassword": "components/input-password/InputPassword.vue",
|
|
46
47
|
"PInputFile": "components/input-file/InputFile.vue",
|
|
48
|
+
"PInputPin": "components/input-pin/InputPin.vue",
|
|
47
49
|
"PInputGroup": "components/input-group/InputGroup.vue",
|
|
48
50
|
"PInputGroupAddon": "components/input-group/InputGroupAddon.vue",
|
|
49
|
-
"PInputPin": "components/input-pin/InputPin.vue",
|
|
50
|
-
"PInputPassword": "components/input-password/InputPassword.vue",
|
|
51
51
|
"PInputRange": "components/input-range/InputRange.vue",
|
|
52
52
|
"PLabel": "components/label/Label.vue",
|
|
53
|
-
"PMain": "components/main/Main.vue",
|
|
54
53
|
"PListGroup": "components/list-group/ListGroup.vue",
|
|
55
54
|
"PListGroupItem": "components/list-group/ListGroupItem.vue",
|
|
55
|
+
"PMain": "components/main/Main.vue",
|
|
56
56
|
"PModal": "components/modal/Modal.vue",
|
|
57
57
|
"PNavbar": "components/navbar/Navbar.vue",
|
|
58
58
|
"PNavbarBrand": "components/navbar/NavbarBrand.vue",
|
|
@@ -66,25 +66,26 @@
|
|
|
66
66
|
"PNavSubItem": "components/nav/NavSubItem.vue",
|
|
67
67
|
"PNavText": "components/nav/NavText.vue",
|
|
68
68
|
"PNavbarNavMenu": "components/navbar-menu/NavbarNavMenu.vue",
|
|
69
|
-
"PNotify": "components/notify/Notify.vue",
|
|
70
|
-
"PNotifyGroup": "components/notify/NotifyGroup.vue",
|
|
71
|
-
"PNotifyItem": "components/notify/NotifyItem.vue",
|
|
72
69
|
"POverlay": "components/overlay/Overlay.vue",
|
|
73
70
|
"PPage": "components/page/Page.vue",
|
|
74
71
|
"PPagination": "components/pagination/Pagination.vue",
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"PPdfNavigation": "components/pdf-viewer/PdfNavigation.vue",
|
|
79
|
-
"PPdfViewer": "components/pdf-viewer/PdfViewer.vue",
|
|
72
|
+
"PNotify": "components/notify/Notify.vue",
|
|
73
|
+
"PNotifyGroup": "components/notify/NotifyGroup.vue",
|
|
74
|
+
"PNotifyItem": "components/notify/NotifyItem.vue",
|
|
80
75
|
"PPdfObject": "components/pdf-object/PdfObject.vue",
|
|
81
76
|
"PPdfObjectAddon": "components/pdf-object/PdfObjectAddon.vue",
|
|
82
77
|
"PPdfObjectDebugger": "components/pdf-object/PdfObjectDebugger.vue",
|
|
83
78
|
"PPdfObjects": "components/pdf-object/PdfObjects.vue",
|
|
84
79
|
"PPdfText": "components/pdf-text/PdfText.vue",
|
|
85
|
-
"
|
|
80
|
+
"PPdfHelipad": "components/pdf-helipad/PdfHelipad.vue",
|
|
81
|
+
"PPdfError": "components/pdf-viewer/PdfError.vue",
|
|
82
|
+
"PPdfLoading": "components/pdf-viewer/PdfLoading.vue",
|
|
83
|
+
"PPdfNavigation": "components/pdf-viewer/PdfNavigation.vue",
|
|
84
|
+
"PPdfViewer": "components/pdf-viewer/PdfViewer.vue",
|
|
86
85
|
"PPopup": "components/popup/Popup.vue",
|
|
86
|
+
"PPopover": "components/popover/Popover.vue",
|
|
87
87
|
"PProgressIndicator": "components/progress-indicator/ProgressIndicator.vue",
|
|
88
|
+
"PProgressbar": "components/progressbar/Progressbar.vue",
|
|
88
89
|
"PProgress": "components/progress/Progress.vue",
|
|
89
90
|
"PProgressItem": "components/progress/ProgressItem.vue",
|
|
90
91
|
"PPspdfHelipad": "components/pspdfkit/PspdfHelipad.vue",
|
|
@@ -92,58 +93,57 @@
|
|
|
92
93
|
"PPspdfObjectAddon": "components/pspdfkit/PspdfObjectAddon.vue",
|
|
93
94
|
"PPspdfObjects": "components/pspdfkit/PspdfObjects.vue",
|
|
94
95
|
"PPspdfViewer": "components/pspdfkit/PspdfViewer.vue",
|
|
95
|
-
"PProgressbar": "components/progressbar/Progressbar.vue",
|
|
96
|
-
"PQrcode": "components/qrcode/Qrcode.vue",
|
|
97
|
-
"PRadio": "components/radio/Radio.vue",
|
|
98
96
|
"PRichtext": "components/richtext/Richtext.vue",
|
|
99
97
|
"PRichtextToolbarAdvance": "components/richtext/RichtextToolbarAdvance.vue",
|
|
100
98
|
"PRichtextToolbarSimple": "components/richtext/RichtextToolbarSimple.vue",
|
|
99
|
+
"PQrcode": "components/qrcode/Qrcode.vue",
|
|
100
|
+
"PRadio": "components/radio/Radio.vue",
|
|
101
101
|
"PRingbar": "components/ringbar/Ringbar.vue",
|
|
102
|
+
"PSheet": "components/sheet/Sheet.vue",
|
|
103
|
+
"PShimmer": "components/shimmer/Shimmer.vue",
|
|
102
104
|
"PSelect": "components/select/Select.vue",
|
|
103
105
|
"PSelectInput": "components/select/SelectInput.vue",
|
|
104
106
|
"PSelectTags": "components/select/SelectTags.vue",
|
|
105
|
-
"PShimmer": "components/shimmer/Shimmer.vue",
|
|
106
|
-
"PSheet": "components/sheet/Sheet.vue",
|
|
107
107
|
"PSidebar": "components/sidebar/Sidebar.vue",
|
|
108
108
|
"PSidebarBrand": "components/sidebar/SidebarBrand.vue",
|
|
109
109
|
"PSidebarContent": "components/sidebar/SidebarContent.vue",
|
|
110
110
|
"PSidebarNav": "components/sidebar/SidebarNav.vue",
|
|
111
|
+
"PSidebarMenu": "components/sidebar-menu/SidebarMenu.vue",
|
|
112
|
+
"PSidebarMenuItem": "components/sidebar-menu/SidebarMenuItem.vue",
|
|
111
113
|
"PSignatureDraw": "components/signature-draw/SignatureDraw.vue",
|
|
112
114
|
"PSignatureDrawDesktop": "components/signature-draw/SignatureDrawDesktop.vue",
|
|
113
115
|
"PSignatureDrawMobile": "components/signature-draw/SignatureDrawMobile.vue",
|
|
114
|
-
"PSidebarMenu": "components/sidebar-menu/SidebarMenu.vue",
|
|
115
|
-
"PSidebarMenuItem": "components/sidebar-menu/SidebarMenuItem.vue",
|
|
116
|
-
"PSignatureText": "components/signature-text/SignatureText.vue",
|
|
117
116
|
"PSpinner": "components/spinner/Spinner.vue",
|
|
118
117
|
"PSpinnerRing": "components/spinner/SpinnerRing.vue",
|
|
119
118
|
"PSpinnerRinggo": "components/spinner/SpinnerRinggo.vue",
|
|
120
|
-
"
|
|
121
|
-
"PStrengthbar": "components/strengthbar/Strengthbar.vue",
|
|
122
|
-
"PSubheading": "components/subheading/Subheading.vue",
|
|
119
|
+
"PSignatureText": "components/signature-text/SignatureText.vue",
|
|
123
120
|
"PStep": "components/steps/Step.vue",
|
|
124
121
|
"PStepSlider": "components/steps/StepSlider.vue",
|
|
125
122
|
"PSteps": "components/steps/Steps.vue",
|
|
123
|
+
"PSpread": "components/spread/Spread.vue",
|
|
124
|
+
"PStrengthbar": "components/strengthbar/Strengthbar.vue",
|
|
126
125
|
"PTable": "components/table/Table.vue",
|
|
126
|
+
"PSubheading": "components/subheading/Subheading.vue",
|
|
127
127
|
"PTableFlex": "components/table-flex/TableFlex.vue",
|
|
128
|
-
"
|
|
129
|
-
"PTabContent": "components/tabs/TabContent.vue",
|
|
130
|
-
"PTabs": "components/tabs/Tabs.vue",
|
|
128
|
+
"PText": "components/text/Text.vue",
|
|
131
129
|
"PTableStatic": "components/table-static/TableStatic.vue",
|
|
132
130
|
"PTableStaticRoot": "components/table-static/TableStaticRoot.vue",
|
|
133
131
|
"PTableStaticSort": "components/table-static/TableStaticSort.vue",
|
|
134
|
-
"
|
|
132
|
+
"PTab": "components/tabs/Tab.vue",
|
|
133
|
+
"PTabContent": "components/tabs/TabContent.vue",
|
|
134
|
+
"PTabs": "components/tabs/Tabs.vue",
|
|
135
135
|
"PTextarea": "components/textarea/Textarea.vue",
|
|
136
136
|
"PTime": "components/time/Time.vue",
|
|
137
137
|
"PTimeItem": "components/time/TimeItem.vue",
|
|
138
|
+
"PToast": "components/toast/Toast.vue",
|
|
138
139
|
"PTimepicker": "components/timepicker/Timepicker.vue",
|
|
139
140
|
"PToggle": "components/toggle/Toggle.vue",
|
|
140
|
-
"PToast": "components/toast/Toast.vue",
|
|
141
|
-
"PTooltip": "components/tooltip/Tooltip.vue",
|
|
142
|
-
"PTooltipContainer": "components/tooltip/TooltipContainer.vue",
|
|
143
|
-
"PTruncate": "components/truncate/Truncate.vue",
|
|
144
141
|
"PTour": "components/tour/Tour.vue",
|
|
145
142
|
"PTourDialog": "components/tour/TourDialog.vue",
|
|
146
143
|
"PTourHighlight": "components/tour/TourHighlight.vue",
|
|
144
|
+
"PTooltip": "components/tooltip/Tooltip.vue",
|
|
145
|
+
"PTooltipContainer": "components/tooltip/TooltipContainer.vue",
|
|
146
|
+
"PTruncate": "components/truncate/Truncate.vue",
|
|
147
147
|
"PWizard": "components/wizard/Wizard.vue",
|
|
148
148
|
"PWizardBody": "components/wizard/WizardBody.vue",
|
|
149
149
|
"PWizardHeader": "components/wizard/WizardHeader.vue",
|
|
@@ -154,6 +154,9 @@
|
|
|
154
154
|
"PPinnedMultiselect": "components/filterbar/pinned/PinnedMultiselect.vue",
|
|
155
155
|
"PPinnedSelect": "components/filterbar/pinned/PinnedSelect.vue",
|
|
156
156
|
"PPinnedToggle": "components/filterbar/pinned/PinnedToggle.vue",
|
|
157
|
+
"PRichtextPopupImageEdit": "components/richtext/popup/RichtextPopupImageEdit.vue",
|
|
158
|
+
"PRichtextPopupLinkDetail": "components/richtext/popup/RichtextPopupLinkDetail.vue",
|
|
159
|
+
"PRichtextPopupLinkEdit": "components/richtext/popup/RichtextPopupLinkEdit.vue",
|
|
157
160
|
"PRichtextControlFontFamily": "components/richtext/control/RichtextControlFontFamily.vue",
|
|
158
161
|
"PRichtextControlFontSize": "components/richtext/control/RichtextControlFontSize.vue",
|
|
159
162
|
"PRichtextControlHighlight": "components/richtext/control/RichtextControlHighlight.vue",
|
|
@@ -164,8 +167,5 @@
|
|
|
164
167
|
"PRichtextControlTable": "components/richtext/control/RichtextControlTable.vue",
|
|
165
168
|
"PRichtextControlTextAlign": "components/richtext/control/RichtextControlTextAlign.vue",
|
|
166
169
|
"PRichtextControlTextFormat": "components/richtext/control/RichtextControlTextFormat.vue",
|
|
167
|
-
"PRichtextControlTextHeading": "components/richtext/control/RichtextControlTextHeading.vue"
|
|
168
|
-
"PRichtextPopupImageEdit": "components/richtext/popup/RichtextPopupImageEdit.vue",
|
|
169
|
-
"PRichtextPopupLinkDetail": "components/richtext/popup/RichtextPopupLinkDetail.vue",
|
|
170
|
-
"PRichtextPopupLinkEdit": "components/richtext/popup/RichtextPopupLinkEdit.vue"
|
|
170
|
+
"PRichtextControlTextHeading": "components/richtext/control/RichtextControlTextHeading.vue"
|
|
171
171
|
}
|
|
@@ -100,12 +100,8 @@ const navItemClass = computed(() => {
|
|
|
100
100
|
})
|
|
101
101
|
|
|
102
102
|
const link = computed(() => {
|
|
103
|
-
let permalink: string | undefined
|
|
104
|
-
|
|
105
103
|
if (!props.disabled)
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
return permalink
|
|
104
|
+
return props.href
|
|
109
105
|
})
|
|
110
106
|
</script>
|
|
111
107
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export interface LoadingOptions {
|
|
2
2
|
elapsed: number | boolean;
|
|
3
3
|
}
|
|
4
|
-
export default function useLoading(options_?: LoadingOptions): import("vue-demi").WritableComputedRef<boolean>;
|
|
4
|
+
export default function useLoading(options_?: LoadingOptions): import("vue-demi").WritableComputedRef<boolean, boolean>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { Ref } from 'vue-demi';
|
|
2
2
|
import type { DragHooks } from '../../pdf-object/utils/use-drag';
|
|
3
|
-
export default function useDrag(target: Ref<HTMLElement>, options?: DragHooks): import("vue-demi").ShallowRef<boolean>;
|
|
3
|
+
export default function useDrag(target: Ref<HTMLElement>, options?: DragHooks): import("vue-demi").ShallowRef<boolean, boolean>;
|