next-helios-fe 1.0.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.
Files changed (112) hide show
  1. package/@types/index.d.ts +2 -0
  2. package/dist/components/button/index.d.ts +15 -0
  3. package/dist/components/calendar/big-calendar/event.d.ts +7 -0
  4. package/dist/components/calendar/big-calendar/index.d.ts +14 -0
  5. package/dist/components/calendar/big-calendar/toolbar.d.ts +8 -0
  6. package/dist/components/calendar/calendar/index.d.ts +11 -0
  7. package/dist/components/chart/index.d.ts +17 -0
  8. package/dist/components/chip/index.d.ts +12 -0
  9. package/dist/components/content-container/accordion/index.d.ts +10 -0
  10. package/dist/components/content-container/accordion/item.d.ts +6 -0
  11. package/dist/components/content-container/card.d.ts +10 -0
  12. package/dist/components/content-container/carousel.d.ts +10 -0
  13. package/dist/components/content-container/drawer.d.ts +8 -0
  14. package/dist/components/content-container/modal/index.d.ts +21 -0
  15. package/dist/components/content-container/sortable/index.d.ts +14 -0
  16. package/dist/components/content-container/sortable/item.d.ts +8 -0
  17. package/dist/components/content-container/sortable/knob.d.ts +5 -0
  18. package/dist/components/content-container/tab/index.d.ts +17 -0
  19. package/dist/components/content-container/tab/window.d.ts +5 -0
  20. package/dist/components/data-tree/index.d.ts +6 -0
  21. package/dist/components/dialog/index.d.ts +16 -0
  22. package/dist/components/dropdown/header.d.ts +5 -0
  23. package/dist/components/dropdown/index.d.ts +15 -0
  24. package/dist/components/dropdown/item.d.ts +7 -0
  25. package/dist/components/form/index.d.ts +44 -0
  26. package/dist/components/form/input/checkbox.d.ts +9 -0
  27. package/dist/components/form/input/color.d.ts +10 -0
  28. package/dist/components/form/input/email.d.ts +9 -0
  29. package/dist/components/form/input/file.d.ts +14 -0
  30. package/dist/components/form/input/number.d.ts +9 -0
  31. package/dist/components/form/input/password.d.ts +9 -0
  32. package/dist/components/form/input/radio.d.ts +9 -0
  33. package/dist/components/form/input/range.d.ts +9 -0
  34. package/dist/components/form/input/search.d.ts +8 -0
  35. package/dist/components/form/input/text.d.ts +9 -0
  36. package/dist/components/form/input/time.d.ts +9 -0
  37. package/dist/components/form/other/autocomplete.d.ts +15 -0
  38. package/dist/components/form/other/multipleSelect.d.ts +23 -0
  39. package/dist/components/form/other/phoneNumber.d.ts +10 -0
  40. package/dist/components/form/other/pin.d.ts +10 -0
  41. package/dist/components/form/other/secret.d.ts +11 -0
  42. package/dist/components/form/other/select.d.ts +15 -0
  43. package/dist/components/form/other/textarea.d.ts +9 -0
  44. package/dist/components/index.d.ts +19 -0
  45. package/dist/components/map/index.d.ts +13 -0
  46. package/dist/components/map/marker.d.ts +8 -0
  47. package/dist/components/syntax-highlighter/index.d.ts +9 -0
  48. package/dist/components/table/action.d.ts +5 -0
  49. package/dist/components/table/index.d.ts +24 -0
  50. package/dist/components/timeline/index.d.ts +10 -0
  51. package/dist/components/timeline/item.d.ts +7 -0
  52. package/dist/index.d.ts +2 -0
  53. package/dist/index.js +2 -0
  54. package/dist/index.js.LICENSE.txt +62 -0
  55. package/package.json +72 -0
  56. package/src/components/button/index.tsx +74 -0
  57. package/src/components/calendar/big-calendar/event.tsx +46 -0
  58. package/src/components/calendar/big-calendar/index.tsx +102 -0
  59. package/src/components/calendar/big-calendar/toolbar.tsx +98 -0
  60. package/src/components/calendar/calendar/index.tsx +26 -0
  61. package/src/components/chart/index.tsx +121 -0
  62. package/src/components/chip/index.tsx +47 -0
  63. package/src/components/content-container/accordion/index.tsx +28 -0
  64. package/src/components/content-container/accordion/item.tsx +40 -0
  65. package/src/components/content-container/card.tsx +21 -0
  66. package/src/components/content-container/carousel.tsx +35 -0
  67. package/src/components/content-container/drawer.tsx +78 -0
  68. package/src/components/content-container/modal/index.tsx +127 -0
  69. package/src/components/content-container/sortable/index.tsx +47 -0
  70. package/src/components/content-container/sortable/item.tsx +20 -0
  71. package/src/components/content-container/sortable/knob.tsx +11 -0
  72. package/src/components/content-container/tab/index.tsx +94 -0
  73. package/src/components/content-container/tab/window.tsx +10 -0
  74. package/src/components/data-tree/index.tsx +60 -0
  75. package/src/components/dialog/index.tsx +88 -0
  76. package/src/components/dropdown/header.tsx +11 -0
  77. package/src/components/dropdown/index.tsx +69 -0
  78. package/src/components/dropdown/item.tsx +22 -0
  79. package/src/components/form/index.tsx +81 -0
  80. package/src/components/form/input/checkbox.tsx +49 -0
  81. package/src/components/form/input/color.tsx +104 -0
  82. package/src/components/form/input/email.tsx +40 -0
  83. package/src/components/form/input/file.tsx +189 -0
  84. package/src/components/form/input/number.tsx +93 -0
  85. package/src/components/form/input/password.tsx +57 -0
  86. package/src/components/form/input/radio.tsx +49 -0
  87. package/src/components/form/input/range.tsx +67 -0
  88. package/src/components/form/input/search.tsx +50 -0
  89. package/src/components/form/input/text.tsx +39 -0
  90. package/src/components/form/input/time.tsx +315 -0
  91. package/src/components/form/other/autocomplete.tsx +199 -0
  92. package/src/components/form/other/multipleSelect.tsx +211 -0
  93. package/src/components/form/other/phoneNumber.tsx +1668 -0
  94. package/src/components/form/other/pin.tsx +56 -0
  95. package/src/components/form/other/secret.tsx +74 -0
  96. package/src/components/form/other/select.tsx +187 -0
  97. package/src/components/form/other/textarea.tsx +44 -0
  98. package/src/components/index.ts +29 -0
  99. package/src/components/map/index.tsx +72 -0
  100. package/src/components/map/marker.tsx +40 -0
  101. package/src/components/syntax-highlighter/index.tsx +45 -0
  102. package/src/components/table/action.tsx +22 -0
  103. package/src/components/table/index.tsx +431 -0
  104. package/src/components/timeline/index.tsx +28 -0
  105. package/src/components/timeline/item.tsx +25 -0
  106. package/src/index.css +1 -0
  107. package/src/index.ts +3 -0
  108. package/src/styles/big-calendar.scss +810 -0
  109. package/src/styles/calendar.scss +195 -0
  110. package/src/styles/index.css +2 -0
  111. package/tsconfig.json +17 -0
  112. package/webpack.config.js +35 -0
