ods-component-lib 1.18.96 → 1.18.97

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 (22) hide show
  1. package/dist/components/antd/fileUpload/OdsFileUpload.d.ts +12 -0
  2. package/dist/components/antd/icon/OdsIcon.d.ts +10 -0
  3. package/dist/components/antd/modal/OdsAdvanceModal.d.ts +7 -0
  4. package/dist/components/antd/select/OdsCustomMultiSelect.d.ts +7 -0
  5. package/dist/components/antd/select/OdsMultiSelect.d.ts +9 -0
  6. package/dist/components/custom/OdsLogin.d.ts +8 -0
  7. package/dist/components/devextreme/DxDataPopupForm.d.ts +3 -0
  8. package/dist/components/devextreme/DynamicIcon.d.ts +5 -0
  9. package/dist/components/devextreme/OdsDataGridNew.d.ts +56 -0
  10. package/dist/components/devextreme/OdsProfDataGrid.d.ts +3 -0
  11. package/dist/components/devextreme/treeview/DxTreeView.d.ts +3 -0
  12. package/dist/stories/OdsAdvanceModal/OdsAdvanceModal.stories.d.ts +42 -0
  13. package/dist/stories/OdsAdvanceModal/Samples/BasicOdsAdvanceModal.sample.d.ts +8 -0
  14. package/dist/stories/OdsCustomMultiSelect/OdsCustomMultiSelect.stories.d.ts +9 -0
  15. package/dist/stories/OdsCustomMultiSelect/Samples/Basic.Sample.d.ts +1 -0
  16. package/dist/stories/OdsCustomMultiSelect/Samples/ModeMultiple.Sample.d.ts +1 -0
  17. package/dist/stories/OdsFileUpload/OdsFileUpload.stories.d.ts +45 -0
  18. package/dist/stories/OdsFileUpload/Samples/MultipleFilesOdsFileUpload.Sample.d.ts +1 -0
  19. package/dist/stories/OdsFileUpload/Samples/SingleImageOdsF/304/260leUpload.Sample.d.ts +1 -0
  20. package/dist/stories/OdsModal/Samples/OdsModal.Sample.d.ts +1 -0
  21. package/dist/stories/OdsTimePicker/Samples/TimeRangePicker.d.ts +2 -0
  22. package/package.json +1 -1
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ declare type FileUploadProps = {
3
+ image: any | null;
4
+ setFile?: (file: any) => void;
5
+ title: string;
6
+ sendDataToParent: (obj: any) => void;
7
+ allowDocumentUpload?: boolean;
8
+ multipleDoc?: boolean;
9
+ removeFile?: (file: any) => void;
10
+ };
11
+ declare const OdsFileUpload: (props: FileUploadProps) => React.JSX.Element;
12
+ export default OdsFileUpload;
@@ -0,0 +1,10 @@
1
+ import { IconBaseProps } from "@ant-design/icons/lib/components/Icon";
2
+ import React from "react";
3
+ export interface IconProps extends IconBaseProps {
4
+ type: string;
5
+ twoToneColor?: string;
6
+ iconComponent?: string;
7
+ iconSVCName?: string;
8
+ }
9
+ declare function OdsIcon(props: IconProps): React.JSX.Element;
10
+ export default OdsIcon;
@@ -0,0 +1,7 @@
1
+ import { ModalProps } from "antd";
2
+ import React from "react";
3
+ export interface ICustomModalProps extends ModalProps {
4
+ content: React.ReactNode;
5
+ }
6
+ declare const OdsAdvanceModal: React.FC<ICustomModalProps>;
7
+ export default OdsAdvanceModal;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import { SelectProps } from "antd";
3
+ export interface ISelectProps extends SelectProps {
4
+ buttonLabel: string;
5
+ }
6
+ declare function OdsCustomMultiSelect(props: ISelectProps): React.JSX.Element;
7
+ export default OdsCustomMultiSelect;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { SelectProps } from "antd";
3
+ import { IOdsSelectOption } from "./OdsSelect.styled";
4
+ export interface OdsMultiSelectProps extends SelectProps {
5
+ selectAllText?: string | undefined;
6
+ dataSource: IOdsSelectOption[];
7
+ }
8
+ declare const OdsMultiSelect: (props: OdsMultiSelectProps) => React.JSX.Element;
9
+ export default OdsMultiSelect;
@@ -0,0 +1,8 @@
1
+ import { FormProps } from "antd";
2
+ import React from "react";
3
+ export interface IFormProps extends FormProps {
4
+ items: any[];
5
+ loading: boolean;
6
+ }
7
+ declare function OdsLogin(props: IFormProps): React.JSX.Element;
8
+ export default OdsLogin;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const _default: React.MemoExoticComponent<(props: any) => React.JSX.Element>;
3
+ export default _default;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ declare const DynamicIcon: ({ iconName }: {
3
+ iconName: any;
4
+ }) => React.JSX.Element;
5
+ export default DynamicIcon;
@@ -0,0 +1,56 @@
1
+ import React from "react";
2
+ import { IDataGridOptions, IEditingProps, ISelectionProps, IButtonProps } from 'devextreme-react/data-grid';
3
+ import { ButtonType } from "antd/es/button/buttonHelpers";
4
+ interface IButtonGroup extends IButtonProps {
5
+ type?: ButtonType;
6
+ label?: string;
7
+ onclick?: React.MouseEventHandler<HTMLElement>;
8
+ actionPermission?: boolean;
9
+ }
10
+ interface IEditingoptions extends IEditingProps {
11
+ formItems?: any[];
12
+ title?: string;
13
+ }
14
+ interface ISelectOptions extends ISelectionProps {
15
+ selectEnable: boolean;
16
+ }
17
+ interface IOdsDataGridProps extends IDataGridOptions {
18
+ actionButtonGroup?: IButtonGroup[];
19
+ toolbarButtonGroup?: IButtonGroup[];
20
+ exportFileName?: string;
21
+ summaryTotalColumnName?: string;
22
+ storeState?: boolean;
23
+ summaryTotalDataCount?: number;
24
+ summaryTotalDataDisplayLabel?: string;
25
+ summaryTotalPagesize?: number;
26
+ editHintLabel?: string;
27
+ editButtonClick?: any;
28
+ deleteButtonClick?: any;
29
+ pageTitle?: string;
30
+ pageSize?: number;
31
+ pagingEnable?: boolean;
32
+ searchEnable?: boolean;
33
+ filterEnable?: boolean;
34
+ headerFilterEnable?: boolean;
35
+ columnChooserPositionDisabled?: boolean;
36
+ editEnable?: boolean;
37
+ popupTitle?: string;
38
+ scroll?: any;
39
+ exportEnable?: boolean;
40
+ customPopup?: boolean;
41
+ onExportingCustom?: any;
42
+ filterEnabledShow?: boolean;
43
+ scrolUseNative?: boolean;
44
+ formItems?: any[];
45
+ hintForDeleteButton?: string;
46
+ hintForEditButton?: string;
47
+ exportFormats?: string[];
48
+ actionPermission?: boolean;
49
+ columns: any[];
50
+ actionColumnEnable?: boolean;
51
+ edit?: IEditingoptions;
52
+ selectOptions?: ISelectOptions;
53
+ actionColumnCaption?: string;
54
+ }
55
+ declare function OdsDataGridNew(props: IOdsDataGridProps): React.JSX.Element;
56
+ export default OdsDataGridNew;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare function OdsProfDataGrid(props: any): React.JSX.Element;
3
+ export default OdsProfDataGrid;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const DxTreeView: (props: any) => React.JSX.Element;
3
+ export default DxTreeView;
@@ -0,0 +1,42 @@
1
+ /// <reference types="react" />
2
+ declare const _default: {
3
+ title: string;
4
+ component: import("react").FC<import("../../components/antd/modal/OdsAdvanceModal").ICustomModalProps>;
5
+ tags: string[];
6
+ argTypes: {
7
+ centered: {
8
+ options: boolean[];
9
+ description: string;
10
+ };
11
+ title: {
12
+ description: string;
13
+ };
14
+ closable: {
15
+ options: boolean[];
16
+ description: string;
17
+ };
18
+ content: {
19
+ description: string;
20
+ };
21
+ width: {
22
+ description: string;
23
+ };
24
+ open: {
25
+ options: string[];
26
+ description: string;
27
+ };
28
+ onCancel: {
29
+ action: string;
30
+ description: string;
31
+ };
32
+ onOk: {
33
+ action: string;
34
+ description: string;
35
+ };
36
+ };
37
+ parameters: {
38
+ controls: {};
39
+ };
40
+ };
41
+ export default _default;
42
+ export declare const BasicOdsAdvanceModal: any;
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ import { ICustomModalProps } from "../../../components/antd/modal/OdsAdvanceModal";
3
+ declare const _default: {
4
+ title: string;
5
+ component: React.FC<ICustomModalProps>;
6
+ };
7
+ export default _default;
8
+ export declare const BasicOdsAdvanceModalTemplate: any;
@@ -0,0 +1,9 @@
1
+ import CustomMultiSelect from "../../components/antd/select/OdsCustomMultiSelect";
2
+ declare const _default: {
3
+ title: string;
4
+ component: typeof CustomMultiSelect;
5
+ tags: string[];
6
+ };
7
+ export default _default;
8
+ export declare const Basic: any;
9
+ export declare const ModeMultiple: any;
@@ -0,0 +1 @@
1
+ export declare const BasicTemplate: any;
@@ -0,0 +1 @@
1
+ export declare const ModeMultipleTemplate: any;
@@ -0,0 +1,45 @@
1
+ /// <reference types="react" />
2
+ declare const _default: {
3
+ title: string;
4
+ component: (props: {
5
+ image: any;
6
+ setFile?: (file: any) => void;
7
+ title: string;
8
+ sendDataToParent: (obj: any) => void;
9
+ allowDocumentUpload?: boolean;
10
+ multipleDoc?: boolean;
11
+ removeFile?: (file: any) => void;
12
+ }) => import("react").JSX.Element;
13
+ tags: string[];
14
+ argTypes: {
15
+ image: {
16
+ description: string;
17
+ };
18
+ setFile: {
19
+ description: string;
20
+ };
21
+ title: {
22
+ description: string;
23
+ };
24
+ sendDataToParent: {
25
+ description: string;
26
+ };
27
+ allowDocumentUpload: {
28
+ options: string[];
29
+ description: string;
30
+ };
31
+ multipleDoc: {
32
+ options: string[];
33
+ description: string;
34
+ };
35
+ removeFile: {
36
+ description: string;
37
+ };
38
+ };
39
+ parameters: {
40
+ controls: {};
41
+ };
42
+ };
43
+ export default _default;
44
+ export declare const Multiple: any;
45
+ export declare const Single: any;
@@ -0,0 +1 @@
1
+ export declare const MultipleFilesOdsFileUploadTemplate: any;
@@ -0,0 +1 @@
1
+ export declare const SingleImageOdsFileUploadTemplate: any;
@@ -0,0 +1 @@
1
+ export declare const BasicModal: any;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const TimeRangePickerTemplate: () => React.JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ods-component-lib",
3
- "version": "1.18.96",
3
+ "version": "1.18.97",
4
4
  "description": "Odeon design system component lib",
5
5
  "author": "OdeonTechnology",
6
6
  "license": "MIT",