@opengovsg/oui 0.0.0-snapshot-20251201075851 → 0.0.0-snapshot-20251203091804
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/cjs/banner/banner.cjs +1 -1
- package/dist/cjs/button/button.cjs +1 -1
- package/dist/cjs/calendar/calendar-month-day-selector.cjs +2 -2
- package/dist/cjs/checkbox/checkbox.cjs +1 -1
- package/dist/cjs/combo-box/combo-box.cjs +2 -2
- package/dist/cjs/date-field/date-field.cjs +1 -1
- package/dist/cjs/date-picker/date-picker.cjs +5 -4
- package/dist/cjs/date-range-picker/date-range-picker.cjs +5 -5
- package/dist/cjs/file-dropzone/file-dropzone.cjs +2 -2
- package/dist/cjs/file-dropzone/file-info.cjs +1 -1
- package/dist/cjs/hooks/index.cjs +2 -0
- package/dist/cjs/hooks/use-draggable.cjs +88 -0
- package/dist/cjs/index.cjs +22 -7
- package/dist/cjs/menu/menu.cjs +1 -1
- package/dist/cjs/modal/i18n.cjs +19 -0
- package/dist/cjs/modal/index.cjs +19 -0
- package/dist/cjs/modal/modal-body.cjs +26 -0
- package/dist/cjs/modal/modal-content.cjs +54 -0
- package/dist/cjs/modal/modal-footer.cjs +27 -0
- package/dist/cjs/modal/modal-header.cjs +25 -0
- package/dist/cjs/modal/modal-variant-context.cjs +13 -0
- package/dist/cjs/modal/modal.cjs +66 -0
- package/dist/cjs/number-field/number-field.cjs +3 -3
- package/dist/cjs/range-calendar/range-calendar.cjs +1 -1
- package/dist/cjs/select/select.cjs +3 -3
- package/dist/cjs/tag-field/tag-field.cjs +3 -3
- package/dist/cjs/text-area-field/text-area-field.cjs +1 -1
- package/dist/cjs/text-field/text-field.cjs +1 -1
- package/dist/esm/banner/banner.js +1 -1
- package/dist/esm/button/button.js +1 -1
- package/dist/esm/calendar/calendar-month-day-selector.js +2 -2
- package/dist/esm/checkbox/checkbox.js +1 -1
- package/dist/esm/combo-box/combo-box.js +2 -2
- package/dist/esm/date-field/date-field.js +1 -1
- package/dist/esm/date-picker/date-picker.js +5 -4
- package/dist/esm/date-range-picker/date-range-picker.js +5 -5
- package/dist/esm/file-dropzone/file-dropzone.js +2 -2
- package/dist/esm/file-dropzone/file-info.js +1 -1
- package/dist/esm/hooks/index.js +1 -0
- package/dist/esm/hooks/use-draggable.js +86 -0
- package/dist/esm/index.js +9 -2
- package/dist/esm/menu/menu.js +1 -1
- package/dist/esm/modal/i18n.js +17 -0
- package/dist/esm/modal/index.js +7 -0
- package/dist/esm/modal/modal-body.js +24 -0
- package/dist/esm/modal/modal-content.js +52 -0
- package/dist/esm/modal/modal-footer.js +25 -0
- package/dist/esm/modal/modal-header.js +23 -0
- package/dist/esm/modal/modal-variant-context.js +10 -0
- package/dist/esm/modal/modal.js +64 -0
- package/dist/esm/number-field/number-field.js +3 -3
- package/dist/esm/range-calendar/range-calendar.js +1 -1
- package/dist/esm/select/select.js +3 -3
- package/dist/esm/tag-field/tag-field.js +3 -3
- package/dist/esm/text-area-field/text-area-field.js +1 -1
- package/dist/esm/text-field/text-field.js +1 -1
- package/dist/types/badge/use-badge.d.ts +12 -12
- package/dist/types/hooks/index.d.ts +4 -1
- package/dist/types/hooks/index.d.ts.map +1 -1
- package/dist/types/hooks/use-draggable.d.ts +24 -0
- package/dist/types/hooks/use-draggable.d.ts.map +1 -0
- package/dist/types/index.d.mts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/modal/i18n.d.ts +3 -0
- package/dist/types/modal/i18n.d.ts.map +1 -0
- package/dist/types/modal/index.d.ts +12 -0
- package/dist/types/modal/index.d.ts.map +1 -0
- package/dist/types/modal/modal-body.d.ts +5 -0
- package/dist/types/modal/modal-body.d.ts.map +1 -0
- package/dist/types/modal/modal-content.d.ts +10 -0
- package/dist/types/modal/modal-content.d.ts.map +1 -0
- package/dist/types/modal/modal-footer.d.ts +5 -0
- package/dist/types/modal/modal-footer.d.ts.map +1 -0
- package/dist/types/modal/modal-header.d.ts +5 -0
- package/dist/types/modal/modal-header.d.ts.map +1 -0
- package/dist/types/modal/modal-variant-context.d.ts +8 -0
- package/dist/types/modal/modal-variant-context.d.ts.map +1 -0
- package/dist/types/modal/modal.d.ts +8 -0
- package/dist/types/modal/modal.d.ts.map +1 -0
- package/dist/types/pagination/use-pagination.d.ts +36 -36
- package/package.json +5 -5
|
@@ -4,15 +4,15 @@ import { jsxs, jsx } from 'react/jsx-runtime';
|
|
|
4
4
|
import { createElement } from 'react';
|
|
5
5
|
import { composeRenderProps } from 'react-aria-components';
|
|
6
6
|
import { tagFieldStyles } from '@opengovsg/oui-theme';
|
|
7
|
+
import { Label, FieldGroup, Description, FieldError } from '../field/field.js';
|
|
8
|
+
import { Input } from '../input/input.js';
|
|
9
|
+
import { Popover } from '../popover/popover.js';
|
|
7
10
|
import { TagFieldItem } from './tag-field-item.js';
|
|
8
11
|
import { TagFieldList } from './tag-field-list.js';
|
|
9
12
|
import { TagFieldRoot } from './tag-field-root.js';
|
|
10
13
|
import { TagFieldTagList } from './tag-field-tag-list.js';
|
|
11
14
|
import { TagFieldTrigger } from './tag-field-trigger.js';
|
|
12
15
|
import ChevronDown from '../node_modules/.pnpm/lucide-react@0.475.0_react@19.0.0/node_modules/lucide-react/dist/esm/icons/chevron-down.js';
|
|
13
|
-
import { Label, FieldGroup, Description, FieldError } from '../field/field.js';
|
|
14
|
-
import { Input } from '../input/input.js';
|
|
15
|
-
import { Popover } from '../popover/popover.js';
|
|
16
16
|
|
|
17
17
|
function TagField({
|
|
18
18
|
classNames,
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
4
4
|
import { TextField } from 'react-aria-components';
|
|
5
5
|
import { composeTailwindRenderProps } from '@opengovsg/oui-theme';
|
|
6
|
-
import { TextArea } from '../text-area/text-area.js';
|
|
7
6
|
import { Label, Description, FieldError } from '../field/field.js';
|
|
7
|
+
import { TextArea } from '../text-area/text-area.js';
|
|
8
8
|
|
|
9
9
|
function TextAreaField({
|
|
10
10
|
label,
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
4
4
|
import { TextField as TextField$1 } from 'react-aria-components';
|
|
5
5
|
import { composeTailwindRenderProps } from '@opengovsg/oui-theme';
|
|
6
|
-
import { Input } from '../input/input.js';
|
|
7
6
|
import { Label, Description, FieldError } from '../field/field.js';
|
|
7
|
+
import { Input } from '../input/input.js';
|
|
8
8
|
|
|
9
9
|
function TextField({
|
|
10
10
|
label,
|
|
@@ -70,48 +70,48 @@ export declare function useBadge(originalProps: UseBadgeProps): {
|
|
|
70
70
|
};
|
|
71
71
|
}, undefined, "outline-offset-2 outline-none", unknown, unknown, undefined>>>;
|
|
72
72
|
base: ((slotProps?: ({
|
|
73
|
+
isDisabled?: boolean | undefined;
|
|
73
74
|
size?: "md" | "sm" | "xs" | undefined;
|
|
74
75
|
color?: "sub" | "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
75
|
-
radius?: "
|
|
76
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
76
77
|
variant?: "solid" | "outline" | "dot" | "subtle" | undefined;
|
|
77
|
-
isDisabled?: boolean | undefined;
|
|
78
78
|
isCloseable?: boolean | undefined;
|
|
79
79
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string) & ((slotProps?: ({
|
|
80
|
+
isDisabled?: boolean | undefined;
|
|
80
81
|
size?: "md" | "sm" | "xs" | undefined;
|
|
81
82
|
color?: "sub" | "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
82
|
-
radius?: "
|
|
83
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
83
84
|
variant?: "solid" | "outline" | "dot" | "subtle" | undefined;
|
|
84
|
-
isDisabled?: boolean | undefined;
|
|
85
85
|
isCloseable?: boolean | undefined;
|
|
86
86
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string);
|
|
87
87
|
dot: ((slotProps?: ({
|
|
88
|
+
isDisabled?: boolean | undefined;
|
|
88
89
|
size?: "md" | "sm" | "xs" | undefined;
|
|
89
90
|
color?: "sub" | "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
90
|
-
radius?: "
|
|
91
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
91
92
|
variant?: "solid" | "outline" | "dot" | "subtle" | undefined;
|
|
92
|
-
isDisabled?: boolean | undefined;
|
|
93
93
|
isCloseable?: boolean | undefined;
|
|
94
94
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string) & ((slotProps?: ({
|
|
95
|
+
isDisabled?: boolean | undefined;
|
|
95
96
|
size?: "md" | "sm" | "xs" | undefined;
|
|
96
97
|
color?: "sub" | "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
97
|
-
radius?: "
|
|
98
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
98
99
|
variant?: "solid" | "outline" | "dot" | "subtle" | undefined;
|
|
99
|
-
isDisabled?: boolean | undefined;
|
|
100
100
|
isCloseable?: boolean | undefined;
|
|
101
101
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string);
|
|
102
102
|
content: ((slotProps?: ({
|
|
103
|
+
isDisabled?: boolean | undefined;
|
|
103
104
|
size?: "md" | "sm" | "xs" | undefined;
|
|
104
105
|
color?: "sub" | "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
105
|
-
radius?: "
|
|
106
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
106
107
|
variant?: "solid" | "outline" | "dot" | "subtle" | undefined;
|
|
107
|
-
isDisabled?: boolean | undefined;
|
|
108
108
|
isCloseable?: boolean | undefined;
|
|
109
109
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string) & ((slotProps?: ({
|
|
110
|
+
isDisabled?: boolean | undefined;
|
|
110
111
|
size?: "md" | "sm" | "xs" | undefined;
|
|
111
112
|
color?: "sub" | "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
112
|
-
radius?: "
|
|
113
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
113
114
|
variant?: "solid" | "outline" | "dot" | "subtle" | undefined;
|
|
114
|
-
isDisabled?: boolean | undefined;
|
|
115
115
|
isCloseable?: boolean | undefined;
|
|
116
116
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string);
|
|
117
117
|
};
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { useControllableState } from "./use-controllable-state";
|
|
2
|
+
export { useDraggable } from "./use-draggable";
|
|
3
|
+
export type { UseControllableStateProps } from "./use-controllable-state";
|
|
4
|
+
export type { UseDraggableProps } from "./use-draggable";
|
|
2
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAA;AAC/D,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAE9C,YAAY,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAA;AACzE,YAAY,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAA"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { MoveResult } from "@react-aria/interactions";
|
|
2
|
+
export interface UseDraggableProps {
|
|
3
|
+
/**
|
|
4
|
+
* Ref to the moving target DOM node.
|
|
5
|
+
*/
|
|
6
|
+
targetRef?: React.RefObject<HTMLElement | null>;
|
|
7
|
+
/**
|
|
8
|
+
* Whether to disable the target is draggable.
|
|
9
|
+
* @default false
|
|
10
|
+
*/
|
|
11
|
+
isDisabled?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Whether the target can overflow the viewport.
|
|
14
|
+
* @default false
|
|
15
|
+
*/
|
|
16
|
+
canOverflow?: boolean;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* A hook to make a target draggable.
|
|
20
|
+
* @param props UseDraggableProps
|
|
21
|
+
* @returns MoveResult for the drag DOM node.
|
|
22
|
+
*/
|
|
23
|
+
export declare function useDraggable(props: UseDraggableProps): MoveResult;
|
|
24
|
+
//# sourceMappingURL=use-draggable.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-draggable.d.ts","sourceRoot":"","sources":["../../../src/hooks/use-draggable.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAiB,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAIzE,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC,CAAA;IAC/C;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,GAAG,UAAU,CAmGjE"}
|
package/dist/types/index.d.mts
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,iBAAiB,CAAA;AAC/B,cAAc,SAAS,CAAA;AACvB,cAAc,cAAc,CAAA;AAC5B,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,aAAa,CAAA;AAC3B,cAAc,UAAU,CAAA;AACxB,cAAc,aAAa,CAAA;AAC3B,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,YAAY,CAAA;AAC1B,cAAc,kBAAkB,CAAA;AAChC,cAAc,QAAQ,CAAA;AACtB,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA;AACtB,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,qBAAqB,CAAA;AACnC,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,iBAAiB,CAAA;AAC/B,cAAc,SAAS,CAAA;AACvB,cAAc,cAAc,CAAA;AAC5B,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,aAAa,CAAA;AAC3B,cAAc,UAAU,CAAA;AACxB,cAAc,aAAa,CAAA;AAC3B,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,YAAY,CAAA;AAC1B,cAAc,kBAAkB,CAAA;AAChC,cAAc,QAAQ,CAAA;AACtB,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA;AACtB,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,qBAAqB,CAAA;AACnC,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,SAAS,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../../src/modal/i18n.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAElD,eAAO,MAAM,WAAW,EAAE,gBAazB,CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { Modal } from "./modal";
|
|
2
|
+
export { ModalContent } from "./modal-content";
|
|
3
|
+
export { ModalFooter } from "./modal-footer";
|
|
4
|
+
export { ModalBody } from "./modal-body";
|
|
5
|
+
export { ModalHeader } from "./modal-header";
|
|
6
|
+
export type { ModalProps } from "./modal";
|
|
7
|
+
export type { ModalContentProps } from "./modal-content";
|
|
8
|
+
export type { ModalFooterProps } from "./modal-footer";
|
|
9
|
+
export type { ModalBodyProps } from "./modal-body";
|
|
10
|
+
export type { ModalHeaderProps } from "./modal-header";
|
|
11
|
+
export { ModalVariantContext, useModalVariantContext, } from "./modal-variant-context";
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/modal/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAC5C,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAE5C,YAAY,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AACzC,YAAY,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAA;AACxD,YAAY,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AACtD,YAAY,EAAE,cAAc,EAAE,MAAM,cAAc,CAAA;AAClD,YAAY,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AAEtD,OAAO,EACL,mBAAmB,EACnB,sBAAsB,GACvB,MAAM,yBAAyB,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { HtmlUiProps } from "../system/types";
|
|
2
|
+
export interface ModalBodyProps extends HtmlUiProps<"div"> {
|
|
3
|
+
}
|
|
4
|
+
export declare const ModalBody: import("../system/utils").InternalForwardRefRenderFunction<import("../system/types").As, ModalBodyProps, never>;
|
|
5
|
+
//# sourceMappingURL=modal-body.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal-body.d.ts","sourceRoot":"","sources":["../../../src/modal/modal-body.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAKlD,MAAM,WAAW,cAAe,SAAQ,WAAW,CAAC,KAAK,CAAC;CAAG;AAE7D,eAAO,MAAM,SAAS,iHAiBpB,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { DialogProps } from "react-aria-components";
|
|
2
|
+
import type { ButtonProps } from "../button";
|
|
3
|
+
export interface ModalContentProps extends Omit<DialogProps, "children"> {
|
|
4
|
+
children: React.ReactNode | ((onClose: () => void) => React.ReactNode);
|
|
5
|
+
closeButtonContent?: React.ReactNode;
|
|
6
|
+
hideCloseButton?: boolean;
|
|
7
|
+
closeButtonProps?: Omit<ButtonProps, "className" | "slot">;
|
|
8
|
+
}
|
|
9
|
+
export declare function ModalContent({ closeButtonContent: closeButtonContentProp, hideCloseButton, closeButtonProps, ...props }: ModalContentProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
//# sourceMappingURL=modal-content.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal-content.d.ts","sourceRoot":"","sources":["../../../src/modal/modal-content.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AAQxD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAK5C,MAAM,WAAW,iBAAkB,SAAQ,IAAI,CAAC,WAAW,EAAE,UAAU,CAAC;IACtE,QAAQ,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,OAAO,EAAE,MAAM,IAAI,KAAK,KAAK,CAAC,SAAS,CAAC,CAAA;IACtE,kBAAkB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACpC,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,gBAAgB,CAAC,EAAE,IAAI,CAAC,WAAW,EAAE,WAAW,GAAG,MAAM,CAAC,CAAA;CAC3D;AAED,wBAAgB,YAAY,CAAC,EAC3B,kBAAkB,EAAE,sBAAsB,EAC1C,eAAe,EACf,gBAAgB,EAChB,GAAG,KAAK,EACT,EAAE,iBAAiB,2CA2CnB"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { HtmlUiProps } from "../system/types";
|
|
2
|
+
export interface ModalFooterProps extends HtmlUiProps<"footer"> {
|
|
3
|
+
}
|
|
4
|
+
export declare const ModalFooter: import("../system/utils").InternalForwardRefRenderFunction<import("../system/types").As, ModalFooterProps, never>;
|
|
5
|
+
//# sourceMappingURL=modal-footer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal-footer.d.ts","sourceRoot":"","sources":["../../../src/modal/modal-footer.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAKlD,MAAM,WAAW,gBAAiB,SAAQ,WAAW,CAAC,QAAQ,CAAC;CAAG;AAElE,eAAO,MAAM,WAAW,mHAgBtB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal-header.d.ts","sourceRoot":"","sources":["../../../src/modal/modal-header.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AASzD,MAAM,WAAW,gBAAiB,SAAQ,YAAY;CAAG;AAEzD,wBAAgB,WAAW,CAAC,KAAK,EAAE,gBAAgB,2CAYlD"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ModalSlots, modalStyles, ModalVariantProps, SlotsToClasses } from "@opengovsg/oui-theme";
|
|
2
|
+
export interface ModalVariantContextValue extends ModalVariantProps {
|
|
3
|
+
classNames?: SlotsToClasses<ModalSlots>;
|
|
4
|
+
slots: ReturnType<typeof modalStyles>;
|
|
5
|
+
buttonSize: "md" | "lg";
|
|
6
|
+
}
|
|
7
|
+
export declare const ModalVariantContext: import("react").Context<ModalVariantContextValue>, useModalVariantContext: () => ModalVariantContextValue;
|
|
8
|
+
//# sourceMappingURL=modal-variant-context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal-variant-context.d.ts","sourceRoot":"","sources":["../../../src/modal/modal-variant-context.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,UAAU,EACV,WAAW,EACX,iBAAiB,EACjB,cAAc,EACf,MAAM,sBAAsB,CAAA;AAI7B,MAAM,WAAW,wBAAyB,SAAQ,iBAAiB;IACjE,UAAU,CAAC,EAAE,cAAc,CAAC,UAAU,CAAC,CAAA;IACvC,KAAK,EAAE,UAAU,CAAC,OAAO,WAAW,CAAC,CAAA;IACrC,UAAU,EAAE,IAAI,GAAG,IAAI,CAAA;CACxB;AAED,eAAO,MAAO,mBAAmB,qDAAE,sBAAsB,gCAIrD,CAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ModalOverlayProps } from "react-aria-components";
|
|
2
|
+
import type { ModalSlots, SlotsToClasses, VariantProps } from "@opengovsg/oui-theme";
|
|
3
|
+
import { modalStyles } from "@opengovsg/oui-theme";
|
|
4
|
+
export interface ModalProps extends ModalOverlayProps, VariantProps<typeof modalStyles> {
|
|
5
|
+
classNames?: SlotsToClasses<ModalSlots>;
|
|
6
|
+
}
|
|
7
|
+
export declare const Modal: import("react").ForwardRefExoticComponent<ModalProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
|
+
//# sourceMappingURL=modal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal.d.ts","sourceRoot":"","sources":["../../../src/modal/modal.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA;AAQ9D,OAAO,KAAK,EACV,UAAU,EACV,cAAc,EACd,YAAY,EACb,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAAsB,WAAW,EAAE,MAAM,sBAAsB,CAAA;AAMtE,MAAM,WAAW,UACf,SAAQ,iBAAiB,EACvB,YAAY,CAAC,OAAO,WAAW,CAAC;IAClC,UAAU,CAAC,EAAE,cAAc,CAAC,UAAU,CAAC,CAAA;CACxC;AAED,eAAO,MAAM,KAAK,uGAsDhB,CAAA"}
|
|
@@ -149,182 +149,182 @@ export declare function usePagination(originalProps: UsePaginationProps): {
|
|
|
149
149
|
dotsJump: number;
|
|
150
150
|
slots: {
|
|
151
151
|
base: (slotProps?: ({
|
|
152
|
+
isDisabled?: boolean | undefined;
|
|
152
153
|
size?: "lg" | "md" | "sm" | undefined;
|
|
153
154
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
154
|
-
radius?: "
|
|
155
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
155
156
|
variant?: "light" | undefined;
|
|
156
|
-
isDisabled?: boolean | undefined;
|
|
157
157
|
isCompact?: boolean | undefined;
|
|
158
158
|
disableCursorAnimation?: boolean | undefined;
|
|
159
159
|
disableAnimation?: boolean | undefined;
|
|
160
160
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
161
161
|
wrapper: (slotProps?: ({
|
|
162
|
+
isDisabled?: boolean | undefined;
|
|
162
163
|
size?: "lg" | "md" | "sm" | undefined;
|
|
163
164
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
164
|
-
radius?: "
|
|
165
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
165
166
|
variant?: "light" | undefined;
|
|
166
|
-
isDisabled?: boolean | undefined;
|
|
167
167
|
isCompact?: boolean | undefined;
|
|
168
168
|
disableCursorAnimation?: boolean | undefined;
|
|
169
169
|
disableAnimation?: boolean | undefined;
|
|
170
170
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
171
171
|
item: (slotProps?: ({
|
|
172
|
+
isDisabled?: boolean | undefined;
|
|
172
173
|
size?: "lg" | "md" | "sm" | undefined;
|
|
173
174
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
174
|
-
radius?: "
|
|
175
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
175
176
|
variant?: "light" | undefined;
|
|
176
|
-
isDisabled?: boolean | undefined;
|
|
177
177
|
isCompact?: boolean | undefined;
|
|
178
178
|
disableCursorAnimation?: boolean | undefined;
|
|
179
179
|
disableAnimation?: boolean | undefined;
|
|
180
180
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
181
181
|
prev: (slotProps?: ({
|
|
182
|
+
isDisabled?: boolean | undefined;
|
|
182
183
|
size?: "lg" | "md" | "sm" | undefined;
|
|
183
184
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
184
|
-
radius?: "
|
|
185
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
185
186
|
variant?: "light" | undefined;
|
|
186
|
-
isDisabled?: boolean | undefined;
|
|
187
187
|
isCompact?: boolean | undefined;
|
|
188
188
|
disableCursorAnimation?: boolean | undefined;
|
|
189
189
|
disableAnimation?: boolean | undefined;
|
|
190
190
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
191
191
|
next: (slotProps?: ({
|
|
192
|
+
isDisabled?: boolean | undefined;
|
|
192
193
|
size?: "lg" | "md" | "sm" | undefined;
|
|
193
194
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
194
|
-
radius?: "
|
|
195
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
195
196
|
variant?: "light" | undefined;
|
|
196
|
-
isDisabled?: boolean | undefined;
|
|
197
197
|
isCompact?: boolean | undefined;
|
|
198
198
|
disableCursorAnimation?: boolean | undefined;
|
|
199
199
|
disableAnimation?: boolean | undefined;
|
|
200
200
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
201
201
|
cursor: (slotProps?: ({
|
|
202
|
+
isDisabled?: boolean | undefined;
|
|
202
203
|
size?: "lg" | "md" | "sm" | undefined;
|
|
203
204
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
204
|
-
radius?: "
|
|
205
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
205
206
|
variant?: "light" | undefined;
|
|
206
|
-
isDisabled?: boolean | undefined;
|
|
207
207
|
isCompact?: boolean | undefined;
|
|
208
208
|
disableCursorAnimation?: boolean | undefined;
|
|
209
209
|
disableAnimation?: boolean | undefined;
|
|
210
210
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
211
211
|
forwardIcon: (slotProps?: ({
|
|
212
|
+
isDisabled?: boolean | undefined;
|
|
212
213
|
size?: "lg" | "md" | "sm" | undefined;
|
|
213
214
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
214
|
-
radius?: "
|
|
215
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
215
216
|
variant?: "light" | undefined;
|
|
216
|
-
isDisabled?: boolean | undefined;
|
|
217
217
|
isCompact?: boolean | undefined;
|
|
218
218
|
disableCursorAnimation?: boolean | undefined;
|
|
219
219
|
disableAnimation?: boolean | undefined;
|
|
220
220
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
221
221
|
ellipsis: (slotProps?: ({
|
|
222
|
+
isDisabled?: boolean | undefined;
|
|
222
223
|
size?: "lg" | "md" | "sm" | undefined;
|
|
223
224
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
224
|
-
radius?: "
|
|
225
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
225
226
|
variant?: "light" | undefined;
|
|
226
|
-
isDisabled?: boolean | undefined;
|
|
227
227
|
isCompact?: boolean | undefined;
|
|
228
228
|
disableCursorAnimation?: boolean | undefined;
|
|
229
229
|
disableAnimation?: boolean | undefined;
|
|
230
230
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
231
231
|
chevronNext: (slotProps?: ({
|
|
232
|
+
isDisabled?: boolean | undefined;
|
|
232
233
|
size?: "lg" | "md" | "sm" | undefined;
|
|
233
234
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
234
|
-
radius?: "
|
|
235
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
235
236
|
variant?: "light" | undefined;
|
|
236
|
-
isDisabled?: boolean | undefined;
|
|
237
237
|
isCompact?: boolean | undefined;
|
|
238
238
|
disableCursorAnimation?: boolean | undefined;
|
|
239
239
|
disableAnimation?: boolean | undefined;
|
|
240
240
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
241
241
|
} & {
|
|
242
242
|
base: (slotProps?: ({
|
|
243
|
+
isDisabled?: boolean | undefined;
|
|
243
244
|
size?: "lg" | "md" | "sm" | undefined;
|
|
244
245
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
245
|
-
radius?: "
|
|
246
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
246
247
|
variant?: "light" | undefined;
|
|
247
|
-
isDisabled?: boolean | undefined;
|
|
248
248
|
isCompact?: boolean | undefined;
|
|
249
249
|
disableCursorAnimation?: boolean | undefined;
|
|
250
250
|
disableAnimation?: boolean | undefined;
|
|
251
251
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
252
252
|
wrapper: (slotProps?: ({
|
|
253
|
+
isDisabled?: boolean | undefined;
|
|
253
254
|
size?: "lg" | "md" | "sm" | undefined;
|
|
254
255
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
255
|
-
radius?: "
|
|
256
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
256
257
|
variant?: "light" | undefined;
|
|
257
|
-
isDisabled?: boolean | undefined;
|
|
258
258
|
isCompact?: boolean | undefined;
|
|
259
259
|
disableCursorAnimation?: boolean | undefined;
|
|
260
260
|
disableAnimation?: boolean | undefined;
|
|
261
261
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
262
262
|
item: (slotProps?: ({
|
|
263
|
+
isDisabled?: boolean | undefined;
|
|
263
264
|
size?: "lg" | "md" | "sm" | undefined;
|
|
264
265
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
265
|
-
radius?: "
|
|
266
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
266
267
|
variant?: "light" | undefined;
|
|
267
|
-
isDisabled?: boolean | undefined;
|
|
268
268
|
isCompact?: boolean | undefined;
|
|
269
269
|
disableCursorAnimation?: boolean | undefined;
|
|
270
270
|
disableAnimation?: boolean | undefined;
|
|
271
271
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
272
272
|
prev: (slotProps?: ({
|
|
273
|
+
isDisabled?: boolean | undefined;
|
|
273
274
|
size?: "lg" | "md" | "sm" | undefined;
|
|
274
275
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
275
|
-
radius?: "
|
|
276
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
276
277
|
variant?: "light" | undefined;
|
|
277
|
-
isDisabled?: boolean | undefined;
|
|
278
278
|
isCompact?: boolean | undefined;
|
|
279
279
|
disableCursorAnimation?: boolean | undefined;
|
|
280
280
|
disableAnimation?: boolean | undefined;
|
|
281
281
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
282
282
|
next: (slotProps?: ({
|
|
283
|
+
isDisabled?: boolean | undefined;
|
|
283
284
|
size?: "lg" | "md" | "sm" | undefined;
|
|
284
285
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
285
|
-
radius?: "
|
|
286
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
286
287
|
variant?: "light" | undefined;
|
|
287
|
-
isDisabled?: boolean | undefined;
|
|
288
288
|
isCompact?: boolean | undefined;
|
|
289
289
|
disableCursorAnimation?: boolean | undefined;
|
|
290
290
|
disableAnimation?: boolean | undefined;
|
|
291
291
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
292
292
|
cursor: (slotProps?: ({
|
|
293
|
+
isDisabled?: boolean | undefined;
|
|
293
294
|
size?: "lg" | "md" | "sm" | undefined;
|
|
294
295
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
295
|
-
radius?: "
|
|
296
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
296
297
|
variant?: "light" | undefined;
|
|
297
|
-
isDisabled?: boolean | undefined;
|
|
298
298
|
isCompact?: boolean | undefined;
|
|
299
299
|
disableCursorAnimation?: boolean | undefined;
|
|
300
300
|
disableAnimation?: boolean | undefined;
|
|
301
301
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
302
302
|
forwardIcon: (slotProps?: ({
|
|
303
|
+
isDisabled?: boolean | undefined;
|
|
303
304
|
size?: "lg" | "md" | "sm" | undefined;
|
|
304
305
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
305
|
-
radius?: "
|
|
306
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
306
307
|
variant?: "light" | undefined;
|
|
307
|
-
isDisabled?: boolean | undefined;
|
|
308
308
|
isCompact?: boolean | undefined;
|
|
309
309
|
disableCursorAnimation?: boolean | undefined;
|
|
310
310
|
disableAnimation?: boolean | undefined;
|
|
311
311
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
312
312
|
ellipsis: (slotProps?: ({
|
|
313
|
+
isDisabled?: boolean | undefined;
|
|
313
314
|
size?: "lg" | "md" | "sm" | undefined;
|
|
314
315
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
315
|
-
radius?: "
|
|
316
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
316
317
|
variant?: "light" | undefined;
|
|
317
|
-
isDisabled?: boolean | undefined;
|
|
318
318
|
isCompact?: boolean | undefined;
|
|
319
319
|
disableCursorAnimation?: boolean | undefined;
|
|
320
320
|
disableAnimation?: boolean | undefined;
|
|
321
321
|
} & import("tailwind-variants").ClassProp<import("tailwind-merge").ClassNameValue>) | undefined) => string;
|
|
322
322
|
chevronNext: (slotProps?: ({
|
|
323
|
+
isDisabled?: boolean | undefined;
|
|
323
324
|
size?: "lg" | "md" | "sm" | undefined;
|
|
324
325
|
color?: "main" | "neutral" | "critical" | "warning" | "success" | undefined;
|
|
325
|
-
radius?: "
|
|
326
|
+
radius?: "none" | "lg" | "md" | "sm" | "full" | undefined;
|
|
326
327
|
variant?: "light" | undefined;
|
|
327
|
-
isDisabled?: boolean | undefined;
|
|
328
328
|
isCompact?: boolean | undefined;
|
|
329
329
|
disableCursorAnimation?: boolean | undefined;
|
|
330
330
|
disableAnimation?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengovsg/oui",
|
|
3
|
-
"version": "0.0.0-snapshot-
|
|
3
|
+
"version": "0.0.0-snapshot-20251203091804",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"type": "module",
|
|
@@ -41,16 +41,16 @@
|
|
|
41
41
|
"@types/react": "^19.0.12",
|
|
42
42
|
"@types/react-dom": "^19.0.4",
|
|
43
43
|
"csstype": "^3.1.3",
|
|
44
|
-
"eslint": "^9.
|
|
44
|
+
"eslint": "^9.39.1",
|
|
45
45
|
"lucide-react": "^0.475.0",
|
|
46
46
|
"motion": "^12.18.1",
|
|
47
47
|
"prettier": "^3.5.3",
|
|
48
48
|
"react": "^19.0.0",
|
|
49
49
|
"react-aria-components": "^1.13.0",
|
|
50
50
|
"storybook": "10.1.2",
|
|
51
|
-
"tsx": "^4.
|
|
51
|
+
"tsx": "^4.21.0",
|
|
52
52
|
"typescript": "5.7.3",
|
|
53
|
-
"@opengovsg/oui-theme": "0.0.0-snapshot-
|
|
53
|
+
"@opengovsg/oui-theme": "0.0.0-snapshot-20251203091804",
|
|
54
54
|
"@oui/chromatic": "0.0.0",
|
|
55
55
|
"@oui/eslint-config": "0.0.0",
|
|
56
56
|
"@oui/prettier-config": "0.0.0",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"motion": ">=11.12.0 || >=12.0.0-alpha.1",
|
|
88
88
|
"react": ">= 18",
|
|
89
89
|
"react-aria-components": "^1.12.2",
|
|
90
|
-
"@opengovsg/oui-theme": "0.0.0-snapshot-
|
|
90
|
+
"@opengovsg/oui-theme": "0.0.0-snapshot-20251203091804"
|
|
91
91
|
},
|
|
92
92
|
"scripts": {
|
|
93
93
|
"build": "tsx ../../tooling/build-scripts/main.ts --dts --clean",
|