@bi-digital/react 0.2.10
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 +54 -0
- package/dist/button/button.d.ts +63 -0
- package/dist/button/button.js +9 -0
- package/dist/button/button.js.map +1 -0
- package/dist/button/index.d.ts +3 -0
- package/dist/button/index.js +10 -0
- package/dist/button/index.js.map +1 -0
- package/dist/chunk-2O4QJORU.js +84 -0
- package/dist/chunk-2O4QJORU.js.map +1 -0
- package/dist/chunk-3OKTD2AD.js +32 -0
- package/dist/chunk-3OKTD2AD.js.map +1 -0
- package/dist/chunk-45MAIFC5.js +46 -0
- package/dist/chunk-45MAIFC5.js.map +1 -0
- package/dist/chunk-4SI37MJP.js +30 -0
- package/dist/chunk-4SI37MJP.js.map +1 -0
- package/dist/chunk-6UM2LO6A.js +33 -0
- package/dist/chunk-6UM2LO6A.js.map +1 -0
- package/dist/chunk-7IV4F742.js +72 -0
- package/dist/chunk-7IV4F742.js.map +1 -0
- package/dist/chunk-HFJQRD6C.js +1 -0
- package/dist/chunk-HFJQRD6C.js.map +1 -0
- package/dist/chunk-JEOMA4Z3.js +1 -0
- package/dist/chunk-JEOMA4Z3.js.map +1 -0
- package/dist/chunk-KTNWYSLR.js +1 -0
- package/dist/chunk-KTNWYSLR.js.map +1 -0
- package/dist/chunk-NTOVYJTA.js +1 -0
- package/dist/chunk-NTOVYJTA.js.map +1 -0
- package/dist/chunk-OXOTNHAS.js +1 -0
- package/dist/chunk-OXOTNHAS.js.map +1 -0
- package/dist/chunk-PZHZKBNQ.js +11 -0
- package/dist/chunk-PZHZKBNQ.js.map +1 -0
- package/dist/chunk-QQRONISI.js +1 -0
- package/dist/chunk-QQRONISI.js.map +1 -0
- package/dist/chunk-RJYRALJA.js +1 -0
- package/dist/chunk-RJYRALJA.js.map +1 -0
- package/dist/chunk-V5WV7RSY.js +11 -0
- package/dist/chunk-V5WV7RSY.js.map +1 -0
- package/dist/chunk-VELDZOU2.js +1 -0
- package/dist/chunk-VELDZOU2.js.map +1 -0
- package/dist/chunk-ZGRDMFHX.js +1 -0
- package/dist/chunk-ZGRDMFHX.js.map +1 -0
- package/dist/form/error-message/error-message.d.ts +10 -0
- package/dist/form/error-message/error-message.js +7 -0
- package/dist/form/error-message/error-message.js.map +1 -0
- package/dist/form/error-message/index.d.ts +3 -0
- package/dist/form/error-message/index.js +8 -0
- package/dist/form/error-message/index.js.map +1 -0
- package/dist/form/index.d.ts +6 -0
- package/dist/form/index.js +24 -0
- package/dist/form/index.js.map +1 -0
- package/dist/form/input/index.d.ts +5 -0
- package/dist/form/input/index.js +14 -0
- package/dist/form/input/index.js.map +1 -0
- package/dist/form/input/input.d.ts +11 -0
- package/dist/form/input/input.js +13 -0
- package/dist/form/input/input.js.map +1 -0
- package/dist/form/input-group/index.d.ts +4 -0
- package/dist/form/input-group/index.js +12 -0
- package/dist/form/input-group/index.js.map +1 -0
- package/dist/form/input-group/input-group.d.ts +27 -0
- package/dist/form/input-group/input-group.js +11 -0
- package/dist/form/input-group/input-group.js.map +1 -0
- package/dist/form/label/index.d.ts +3 -0
- package/dist/form/label/index.js +8 -0
- package/dist/form/label/index.js.map +1 -0
- package/dist/form/label/label.d.ts +23 -0
- package/dist/form/label/label.js +7 -0
- package/dist/form/label/label.js.map +1 -0
- package/dist/logo/index.d.ts +3 -0
- package/dist/logo/index.js +8 -0
- package/dist/logo/index.js.map +1 -0
- package/dist/logo/logo.d.ts +31 -0
- package/dist/logo/logo.js +7 -0
- package/dist/logo/logo.js.map +1 -0
- package/dist/main.d.ts +10 -0
- package/dist/main.js +44 -0
- package/dist/main.js.map +1 -0
- package/dist/navbar/index.d.ts +3 -0
- package/dist/navbar/index.js +10 -0
- package/dist/navbar/index.js.map +1 -0
- package/dist/navbar/navbar.d.ts +42 -0
- package/dist/navbar/navbar.js +9 -0
- package/dist/navbar/navbar.js.map +1 -0
- package/dist/spinner/index.d.ts +3 -0
- package/dist/spinner/index.js +8 -0
- package/dist/spinner/index.js.map +1 -0
- package/dist/spinner/spinner.d.ts +18 -0
- package/dist/spinner/spinner.js +7 -0
- package/dist/spinner/spinner.js.map +1 -0
- package/dist/vite-env.d.d.ts +1 -0
- package/dist/vite-env.d.js +1 -0
- package/dist/vite-env.d.js.map +1 -0
- package/package.json +39 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { ErrorMessage, ErrorMessageProps } from './error-message/error-message.js';
|
|
2
|
+
export { Input, InputProps } from './input/input.js';
|
|
3
|
+
export { InputGroup, InputGroupProps } from './input-group/input-group.js';
|
|
4
|
+
export { Label, LabelProps } from './label/label.js';
|
|
5
|
+
import 'react/jsx-runtime';
|
|
6
|
+
import 'react';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import "../chunk-VELDZOU2.js";
|
|
2
|
+
import "../chunk-JEOMA4Z3.js";
|
|
3
|
+
import {
|
|
4
|
+
Input
|
|
5
|
+
} from "../chunk-45MAIFC5.js";
|
|
6
|
+
import "../chunk-OXOTNHAS.js";
|
|
7
|
+
import {
|
|
8
|
+
InputGroup
|
|
9
|
+
} from "../chunk-2O4QJORU.js";
|
|
10
|
+
import "../chunk-RJYRALJA.js";
|
|
11
|
+
import {
|
|
12
|
+
Label
|
|
13
|
+
} from "../chunk-3OKTD2AD.js";
|
|
14
|
+
import "../chunk-HFJQRD6C.js";
|
|
15
|
+
import {
|
|
16
|
+
ErrorMessage
|
|
17
|
+
} from "../chunk-PZHZKBNQ.js";
|
|
18
|
+
export {
|
|
19
|
+
ErrorMessage,
|
|
20
|
+
Input,
|
|
21
|
+
InputGroup,
|
|
22
|
+
Label
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import "../../chunk-JEOMA4Z3.js";
|
|
2
|
+
import {
|
|
3
|
+
Input
|
|
4
|
+
} from "../../chunk-45MAIFC5.js";
|
|
5
|
+
import "../../chunk-OXOTNHAS.js";
|
|
6
|
+
import "../../chunk-2O4QJORU.js";
|
|
7
|
+
import "../../chunk-RJYRALJA.js";
|
|
8
|
+
import "../../chunk-3OKTD2AD.js";
|
|
9
|
+
import "../../chunk-HFJQRD6C.js";
|
|
10
|
+
import "../../chunk-PZHZKBNQ.js";
|
|
11
|
+
export {
|
|
12
|
+
Input
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { InputHTMLAttributes, Ref } from 'react';
|
|
3
|
+
import { InputGroupProps } from '../input-group/input-group.js';
|
|
4
|
+
import '../error-message/error-message.js';
|
|
5
|
+
|
|
6
|
+
type InputProps = Omit<InputGroupProps & InputHTMLAttributes<HTMLInputElement>, 'children'> & {
|
|
7
|
+
ref?: Ref<HTMLInputElement>;
|
|
8
|
+
};
|
|
9
|
+
declare const Input: ({ dark, className, errorMessage, labelProps, label, id, style, stretch, disabled, readOnly, startAdornment, endAdornment, ref, ...props }: InputProps) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { Input, type InputProps };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Input
|
|
3
|
+
} from "../../chunk-45MAIFC5.js";
|
|
4
|
+
import "../../chunk-OXOTNHAS.js";
|
|
5
|
+
import "../../chunk-2O4QJORU.js";
|
|
6
|
+
import "../../chunk-RJYRALJA.js";
|
|
7
|
+
import "../../chunk-3OKTD2AD.js";
|
|
8
|
+
import "../../chunk-HFJQRD6C.js";
|
|
9
|
+
import "../../chunk-PZHZKBNQ.js";
|
|
10
|
+
export {
|
|
11
|
+
Input
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=input.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import "../../chunk-OXOTNHAS.js";
|
|
2
|
+
import {
|
|
3
|
+
InputGroup
|
|
4
|
+
} from "../../chunk-2O4QJORU.js";
|
|
5
|
+
import "../../chunk-RJYRALJA.js";
|
|
6
|
+
import "../../chunk-3OKTD2AD.js";
|
|
7
|
+
import "../../chunk-HFJQRD6C.js";
|
|
8
|
+
import "../../chunk-PZHZKBNQ.js";
|
|
9
|
+
export {
|
|
10
|
+
InputGroup
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { ComponentProps, ReactNode, LabelHTMLAttributes, Ref } from 'react';
|
|
3
|
+
import { ErrorMessageProps } from '../error-message/error-message.js';
|
|
4
|
+
|
|
5
|
+
type InputGroupProps = ComponentProps<'div'> & {
|
|
6
|
+
dark?: boolean;
|
|
7
|
+
stretch?: boolean;
|
|
8
|
+
errorMessage?: ReactNode;
|
|
9
|
+
errorMessageProps?: Partial<ErrorMessageProps>;
|
|
10
|
+
labelProps?: LabelHTMLAttributes<HTMLLabelElement>;
|
|
11
|
+
label: ReactNode;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
readOnly?: boolean;
|
|
14
|
+
required?: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* `children` must be a single input element.
|
|
17
|
+
*/
|
|
18
|
+
children: Exclude<ReactNode, Iterable<ReactNode>>;
|
|
19
|
+
/** Add an adornment to the start of the input. */
|
|
20
|
+
startAdornment?: ReactNode;
|
|
21
|
+
/** Add an adornment to the end of the input. */
|
|
22
|
+
endAdornment?: ReactNode;
|
|
23
|
+
ref?: Ref<HTMLDivElement>;
|
|
24
|
+
};
|
|
25
|
+
declare const InputGroup: ({ id, className, style, dark, stretch, errorMessage, errorMessageProps, labelProps: { className: labelClassName, ...labelProps }, label, disabled, readOnly, required, children, startAdornment, endAdornment, ref, ...props }: InputGroupProps) => react_jsx_runtime.JSX.Element;
|
|
26
|
+
|
|
27
|
+
export { InputGroup, type InputGroupProps };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import {
|
|
2
|
+
InputGroup
|
|
3
|
+
} from "../../chunk-2O4QJORU.js";
|
|
4
|
+
import "../../chunk-RJYRALJA.js";
|
|
5
|
+
import "../../chunk-3OKTD2AD.js";
|
|
6
|
+
import "../../chunk-HFJQRD6C.js";
|
|
7
|
+
import "../../chunk-PZHZKBNQ.js";
|
|
8
|
+
export {
|
|
9
|
+
InputGroup
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=input-group.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { ComponentProps } from 'react';
|
|
3
|
+
|
|
4
|
+
type LabelProps = ComponentProps<'label'> & {
|
|
5
|
+
/** The font style of the label. */
|
|
6
|
+
labelFontStyle?: 'regular' | 'bold';
|
|
7
|
+
htmlFor?: string;
|
|
8
|
+
required?: boolean;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
/** Is the component displayed on a dark background. */
|
|
11
|
+
dark?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* The type of label. `label` is used for labeling specific elements. `legend` is a broad label used for a group of objects.
|
|
14
|
+
* @default 'label'
|
|
15
|
+
*/
|
|
16
|
+
type?: 'label' | 'legend';
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Accessible label component that can be used to display a label and help text for form fields.
|
|
20
|
+
*/
|
|
21
|
+
declare const Label: ({ children, labelFontStyle, htmlFor, required, disabled, dark, className, ...props }: LabelProps) => react_jsx_runtime.JSX.Element;
|
|
22
|
+
|
|
23
|
+
export { Label, type LabelProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { ComponentProps, Ref } from 'react';
|
|
3
|
+
|
|
4
|
+
type LogoProps = Omit<ComponentProps<'span'>, 'children'> & {
|
|
5
|
+
/**
|
|
6
|
+
* Determines if the logo should be displayed in the negative version,
|
|
7
|
+
* useful when displaying the logo on a dark background.
|
|
8
|
+
* @default false
|
|
9
|
+
*/
|
|
10
|
+
dark?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Determines if the international logo should be used.
|
|
13
|
+
* @default false
|
|
14
|
+
*/
|
|
15
|
+
international?: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* Determines if the logo text should be displayed vertically.
|
|
18
|
+
* Only applies when `international` is `true`.
|
|
19
|
+
* @default false
|
|
20
|
+
*/
|
|
21
|
+
vertical?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Determines the height of the logo.
|
|
24
|
+
* @default 'medium'
|
|
25
|
+
*/
|
|
26
|
+
size?: 'xs' | 'small' | 'medium' | 'large' | 'xl' | 'xxl';
|
|
27
|
+
ref?: Ref<HTMLSpanElement>;
|
|
28
|
+
};
|
|
29
|
+
declare const Logo: ({ dark, international, vertical, size, className, ref, ...props }: LogoProps) => react_jsx_runtime.JSX.Element;
|
|
30
|
+
|
|
31
|
+
export { Logo, type LogoProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/dist/main.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export { Button, ButtonProps } from './button/button.js';
|
|
2
|
+
export { ErrorMessage, ErrorMessageProps } from './form/error-message/error-message.js';
|
|
3
|
+
export { Input, InputProps } from './form/input/input.js';
|
|
4
|
+
export { InputGroup, InputGroupProps } from './form/input-group/input-group.js';
|
|
5
|
+
export { Label, LabelProps } from './form/label/label.js';
|
|
6
|
+
export { Logo, LogoProps } from './logo/logo.js';
|
|
7
|
+
export { Navbar, NavbarProps } from './navbar/navbar.js';
|
|
8
|
+
export { Spinner, SpinnerProps } from './spinner/spinner.js';
|
|
9
|
+
import 'react/jsx-runtime';
|
|
10
|
+
import 'react';
|
package/dist/main.js
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import "./chunk-NTOVYJTA.js";
|
|
2
|
+
import {
|
|
3
|
+
Button
|
|
4
|
+
} from "./chunk-7IV4F742.js";
|
|
5
|
+
import "./chunk-ZGRDMFHX.js";
|
|
6
|
+
import {
|
|
7
|
+
Spinner
|
|
8
|
+
} from "./chunk-V5WV7RSY.js";
|
|
9
|
+
import "./chunk-VELDZOU2.js";
|
|
10
|
+
import "./chunk-JEOMA4Z3.js";
|
|
11
|
+
import {
|
|
12
|
+
Input
|
|
13
|
+
} from "./chunk-45MAIFC5.js";
|
|
14
|
+
import "./chunk-OXOTNHAS.js";
|
|
15
|
+
import {
|
|
16
|
+
InputGroup
|
|
17
|
+
} from "./chunk-2O4QJORU.js";
|
|
18
|
+
import "./chunk-RJYRALJA.js";
|
|
19
|
+
import {
|
|
20
|
+
Label
|
|
21
|
+
} from "./chunk-3OKTD2AD.js";
|
|
22
|
+
import "./chunk-HFJQRD6C.js";
|
|
23
|
+
import {
|
|
24
|
+
ErrorMessage
|
|
25
|
+
} from "./chunk-PZHZKBNQ.js";
|
|
26
|
+
import "./chunk-QQRONISI.js";
|
|
27
|
+
import {
|
|
28
|
+
Navbar
|
|
29
|
+
} from "./chunk-6UM2LO6A.js";
|
|
30
|
+
import "./chunk-KTNWYSLR.js";
|
|
31
|
+
import {
|
|
32
|
+
Logo
|
|
33
|
+
} from "./chunk-4SI37MJP.js";
|
|
34
|
+
export {
|
|
35
|
+
Button,
|
|
36
|
+
ErrorMessage,
|
|
37
|
+
Input,
|
|
38
|
+
InputGroup,
|
|
39
|
+
Label,
|
|
40
|
+
Logo,
|
|
41
|
+
Navbar,
|
|
42
|
+
Spinner
|
|
43
|
+
};
|
|
44
|
+
//# sourceMappingURL=main.js.map
|
package/dist/main.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { ComponentProps, ReactNode, Ref } from 'react';
|
|
3
|
+
|
|
4
|
+
type NavbarProps = ComponentProps<'nav'> & {
|
|
5
|
+
/**
|
|
6
|
+
* Determines if the navbar should be dark or light.
|
|
7
|
+
* @default false
|
|
8
|
+
*/
|
|
9
|
+
dark?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Skip link.
|
|
12
|
+
*/
|
|
13
|
+
skipLink?: {
|
|
14
|
+
label: string;
|
|
15
|
+
href: string;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Text for menu area label.
|
|
19
|
+
*/
|
|
20
|
+
menuAreaLabel: string;
|
|
21
|
+
/**
|
|
22
|
+
* Determines if the navbar should be fixed.
|
|
23
|
+
* @default false
|
|
24
|
+
*/
|
|
25
|
+
fixed?: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* Aria label for the home link.
|
|
28
|
+
*/
|
|
29
|
+
homeAriaLabel: string;
|
|
30
|
+
/**
|
|
31
|
+
* Href for the home link.
|
|
32
|
+
*/
|
|
33
|
+
homeHref: string;
|
|
34
|
+
/**
|
|
35
|
+
* Override the default logo
|
|
36
|
+
*/
|
|
37
|
+
logo?: ReactNode;
|
|
38
|
+
ref?: Ref<HTMLElement>;
|
|
39
|
+
};
|
|
40
|
+
declare const Navbar: ({ dark, fixed, menuAreaLabel, homeAriaLabel, skipLink, homeHref, logo, children, className, ref, ...props }: NavbarProps) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
export { Navbar, type NavbarProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { ComponentProps } from 'react';
|
|
3
|
+
|
|
4
|
+
type SpinnerProps = Omit<ComponentProps<'span'>, 'color'> & {
|
|
5
|
+
/**
|
|
6
|
+
* The color of the spinner.
|
|
7
|
+
* @default 'inherit'
|
|
8
|
+
*/
|
|
9
|
+
color?: 'inherit' | 'black';
|
|
10
|
+
/**
|
|
11
|
+
* The size of the spinner.
|
|
12
|
+
* It sets the font-size as the width and height is `1em`. If not set, the spinner will inherit the font size of its parent.
|
|
13
|
+
*/
|
|
14
|
+
size?: 'small' | 'medium' | 'large' | 'xl' | '2xl';
|
|
15
|
+
};
|
|
16
|
+
declare const Spinner: ({ color, size, className, ...props }: SpinnerProps) => react_jsx_runtime.JSX.Element;
|
|
17
|
+
|
|
18
|
+
export { Spinner, type SpinnerProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=vite-env.d.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bi-digital/react",
|
|
3
|
+
"version": "0.2.10",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "React components from BI Digital",
|
|
6
|
+
"author": "BI Digital",
|
|
7
|
+
"license": "ISC",
|
|
8
|
+
"module": "./dist/main.js",
|
|
9
|
+
"exports": "./dist/main.js",
|
|
10
|
+
"types": "./dist/main.d.ts",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"clsx": "^2.1.1"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@types/node": "^22.14.1",
|
|
22
|
+
"@types/react": "^19.0.7",
|
|
23
|
+
"@types/react-dom": "^19.0.3",
|
|
24
|
+
"react": "^19.0.0",
|
|
25
|
+
"react-dom": "^19.0.0",
|
|
26
|
+
"tsup": "^8.4.0",
|
|
27
|
+
"typescript": "^5.7.2"
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"react": "^19",
|
|
31
|
+
"react-dom": "^19",
|
|
32
|
+
"@bi-digital/css": "0.2.10"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "tsup",
|
|
36
|
+
"dev": "tsup --watch",
|
|
37
|
+
"lint": "eslint ."
|
|
38
|
+
}
|
|
39
|
+
}
|