@ieee-ui/ui 0.0.5 → 0.0.6
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/ieee-ui.cjs.js +303 -0
- package/dist/ieee-ui.es.js +2111 -0
- package/dist/index.d.ts +2 -0
- package/dist/src/ieee-ui/Button.d.ts +15 -0
- package/dist/src/ieee-ui/Button.d.ts.map +1 -0
- package/dist/src/ieee-ui/CheckBox.d.ts +7 -0
- package/dist/src/ieee-ui/CheckBox.d.ts.map +1 -0
- package/dist/src/ieee-ui/DatePicker.d.ts +14 -0
- package/dist/src/ieee-ui/DatePicker.d.ts.map +1 -0
- package/dist/src/ieee-ui/DropdownMenu.d.ts +20 -0
- package/dist/src/ieee-ui/DropdownMenu.d.ts.map +1 -0
- package/dist/src/ieee-ui/Input.d.ts +20 -0
- package/dist/src/ieee-ui/Input.d.ts.map +1 -0
- package/dist/src/ieee-ui/Layouts.d.ts +19 -0
- package/dist/src/ieee-ui/Layouts.d.ts.map +1 -0
- package/dist/src/ieee-ui/Logo.d.ts +5 -0
- package/dist/src/ieee-ui/Logo.d.ts.map +1 -0
- package/dist/src/ieee-ui/PageLoader.d.ts +5 -0
- package/dist/src/ieee-ui/PageLoader.d.ts.map +1 -0
- package/dist/src/ieee-ui/RadioButton.d.ts +7 -0
- package/dist/src/ieee-ui/RadioButton.d.ts.map +1 -0
- package/dist/src/ieee-ui/Screens.d.ts +15 -0
- package/dist/src/ieee-ui/Screens.d.ts.map +1 -0
- package/dist/src/ieee-ui/Utilities.d.ts +38 -0
- package/dist/src/ieee-ui/Utilities.d.ts.map +1 -0
- package/dist/src/ieee-ui/index.d.ts +12 -0
- package/dist/src/ieee-ui/index.d.ts.map +1 -0
- package/package.json +2 -1
- package/dist/assets/index-RGyfg9nZ.js +0 -403
- package/dist/assets/logo-CbyaoOWc.png +0 -0
- package/dist/index.html +0 -14
- /package/dist/{assets/index-C37uuph3.css → ui.css} +0 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export type ButtonTypes = "primary" | "secondary" | "tertiary" | "danger" | "ghost" | "basic";
|
|
3
|
+
export type ButtonWidths = "auto" | "small" | "medium" | "large" | "xl" | "full" | "fit";
|
|
4
|
+
export interface ButtonProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onClick" | "type"> {
|
|
5
|
+
buttonText?: string;
|
|
6
|
+
buttonIcon?: React.ReactNode;
|
|
7
|
+
onClick: () => void;
|
|
8
|
+
type: ButtonTypes;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
loading?: boolean;
|
|
11
|
+
width?: ButtonWidths;
|
|
12
|
+
htmlType?: "button" | "submit" | "reset";
|
|
13
|
+
}
|
|
14
|
+
export declare const Button: ({ buttonText, buttonIcon, onClick, type, disabled, loading, width, htmlType, className, children, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../src/ieee-ui/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,MAAM,WAAW,GACnB,SAAS,GACT,WAAW,GACX,UAAU,GACV,QAAQ,GACR,OAAO,GACP,OAAO,CAAC;AAEZ,MAAM,MAAM,YAAY,GACpB,MAAM,GACN,OAAO,GACP,QAAQ,GACR,OAAO,GACP,IAAI,GACJ,MAAM,GACN,KAAK,CAAC;AAEV,MAAM,WAAW,WAAY,SAAQ,IAAI,CACvC,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAC7C,SAAS,GAAG,MAAM,CACnB;IACC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC7B,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,IAAI,EAAE,WAAW,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,QAAQ,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,OAAO,CAAC;CAC1C;AAED,eAAO,MAAM,MAAM,GAAI,8GAYpB,WAAW,4CAuEb,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface CheckBoxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> {
|
|
3
|
+
label?: string;
|
|
4
|
+
}
|
|
5
|
+
export declare const CheckBox: React.ForwardRefExoticComponent<CheckBoxProps & React.RefAttributes<HTMLInputElement>>;
|
|
6
|
+
export {};
|
|
7
|
+
//# sourceMappingURL=CheckBox.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CheckBox.d.ts","sourceRoot":"","sources":["../../../src/ieee-ui/CheckBox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,UAAU,aAAc,SAAQ,IAAI,CAClC,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAC3C,MAAM,CACP;IACC,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,QAAQ,wFAsCpB,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
interface DatePickerProps {
|
|
2
|
+
label?: string;
|
|
3
|
+
value?: Date;
|
|
4
|
+
onChange?: (date: Date) => void;
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
error?: string;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
minDate?: Date;
|
|
9
|
+
maxDate?: Date;
|
|
10
|
+
className?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const DatePicker: ({ label, value, onChange, placeholder, error, disabled, minDate, maxDate, className, }: DatePickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=DatePicker.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DatePicker.d.ts","sourceRoot":"","sources":["../../../src/ieee-ui/DatePicker.tsx"],"names":[],"mappings":"AAgCA,UAAU,eAAe;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,IAAI,CAAC;IACb,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;IAChC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAQD,eAAO,MAAM,UAAU,GAAI,wFAUxB,eAAe,4CA6gBjB,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface DropdownItem {
|
|
3
|
+
label: string;
|
|
4
|
+
onClick: () => void;
|
|
5
|
+
icon?: React.ReactNode;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
danger?: boolean;
|
|
8
|
+
}
|
|
9
|
+
interface DropdownMenuProps {
|
|
10
|
+
trigger: React.ReactNode | ((props: {
|
|
11
|
+
isOpen: boolean;
|
|
12
|
+
}) => React.ReactNode);
|
|
13
|
+
items: DropdownItem[];
|
|
14
|
+
align?: "left" | "right";
|
|
15
|
+
width?: "auto" | "trigger" | number;
|
|
16
|
+
className?: string;
|
|
17
|
+
}
|
|
18
|
+
export declare const DropdownMenu: ({ trigger, items, align, width, className, }: DropdownMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=DropdownMenu.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DropdownMenu.d.ts","sourceRoot":"","sources":["../../../src/ieee-ui/DropdownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAG3D,UAAU,YAAY;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,UAAU,iBAAiB;IACzB,OAAO,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,KAAK,EAAE;QAAE,MAAM,EAAE,OAAO,CAAA;KAAE,KAAK,KAAK,CAAC,SAAS,CAAC,CAAC;IAC7E,KAAK,EAAE,YAAY,EAAE,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC;IACpC,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,YAAY,GAAI,8CAM1B,iBAAiB,4CAyInB,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface BaseInputProps {
|
|
3
|
+
label?: string;
|
|
4
|
+
error?: string;
|
|
5
|
+
helperText?: string;
|
|
6
|
+
fullWidth?: boolean;
|
|
7
|
+
leftIcon?: React.ReactNode;
|
|
8
|
+
rightIcon?: React.ReactNode;
|
|
9
|
+
}
|
|
10
|
+
export interface InputFieldProps extends React.InputHTMLAttributes<HTMLInputElement>, BaseInputProps {
|
|
11
|
+
}
|
|
12
|
+
export declare const InputField: React.ForwardRefExoticComponent<InputFieldProps & React.RefAttributes<HTMLInputElement>>;
|
|
13
|
+
export declare const NumberField: React.ForwardRefExoticComponent<InputFieldProps & React.RefAttributes<HTMLInputElement>>;
|
|
14
|
+
export declare const PasswordField: React.ForwardRefExoticComponent<InputFieldProps & React.RefAttributes<HTMLInputElement>>;
|
|
15
|
+
export declare const SearchField: React.ForwardRefExoticComponent<InputFieldProps & React.RefAttributes<HTMLInputElement>>;
|
|
16
|
+
export interface TextAreaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement>, BaseInputProps {
|
|
17
|
+
}
|
|
18
|
+
export declare const TextArea: React.ForwardRefExoticComponent<TextAreaProps & React.RefAttributes<HTMLTextAreaElement>>;
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=Input.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/ieee-ui/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAGxC,UAAU,cAAc;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAGD,MAAM,WAAW,eACf,SAAQ,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,cAAc;CAAG;AAExE,eAAO,MAAM,UAAU,0FAgEtB,CAAC;AAIF,eAAO,MAAM,WAAW,0FAIvB,CAAC;AAIF,eAAO,MAAM,aAAa,0FAyDxB,CAAC;AAIH,eAAO,MAAM,WAAW,0FAyBvB,CAAC;AAIF,MAAM,WAAW,aACf,SAAQ,KAAK,CAAC,sBAAsB,CAAC,mBAAmB,CAAC,EAAE,cAAc;CAAG;AAE9E,eAAO,MAAM,QAAQ,2FAgDpB,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export declare const Page: ({ children, className, headerActions, }: {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
className?: string;
|
|
5
|
+
headerActions?: React.ReactNode;
|
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const FullScreenDisplayer: ({ children, className, }: {
|
|
8
|
+
children: React.ReactNode;
|
|
9
|
+
className?: string;
|
|
10
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const Modal: ({ isOpen, onClose, title, children, footer, size, }: {
|
|
12
|
+
isOpen: boolean;
|
|
13
|
+
onClose: () => void;
|
|
14
|
+
title?: string;
|
|
15
|
+
children: React.ReactNode;
|
|
16
|
+
footer?: React.ReactNode;
|
|
17
|
+
size?: "small" | "medium" | "large" | "full";
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element | null;
|
|
19
|
+
//# sourceMappingURL=Layouts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Layouts.d.ts","sourceRoot":"","sources":["../../../src/ieee-ui/Layouts.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAKzC,eAAO,MAAM,IAAI,GAAI,yCAIlB;IACD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CACjC,4CAgBA,CAAC;AAGF,eAAO,MAAM,mBAAmB,GAAI,0BAGjC;IACD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,4CAQA,CAAC;AAGF,eAAO,MAAM,KAAK,GAAI,qDAOnB;IACD,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAC;CAC9C,mDAwEA,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Logo.d.ts","sourceRoot":"","sources":["../../../src/ieee-ui/Logo.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ,GAAI,sBAGtB;IACD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,4CASA,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PageLoader.d.ts","sourceRoot":"","sources":["../../../src/ieee-ui/PageLoader.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU,GAAI,yBAGxB;IACD,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,4CAuBA,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface RadioButtonProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> {
|
|
3
|
+
label?: string;
|
|
4
|
+
}
|
|
5
|
+
export declare const RadioButton: React.ForwardRefExoticComponent<RadioButtonProps & React.RefAttributes<HTMLInputElement>>;
|
|
6
|
+
export {};
|
|
7
|
+
//# sourceMappingURL=RadioButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RadioButton.d.ts","sourceRoot":"","sources":["../../../src/ieee-ui/RadioButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,UAAU,gBAAiB,SAAQ,IAAI,CACrC,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAC3C,MAAM,CACP;IACC,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,WAAW,2FAmCvB,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface ScreenProps {
|
|
2
|
+
title: string;
|
|
3
|
+
message?: string;
|
|
4
|
+
actionText?: string;
|
|
5
|
+
onAction?: () => void;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const SuccessScreen: (props: ScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const ErrorScreen: (props: ScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare const InfoScreen: (props: ScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const UnauthorizedPage: ({ onLogin }: {
|
|
12
|
+
onLogin?: () => void;
|
|
13
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=Screens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Screens.d.ts","sourceRoot":"","sources":["../../../src/ieee-ui/Screens.tsx"],"names":[],"mappings":"AAIA,UAAU,WAAW;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AA0CD,eAAO,MAAM,aAAa,GAAI,OAAO,WAAW,4CAoB/C,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,OAAO,WAAW,4CAoB7C,CAAC;AAEF,eAAO,MAAM,UAAU,GAAI,OAAO,WAAW,4CAoB5C,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAI,aAAa;IAAE,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CAAE,4CAgCrE,CAAC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export declare const Loader: ({ size, text, className, }: {
|
|
3
|
+
size?: "small" | "medium" | "large";
|
|
4
|
+
text?: string;
|
|
5
|
+
className?: string;
|
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const Loading: ({ size, text, className, }: {
|
|
8
|
+
size?: "small" | "medium" | "large";
|
|
9
|
+
text?: string;
|
|
10
|
+
className?: string;
|
|
11
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export type GalleryImage = {
|
|
13
|
+
src: string;
|
|
14
|
+
alt?: string;
|
|
15
|
+
};
|
|
16
|
+
export interface LazyImageProps extends React.ImgHTMLAttributes<HTMLImageElement | HTMLVideoElement> {
|
|
17
|
+
src: string;
|
|
18
|
+
alt: string;
|
|
19
|
+
className?: string;
|
|
20
|
+
width?: string | number;
|
|
21
|
+
height?: string | number;
|
|
22
|
+
allowFullscreen?: boolean;
|
|
23
|
+
gallery?: GalleryImage[];
|
|
24
|
+
}
|
|
25
|
+
export declare const LazyImage: ({ src, alt, className, width, height, allowFullscreen, gallery, ...props }: LazyImageProps) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
interface TimePickerProps {
|
|
27
|
+
label?: string;
|
|
28
|
+
id?: string;
|
|
29
|
+
value: string;
|
|
30
|
+
onChange: (time: string) => void;
|
|
31
|
+
error?: string;
|
|
32
|
+
disabled?: boolean;
|
|
33
|
+
use24Hour?: boolean;
|
|
34
|
+
className?: string;
|
|
35
|
+
}
|
|
36
|
+
export declare function TimePicker({ label, id, value, onChange, error, disabled, use24Hour, className, }: TimePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
export {};
|
|
38
|
+
//# sourceMappingURL=Utilities.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Utilities.d.ts","sourceRoot":"","sources":["../../../src/ieee-ui/Utilities.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmD,MAAM,OAAO,CAAC;AAKxE,eAAO,MAAM,MAAM,GAAI,4BAIpB;IACD,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,4CAwBA,CAAC;AAEF,eAAO,MAAM,OAAO,+BA9BjB;IACD,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,4CA0B4B,CAAC;AAG9B,MAAM,MAAM,YAAY,GAAG;IACzB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,MAAM,WAAW,cAAe,SAAQ,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,GAAG,gBAAgB,CAAC;IAChG,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;CAC5B;AAED,eAAO,MAAM,SAAS,GAAI,4EASvB,cAAc,4CAwMhB,CAAC;AAIF,UAAU,eAAe;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,UAAU,CAAC,EACzB,KAAK,EACL,EAAE,EACF,KAAK,EACL,QAAQ,EACR,KAAK,EACL,QAAgB,EAChB,SAAiB,EACjB,SAAc,GACf,EAAE,eAAe,2CAgejB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from './Button';
|
|
2
|
+
export * from './CheckBox';
|
|
3
|
+
export * from './RadioButton';
|
|
4
|
+
export * from './DropdownMenu';
|
|
5
|
+
export * from './Input';
|
|
6
|
+
export * from './Screens';
|
|
7
|
+
export * from './Layouts';
|
|
8
|
+
export * from './Utilities';
|
|
9
|
+
export * from './Logo';
|
|
10
|
+
export * from './DatePicker';
|
|
11
|
+
export * from './PageLoader';
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ieee-ui/index.ts"],"names":[],"mappings":"AAAA,OAAO,aAAa,CAAC;AACrB,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC"}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.6",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./dist/ieee-ui.cjs.js",
|
|
9
9
|
"module": "./dist/ieee-ui.es.js",
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"react-dom": "^19.0.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
+
"@ieee-ui/ui": "^0.0.5",
|
|
35
36
|
"react": "^19.0.0",
|
|
36
37
|
"react-dom": "^19.0.0",
|
|
37
38
|
"react-icons": "^5.5.0"
|