@betterinternship/core 2.23.0 → 2.23.2

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/README.md CHANGED
@@ -1,26 +1,26 @@
1
- # Package.Core
2
-
3
- Contains dependencies shared between the different services of the site.
4
-
5
- ## How to update
6
-
7
- 1. Build the package:
8
-
9
- ```bash
10
- npm run build
11
- ```
12
-
13
- 2. Commit the build:
14
-
15
- ```bash
16
- git add .
17
- git commit -m "<follow conventional commits, k thanks>"
18
- git push
19
- ```
20
-
21
- 3. Update the version and publish the package to NPM:
22
-
23
- ```bash
24
- npm version <patch|minor|major>
25
- npm publish
26
- ```
1
+ # Package.Core
2
+
3
+ Contains dependencies shared between the different services of the site.
4
+
5
+ ## How to update
6
+
7
+ 1. Build the package:
8
+
9
+ ```bash
10
+ npm run build
11
+ ```
12
+
13
+ 2. Commit the build:
14
+
15
+ ```bash
16
+ git add .
17
+ git commit -m "<follow conventional commits, k thanks>"
18
+ git push
19
+ ```
20
+
21
+ 3. Update the version and publish the package to NPM:
22
+
23
+ ```bash
24
+ npm version <patch|minor|major>
25
+ npm publish
26
+ ```
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './lib/env.js';
2
2
  export * from './lib/email/index.js';
3
3
  export * from './lib/forms/index.js';
4
+ export * from './lib/partners/forms/index.js';
package/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './lib/env.js';
2
2
  export * from './lib/email/index.js';
3
3
  export * from './lib/forms/index.js';
4
+ export * from './lib/partners/forms/index.js';
4
5
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,+BAA+B,CAAC"}
@@ -5,14 +5,14 @@ const LONG_TEXT_VALIDATOR = `${TEXT_PREPROCESS}z.string().describe("textarea"))`
5
5
  const NUMBER_VALIDATOR = 'z.number()';
6
6
  const SIGNATURE_VALIDATOR = `${TEXT_PREPROCESS}z.string().nonempty({ message: "This field is required." }))`;
7
7
  const DROPDOWN_VALIDATOR = `z.enum(["Option 1", "Option 2"], {message:"This field is required."})`;
