pdf-tsx 0.1.6 → 0.2.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/LICENSE +21 -21
- package/README.md +263 -212
- package/dist/cjs/components/PDFSidebar.module.cjs +1 -1
- package/dist/cjs/components/PDFViewer.cjs +1 -1
- package/dist/cjs/components/PDFViewer.module.cjs +1 -1
- package/dist/cjs/components/features/PDFAnnotations.module.cjs +1 -1
- package/dist/cjs/components/features/PDFNavigation.module.cjs +1 -1
- package/dist/cjs/components/features/PDFOutline.module.cjs +1 -1
- package/dist/cjs/components/features/PDFSearch.module.cjs +1 -1
- package/dist/cjs/components/features/PDFSignatures.module.cjs +1 -1
- package/dist/cjs/components/features/PDFThumbnails.module.cjs +1 -1
- package/dist/cjs/components/features/PDFZoomControls.module.cjs +1 -1
- package/dist/cjs/components/ui/ToolbarButton.module.cjs +1 -1
- package/dist/cjs/context/ThemeContext.cjs +1 -1
- package/dist/cjs/hooks/useTextLayer.cjs +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/pdf-tsx.css +1 -1
- package/dist/components/PDFViewer.d.ts +5 -0
- package/dist/context/ThemeContext.d.ts +7 -2
- package/dist/es/components/PDFSidebar.module.js +7 -7
- package/dist/es/components/PDFViewer.js +165 -162
- package/dist/es/components/PDFViewer.module.js +15 -12
- package/dist/es/components/features/PDFAnnotations.module.js +10 -10
- package/dist/es/components/features/PDFNavigation.module.js +3 -3
- package/dist/es/components/features/PDFOutline.module.js +5 -5
- package/dist/es/components/features/PDFSearch.module.js +4 -4
- package/dist/es/components/features/PDFSignatures.module.js +14 -14
- package/dist/es/components/features/PDFThumbnails.module.js +7 -7
- package/dist/es/components/features/PDFZoomControls.module.js +1 -1
- package/dist/es/components/ui/ToolbarButton.module.js +2 -2
- package/dist/es/context/ThemeContext.js +31 -24
- package/dist/es/hooks/useTextLayer.js +0 -1
- package/dist/es/index.js +17 -16
- package/dist/es/pdf-tsx.css +1 -1
- package/dist/index.d.ts +2 -0
- package/package.json +61 -61
- package/dist/pdf-tsx.cjs.js +0 -5
- package/dist/pdf-tsx.css +0 -2
- package/dist/pdf-tsx.es.js +0 -2637
- package/dist/vite.svg +0 -1
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
+
import { Theme } from '../theme';
|
|
2
3
|
interface PDFViewerProps {
|
|
3
4
|
file: File;
|
|
4
5
|
workerSrc: string;
|
|
5
6
|
sidebar?: React.ReactNode;
|
|
6
7
|
toolbar?: React.ReactNode;
|
|
7
8
|
onChangeFile?: (file: File) => void;
|
|
9
|
+
themeOverrides?: {
|
|
10
|
+
light?: Partial<Theme>;
|
|
11
|
+
dark?: Partial<Theme>;
|
|
12
|
+
};
|
|
8
13
|
}
|
|
9
14
|
declare const PDFViewer: React.FC<PDFViewerProps>;
|
|
10
15
|
export default PDFViewer;
|
|
@@ -5,8 +5,13 @@ interface ThemeContextValue {
|
|
|
5
5
|
toggleTheme: () => void;
|
|
6
6
|
theme: Theme;
|
|
7
7
|
}
|
|
8
|
-
|
|
8
|
+
interface ThemeProviderProps {
|
|
9
9
|
children: ReactNode;
|
|
10
|
-
|
|
10
|
+
themeOverrides?: {
|
|
11
|
+
light?: Partial<Theme>;
|
|
12
|
+
dark?: Partial<Theme>;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export declare function ThemeProvider({ children, themeOverrides }: ThemeProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
11
16
|
export declare function useTheme(): ThemeContextValue;
|
|
12
17
|
export {};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
var e = {
|
|
2
|
-
wrapper: "
|
|
3
|
-
buttonBar: "
|
|
4
|
-
panelButton: "
|
|
5
|
-
panelButtonActive: "
|
|
6
|
-
contentPanel: "
|
|
7
|
-
panelHeader: "
|
|
8
|
-
panelBody: "
|
|
2
|
+
wrapper: "_wrapper_184n8_1",
|
|
3
|
+
buttonBar: "_buttonBar_184n8_13",
|
|
4
|
+
panelButton: "_panelButton_184n8_33",
|
|
5
|
+
panelButtonActive: "_panelButtonActive_184n8_73",
|
|
6
|
+
contentPanel: "_contentPanel_184n8_91",
|
|
7
|
+
panelHeader: "_panelHeader_184n8_107",
|
|
8
|
+
panelBody: "_panelBody_184n8_131"
|
|
9
9
|
};
|
|
10
10
|
//#endregion
|
|
11
11
|
export { e as default };
|
|
@@ -10,38 +10,38 @@ import { useEffect as c, useRef as l, useState as u } from "react";
|
|
|
10
10
|
import * as d from "pdfjs-dist";
|
|
11
11
|
import { jsx as f, jsxs as p } from "react/jsx-runtime";
|
|
12
12
|
//#region src/components/PDFViewer.tsx
|
|
13
|
-
var m = ({ file: m, workerSrc: h, sidebar: g, toolbar: _, onChangeFile: v }) => {
|
|
13
|
+
var m = ({ file: m, workerSrc: h, sidebar: g, toolbar: _, onChangeFile: v, themeOverrides: y }) => {
|
|
14
14
|
c(() => {
|
|
15
15
|
d.GlobalWorkerOptions.workerSrc = h;
|
|
16
16
|
}, [h]);
|
|
17
|
-
let [
|
|
18
|
-
pdf:
|
|
19
|
-
numPages:
|
|
20
|
-
zoom:
|
|
21
|
-
rotation:
|
|
22
|
-
containerRef:
|
|
23
|
-
canvasRefs:
|
|
17
|
+
let [b, x] = u(null), [S, C] = u(0), [w, T] = u(1), [E, D] = u(0), [O, k] = u(null), [A, j] = u(null), [M, N] = u([]), [P, F] = u(/* @__PURE__ */ new Set()), [I, L] = u([]), R = l(null), z = l([]), B = l([]), { currentPage: V, goToPage: H } = t({
|
|
18
|
+
pdf: b,
|
|
19
|
+
numPages: S,
|
|
20
|
+
zoom: w,
|
|
21
|
+
rotation: E,
|
|
22
|
+
containerRef: R,
|
|
23
|
+
canvasRefs: z
|
|
24
24
|
});
|
|
25
25
|
n({
|
|
26
|
-
pdf:
|
|
27
|
-
currentPage:
|
|
28
|
-
numPages:
|
|
29
|
-
goToPage:
|
|
30
|
-
setZoom:
|
|
31
|
-
setRotation:
|
|
26
|
+
pdf: b,
|
|
27
|
+
currentPage: V,
|
|
28
|
+
numPages: S,
|
|
29
|
+
goToPage: H,
|
|
30
|
+
setZoom: T,
|
|
31
|
+
setRotation: D
|
|
32
32
|
});
|
|
33
|
-
let
|
|
34
|
-
pdf:
|
|
35
|
-
zoom:
|
|
36
|
-
rotation:
|
|
37
|
-
numPages:
|
|
38
|
-
canvasRefs:
|
|
39
|
-
}),
|
|
40
|
-
pdf:
|
|
41
|
-
zoom:
|
|
42
|
-
rotation:
|
|
43
|
-
numPages:
|
|
44
|
-
goToPage:
|
|
33
|
+
let U = r({
|
|
34
|
+
pdf: b,
|
|
35
|
+
zoom: w,
|
|
36
|
+
rotation: E,
|
|
37
|
+
numPages: S,
|
|
38
|
+
canvasRefs: z
|
|
39
|
+
}), W = a({
|
|
40
|
+
pdf: b,
|
|
41
|
+
zoom: w,
|
|
42
|
+
rotation: E,
|
|
43
|
+
numPages: S,
|
|
44
|
+
goToPage: H
|
|
45
45
|
});
|
|
46
46
|
c(() => {
|
|
47
47
|
(async () => {
|
|
@@ -50,24 +50,24 @@ var m = ({ file: m, workerSrc: h, sidebar: g, toolbar: _, onChangeFile: v }) =>
|
|
|
50
50
|
let t = new Uint8Array(e.target?.result);
|
|
51
51
|
try {
|
|
52
52
|
let e = await d.getDocument(t).promise;
|
|
53
|
-
|
|
53
|
+
x(e), C(e.numPages), k(null), j(null), F(/* @__PURE__ */ new Set()), L([]), z.current = Array(e.numPages).fill(null), B.current = Array(e.numPages).fill(null);
|
|
54
54
|
} catch (e) {
|
|
55
55
|
console.error("Errore caricamento:", e);
|
|
56
56
|
}
|
|
57
57
|
}, e.readAsArrayBuffer(m);
|
|
58
58
|
})();
|
|
59
59
|
}, [m]), c(() => {
|
|
60
|
-
if (!
|
|
61
|
-
|
|
60
|
+
if (!b) return;
|
|
61
|
+
F(/* @__PURE__ */ new Set());
|
|
62
62
|
let e = !1;
|
|
63
63
|
return (async () => {
|
|
64
|
-
let t =
|
|
65
|
-
if (await Promise.all(t),
|
|
64
|
+
let t = B.current.map((e) => e ? (e.cancel(), e.promise.catch(() => {})) : Promise.resolve());
|
|
65
|
+
if (await Promise.all(t), B.current = Array(b.numPages).fill(null), e) return;
|
|
66
66
|
let n = [];
|
|
67
|
-
for (let e = 1; e <=
|
|
68
|
-
let t = (await
|
|
69
|
-
scale:
|
|
70
|
-
rotation:
|
|
67
|
+
for (let e = 1; e <= b.numPages; e++) {
|
|
68
|
+
let t = (await b.getPage(e)).getViewport({
|
|
69
|
+
scale: w,
|
|
70
|
+
rotation: E
|
|
71
71
|
});
|
|
72
72
|
n.push({
|
|
73
73
|
width: t.width,
|
|
@@ -75,13 +75,13 @@ var m = ({ file: m, workerSrc: h, sidebar: g, toolbar: _, onChangeFile: v }) =>
|
|
|
75
75
|
});
|
|
76
76
|
}
|
|
77
77
|
if (!e) {
|
|
78
|
-
|
|
79
|
-
for (let t = 1; t <=
|
|
78
|
+
L(n);
|
|
79
|
+
for (let t = 1; t <= b.numPages; t++) {
|
|
80
80
|
if (e) return;
|
|
81
|
-
let n = await
|
|
82
|
-
scale:
|
|
83
|
-
rotation:
|
|
84
|
-
}), i =
|
|
81
|
+
let n = await b.getPage(t), r = n.getViewport({
|
|
82
|
+
scale: w,
|
|
83
|
+
rotation: E
|
|
84
|
+
}), i = z.current[t - 1];
|
|
85
85
|
if (i) {
|
|
86
86
|
let a = i.getContext("2d");
|
|
87
87
|
if (a) {
|
|
@@ -91,9 +91,9 @@ var m = ({ file: m, workerSrc: h, sidebar: g, toolbar: _, onChangeFile: v }) =>
|
|
|
91
91
|
viewport: r,
|
|
92
92
|
canvas: i
|
|
93
93
|
});
|
|
94
|
-
|
|
94
|
+
B.current[t - 1] = o;
|
|
95
95
|
try {
|
|
96
|
-
await o.promise, e ||
|
|
96
|
+
await o.promise, e || F((e) => new Set(e).add(t));
|
|
97
97
|
} catch (e) {
|
|
98
98
|
e && typeof e == "object" && "name" in e && e.name !== "RenderingCancelledException" && console.error("Render error:", e);
|
|
99
99
|
}
|
|
@@ -102,27 +102,27 @@ var m = ({ file: m, workerSrc: h, sidebar: g, toolbar: _, onChangeFile: v }) =>
|
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
})(), () => {
|
|
105
|
-
e = !0,
|
|
105
|
+
e = !0, B.current.forEach((e) => e?.cancel());
|
|
106
106
|
};
|
|
107
107
|
}, [
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
108
|
+
b,
|
|
109
|
+
w,
|
|
110
|
+
E
|
|
111
111
|
]);
|
|
112
|
-
let [
|
|
112
|
+
let [G, K] = u([]);
|
|
113
113
|
return c(() => {
|
|
114
|
-
if (!
|
|
115
|
-
|
|
114
|
+
if (!b || M.length === 0) {
|
|
115
|
+
K([]);
|
|
116
116
|
return;
|
|
117
117
|
}
|
|
118
118
|
let e = !1;
|
|
119
119
|
return (async () => {
|
|
120
120
|
let t = [];
|
|
121
|
-
for (let n of
|
|
121
|
+
for (let n of M) {
|
|
122
122
|
if (e) break;
|
|
123
|
-
let [r, i, a, o] = (await
|
|
124
|
-
scale:
|
|
125
|
-
rotation:
|
|
123
|
+
let [r, i, a, o] = (await b.getPage(n.page)).getViewport({
|
|
124
|
+
scale: w,
|
|
125
|
+
rotation: E
|
|
126
126
|
}).convertToViewportRectangle(n.pdfRect);
|
|
127
127
|
t.push({
|
|
128
128
|
page: n.page,
|
|
@@ -132,25 +132,25 @@ var m = ({ file: m, workerSrc: h, sidebar: g, toolbar: _, onChangeFile: v }) =>
|
|
|
132
132
|
height: Math.abs(o - i)
|
|
133
133
|
});
|
|
134
134
|
}
|
|
135
|
-
e ||
|
|
135
|
+
e || K(t);
|
|
136
136
|
})(), () => {
|
|
137
137
|
e = !0;
|
|
138
138
|
};
|
|
139
139
|
}, [
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
140
|
+
M,
|
|
141
|
+
w,
|
|
142
|
+
E,
|
|
143
|
+
b
|
|
144
144
|
]), c(() => {
|
|
145
|
-
if (!
|
|
145
|
+
if (!O || !b) return;
|
|
146
146
|
let e = !1;
|
|
147
147
|
return (async () => {
|
|
148
|
-
let [t, n, r, i] = (await
|
|
149
|
-
scale:
|
|
150
|
-
rotation:
|
|
151
|
-
}).convertToViewportRectangle(
|
|
152
|
-
e ||
|
|
153
|
-
page:
|
|
148
|
+
let [t, n, r, i] = (await b.getPage(O.page)).getViewport({
|
|
149
|
+
scale: w,
|
|
150
|
+
rotation: E
|
|
151
|
+
}).convertToViewportRectangle(O.pdfRect);
|
|
152
|
+
e || j({
|
|
153
|
+
page: O.page,
|
|
154
154
|
x: Math.min(t, r),
|
|
155
155
|
y: Math.min(n, i),
|
|
156
156
|
width: Math.abs(r - t),
|
|
@@ -160,104 +160,107 @@ var m = ({ file: m, workerSrc: h, sidebar: g, toolbar: _, onChangeFile: v }) =>
|
|
|
160
160
|
e = !0;
|
|
161
161
|
};
|
|
162
162
|
}, [
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
]), /* @__PURE__ */ f(o, {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
children:
|
|
189
|
-
className: s.
|
|
190
|
-
children: [
|
|
191
|
-
className: s.
|
|
192
|
-
children: _
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
163
|
+
O,
|
|
164
|
+
w,
|
|
165
|
+
E,
|
|
166
|
+
b
|
|
167
|
+
]), /* @__PURE__ */ f(o, {
|
|
168
|
+
themeOverrides: y,
|
|
169
|
+
children: /* @__PURE__ */ f(e.Provider, {
|
|
170
|
+
value: {
|
|
171
|
+
pdf: b,
|
|
172
|
+
numPages: S,
|
|
173
|
+
zoom: w,
|
|
174
|
+
setZoom: T,
|
|
175
|
+
rotation: E,
|
|
176
|
+
setRotation: D,
|
|
177
|
+
currentPage: V,
|
|
178
|
+
goToPage: H,
|
|
179
|
+
containerRef: R,
|
|
180
|
+
canvasRefs: z,
|
|
181
|
+
file: m,
|
|
182
|
+
highlight: O,
|
|
183
|
+
setHighlight: k,
|
|
184
|
+
searchMatches: M,
|
|
185
|
+
setSearchMatches: N,
|
|
186
|
+
onChangeFile: v
|
|
187
|
+
},
|
|
188
|
+
children: /* @__PURE__ */ p("div", {
|
|
189
|
+
className: s.appLayout,
|
|
190
|
+
children: [g, /* @__PURE__ */ p("div", {
|
|
191
|
+
className: s.mainContent,
|
|
192
|
+
children: [_ && /* @__PURE__ */ f("div", {
|
|
193
|
+
className: s.toolbar,
|
|
194
|
+
children: _
|
|
195
|
+
}), /* @__PURE__ */ f("div", {
|
|
196
|
+
className: s.scrollContainer,
|
|
197
|
+
ref: R,
|
|
198
|
+
children: Array.from({ length: S }, (e, t) => {
|
|
199
|
+
let n = P.has(t + 1), r = I[t];
|
|
200
|
+
return /* @__PURE__ */ p("div", {
|
|
201
|
+
className: s.pageWrapper,
|
|
202
|
+
children: [
|
|
203
|
+
!n && r && /* @__PURE__ */ f("div", {
|
|
204
|
+
className: s.pageSkeleton,
|
|
205
|
+
style: {
|
|
206
|
+
width: r.width,
|
|
207
|
+
height: r.height
|
|
208
|
+
}
|
|
209
|
+
}),
|
|
210
|
+
/* @__PURE__ */ f("canvas", {
|
|
211
|
+
className: s.pageCanvas,
|
|
212
|
+
ref: (e) => {
|
|
213
|
+
z.current[t] = e;
|
|
214
|
+
},
|
|
215
|
+
style: { display: n ? "block" : "none" }
|
|
216
|
+
}),
|
|
217
|
+
/* @__PURE__ */ f("div", {
|
|
218
|
+
className: `textLayer ${s.textLayer}`,
|
|
219
|
+
ref: (e) => {
|
|
220
|
+
U.current[t] = e;
|
|
221
|
+
}
|
|
222
|
+
}),
|
|
223
|
+
W.filter((e) => e.page === t + 1).map((e, t) => /* @__PURE__ */ f("a", {
|
|
224
|
+
className: s.linkOverlay,
|
|
225
|
+
href: e.url && i(e.url) ? e.url : "#",
|
|
226
|
+
target: "_blank",
|
|
227
|
+
rel: "noopener noreferrer",
|
|
228
|
+
style: {
|
|
229
|
+
left: e.x,
|
|
230
|
+
top: e.y,
|
|
231
|
+
width: e.width,
|
|
232
|
+
height: e.height
|
|
233
|
+
},
|
|
234
|
+
onClick: (t) => {
|
|
235
|
+
(!e.url || !i(e.url)) && (t.preventDefault(), e.url || e._handleClick());
|
|
236
|
+
}
|
|
237
|
+
}, t)),
|
|
238
|
+
G.filter((e) => e.page === t + 1).map((e, t) => /* @__PURE__ */ f("div", {
|
|
239
|
+
className: s.searchMatchOverlay,
|
|
240
|
+
style: {
|
|
241
|
+
left: e.x,
|
|
242
|
+
top: e.y,
|
|
243
|
+
width: e.width,
|
|
244
|
+
height: e.height
|
|
245
|
+
}
|
|
246
|
+
}, t)),
|
|
247
|
+
O && A?.page === t + 1 && /* @__PURE__ */ f("div", {
|
|
248
|
+
className: s.highlightOverlay,
|
|
249
|
+
style: {
|
|
250
|
+
left: A.x,
|
|
251
|
+
top: A.y,
|
|
252
|
+
width: A.width,
|
|
253
|
+
height: A.height
|
|
254
|
+
}
|
|
255
|
+
})
|
|
256
|
+
]
|
|
257
|
+
}, `${t}-${E}`);
|
|
258
|
+
})
|
|
259
|
+
})]
|
|
257
260
|
})]
|
|
258
|
-
})
|
|
261
|
+
})
|
|
259
262
|
})
|
|
260
|
-
})
|
|
263
|
+
});
|
|
261
264
|
};
|
|
262
265
|
//#endregion
|
|
263
266
|
export { m as default };
|
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
var e = {
|
|
2
|
-
appLayout: "
|
|
3
|
-
mainContent: "
|
|
4
|
-
toolbar: "
|
|
5
|
-
scrollContainer: "
|
|
6
|
-
pageWrapper: "
|
|
7
|
-
pageCanvas: "
|
|
8
|
-
textLayer: "
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
2
|
+
appLayout: "_appLayout_nel8e_1",
|
|
3
|
+
mainContent: "_mainContent_nel8e_15",
|
|
4
|
+
toolbar: "_toolbar_nel8e_29",
|
|
5
|
+
scrollContainer: "_scrollContainer_nel8e_53",
|
|
6
|
+
pageWrapper: "_pageWrapper_nel8e_73",
|
|
7
|
+
pageCanvas: "_pageCanvas_nel8e_83",
|
|
8
|
+
textLayer: "_textLayer_nel8e_97",
|
|
9
|
+
markedContent: "_markedContent_nel8e_149",
|
|
10
|
+
endOfContent: "_endOfContent_nel8e_177",
|
|
11
|
+
selecting: "_selecting_nel8e_195",
|
|
12
|
+
pageSkeleton: "_pageSkeleton_nel8e_235",
|
|
13
|
+
shimmer: "_shimmer_nel8e_1",
|
|
14
|
+
highlightOverlay: "_highlightOverlay_nel8e_267",
|
|
15
|
+
linkOverlay: "_linkOverlay_nel8e_283",
|
|
16
|
+
searchMatchOverlay: "_searchMatchOverlay_nel8e_295"
|
|
14
17
|
};
|
|
15
18
|
//#endregion
|
|
16
19
|
export { e as default };
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
var e = {
|
|
2
|
-
list: "
|
|
3
|
-
emptyState: "
|
|
4
|
-
pageHeader: "
|
|
5
|
-
card: "
|
|
6
|
-
cardClickable: "
|
|
7
|
-
cardHeader: "
|
|
8
|
-
cardLabel: "
|
|
9
|
-
cardPage: "
|
|
10
|
-
cardAuthor: "
|
|
11
|
-
cardContent: "
|
|
2
|
+
list: "_list_173qc_1",
|
|
3
|
+
emptyState: "_emptyState_173qc_11",
|
|
4
|
+
pageHeader: "_pageHeader_173qc_23",
|
|
5
|
+
card: "_card_173qc_45",
|
|
6
|
+
cardClickable: "_cardClickable_173qc_65",
|
|
7
|
+
cardHeader: "_cardHeader_173qc_81",
|
|
8
|
+
cardLabel: "_cardLabel_173qc_95",
|
|
9
|
+
cardPage: "_cardPage_173qc_107",
|
|
10
|
+
cardAuthor: "_cardAuthor_173qc_117",
|
|
11
|
+
cardContent: "_cardContent_173qc_129"
|
|
12
12
|
};
|
|
13
13
|
//#endregion
|
|
14
14
|
export { e as default };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var e = {
|
|
2
|
-
navWrapper: "
|
|
3
|
-
pageInput: "
|
|
4
|
-
pageTotal: "
|
|
2
|
+
navWrapper: "_navWrapper_6ysgx_1",
|
|
3
|
+
pageInput: "_pageInput_6ysgx_15",
|
|
4
|
+
pageTotal: "_pageTotal_6ysgx_71"
|
|
5
5
|
};
|
|
6
6
|
//#endregion
|
|
7
7
|
export { e as default };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
var e = {
|
|
2
|
-
emptyState: "
|
|
3
|
-
tree: "
|
|
4
|
-
row: "
|
|
5
|
-
chevronBtn: "
|
|
6
|
-
title: "
|
|
2
|
+
emptyState: "_emptyState_1w4ic_1",
|
|
3
|
+
tree: "_tree_1w4ic_13",
|
|
4
|
+
row: "_row_1w4ic_25",
|
|
5
|
+
chevronBtn: "_chevronBtn_1w4ic_61",
|
|
6
|
+
title: "_title_1w4ic_91"
|
|
7
7
|
};
|
|
8
8
|
//#endregion
|
|
9
9
|
export { e as default };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
var e = {
|
|
2
|
-
wrapper: "
|
|
3
|
-
searchInput: "
|
|
4
|
-
navButton: "
|
|
5
|
-
counter: "
|
|
2
|
+
wrapper: "_wrapper_yinyt_1",
|
|
3
|
+
searchInput: "_searchInput_yinyt_13",
|
|
4
|
+
navButton: "_navButton_yinyt_53",
|
|
5
|
+
counter: "_counter_yinyt_95"
|
|
6
6
|
};
|
|
7
7
|
//#endregion
|
|
8
8
|
export { e as default };
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
var e = {
|
|
2
|
-
list: "
|
|
3
|
-
emptyState: "
|
|
4
|
-
card: "
|
|
5
|
-
cardClickable: "
|
|
6
|
-
cardSigned: "
|
|
7
|
-
cardHeader: "
|
|
8
|
-
statusDot: "
|
|
9
|
-
statusDotSigned: "
|
|
10
|
-
statusLabel: "
|
|
11
|
-
statusLabelSigned: "
|
|
12
|
-
fieldList: "
|
|
13
|
-
fieldRow: "
|
|
14
|
-
fieldLabel: "
|
|
15
|
-
disclaimer: "
|
|
2
|
+
list: "_list_1xon0_1",
|
|
3
|
+
emptyState: "_emptyState_1xon0_11",
|
|
4
|
+
card: "_card_1xon0_23",
|
|
5
|
+
cardClickable: "_cardClickable_1xon0_45",
|
|
6
|
+
cardSigned: "_cardSigned_1xon0_61",
|
|
7
|
+
cardHeader: "_cardHeader_1xon0_71",
|
|
8
|
+
statusDot: "_statusDot_1xon0_85",
|
|
9
|
+
statusDotSigned: "_statusDotSigned_1xon0_113",
|
|
10
|
+
statusLabel: "_statusLabel_1xon0_121",
|
|
11
|
+
statusLabelSigned: "_statusLabelSigned_1xon0_137",
|
|
12
|
+
fieldList: "_fieldList_1xon0_145",
|
|
13
|
+
fieldRow: "_fieldRow_1xon0_157",
|
|
14
|
+
fieldLabel: "_fieldLabel_1xon0_167",
|
|
15
|
+
disclaimer: "_disclaimer_1xon0_175"
|
|
16
16
|
};
|
|
17
17
|
//#endregion
|
|
18
18
|
export { e as default };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
var e = {
|
|
2
|
-
thumbnailList: "
|
|
3
|
-
thumbnailItem: "
|
|
4
|
-
thumbnailItemActive: "
|
|
5
|
-
thumbnailImg: "
|
|
6
|
-
thumbnailImgActive: "
|
|
7
|
-
thumbnailLabel: "
|
|
8
|
-
thumbnailLabelActive: "
|
|
2
|
+
thumbnailList: "_thumbnailList_116om_1",
|
|
3
|
+
thumbnailItem: "_thumbnailItem_116om_11",
|
|
4
|
+
thumbnailItemActive: "_thumbnailItemActive_116om_37",
|
|
5
|
+
thumbnailImg: "_thumbnailImg_116om_55",
|
|
6
|
+
thumbnailImgActive: "_thumbnailImgActive_116om_67",
|
|
7
|
+
thumbnailLabel: "_thumbnailLabel_116om_75",
|
|
8
|
+
thumbnailLabelActive: "_thumbnailLabelActive_116om_89"
|
|
9
9
|
};
|
|
10
10
|
//#endregion
|
|
11
11
|
export { e as default };
|