@privyid/persona 1.2.2-rc.7 → 1.2.2-rc.8
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/card/Card.vue.d.ts +2 -2
- package/dist/components/carousel/Carousel.vue.d.ts +2 -2
- package/dist/components/chart/Chart.vue.d.ts +1 -1
- package/dist/components/datepicker/Datepicker.vue.d.ts +3 -3
- package/dist/components/form-group/FormGroup.vue.d.ts +1 -1
- package/dist/components/input-range/InputRange.vue.d.ts +1 -1
- package/dist/components/label/Label.vue.d.ts +1 -1
- package/dist/components/meta.json +41 -41
- package/dist/components/modal/Modal.vue.d.ts +1 -1
- package/dist/components/pdf-viewer/PdfViewer.vue.d.ts +2 -2
- package/dist/components/pdf-viewer/utils/pdfjs.mjs +19 -0
- package/dist/components/popover/Popover.vue.d.ts +6 -6
- package/dist/components/pspdfkit/PspdfViewer.vue.d.ts +2 -2
- package/dist/components/sidebar-menu/SidebarMenu.vue.d.ts +1 -1
- package/dist/components/table-flex/TableFlex.vue.d.ts +3 -3
- package/dist/components/table-static/TableStatic.vue.d.ts +4 -4
- package/dist/components/table-static/TableStaticRoot.vue.d.ts +1 -1
- package/dist/components/timepicker/Timepicker.vue.d.ts +1 -1
- package/dist/components/tooltip/Tooltip.vue.d.ts +1 -1
- package/dist/module.json +1 -1
- package/package.json +2 -2
|
@@ -102,11 +102,11 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
102
102
|
title: string;
|
|
103
103
|
disabled: boolean;
|
|
104
104
|
dismissable: boolean;
|
|
105
|
+
readonly: boolean;
|
|
105
106
|
element: ElementVariant;
|
|
107
|
+
bodyClass: string | unknown[];
|
|
106
108
|
sectioned: boolean;
|
|
107
|
-
readonly: boolean;
|
|
108
109
|
callout: boolean;
|
|
109
|
-
bodyClass: string | unknown[];
|
|
110
110
|
spacing: SpacingVariant;
|
|
111
111
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
112
112
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -106,10 +106,10 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
106
106
|
modelValue: number;
|
|
107
107
|
width: string | number;
|
|
108
108
|
height: string | number;
|
|
109
|
-
direction: DirectionVariant;
|
|
110
109
|
align: AlignmentVariant;
|
|
111
|
-
loop: boolean;
|
|
112
110
|
autoplay: boolean;
|
|
111
|
+
direction: DirectionVariant;
|
|
112
|
+
loop: boolean;
|
|
113
113
|
autoplayInterval: string | number;
|
|
114
114
|
splideOptions: Options;
|
|
115
115
|
noProgress: boolean;
|
|
@@ -49,7 +49,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
49
49
|
default: undefined;
|
|
50
50
|
};
|
|
51
51
|
}>> & Readonly<{}>, {
|
|
52
|
-
data: ChartData<keyof import("chart.js/auto").ChartTypeRegistry, (number |
|
|
52
|
+
data: ChartData<keyof import("chart.js/auto").ChartTypeRegistry, (number | import("chart.js/auto").Point | [number, number] | import("chart.js/auto").BubbleDataPoint | null)[], unknown>;
|
|
53
53
|
legend: LegendPosition;
|
|
54
54
|
variant: keyof import("chart.js/auto").ChartTypeRegistry;
|
|
55
55
|
options: import("chart.js/dist/types/utils")._DeepPartialObject<import("chart.js/auto").CoreChartOptions<keyof import("chart.js/auto").ChartTypeRegistry> & import("chart.js/auto").ElementChartOptions<keyof import("chart.js/auto").ChartTypeRegistry> & import("chart.js/auto").PluginChartOptions<keyof import("chart.js/auto").ChartTypeRegistry> & import("chart.js/auto").DatasetChartOptions<keyof import("chart.js/auto").ChartTypeRegistry> & import("chart.js/auto").ScaleChartOptions<keyof import("chart.js/auto").ChartTypeRegistry>>;
|
|
@@ -169,13 +169,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
169
169
|
start: Date;
|
|
170
170
|
end: Date;
|
|
171
171
|
readonly: boolean;
|
|
172
|
+
clearable: boolean;
|
|
173
|
+
containerClass: string | unknown[] | Record<string, any>;
|
|
174
|
+
placeholder: string;
|
|
172
175
|
min: Date;
|
|
173
176
|
range: boolean;
|
|
174
177
|
minRange: string;
|
|
175
178
|
maxRange: string;
|
|
176
|
-
clearable: boolean;
|
|
177
|
-
containerClass: string | unknown[] | Record<string, any>;
|
|
178
|
-
placeholder: string;
|
|
179
179
|
format: string;
|
|
180
180
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
181
181
|
export default _default;
|
|
@@ -91,9 +91,9 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
91
91
|
label: string;
|
|
92
92
|
required: boolean;
|
|
93
93
|
error: string;
|
|
94
|
-
horizontal: boolean;
|
|
95
94
|
description: string;
|
|
96
95
|
hint: string;
|
|
96
|
+
horizontal: boolean;
|
|
97
97
|
errorIcon: boolean;
|
|
98
98
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
99
99
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -100,7 +100,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
100
100
|
start: number;
|
|
101
101
|
end: number;
|
|
102
102
|
readonly: boolean;
|
|
103
|
-
min: string | number;
|
|
104
103
|
step: string | number;
|
|
104
|
+
min: string | number;
|
|
105
105
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
106
106
|
export default _default;
|
|
@@ -51,8 +51,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
51
51
|
}>, {
|
|
52
52
|
size: SizeVariant;
|
|
53
53
|
variant: StyleVariant;
|
|
54
|
-
color: ColorVariant;
|
|
55
54
|
dismissable: boolean;
|
|
55
|
+
color: ColorVariant;
|
|
56
56
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
57
57
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
58
58
|
export default _default;
|
|
@@ -2,63 +2,67 @@
|
|
|
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
|
-
"PBadge": "components/badge/Badge.vue",
|
|
9
9
|
"PBanner": "components/banner/Banner.vue",
|
|
10
10
|
"PBreadcrumb": "components/breadcrumbs/Breadcrumb.vue",
|
|
11
11
|
"PBreadcrumbItem": "components/breadcrumbs/BreadcrumbItem.vue",
|
|
12
12
|
"PBreadcrumbItemDropdown": "components/breadcrumbs/BreadcrumbItemDropdown.vue",
|
|
13
13
|
"PButton": "components/button/Button.vue",
|
|
14
|
-
"PButtonGroup": "components/button-group/ButtonGroup.vue",
|
|
15
14
|
"PCalendar": "components/calendar/Calendar.vue",
|
|
16
15
|
"PCaption": "components/caption/Caption.vue",
|
|
16
|
+
"PButtonGroup": "components/button-group/ButtonGroup.vue",
|
|
17
17
|
"PCamera": "components/camera/Camera.vue",
|
|
18
18
|
"PCard": "components/card/Card.vue",
|
|
19
19
|
"PCardSection": "components/card/CardSection.vue",
|
|
20
|
-
"
|
|
21
|
-
"PCarouselBody": "components/carousel/CarouselBody.vue",
|
|
22
|
-
"PCarouselItem": "components/carousel/CarouselItem.vue",
|
|
20
|
+
"PCheckbox": "components/checkbox/Checkbox.vue",
|
|
23
21
|
"PChart": "components/chart/Chart.vue",
|
|
24
22
|
"PChartSet": "components/chart/ChartSet.vue",
|
|
25
23
|
"PChartVal": "components/chart/ChartVal.vue",
|
|
26
24
|
"PCollapse": "components/collapse/Collapse.vue",
|
|
27
|
-
"
|
|
25
|
+
"PCarousel": "components/carousel/Carousel.vue",
|
|
26
|
+
"PCarouselBody": "components/carousel/CarouselBody.vue",
|
|
27
|
+
"PCarouselItem": "components/carousel/CarouselItem.vue",
|
|
28
28
|
"PContextualBar": "components/contextual-bar/ContextualBar.vue",
|
|
29
|
-
"PDatepicker": "components/datepicker/Datepicker.vue",
|
|
30
29
|
"PCropper": "components/cropper/Cropper.vue",
|
|
31
|
-
"
|
|
32
|
-
"PDot": "components/dot/Dot.vue",
|
|
30
|
+
"PDatepicker": "components/datepicker/Datepicker.vue",
|
|
33
31
|
"PDialog": "components/dialog/Dialog.vue",
|
|
34
32
|
"PDialogFooter": "components/dialog/DialogFooter.vue",
|
|
33
|
+
"PDivider": "components/divider/Divider.vue",
|
|
34
|
+
"PDot": "components/dot/Dot.vue",
|
|
35
35
|
"PDropdownSubitem": "components/dropdown-subitem/DropdownSubitem.vue",
|
|
36
36
|
"PDropdown": "components/dropdown/Dropdown.vue",
|
|
37
37
|
"PDropdownHeader": "components/dropdown/DropdownHeader.vue",
|
|
38
38
|
"PDropdownItem": "components/dropdown/DropdownItem.vue",
|
|
39
39
|
"PDropdownText": "components/dropdown/DropdownText.vue",
|
|
40
|
-
"PFilterbar": "components/filterbar/Filterbar.vue",
|
|
41
40
|
"PDropzone": "components/dropzone/Dropzone.vue",
|
|
41
|
+
"PFilterbar": "components/filterbar/Filterbar.vue",
|
|
42
42
|
"PFormGroup": "components/form-group/FormGroup.vue",
|
|
43
|
-
"PInput": "components/input/Input.vue",
|
|
44
43
|
"PHeading": "components/heading/Heading.vue",
|
|
45
|
-
"
|
|
44
|
+
"PInput": "components/input/Input.vue",
|
|
46
45
|
"PinputColor": "components/input-color/inputColor.vue",
|
|
46
|
+
"PInputFile": "components/input-file/InputFile.vue",
|
|
47
|
+
"PInputPassword": "components/input-password/InputPassword.vue",
|
|
47
48
|
"PInputGroup": "components/input-group/InputGroup.vue",
|
|
48
49
|
"PInputGroupAddon": "components/input-group/InputGroupAddon.vue",
|
|
49
|
-
"PInputPassword": "components/input-password/InputPassword.vue",
|
|
50
|
-
"PInputRange": "components/input-range/InputRange.vue",
|
|
51
50
|
"PInputPin": "components/input-pin/InputPin.vue",
|
|
52
|
-
"
|
|
51
|
+
"PInputRange": "components/input-range/InputRange.vue",
|
|
53
52
|
"PListGroup": "components/list-group/ListGroup.vue",
|
|
54
53
|
"PListGroupItem": "components/list-group/ListGroupItem.vue",
|
|
55
54
|
"PMain": "components/main/Main.vue",
|
|
56
|
-
"
|
|
57
|
-
"PNavbarNavMenu": "components/navbar-menu/NavbarNavMenu.vue",
|
|
55
|
+
"PLabel": "components/label/Label.vue",
|
|
58
56
|
"PNavbar": "components/navbar/Navbar.vue",
|
|
59
57
|
"PNavbarBrand": "components/navbar/NavbarBrand.vue",
|
|
60
58
|
"PNavbarNav": "components/navbar/NavbarNav.vue",
|
|
61
59
|
"PNavbarToggle": "components/navbar/NavbarToggle.vue",
|
|
60
|
+
"PModal": "components/modal/Modal.vue",
|
|
61
|
+
"PNavbarNavMenu": "components/navbar-menu/NavbarNavMenu.vue",
|
|
62
|
+
"POverlay": "components/overlay/Overlay.vue",
|
|
63
|
+
"PNotify": "components/notify/Notify.vue",
|
|
64
|
+
"PNotifyGroup": "components/notify/NotifyGroup.vue",
|
|
65
|
+
"PNotifyItem": "components/notify/NotifyItem.vue",
|
|
62
66
|
"PNav": "components/nav/Nav.vue",
|
|
63
67
|
"PNavCollapse": "components/nav/NavCollapse.vue",
|
|
64
68
|
"PNavForm": "components/nav/NavForm.vue",
|
|
@@ -66,41 +70,37 @@
|
|
|
66
70
|
"PNavItemDropdown": "components/nav/NavItemDropdown.vue",
|
|
67
71
|
"PNavSubItem": "components/nav/NavSubItem.vue",
|
|
68
72
|
"PNavText": "components/nav/NavText.vue",
|
|
69
|
-
"PNotify": "components/notify/Notify.vue",
|
|
70
|
-
"PNotifyGroup": "components/notify/NotifyGroup.vue",
|
|
71
|
-
"PNotifyItem": "components/notify/NotifyItem.vue",
|
|
72
73
|
"PPage": "components/page/Page.vue",
|
|
73
|
-
"POverlay": "components/overlay/Overlay.vue",
|
|
74
74
|
"PPdfHelipad": "components/pdf-helipad/PdfHelipad.vue",
|
|
75
|
-
"PPdfObject": "components/pdf-object/PdfObject.vue",
|
|
76
|
-
"PPdfObjectAddon": "components/pdf-object/PdfObjectAddon.vue",
|
|
77
|
-
"PPdfObjectDebugger": "components/pdf-object/PdfObjectDebugger.vue",
|
|
78
|
-
"PPdfObjects": "components/pdf-object/PdfObjects.vue",
|
|
79
75
|
"PPagination": "components/pagination/Pagination.vue",
|
|
80
|
-
"
|
|
76
|
+
"PPopover": "components/popover/Popover.vue",
|
|
81
77
|
"PPdfError": "components/pdf-viewer/PdfError.vue",
|
|
82
78
|
"PPdfLoading": "components/pdf-viewer/PdfLoading.vue",
|
|
83
79
|
"PPdfNavigation": "components/pdf-viewer/PdfNavigation.vue",
|
|
84
80
|
"PPdfViewer": "components/pdf-viewer/PdfViewer.vue",
|
|
85
81
|
"PPopup": "components/popup/Popup.vue",
|
|
86
|
-
"
|
|
82
|
+
"PPdfObject": "components/pdf-object/PdfObject.vue",
|
|
83
|
+
"PPdfObjectAddon": "components/pdf-object/PdfObjectAddon.vue",
|
|
84
|
+
"PPdfObjectDebugger": "components/pdf-object/PdfObjectDebugger.vue",
|
|
85
|
+
"PPdfObjects": "components/pdf-object/PdfObjects.vue",
|
|
86
|
+
"PPdfText": "components/pdf-text/PdfText.vue",
|
|
87
87
|
"PProgress": "components/progress/Progress.vue",
|
|
88
88
|
"PProgressItem": "components/progress/ProgressItem.vue",
|
|
89
|
-
"PProgressbar": "components/progressbar/Progressbar.vue",
|
|
90
|
-
"PQrcode": "components/qrcode/Qrcode.vue",
|
|
91
89
|
"PProgressIndicator": "components/progress-indicator/ProgressIndicator.vue",
|
|
90
|
+
"PProgressbar": "components/progressbar/Progressbar.vue",
|
|
92
91
|
"PPspdfHelipad": "components/pspdfkit/PspdfHelipad.vue",
|
|
93
92
|
"PPspdfObject": "components/pspdfkit/PspdfObject.vue",
|
|
94
93
|
"PPspdfObjectAddon": "components/pspdfkit/PspdfObjectAddon.vue",
|
|
95
94
|
"PPspdfObjects": "components/pspdfkit/PspdfObjects.vue",
|
|
96
95
|
"PPspdfViewer": "components/pspdfkit/PspdfViewer.vue",
|
|
96
|
+
"PQrcode": "components/qrcode/Qrcode.vue",
|
|
97
97
|
"PRadio": "components/radio/Radio.vue",
|
|
98
|
+
"PRingbar": "components/ringbar/Ringbar.vue",
|
|
99
|
+
"PShimmer": "components/shimmer/Shimmer.vue",
|
|
98
100
|
"PRichtext": "components/richtext/Richtext.vue",
|
|
99
101
|
"PRichtextToolbarAdvance": "components/richtext/RichtextToolbarAdvance.vue",
|
|
100
102
|
"PRichtextToolbarSimple": "components/richtext/RichtextToolbarSimple.vue",
|
|
101
|
-
"PRingbar": "components/ringbar/Ringbar.vue",
|
|
102
103
|
"PSheet": "components/sheet/Sheet.vue",
|
|
103
|
-
"PShimmer": "components/shimmer/Shimmer.vue",
|
|
104
104
|
"PSelect": "components/select/Select.vue",
|
|
105
105
|
"PSelectInput": "components/select/SelectInput.vue",
|
|
106
106
|
"PSelectTags": "components/select/SelectTags.vue",
|
|
@@ -110,21 +110,22 @@
|
|
|
110
110
|
"PSidebarBrand": "components/sidebar/SidebarBrand.vue",
|
|
111
111
|
"PSidebarContent": "components/sidebar/SidebarContent.vue",
|
|
112
112
|
"PSidebarNav": "components/sidebar/SidebarNav.vue",
|
|
113
|
-
"PSignatureText": "components/signature-text/SignatureText.vue",
|
|
114
113
|
"PSignatureDraw": "components/signature-draw/SignatureDraw.vue",
|
|
115
114
|
"PSignatureDrawDesktop": "components/signature-draw/SignatureDrawDesktop.vue",
|
|
116
115
|
"PSignatureDrawMobile": "components/signature-draw/SignatureDrawMobile.vue",
|
|
117
116
|
"PSpread": "components/spread/Spread.vue",
|
|
117
|
+
"PSignatureText": "components/signature-text/SignatureText.vue",
|
|
118
118
|
"PSpinner": "components/spinner/Spinner.vue",
|
|
119
119
|
"PSpinnerRing": "components/spinner/SpinnerRing.vue",
|
|
120
120
|
"PSpinnerRinggo": "components/spinner/SpinnerRinggo.vue",
|
|
121
|
-
"PStrengthbar": "components/strengthbar/Strengthbar.vue",
|
|
122
121
|
"PStep": "components/steps/Step.vue",
|
|
123
122
|
"PStepSlider": "components/steps/StepSlider.vue",
|
|
124
123
|
"PSteps": "components/steps/Steps.vue",
|
|
125
|
-
"
|
|
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
|
+
"PText": "components/text/Text.vue",
|
|
128
129
|
"PTableStatic": "components/table-static/TableStatic.vue",
|
|
129
130
|
"PTableStaticRoot": "components/table-static/TableStaticRoot.vue",
|
|
130
131
|
"PTableStaticSort": "components/table-static/TableStaticSort.vue",
|
|
@@ -132,14 +133,13 @@
|
|
|
132
133
|
"PTabContent": "components/tabs/TabContent.vue",
|
|
133
134
|
"PTabs": "components/tabs/Tabs.vue",
|
|
134
135
|
"PTextarea": "components/textarea/Textarea.vue",
|
|
135
|
-
"
|
|
136
|
+
"PTimepicker": "components/timepicker/Timepicker.vue",
|
|
136
137
|
"PTime": "components/time/Time.vue",
|
|
137
138
|
"PTimeItem": "components/time/TimeItem.vue",
|
|
138
|
-
"PTimepicker": "components/timepicker/Timepicker.vue",
|
|
139
139
|
"PToast": "components/toast/Toast.vue",
|
|
140
|
+
"PToggle": "components/toggle/Toggle.vue",
|
|
140
141
|
"PTooltip": "components/tooltip/Tooltip.vue",
|
|
141
142
|
"PTooltipContainer": "components/tooltip/TooltipContainer.vue",
|
|
142
|
-
"PToggle": "components/toggle/Toggle.vue",
|
|
143
143
|
"PTour": "components/tour/Tour.vue",
|
|
144
144
|
"PTourDialog": "components/tour/TourDialog.vue",
|
|
145
145
|
"PTourHighlight": "components/tour/TourHighlight.vue",
|
|
@@ -154,9 +154,6 @@
|
|
|
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",
|
|
160
157
|
"PRichtextControlFontFamily": "components/richtext/control/RichtextControlFontFamily.vue",
|
|
161
158
|
"PRichtextControlFontSize": "components/richtext/control/RichtextControlFontSize.vue",
|
|
162
159
|
"PRichtextControlHighlight": "components/richtext/control/RichtextControlHighlight.vue",
|
|
@@ -167,5 +164,8 @@
|
|
|
167
164
|
"PRichtextControlTable": "components/richtext/control/RichtextControlTable.vue",
|
|
168
165
|
"PRichtextControlTextAlign": "components/richtext/control/RichtextControlTextAlign.vue",
|
|
169
166
|
"PRichtextControlTextFormat": "components/richtext/control/RichtextControlTextFormat.vue",
|
|
170
|
-
"PRichtextControlTextHeading": "components/richtext/control/RichtextControlTextHeading.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"
|
|
171
171
|
}
|
|
@@ -177,7 +177,6 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
177
177
|
dismissable: boolean;
|
|
178
178
|
banner: boolean;
|
|
179
179
|
noAnimation: boolean;
|
|
180
|
-
bodyClass: string | unknown[] | Record<string, any>;
|
|
181
180
|
noCloseOnEsc: boolean;
|
|
182
181
|
noCloseOnBackdrop: boolean;
|
|
183
182
|
modalBodyScrollable: boolean;
|
|
@@ -185,6 +184,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
185
184
|
freeDistraction: boolean;
|
|
186
185
|
headerClass: string | unknown[] | Record<string, any>;
|
|
187
186
|
dialogClass: string | unknown[] | Record<string, any>;
|
|
187
|
+
bodyClass: string | unknown[] | Record<string, any>;
|
|
188
188
|
footerClass: string | unknown[] | Record<string, any>;
|
|
189
189
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
190
190
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -168,11 +168,11 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
168
168
|
}>, {
|
|
169
169
|
src: string;
|
|
170
170
|
page: number;
|
|
171
|
+
layout: LayoutVariant;
|
|
172
|
+
offsetTop: string | number;
|
|
171
173
|
password: string;
|
|
172
174
|
scale: number;
|
|
173
175
|
ratio: string | number;
|
|
174
|
-
layout: LayoutVariant;
|
|
175
|
-
offsetTop: string | number;
|
|
176
176
|
firstNavLabel: string;
|
|
177
177
|
lastNavLabel: string;
|
|
178
178
|
numOfPagesNavLabel: string;
|
|
@@ -2,8 +2,27 @@ import { withBase } from "ufo";
|
|
|
2
2
|
import { getCDN } from "../../global/store.mjs";
|
|
3
3
|
let pdfjsLib;
|
|
4
4
|
let pdfjsViewer;
|
|
5
|
+
function polyfillPromiseWithResolvers() {
|
|
6
|
+
const PromiseCtor = Promise;
|
|
7
|
+
if (typeof PromiseCtor.withResolvers !== "function") {
|
|
8
|
+
PromiseCtor.withResolvers = function() {
|
|
9
|
+
let resolve;
|
|
10
|
+
let reject;
|
|
11
|
+
const promise = new Promise((_resolve, _reject) => {
|
|
12
|
+
resolve = _resolve;
|
|
13
|
+
reject = _reject;
|
|
14
|
+
});
|
|
15
|
+
return {
|
|
16
|
+
promise,
|
|
17
|
+
resolve,
|
|
18
|
+
reject
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
}
|
|
5
23
|
async function importPdfJS() {
|
|
6
24
|
if (!pdfjsLib) {
|
|
25
|
+
polyfillPromiseWithResolvers();
|
|
7
26
|
const pdfjs = await import("pdfjs-dist");
|
|
8
27
|
if (typeof window !== "undefined" && "Worker" in window)
|
|
9
28
|
pdfjs.GlobalWorkerOptions.workerSrc = withBase(`pdfjs-dist@${pdfjs.version}/legacy/build/pdf.worker.min.mjs`, getCDN());
|
|
@@ -40,17 +40,17 @@ declare function __VLS_template(): {
|
|
|
40
40
|
$data: {};
|
|
41
41
|
$props: Partial<{
|
|
42
42
|
target: HTMLElement;
|
|
43
|
-
color: ColorVariant;
|
|
44
43
|
show: boolean;
|
|
44
|
+
color: ColorVariant;
|
|
45
45
|
placement: Placement;
|
|
46
46
|
}> & Omit<{
|
|
47
|
-
readonly color: ColorVariant;
|
|
48
47
|
readonly show: boolean;
|
|
48
|
+
readonly color: ColorVariant;
|
|
49
49
|
readonly placement: Placement;
|
|
50
50
|
readonly target?: HTMLElement | undefined;
|
|
51
51
|
readonly onShow?: ((args_0: HTMLElement) => any) | undefined;
|
|
52
52
|
readonly onHide?: ((args_0: HTMLElement) => any) | undefined;
|
|
53
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "target" | "
|
|
53
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "target" | "show" | "color" | "placement">;
|
|
54
54
|
$attrs: {
|
|
55
55
|
[x: string]: unknown;
|
|
56
56
|
};
|
|
@@ -90,8 +90,8 @@ declare function __VLS_template(): {
|
|
|
90
90
|
hide: (args_0: HTMLElement) => void;
|
|
91
91
|
}, string, {
|
|
92
92
|
target: HTMLElement;
|
|
93
|
-
color: ColorVariant;
|
|
94
93
|
show: boolean;
|
|
94
|
+
color: ColorVariant;
|
|
95
95
|
placement: Placement;
|
|
96
96
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
97
97
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -115,8 +115,8 @@ declare function __VLS_template(): {
|
|
|
115
115
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
116
116
|
} & Readonly<{
|
|
117
117
|
target: HTMLElement;
|
|
118
|
-
color: ColorVariant;
|
|
119
118
|
show: boolean;
|
|
119
|
+
color: ColorVariant;
|
|
120
120
|
placement: Placement;
|
|
121
121
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
122
122
|
show: {
|
|
@@ -138,7 +138,7 @@ declare function __VLS_template(): {
|
|
|
138
138
|
}>> & Readonly<{
|
|
139
139
|
onShow?: ((args_0: HTMLElement) => any) | undefined;
|
|
140
140
|
onHide?: ((args_0: HTMLElement) => any) | undefined;
|
|
141
|
-
}>, "target" | "
|
|
141
|
+
}>, "target" | "show" | "color" | "placement"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
142
142
|
$slots: {
|
|
143
143
|
default?(_: {}): any;
|
|
144
144
|
};
|
|
@@ -126,11 +126,11 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
126
126
|
}>, {
|
|
127
127
|
src: string;
|
|
128
128
|
page: number;
|
|
129
|
+
layout: LayoutVariant;
|
|
130
|
+
offsetTop: string | number;
|
|
129
131
|
password: string;
|
|
130
132
|
scale: number;
|
|
131
133
|
ratio: string | number;
|
|
132
|
-
layout: LayoutVariant;
|
|
133
|
-
offsetTop: string | number;
|
|
134
134
|
config: OpenDocConfig;
|
|
135
135
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
136
136
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -100,8 +100,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
100
100
|
align: AlignVariant;
|
|
101
101
|
showMoreText: string;
|
|
102
102
|
showLessText: string;
|
|
103
|
-
sticky: boolean;
|
|
104
103
|
menus: Menu[];
|
|
104
|
+
sticky: boolean;
|
|
105
105
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
106
106
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
107
107
|
export default _default;
|
|
@@ -6,26 +6,26 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
6
6
|
items: T[];
|
|
7
7
|
draggable: boolean;
|
|
8
8
|
selectable: boolean;
|
|
9
|
+
apperance: ApperanceVariant;
|
|
9
10
|
fields: TableField<T>[];
|
|
10
11
|
emptyLabel: string;
|
|
11
12
|
noLabel: boolean;
|
|
12
13
|
tableClass: any;
|
|
13
|
-
apperance: ApperanceVariant;
|
|
14
14
|
trClass: any;
|
|
15
15
|
}> & Omit<{
|
|
16
16
|
readonly modelValue: T[];
|
|
17
17
|
readonly items: T[];
|
|
18
18
|
readonly draggable: boolean;
|
|
19
19
|
readonly selectable: boolean;
|
|
20
|
+
readonly apperance: ApperanceVariant;
|
|
20
21
|
readonly fields: TableField<T>[];
|
|
21
22
|
readonly emptyLabel: string;
|
|
22
23
|
readonly noLabel: boolean;
|
|
23
|
-
readonly apperance: ApperanceVariant;
|
|
24
24
|
readonly tableClass?: any;
|
|
25
25
|
readonly trClass?: any;
|
|
26
26
|
readonly "onUpdate:modelValue"?: ((args_0: T[]) => any) | undefined;
|
|
27
27
|
readonly "onUpdate:items"?: ((args_0: T[]) => any) | undefined;
|
|
28
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "items" | "draggable" | "selectable" | "
|
|
28
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "items" | "draggable" | "selectable" | "apperance" | "fields" | "emptyLabel" | "noLabel" | "tableClass" | "trClass">, "onUpdate:modelValue" | "onUpdate:items" | ("modelValue" | "items" | "draggable" | "selectable" | "apperance" | "fields" | "emptyLabel" | "noLabel" | "tableClass" | "trClass")> & Partial<{}> & {}> & (import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps);
|
|
29
29
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
30
30
|
attrs: any;
|
|
31
31
|
slots: Readonly<{
|
|
@@ -9,13 +9,13 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
9
9
|
sortable: boolean | "multiple" | "single";
|
|
10
10
|
sortBy: Record<string, any>;
|
|
11
11
|
selectable: boolean;
|
|
12
|
+
apperance: ApperanceVariant;
|
|
12
13
|
fields: TableField<T>[];
|
|
13
14
|
emptyLabel: string;
|
|
14
15
|
noLabel: boolean;
|
|
15
|
-
scrollable: boolean;
|
|
16
16
|
tableClass: any;
|
|
17
|
-
apperance: ApperanceVariant;
|
|
18
17
|
trClass: any;
|
|
18
|
+
scrollable: boolean;
|
|
19
19
|
}> & Omit<{
|
|
20
20
|
readonly modelValue: T[];
|
|
21
21
|
readonly items: T[];
|
|
@@ -23,18 +23,18 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
23
23
|
readonly sortable: boolean | "multiple" | "single";
|
|
24
24
|
readonly sortBy: Record<string, any>;
|
|
25
25
|
readonly selectable: boolean;
|
|
26
|
+
readonly apperance: ApperanceVariant;
|
|
26
27
|
readonly fields: TableField<T>[];
|
|
27
28
|
readonly emptyLabel: string;
|
|
28
29
|
readonly noLabel: boolean;
|
|
29
30
|
readonly scrollable: boolean;
|
|
30
|
-
readonly apperance: ApperanceVariant;
|
|
31
31
|
readonly tableClass?: any;
|
|
32
32
|
readonly trClass?: any;
|
|
33
33
|
readonly "onUpdate:modelValue"?: ((args_0: T[]) => any) | undefined;
|
|
34
34
|
readonly onSort?: ((args_0: Record<string, SortValue>) => any) | undefined;
|
|
35
35
|
readonly "onUpdate:items"?: ((args_0: T[]) => any) | undefined;
|
|
36
36
|
readonly "onUpdate:sortBy"?: ((args_0: Record<string, SortValue>) => any) | undefined;
|
|
37
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "items" | "draggable" | "sortable" | "sortBy" | "selectable" | "
|
|
37
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "items" | "draggable" | "sortable" | "sortBy" | "selectable" | "apperance" | "fields" | "emptyLabel" | "noLabel" | "tableClass" | "trClass" | "scrollable">, "onUpdate:modelValue" | "onUpdate:items" | "onSort" | "onUpdate:sortBy" | ("modelValue" | "items" | "draggable" | "sortable" | "sortBy" | "selectable" | "apperance" | "fields" | "emptyLabel" | "noLabel" | "tableClass" | "trClass" | "scrollable")> & Partial<{}> & {}> & (import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps);
|
|
38
38
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
39
39
|
attrs: any;
|
|
40
40
|
slots: Readonly<{
|
|
@@ -28,8 +28,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
28
28
|
default: undefined;
|
|
29
29
|
};
|
|
30
30
|
}>> & Readonly<{}>, {
|
|
31
|
-
scrollable: boolean;
|
|
32
31
|
tableClass: any;
|
|
32
|
+
scrollable: boolean;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
34
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
35
35
|
export default _default;
|
|
@@ -164,8 +164,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
164
164
|
dismissable: boolean;
|
|
165
165
|
max: Date;
|
|
166
166
|
readonly: boolean;
|
|
167
|
-
min: Date;
|
|
168
167
|
placeholder: string;
|
|
168
|
+
min: Date;
|
|
169
169
|
timeSeparator: string;
|
|
170
170
|
is12Hour: boolean;
|
|
171
171
|
hourInterval: number;
|
|
@@ -55,8 +55,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
55
55
|
onHide?: ((args_0: HTMLElement) => any) | undefined;
|
|
56
56
|
}>, {
|
|
57
57
|
target: HTMLElement;
|
|
58
|
-
color: ColorVariant;
|
|
59
58
|
show: boolean;
|
|
59
|
+
color: ColorVariant;
|
|
60
60
|
placement: Placement;
|
|
61
61
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
62
62
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@privyid/persona",
|
|
3
3
|
"description": "Persona core package",
|
|
4
|
-
"version": "1.2.2-rc.
|
|
4
|
+
"version": "1.2.2-rc.8",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"url": "https://github.com/privy-open-source/design-system.git",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"marked": "15.0.11",
|
|
93
93
|
"nanodelay": "2.0.2",
|
|
94
94
|
"pathe": "^2.0.0",
|
|
95
|
-
"pdfjs-dist": "
|
|
95
|
+
"pdfjs-dist": "4.3.136",
|
|
96
96
|
"pspdfkit": "^2024.6.0",
|
|
97
97
|
"scroll-into-view": "1.16.2",
|
|
98
98
|
"tabbable": "6.2.0",
|