@apexcura/ui-components 0.0.16-Beta13 → 0.0.16-Beta1300

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 (67) hide show
  1. package/dist/Components/ACBreadcrumb.d.ts +16 -0
  2. package/dist/Components/AadharComponent.d.ts +3 -0
  3. package/dist/Components/AbhaNumberComponent.d.ts +3 -0
  4. package/dist/Components/AntdButton.d.ts +4 -0
  5. package/dist/Components/AutoCompleteInput.d.ts +14 -0
  6. package/dist/Components/AvatarUpload.d.ts +3 -0
  7. package/dist/Components/Button.d.ts +3 -0
  8. package/dist/Components/Capcha.d.ts +3 -0
  9. package/dist/Components/CardElement.d.ts +3 -0
  10. package/dist/Components/CheckBoxTable.d.ts +12 -0
  11. package/dist/Components/Checkbox.d.ts +3 -0
  12. package/dist/Components/ColorPickerElement.d.ts +3 -0
  13. package/dist/Components/CustomStepper.d.ts +3 -0
  14. package/dist/Components/DatePicker.d.ts +3 -0
  15. package/dist/Components/DateRangePickerElement.d.ts +3 -0
  16. package/dist/Components/DateRangeSegments.d.ts +16 -0
  17. package/dist/Components/DisplayTimeline.d.ts +3 -0
  18. package/dist/Components/DivContainer.d.ts +3 -0
  19. package/dist/Components/Document.d.ts +3 -0
  20. package/dist/Components/DropDownGroup.d.ts +19 -0
  21. package/dist/Components/DropdownElement.d.ts +3 -0
  22. package/dist/Components/Editor.d.ts +0 -0
  23. package/dist/Components/FilesUpload.d.ts +3 -0
  24. package/dist/Components/FormInputLabel.d.ts +11 -0
  25. package/dist/Components/GoogleMapWidget.d.ts +3 -0
  26. package/dist/Components/GradientCard.d.ts +5 -0
  27. package/dist/Components/GradientCardGroup.d.ts +24 -0
  28. package/dist/Components/Image.d.ts +3 -0
  29. package/dist/Components/KanbanBoard.d.ts +2 -0
  30. package/dist/Components/MediaUpload.d.ts +3 -0
  31. package/dist/Components/Navbar.d.ts +3 -0
  32. package/dist/Components/Notification.d.ts +3 -0
  33. package/dist/Components/NotificationAlert.d.ts +3 -0
  34. package/dist/Components/NumberElement.d.ts +4 -0
  35. package/dist/Components/OtpElement.d.ts +3 -0
  36. package/dist/Components/PasswordElement.d.ts +3 -0
  37. package/dist/Components/Profile.d.ts +3 -0
  38. package/dist/Components/ProfileContainer.d.ts +3 -0
  39. package/dist/Components/QRCodeElement.d.ts +5 -0
  40. package/dist/Components/RadioElement.d.ts +16 -0
  41. package/dist/Components/SegmentedElement.d.ts +3 -0
  42. package/dist/Components/SelectElement.d.ts +4 -0
  43. package/dist/Components/Sidebar.d.ts +4 -0
  44. package/dist/Components/SingleCheckbox.d.ts +3 -0
  45. package/dist/Components/SpanElement.d.ts +3 -0
  46. package/dist/Components/SplitButton.d.ts +3 -0
  47. package/dist/Components/SwitchElement.d.ts +3 -0
  48. package/dist/Components/TableCopyComponent.d.ts +4 -0
  49. package/dist/Components/TableElement.d.ts +13 -0
  50. package/dist/Components/TabsElement.d.ts +3 -0
  51. package/dist/Components/TextEditor.d.ts +5 -0
  52. package/dist/Components/TextElement.d.ts +5 -0
  53. package/dist/Components/TextareaElement.d.ts +4 -0
  54. package/dist/Components/TimePicker.d.ts +3 -0
  55. package/dist/Components/TimeRangeComponent.d.ts +3 -0
  56. package/dist/Components/TimeScheduleTable.d.ts +3 -0
  57. package/dist/Components/Video.d.ts +3 -0
  58. package/dist/Types/types.d.ts +329 -0
  59. package/dist/constants/icons.d.ts +12 -0
  60. package/dist/index.d.ts +53 -156
  61. package/dist/index.js +3 -1684
  62. package/dist/index.js.LICENSE.txt +1662 -0
  63. package/dist/index.js.map +1 -0
  64. package/dist/report.html +39 -0
  65. package/package.json +57 -61
  66. package/dist/index.d.mts +0 -156
  67. package/dist/index.mjs +0 -1638
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ export interface ACBreadcrumbItemProps {
3
+ id?: string;
4
+ icon?: string;
5
+ iconClassName?: string;
6
+ href?: string;
7
+ title: string;
8
+ }
9
+ export interface ACBreadcrumbProps {
10
+ className?: string;
11
+ element?: string;
12
+ name: string;
13
+ items: ACBreadcrumbItemProps[];
14
+ onClick: (value: string) => void;
15
+ }
16
+ export declare const ACBreadcrumb: React.FC<ACBreadcrumbProps>;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const AadharComponent: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const AbhaNumberComponent: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ import '../styles/button.css';
4
+ export declare const AntButton: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,14 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ import '../styles/index.css';
4
+ interface autoCompleteProps {
5
+ value?: {
6
+ key?: string;
7
+ value?: string;
8
+ };
9
+ }
10
+ interface customProps extends ElementType {
11
+ value?: autoCompleteProps;
12
+ }
13
+ export declare const AutoCompleteInput: (props: customProps) => React.JSX.Element;
14
+ export {};
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const AvatarUpload: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const ButtonElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const Capcha: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const CardElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ interface PaginationType {
4
+ name?: string;
5
+ page?: number;
6
+ pageSize?: number;
7
+ }
8
+ interface TableElementProps extends ElementType {
9
+ value?: PaginationType | null;
10
+ }
11
+ export declare const TableElement: (props: TableElementProps) => React.JSX.Element;
12
+ export {};
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const CheckboxElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const ColorPickerElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const CustomStepper: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const DatePickerElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const DateRangePickerElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ interface DateRangeSegmentType {
4
+ values?: string[];
5
+ segmentedValue?: string;
6
+ }
7
+ interface DateRangeSegmentsProps extends ElementType {
8
+ value?: DateRangeSegmentType | null;
9
+ segmentedOptions?: {
10
+ tooltip: string;
11
+ label: string;
12
+ value: string;
13
+ }[];
14
+ }
15
+ export declare const DateRangeSegments: (props: DateRangeSegmentsProps) => React.JSX.Element;
16
+ export {};
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const DisplayTimeline: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const DivContainer: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const Document: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,19 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ type dropDownValueProps = {
4
+ firstValue: {
5
+ key?: string | undefined;
6
+ label?: string | undefined;
7
+ value?: string | undefined;
8
+ } | undefined;
9
+ secondValue: {
10
+ key?: string | undefined;
11
+ label?: string | undefined;
12
+ value?: string | undefined;
13
+ } | undefined;
14
+ };
15
+ type dropDownGroupProps = ElementType & {
16
+ value?: dropDownValueProps;
17
+ };
18
+ export declare const DropDownGroup: (props: dropDownGroupProps) => React.JSX.Element;
19
+ export {};
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const DropdownElement: (props: ElementType) => React.JSX.Element | undefined;
File without changes
@@ -0,0 +1,3 @@
1
+ import { ElementType } from '../Types/types';
2
+ import React from 'react';
3
+ export declare const FileUpload: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ export interface FormInputLabelProps {
3
+ label?: string;
4
+ required?: boolean;
5
+ color?: string;
6
+ element?: 'input-radio' | string;
7
+ variant?: 'button' | 'default';
8
+ labelClassName?: string;
9
+ }
10
+ declare const FormInputLabel: React.FC<FormInputLabelProps>;
11
+ export default FormInputLabel;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const GoogleMapWidget: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import { GradientCardGroupOptionProps } from './GradientCardGroup';
3
+ import '../styles/gradient-card.css';
4
+ declare const GradientCard: (props: GradientCardGroupOptionProps) => React.JSX.Element;
5
+ export default GradientCard;
@@ -0,0 +1,24 @@
1
+ import React from 'react';
2
+ import { Colors } from '../Types/types';
3
+ export interface GradientCardGroupOptionProps {
4
+ active?: boolean;
5
+ clickable?: boolean;
6
+ color?: Colors;
7
+ id?: string;
8
+ name: string;
9
+ onClick?: () => void;
10
+ prefixIcon?: string;
11
+ prefixIconClassName?: string;
12
+ suffixText: string | number;
13
+ title: string;
14
+ }
15
+ export interface GradientCardGroupProps {
16
+ className?: string;
17
+ cols?: number;
18
+ element?: string;
19
+ name: string;
20
+ options: GradientCardGroupOptionProps[];
21
+ value: '';
22
+ onChange?: (value: string | number | boolean | object | object[] | undefined) => void;
23
+ }
24
+ export declare const GradientCardGroup: (props: GradientCardGroupProps) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const Image: (props: ElementType) => React.JSX.Element | null;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const KanbanBoard: React.FC;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const MediaUpload: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const Navbar: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const Notification: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const NotificationAlert: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ import '../styles/input-text.css';
4
+ export declare const NumberElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const OtpElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const PasswordElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const Profile: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const ProfileContainer: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ import '../styles/index.css';
4
+ import '../styles/input-text.css';
5
+ export declare const QRCodeElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ import '../styles/radio.css';
4
+ type radioValueProps = {
5
+ value: {
6
+ key?: string | undefined;
7
+ label?: string | undefined;
8
+ value?: string | undefined;
9
+ } | undefined;
10
+ };
11
+ interface RadioElementProps extends Omit<ElementType, 'variant'> {
12
+ value?: radioValueProps | null;
13
+ variant?: 'chip' | 'circled' | 'flat';
14
+ }
15
+ export declare const RadioElement: (props: RadioElementProps) => React.JSX.Element;
16
+ export {};
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const SegmentedElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ import '../styles/select.css';
4
+ export declare const SelectElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const Sidebar: React.FC<ElementType>;
4
+ export default Sidebar;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const SingleCheckbox: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const SpanElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const SplitButton: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const SwitchElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ import '../styles/table.css';
4
+ export declare const TableCopyComponent: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ import '../styles/table.css';
4
+ interface PaginationType {
5
+ name?: string;
6
+ page?: number;
7
+ pageSize?: number;
8
+ }
9
+ interface TableElementProps extends ElementType {
10
+ value?: PaginationType | null;
11
+ }
12
+ export declare const TableElement: (props: TableElementProps) => React.JSX.Element;
13
+ export {};
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { ElementType } from "../Types/types";
3
+ export declare const TabsElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import 'react-quill/dist/quill.snow.css';
3
+ import { ElementType } from '../Types/types';
4
+ import '../styles/index.css';
5
+ export declare const TextEditorComponent: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ import '../styles/index.css';
4
+ import '../styles/input-text.css';
5
+ export declare const TextElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ import '../styles/input-text.css';
4
+ export declare const TextareaElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const TimePickerElement: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const TimeRangeComponent: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const TimeScheduleTable: (props: ElementType) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const Video: (props: ElementType) => React.JSX.Element;