@@ -0,0 +1,2 @@
1
+ declare module "react-json-to-excel";
2
+ declare module "leaflet-defaulticon-compatibility";
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
3
+ children: React.ReactNode;
4
+ options?: {
5
+ variant?: "basic" | "primary" | "secondary" | "success" | "warning" | "danger";
6
+ width?: "full" | "fit";
7
+ height?: "short" | "medium" | "high";
8
+ position?: "left" | "center" | "right";
9
+ border?: boolean;
10
+ };
11
+ loading?: boolean;
12
+ active?: boolean;
13
+ }
14
+ export declare const Button: React.FC<ButtonProps>;
15
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ export interface EventProps {
3
+ eventList: any[];
4
+ hiddenEvent: any[];
5
+ setHiddenEvent: (event: any) => void;
6
+ }
7
+ export declare const Event: React.FC<EventProps>;
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+ import { type EventProps } from "./event";
3
+ import "../../../styles";
4
+ interface BigCalendarProps {
5
+ eventList: any[];
6
+ setEventList: (event: any) => void;
7
+ hiddenEvent: any[];
8
+ onSelectEvent?: (event: any) => void;
9
+ }
10
+ interface BigCalendarComponent extends React.FC<BigCalendarProps> {
11
+ Event: React.FC<EventProps>;
12
+ }
13
+ export declare const BigCalendar: BigCalendarComponent;
14
+ export {};
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ interface ToolbarProps {
3
+ toolbar: any;
4
+ active: string;
5
+ setActive: (active: string) => void;
6
+ }
7
+ export declare const Toolbar: React.FC<ToolbarProps>;
8
+ export {};
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+ import "../../../styles";
3
+ interface CalendarProps {
4
+ options?: {
5
+ enableSelectRange?: boolean;
6
+ };
7
+ value?: any;
8
+ onChange?: (date: any) => void;
9
+ }
10
+ export declare const Calendar: React.FC<CalendarProps>;
11
+ export {};
@@ -0,0 +1,17 @@
1
+ import React from "react";
2
+ interface ChartProps {
3
+ type: "line" | "area" | "bar" | "pie" | "donut" | "radialBar" | "heatmap";
4
+ theme?: "light" | "dark" | "system";
5
+ id?: string;
6
+ title?: string;
7
+ subTitle?: string;
8
+ series: any;
9
+ labels?: string[];
10
+ xaxis?: {
11
+ categories: string[];
12
+ };
13
+ height?: number;
14
+ sparkline?: boolean;
15
+ }
16
+ export declare const Chart: React.FC<ChartProps>;
17
+ export {};
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ interface ChipProps {
3
+ label: string;
4
+ icon?: string;
5
+ options?: {
6
+ variant?: "primary" | "secondary" | "success" | "warning" | "danger";
7
+ bordered?: boolean;
8
+ borderRadius?: "basic" | "full";
9
+ };
10
+ }
11
+ export declare const Chip: React.FC<ChipProps>;
12
+ export {};
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import { type ItemProps } from "./item";
3
+ interface AccordionProps {
4
+ children: React.ReactNode;
5
+ }
6
+ interface AccordionComponent extends React.FC<AccordionProps> {
7
+ Item: React.FC<ItemProps>;
8
+ }
9
+ export declare const Accordion: AccordionComponent;
10
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ export interface ItemProps {
3
+ children: React.ReactNode;
4
+ title: string;
5
+ }
6
+ export declare const Item: React.FC<ItemProps>;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ interface CardProps {
3
+ children: React.ReactNode;
4
+ id?: string;
5
+ options?: {
6
+ enablePadding?: boolean;
7
+ };
8
+ }
9
+ export declare const Card: React.FC<CardProps>;
10
+ export {};
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ interface CarouselProps {
3
+ children: React.ReactNode;
4
+ options?: {
5
+ interval?: number;
6
+ pauseOnHover?: boolean;
7
+ };
8
+ }
9
+ export declare const Carousel: React.FC<CarouselProps>;
10
+ export {};
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ interface DrawerProps {
3
+ children: React.ReactNode;
4
+ title: string;
5
+ subtitle: string;
6
+ }
7
+ export declare const Drawer: React.FC<DrawerProps>;
8
+ export {};
@@ -0,0 +1,21 @@
1
+ import React from "react";
2
+ interface ModalProps {
3
+ children: React.ReactNode;
4
+ id?: string;
5
+ title: string;
6
+ options?: {
7
+ size?: "fit" | "regular" | "large" | "full";
8
+ disablePadding?: boolean;
9
+ disableClose?: boolean;
10
+ hideFooter?: boolean;
11
+ };
12
+ action?: {
13
+ variant?: "primary" | "secondary" | "success" | "warning" | "danger";
14
+ label?: string;
15
+ onClick: () => void;
16
+ };
17
+ open: boolean;
18
+ setOpen: (open: boolean) => void;
19
+ }
20
+ export declare const Modal: React.FC<ModalProps>;
21
+ export {};
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+ import { type ItemProps } from "./item";
3
+ import { type KnobProps } from "./knob";
4
+ interface SortableProps {
5
+ children: React.ReactNode;
6
+ className?: string;
7
+ setItems: any;
8
+ }
9
+ interface SortableComponent extends React.FC<SortableProps> {
10
+ Item: React.FC<ItemProps>;
11
+ Knob: React.FC<KnobProps>;
12
+ }
13
+ export declare const Sortable: SortableComponent;
14
+ export {};
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ export interface ItemProps {
3
+ children: React.ReactElement<any, string | React.JSXElementConstructor<any>>;
4
+ options?: {
5
+ columnSpan?: number;
6
+ };
7
+ }
8
+ export declare const Item: React.FC<ItemProps>;
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ export interface KnobProps {
3
+ children: React.ReactElement<any, string | React.JSXElementConstructor<any>>;
4
+ }
5
+ export declare const Knob: React.FC<KnobProps>;
@@ -0,0 +1,17 @@
1
+ import React from "react";
2
+ import { type WindowProps } from "./window";
3
+ interface TabProps {
4
+ children: React.ReactNode;
5
+ tabs: {
6
+ title: string;
7
+ icon?: string;
8
+ }[];
9
+ options?: {
10
+ variant?: "vertical" | "horizontal";
11
+ };
12
+ }
13
+ interface TabComponent extends React.FC<TabProps> {
14
+ Window: React.FC<WindowProps>;
15
+ }
16
+ export declare const Tab: TabComponent;
17
+ export {};
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ export interface WindowProps {
3
+ children: React.ReactNode;
4
+ }
5
+ export declare const Window: React.FC<WindowProps>;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ export interface DataTreeProps {
3
+ data: any[];
4
+ defaultExpanded?: boolean;
5
+ }
6
+ export declare const DataTree: React.FC<DataTreeProps>;
@@ -0,0 +1,16 @@
1
+ import React from "react";
2
+ interface DialogProps {
3
+ children: React.ReactNode;
4
+ action: {
5
+ variant: "primary" | "secondary" | "success" | "warning" | "danger";
6
+ label: string;
7
+ onClick: () => void;
8
+ };
9
+ options?: {
10
+ timeout?: 3000 | 5000 | 7000 | 10000;
11
+ };
12
+ open: boolean;
13
+ setOpen: (open: boolean) => void;
14
+ }
15
+ export declare const Dialog: React.FC<DialogProps>;
16
+ export {};
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ export interface HeaderProps {
3
+ children: React.ReactNode;
4
+ }
5
+ export declare const Header: React.FC<HeaderProps>;
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ import { type HeaderProps } from "./header";
3
+ import { type ItemProps } from "./item";
4
+ interface DropdownProps {
5
+ children: React.ReactNode;
6
+ placement?: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
7
+ dismissOnClick?: boolean;
8
+ trigger?: React.ReactNode;
9
+ }
10
+ interface DropdownComponent extends React.FC<DropdownProps> {
11
+ Header: React.FC<HeaderProps>;
12
+ Item: React.FC<ItemProps>;
13
+ }
14
+ export declare const Dropdown: DropdownComponent;
15
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ export interface ItemProps {
3
+ children: React.ReactNode;
4
+ active?: boolean;
5
+ onClick?: () => void;
6
+ }
7
+ export declare const Item: React.FC<ItemProps>;
@@ -0,0 +1,44 @@
1
+ import React from "react";
2
+ import { type TextProps } from "./input/text";
3
+ import { type NumberProps } from "./input/number";
4
+ import { type EmailProps } from "./input/email";
5
+ import { type SearchProps } from "./input/search";
6
+ import { type CheckboxProps } from "./input/checkbox";
7
+ import { type RadioProps } from "./input/radio";
8
+ import { type RangeProps } from "./input/range";
9
+ import { type TimeProps } from "./input/time";
10
+ import { type FileProps } from "./input/file";
11
+ import { type ColorProps } from "./input/color";
12
+ import { type PasswordProps } from "./input/password";
13
+ import { type PhoneNumberProps } from "./other/phoneNumber";
14
+ import { type SecretProps } from "./other/secret";
15
+ import { type PinProps } from "./other/pin";
16
+ import { type TextareaProps } from "./other/textarea";
17
+ import { type SelectProps } from "./other/select";
18
+ import { type MultipleSelectProps } from "./other/multipleSelect";
19
+ import { type AutocompleteProps } from "./other/autocomplete";
20
+ interface FormProps extends React.FormHTMLAttributes<HTMLFormElement> {
21
+ children: React.ReactNode;
22
+ }
23
+ interface FormComponent extends React.FC<FormProps> {
24
+ Text: React.FC<TextProps>;
25
+ Number: React.FC<NumberProps>;
26
+ Email: React.FC<EmailProps>;
27
+ Search: React.FC<SearchProps>;
28
+ Checkbox: React.FC<CheckboxProps>;
29
+ Radio: React.FC<RadioProps>;
30
+ Range: React.FC<RangeProps>;
31
+ Time: React.FC<TimeProps>;
32
+ File: React.FC<FileProps>;
33
+ Color: React.FC<ColorProps>;
34
+ Password: React.FC<PasswordProps>;
35
+ PhoneNumber: React.FC<PhoneNumberProps>;
36
+ Secret: React.FC<SecretProps>;
37
+ Pin: React.FC<PinProps>;
38
+ Textarea: React.FC<TextareaProps>;
39
+ Select: React.FC<SelectProps>;
40
+ MultipleSelect: React.FC<MultipleSelectProps>;
41
+ Autocomplete: React.FC<AutocompleteProps>;
42
+ }
43
+ export declare const Form: FormComponent;
44
+ export {};
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ export interface CheckboxProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ disableHover?: boolean;
5
+ };
6
+ label?: string;
7
+ theme?: string;
8
+ }
9
+ export declare const Checkbox: React.FC<CheckboxProps>;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ export interface ColorProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ label?: string;
8
+ onClipboardClick?: (value: string) => void;
9
+ }
10
+ export declare const Color: React.FC<ColorProps>;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ export interface EmailProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ label?: string;
8
+ }
9
+ export declare const Email: React.FC<EmailProps>;
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+ export interface FileProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ variant?: "simple" | "drag&drop";
5
+ buttonOnly?: boolean;
6
+ maxFileSize?: number;
7
+ width?: "full" | "fit";
8
+ height?: "short" | "medium" | "high";
9
+ };
10
+ label?: string;
11
+ files?: any;
12
+ onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
13
+ }
14
+ export declare const File: React.FC<FileProps>;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ export interface NumberProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ label?: string;
8
+ }
9
+ export declare const Number: React.FC<NumberProps>;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ export interface PasswordProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ label?: string;
8
+ }
9
+ export declare const Password: React.FC<PasswordProps>;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ export interface RadioProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ disableHover?: boolean;
5
+ };
6
+ label?: string;
7
+ theme?: string;
8
+ }
9
+ export declare const Radio: React.FC<RadioProps>;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ export interface RangeProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ };
6
+ label?: string;
7
+ theme?: string;
8
+ }
9
+ export declare const Range: React.FC<RangeProps>;
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ export interface SearchProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ }
8
+ export declare const Search: React.FC<SearchProps>;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ export interface TextProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ label?: string;
8
+ }
9
+ export declare const Text: React.FC<TextProps>;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ export interface TimeProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ label?: string;
8
+ }
9
+ export declare const Time: React.FC<TimeProps>;
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ export interface AutocompleteProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ label?: string;
8
+ menus: {
9
+ label: string;
10
+ value: string;
11
+ [key: string]: any;
12
+ }[];
13
+ placeholder?: string;
14
+ }
15
+ export declare const Autocomplete: React.FC<AutocompleteProps>;
@@ -0,0 +1,23 @@
1
+ import React from "react";
2
+ export interface MultipleSelectProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "value"> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ label?: string;
8
+ menus: {
9
+ label: string;
10
+ value: string;
11
+ [key: string]: any;
12
+ }[];
13
+ placeholder?: string;
14
+ required?: boolean;
15
+ value?: string[];
16
+ onClick?: () => void;
17
+ onChange?: (e: {
18
+ target: {
19
+ value: string[];
20
+ };
21
+ }) => void;
22
+ }
23
+ export declare const MultipleSelect: React.FC<MultipleSelectProps>;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ export interface PhoneNumberProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ label?: string;
8
+ getPhoneNumber?: (value: string) => void;
9
+ }
10
+ export declare const PhoneNumber: React.FC<PhoneNumberProps>;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ export interface PinProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ height?: "short" | "medium" | "high";
5
+ length: number;
6
+ };
7
+ label?: string;
8
+ onChange?: (e: any) => void;
9
+ }
10
+ export declare const Pin: React.FC<PinProps>;
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+ export interface SecretProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ label?: string;
8
+ value?: string;
9
+ onClipboardClick?: (value: string) => void;
10
+ }
11
+ export declare const Secret: React.FC<SecretProps>;
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ export interface SelectProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ label?: string;
8
+ menus: {
9
+ label: string;
10
+ value: string;
11
+ [key: string]: any;
12
+ }[];
13
+ placeholder?: string;
14
+ }
15
+ export declare const Select: React.FC<SelectProps>;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ export interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
3
+ options?: {
4
+ width?: "full" | "fit";
5
+ height?: "short" | "medium" | "high";
6
+ };
7
+ label?: string;
8
+ }
9
+ export declare const Textarea: React.FC<TextareaProps>;
@@ -0,0 +1,19 @@
1
+ export { Tab } from "./content-container/tab";
2
+ export { Dialog } from "./dialog";
3
+ export { Modal } from "./content-container/modal";
4
+ export { Drawer } from "./content-container/drawer";
5
+ export { Carousel } from "./content-container/carousel";
6
+ export { Accordion } from "./content-container/accordion";
7
+ export { Sortable } from "./content-container/sortable";
8
+ export { Card } from "./content-container/card";
9
+ export { Dropdown } from "./dropdown";
10
+ export { Chip } from "./chip";
11
+ export { Form } from "./form";
12
+ export { Button } from "./button";
13
+ export { Table } from "./table";
14
+ export { Chart } from "./chart";
15
+ export { Calendar } from "./calendar/calendar";
16
+ export { BigCalendar } from "./calendar/big-calendar";
17
+ export { Timeline } from "./timeline";
18
+ export { DataTree } from "./data-tree";
19
+ export { SyntaxHighlighter } from "./syntax-highlighter";
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ import "leaflet-defaulticon-compatibility/dist/leaflet-defaulticon-compatibility.webpack.css";
3
+ import "leaflet/dist/leaflet.css";
4
+ import { type MarkerProps } from "./marker";
5
+ interface MapProps {
6
+ children: React.ReactNode;
7
+ currentPosition: any[];
8
+ }
9
+ interface MapComponentProps extends React.FC<MapProps> {
10
+ Marker: React.FC<MarkerProps>;
11
+ }
12
+ export declare const Map: MapComponentProps;
13
+ export {};
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ export interface MarkerProps {
3
+ position: any;
4
+ label: string;
5
+ desc?: React.ReactNode;
6
+ onClick: (position: any) => void;
7
+ }
8
+ export declare const Marker: React.FC<MarkerProps>;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ interface SyntaxHighlighterProps {
3
+ theme?: "light" | "dark" | "system";
4
+ codeString: string;
5
+ language?: string;
6
+ onClipboardClick?: (value: string) => void;
7
+ }
8
+ export declare const SyntaxHighlighter: React.FC<SyntaxHighlighterProps>;
9
+ export {};
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ export interface ActionProps {
3
+ children: React.ReactNode;
4
+ }
5
+ export declare const Action: React.FC<ActionProps>;