8
- const MULTISELECT_VALIDATOR = `z.array(
9
- z.enum(
10
- [
11
- "Option 1",
12
- "Option 2"
13
- ],
14
- { message: "This field is required." }
15
- )
8
+ const MULTISELECT_VALIDATOR = `z.array(
9
+ z.enum(
10
+ [
11
+ "Option 1",
12
+ "Option 2"
13
+ ],
14
+ { message: "This field is required." }
15
+ )
16
16
  ).describe("multiselect")`;
17
17
  const DATE_VALIDATOR = 'z.coerce.date()';
18
18
  const TIME_VALIDATOR = 'z.string().describe("time")';
@@ -8,6 +8,7 @@ type BasePdfViewerProps = {
8
8
  onVisiblePageChange: (page: number) => void;
9
9
  showToolbar?: boolean;
10
10
  squareFrame?: boolean;
11
+ minScale?: number;
11
12
  children?: React.ReactNode;
12
13
  renderPage: (pageNumber: number) => React.ReactNode;
13
14
  pageRefs?: React.MutableRefObject<Map<number, HTMLDivElement | null>>;
@@ -17,5 +18,5 @@ type BasePdfViewerProps = {
17
18
  onDragLeave?: (e: React.DragEvent<HTMLDivElement>) => void;
18
19
  onDrop?: (e: React.DragEvent<HTMLDivElement>) => void;
19
20
  };
20
- export declare function BasePdfViewer({ pdfDoc, pageCount, scale, onScaleChange, visiblePage, onVisiblePageChange, showToolbar, squareFrame, children, renderPage, registerScrollContainer, onFileChange, pageRefs: externalPageRefs, onDragOver, onDragLeave, onDrop, }: BasePdfViewerProps): import("react").JSX.Element;
21
+ export declare function BasePdfViewer({ pdfDoc, pageCount, scale, onScaleChange, visiblePage, onVisiblePageChange, showToolbar, squareFrame, minScale, children, renderPage, registerScrollContainer, onFileChange, pageRefs: externalPageRefs, onDragOver, onDragLeave, onDrop, }: BasePdfViewerProps): import("react").JSX.Element;
21
22
  export {};
@@ -3,7 +3,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  import { useCallback, useMemo, useRef } from 'react';
4
4
  import { FileUp, ZoomIn, ZoomOut } from 'lucide-react';
5
5
  const clamp = (value, min, max) => Math.min(max, Math.max(min, value));
6
- export function BasePdfViewer({ pdfDoc, pageCount, scale, onScaleChange, visiblePage, onVisiblePageChange, showToolbar = true, squareFrame = false, children, renderPage, registerScrollContainer, onFileChange, pageRefs: externalPageRefs, onDragOver, onDragLeave, onDrop, }) {
6
+ export function BasePdfViewer({ pdfDoc, pageCount, scale, onScaleChange, visiblePage, onVisiblePageChange, showToolbar = true, squareFrame = false, minScale = 0.2, children, renderPage, registerScrollContainer, onFileChange, pageRefs: externalPageRefs, onDragOver, onDragLeave, onDrop, }) {
7
7
  const internalPageRefs = useRef(new Map());
8
8
  const pageRefs = externalPageRefs ?? internalPageRefs;
9
9
  const registerPageRef = useCallback((page, node) => {
@@ -11,7 +11,7 @@ export function BasePdfViewer({ pdfDoc, pageCount, scale, onScaleChange, visible
11
11
  }, []);
12
12
  const handleZoom = (direction) => {
13
13
  const delta = direction === 'in' ? 0.1 : -0.1;
14
- onScaleChange(clamp(parseFloat((scale + delta).toFixed(2)), 0.5, 3));
14
+ onScaleChange(clamp(parseFloat((scale + delta).toFixed(2)), minScale, 3));
15
15
  };
16
16
  const pagesArray = useMemo(() => Array.from({ length: pageCount }, (_, idx) => idx + 1), [pageCount]);
17
17
  const handleScroll = useCallback((e) => {
@@ -37,6 +37,6 @@ export function BasePdfViewer({ pdfDoc, pageCount, scale, onScaleChange, visible
37
37
  const containerClass = squareFrame
38
38
  ? 'relative flex h-full flex-col overflow-hidden bg-slate-50'
39
39
  : 'relative flex h-full flex-col overflow-hidden rounded-[0.33em] bg-slate-50';
40
- return (_jsxs("div", { className: containerClass, children: [showToolbar && (_jsx("div", { className: "relative flex h-12 flex-shrink-0 items-center border-b border-slate-300 bg-white px-3", children: _jsxs("div", { className: "flex w-full items-center justify-between gap-3", children: [_jsx("div", { className: "flex items-center gap-1", children: children }), _jsxs("div", { className: "flex items-center gap-2", children: [_jsxs("span", { className: "text-xs font-medium text-slate-700", children: [visiblePage, "/", pageCount || 1] }), _jsxs("div", { className: "ml-1 inline-flex items-center gap-1", children: [_jsx("button", { type: "button", onClick: () => handleZoom('out'), disabled: scale <= 0.5, className: "rounded p-1.5 hover:bg-slate-100 disabled:cursor-not-allowed disabled:opacity-30", title: "Zoom out", "aria-label": "Zoom out", children: _jsx(ZoomOut, { className: "h-3.5 w-3.5" }) }), _jsx("button", { type: "button", onClick: () => handleZoom('in'), disabled: scale >= 3, className: "rounded p-1.5 hover:bg-slate-100 disabled:cursor-not-allowed disabled:opacity-30", title: "Zoom in", "aria-label": "Zoom in", children: _jsx(ZoomIn, { className: "h-3.5 w-3.5" }) })] }), _jsxs("span", { className: "w-10 text-center text-[11px] font-medium text-slate-700", children: [Math.round(scale * 100), "%"] }), onFileChange && (_jsxs("label", { className: "flex cursor-pointer items-center rounded p-1.5 text-sm transition-colors hover:bg-slate-100", title: "Upload PDF", "aria-label": "Upload PDF", children: [_jsx(FileUp, { className: "h-4 w-4" }), _jsx("input", { type: "file", accept: "application/pdf", className: "hidden", onChange: onFileChange })] }))] })] }) })), _jsx("div", { className: "relative flex-1 overflow-hidden bg-slate-100", children: _jsx("div", { className: "flex h-full min-w-0", children: _jsx("div", { ref: registerScrollContainer, className: "relative min-w-0 flex-1 overflow-auto p-4", onScroll: handleScroll, onDragOver: onDragOver, onDragLeave: onDragLeave, onDrop: onDrop, children: _jsx("div", { className: "w-full space-y-4", children: pagesArray.map((page) => (_jsx("div", { className: "mx-auto w-fit", children: _jsx("div", { ref: (node) => registerPageRef(page, node), children: renderPage(page) }) }, page))) }) }) }) })] }));
40
+ return (_jsxs("div", { className: containerClass, children: [showToolbar && (_jsx("div", { className: "relative flex h-12 flex-shrink-0 items-center border-b border-slate-300 bg-white px-3", children: _jsxs("div", { className: "flex w-full items-center justify-between gap-3", children: [_jsx("div", { className: "flex items-center gap-1", children: children }), _jsxs("div", { className: "flex items-center gap-2", children: [_jsxs("span", { className: "text-xs font-medium text-slate-700", children: [visiblePage, "/", pageCount || 1] }), _jsxs("div", { className: "ml-1 inline-flex items-center gap-1", children: [_jsx("button", { type: "button", onClick: () => handleZoom('out'), disabled: scale <= minScale, className: "rounded p-1.5 hover:bg-slate-100 disabled:cursor-not-allowed disabled:opacity-30", title: "Zoom out", "aria-label": "Zoom out", children: _jsx(ZoomOut, { className: "h-3.5 w-3.5" }) }), _jsx("button", { type: "button", onClick: () => handleZoom('in'), disabled: scale >= 3, className: "rounded p-1.5 hover:bg-slate-100 disabled:cursor-not-allowed disabled:opacity-30", title: "Zoom in", "aria-label": "Zoom in", children: _jsx(ZoomIn, { className: "h-3.5 w-3.5" }) })] }), _jsxs("span", { className: "w-10 text-center text-[11px] font-medium text-slate-700", children: [Math.round(scale * 100), "%"] }), onFileChange && (_jsxs("label", { className: "flex cursor-pointer items-center rounded p-1.5 text-sm transition-colors hover:bg-slate-100", title: "Upload PDF", "aria-label": "Upload PDF", children: [_jsx(FileUp, { className: "h-4 w-4" }), _jsx("input", { type: "file", accept: "application/pdf", className: "hidden", onChange: onFileChange })] }))] })] }) })), _jsx("div", { className: "relative flex-1 overflow-hidden bg-slate-100", children: _jsx("div", { className: "flex h-full min-w-0", children: _jsx("div", { ref: registerScrollContainer, className: "relative min-w-0 flex-1 overflow-auto p-4", onScroll: handleScroll, onDragOver: onDragOver, onDragLeave: onDragLeave, onDrop: onDrop, children: _jsx("div", { className: "w-full space-y-4", children: pagesArray.map((page) => (_jsx("div", { className: "mx-auto w-fit", children: _jsx("div", { ref: (node) => registerPageRef(page, node), children: renderPage(page) }) }, page))) }) }) }) })] }));
41
41
  }
42
42
  //# sourceMappingURL=BasePdfViewer.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"BasePdfViewer.js","sourceRoot":"","sources":["../../../lib/pdf-viewer/BasePdfViewer.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"BasePdfViewer.js","sourceRoot":"","sources":["../../../lib/pdf-viewer/BasePdfViewer.tsx"],"names":[],"mappings":"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"}
@@ -77,13 +77,13 @@ export const ensurePreviewFontsLoaded = () => {
77
77
  if (!document.getElementById(PREVIEW_FONT_STYLE_ID)) {
78
78
  const style = document.createElement("style");
79
79
  style.id = PREVIEW_FONT_STYLE_ID;
80
- style.textContent = `
81
- @font-face {
82
- font-family: "MegastinaPreview";
83
- src: url("/fonts/megastina.regular.ttf") format("truetype");
84
- font-weight: 400;
85
- font-style: normal;
86
- font-display: block;
80
+ style.textContent = `
81
+ @font-face {
82
+ font-family: "MegastinaPreview";
83
+ src: url("/fonts/megastina.regular.ttf") format("truetype");
84
+ font-weight: 400;
85
+ font-style: normal;
86
+ font-display: block;
87
87
  }`;
88
88
  document.head.appendChild(style);
89
89
  }