pixel-react 1.8.7 → 1.8.9

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 (178) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/lib/1fb4472b34e4fe07.css +1 -0
  3. package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
  4. package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
  5. package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
  6. package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
  7. package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
  8. package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
  9. package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
  10. package/lib/components/AddButton/AddButton.d.ts +5 -0
  11. package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
  12. package/lib/components/AddButton/index.d.ts +1 -0
  13. package/lib/components/AddButton/types.d.ts +4 -0
  14. package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
  15. package/lib/components/AddVariables/AddVariables.d.ts +5 -0
  16. package/lib/components/AddVariables/index.d.ts +1 -0
  17. package/lib/components/AddVariables/types.d.ts +35 -0
  18. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
  19. package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
  20. package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
  21. package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
  22. package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
  23. package/lib/components/Button/Button.stories.d.ts +13 -0
  24. package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
  25. package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
  26. package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
  27. package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
  28. package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
  29. package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
  30. package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
  31. package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
  32. package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
  33. package/lib/components/Chip/Chip.stories.d.ts +14 -0
  34. package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
  35. package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
  36. package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
  37. package/lib/components/Drawer/Drawer.stories.d.ts +12 -0
  38. package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
  39. package/lib/components/Editor/Editor.stories.d.ts +6 -0
  40. package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +4 -0
  41. package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
  42. package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
  43. package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +8 -0
  44. package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
  45. package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
  46. package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
  47. package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
  48. package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
  49. package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
  50. package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
  51. package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
  52. package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
  53. package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
  54. package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
  55. package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
  56. package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
  57. package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
  58. package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
  59. package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +174 -0
  60. package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
  61. package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
  62. package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
  63. package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
  64. package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
  65. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
  66. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
  67. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
  68. package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
  69. package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
  70. package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
  71. package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
  72. package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
  73. package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
  74. package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
  75. package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
  76. package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
  77. package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +44 -0
  78. package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +19 -0
  79. package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
  80. package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +12 -0
  81. package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +15 -0
  82. package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
  83. package/lib/components/ExcelFile/Types.d.ts +129 -0
  84. package/lib/components/ExcelFile/index.d.ts +1 -0
  85. package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
  86. package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
  87. package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
  88. package/lib/components/Form/Form.stories.d.ts +7 -0
  89. package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
  90. package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
  91. package/lib/components/Icon/Icon.stories.d.ts +8 -0
  92. package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
  93. package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
  94. package/lib/components/Input/Input.stories.d.ts +9 -0
  95. package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
  96. package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +13 -0
  97. package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
  98. package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
  99. package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
  100. package/lib/components/MiniModal/MiniModal.stories.d.ts +10 -0
  101. package/lib/components/MobileSkin/MobileSkin.d.ts +5 -0
  102. package/lib/components/MobileSkin/MobileSkinInterface.d.ts +13 -0
  103. package/lib/components/MobileSkin/index.d.ts +1 -0
  104. package/lib/components/MobileSkin/types.d.ts +32 -0
  105. package/lib/components/Modal/Modal.stories.d.ts +7 -0
  106. package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
  107. package/lib/components/MultiSelect/MultiSelect.stories.d.ts +11 -0
  108. package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
  109. package/lib/components/NLPInput/type.d.ts +70 -0
  110. package/lib/components/Paper/Paper.stories.d.ts +11 -0
  111. package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
  112. package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
  113. package/lib/components/Search/Search.d.ts +1 -1
  114. package/lib/components/Search/Search.stories.d.ts +6 -0
  115. package/lib/components/Search/types.d.ts +1 -0
  116. package/lib/components/Select/Select.stories.d.ts +14 -0
  117. package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
  118. package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +17 -0
  119. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
  120. package/lib/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.d.ts +4 -0
  121. package/lib/components/SequentialConnectingBranch/components/AddBrowserModal/types.d.ts +3 -0
  122. package/lib/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.d.ts +4 -0
  123. package/lib/components/SequentialConnectingBranch/components/DatasetListModal/types.d.ts +3 -0
  124. package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
  125. package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
  126. package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
  127. package/lib/components/Table/Table.stories.d.ts +13 -0
  128. package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
  129. package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
  130. package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
  131. package/lib/components/Toast/Toast.stories.d.ts +6 -0
  132. package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
  133. package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
  134. package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
  135. package/lib/components/Typography/Typography.stories.d.ts +10 -0
  136. package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
  137. package/lib/index.d.ts +21 -2
  138. package/lib/index.esm.js +1519 -4596
  139. package/lib/index.esm.js.map +1 -1
  140. package/lib/index.js +1521 -4595
  141. package/lib/index.js.map +1 -1
  142. package/lib/tsconfig.tsbuildinfo +1 -1
  143. package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
  144. package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
  145. package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
  146. package/lib/utils/debounce/debounce.stories.d.ts +6 -0
  147. package/lib/utils/ffID/ffID.stories.d.ts +6 -0
  148. package/lib/utils/find/findAndInsert.d.ts +7 -0
  149. package/lib/utils/find/findAndInsert.stories.d.ts +7 -0
  150. package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
  151. package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
  152. package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
  153. package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
  154. package/lib/utils/throttle/throttle.stories.d.ts +6 -0
  155. package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
  156. package/package.json +1 -1
  157. package/src/assets/icons/approval_pending.svg +8 -8
  158. package/src/assets/icons/configuration.svg +3 -3
  159. package/src/assets/icons/defects.svg +8 -8
  160. package/src/assets/icons/element.svg +4 -4
  161. package/src/assets/icons/project_element.svg +4 -4
  162. package/src/assets/icons/step_group.svg +10 -10
  163. package/src/assets/icons/variable.svg +3 -3
  164. package/src/assets/icons/web_service_icon.svg +3 -3
  165. package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +7 -45
  166. package/src/components/AllProjectsDropdown/AllProjectsDropdown.stories.tsx +5 -0
  167. package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +76 -64
  168. package/src/components/Button/Button.scss +0 -1
  169. package/src/components/MobileSkin/MobileSkin.scss +67 -0
  170. package/src/components/MobileSkin/MobileSkin.stories.tsx +93 -0
  171. package/src/components/MobileSkin/MobileSkin.tsx +88 -0
  172. package/src/components/MobileSkin/MobileSkinInterface.ts +13 -0
  173. package/src/components/MobileSkin/index.ts +1 -0
  174. package/src/components/MobileSkin/types.ts +32 -0
  175. package/src/components/Search/Search.scss +8 -0
  176. package/src/components/Search/Search.tsx +17 -6
  177. package/src/components/Search/types.ts +1 -0
  178. package/src/index.ts +7 -0
@@ -0,0 +1,32 @@
1
+ export interface iconDetails {
2
+ /**
3
+ * details of each icon
4
+ */
5
+ [key: string]: any;
6
+ }
7
+ export interface MobileSkinProps {
8
+ /**
9
+ * The content inside the mobile skin component
10
+ */
11
+ children: React.ReactNode | string;
12
+ /**
13
+ * Portrait or landScape View of the Mobile
14
+ */
15
+ orientation: string;
16
+ /**
17
+ * type either it will be ios or android
18
+ */
19
+ type: string;
20
+ /**
21
+ * height of the MobileSkin
22
+ */
23
+ mobileHeight?: number;
24
+ /**
25
+ * width of the MobileSkin
26
+ */
27
+ mobileWidth?: number;
28
+ /**
29
+ * takes the icons details like icon name , title, onClick event, height , width, etc
30
+ */
31
+ navbarIcons: Array<iconDetails>;
32
+ }
@@ -0,0 +1,7 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import Modal from './Modal';
3
+ declare const meta: Meta<typeof Modal>;
4
+ type Story = StoryObj<typeof Modal>;
5
+ export declare const DefaultModalStory: Story;
6
+ export declare const Controlled: Story;
7
+ export default meta;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import ModuleChip from './ModuleChip';
3
+ declare const meta: Meta<typeof ModuleChip>;
4
+ type Story = StoryObj<typeof ModuleChip>;
5
+ export declare const Controlled: Story;
6
+ export default meta;
@@ -0,0 +1,11 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import MultiSelect from './MultiSelect';
3
+ declare const meta: Meta<typeof MultiSelect>;
4
+ type Story = StoryObj<typeof MultiSelect>;
5
+ export declare const Default: Story;
6
+ export declare const Default2: Story;
7
+ export declare const Default3: Story;
8
+ export declare const EmailGroup: Story;
9
+ export declare const Controlled: Story;
10
+ export declare const Labels: Story;
11
+ export default meta;
@@ -0,0 +1,7 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import NlpInput from './NlpInput';
3
+ declare const meta: Meta<typeof NlpInput>;
4
+ type Story = StoryObj<typeof NlpInput>;
5
+ export declare const Primary: Story;
6
+ export declare const Disable: Story;
7
+ export default meta;
@@ -0,0 +1,70 @@
1
+ import { ReactNode } from 'react';
2
+ export interface SelectProps {
3
+ label?: string;
4
+ showLabel?: boolean;
5
+ optionsList: any[];
6
+ selectedOption?: Option;
7
+ onChange: (option: Option) => void;
8
+ errorMsg?: string;
9
+ className?: string;
10
+ optionZIndex?: number;
11
+ disabled?: boolean;
12
+ borderRadius?: boolean;
13
+ showBorder?: boolean;
14
+ required?: boolean;
15
+ }
16
+ export interface DrowdownPosition {
17
+ positionX: number;
18
+ positionY: number;
19
+ width: number;
20
+ fromBottom: number;
21
+ }
22
+ export interface SelectState {
23
+ isInputFocused: boolean;
24
+ iconColor: string;
25
+ isIconClick: boolean;
26
+ showOptions: boolean;
27
+ options: any[];
28
+ option: string;
29
+ dropdownPosition: DrowdownPosition;
30
+ }
31
+ export type SelectAction = {
32
+ type: 'FOCUS_INPUT';
33
+ } | {
34
+ type: 'BLUR_INPUT';
35
+ payload: {
36
+ optionsList: Option[];
37
+ option: Option['projectId'];
38
+ };
39
+ } | {
40
+ type: 'MOUSE_ENTER';
41
+ } | {
42
+ type: 'MOUSE_LEAVE';
43
+ } | {
44
+ type: 'UPDATE_DROPDOWN_POSITION';
45
+ payload: {
46
+ positionX: number;
47
+ positionY: number;
48
+ width: number;
49
+ fromBottom: number;
50
+ };
51
+ } | {
52
+ type: 'UPDATE_OPTION';
53
+ payload: string;
54
+ } | {
55
+ type: 'UPDATE_OPTION_LIST';
56
+ payload: any[];
57
+ } | {
58
+ type: 'SHOW_ERROR';
59
+ payload: {
60
+ optionsList: any[];
61
+ option: Option['projectId'];
62
+ };
63
+ };
64
+ export interface Option {
65
+ displayName: string | ReactNode;
66
+ projectId: string;
67
+ nlpType: string;
68
+ platform: string;
69
+ disabled?: boolean;
70
+ }
@@ -0,0 +1,11 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import Paper from './Paper';
3
+ import './Paper.scss';
4
+ declare const meta: Meta<typeof Paper>;
5
+ type Story = StoryObj<typeof Paper>;
6
+ export declare const Default: Story;
7
+ export declare const PrimaryPaper: Story;
8
+ export declare const PaperWithLowShadow: Story;
9
+ export declare const PaperWithHighShadow: Story;
10
+ export declare const PaperWithRounded: Story;
11
+ export default meta;
@@ -0,0 +1,10 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import RadioButton from './RadioButton';
3
+ declare const meta: Meta<typeof RadioButton>;
4
+ type Story = StoryObj<typeof RadioButton>;
5
+ export declare const Default: Story;
6
+ export declare const Checked: Story;
7
+ export declare const UncheckedDisabled: Story;
8
+ export declare const CheckedDisabled: Story;
9
+ export declare const WithoutLabel: Story;
10
+ export default meta;
@@ -0,0 +1,9 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import RadioGroup from './RadioGroup';
3
+ declare const meta: Meta<typeof RadioGroup>;
4
+ type Story = StoryObj<typeof RadioGroup>;
5
+ export declare const Controlled: Story;
6
+ export declare const WithDisabledOption: Story;
7
+ export declare const DisabledSelected: Story;
8
+ export declare const WithToolTipIcon: Story;
9
+ export default meta;
@@ -1,4 +1,4 @@
1
1
  import './Search.scss';
2
2
  import { SearchProps } from './types';
3
- declare const Search: ({ placeholder, onSearch, disabled, width, value, isExpand, onClose, onExpand, }: SearchProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const Search: ({ placeholder, onSearch, disabled, width, value, isExpand, onClose, onExpand, showClose, }: SearchProps) => import("react/jsx-runtime").JSX.Element;
4
4
  export default Search;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import Search from './Search';
3
+ declare const meta: Meta<typeof Search>;
4
+ type Story = StoryObj<typeof Search>;
5
+ export declare const Default: Story;
6
+ export default meta;
@@ -16,4 +16,5 @@ export interface SearchProps {
16
16
  isExpand: boolean;
17
17
  onClose: () => void;
18
18
  onExpand: (isExpand: boolean) => void;
19
+ showClose?: boolean;
19
20
  }
@@ -0,0 +1,14 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import Select from './Select';
3
+ declare const meta: Meta<typeof Select>;
4
+ type Story = StoryObj<typeof Select>;
5
+ export declare const Primary: Story;
6
+ export declare const WithError: Story;
7
+ export declare const WithoutLabel: Story;
8
+ export declare const EmptyOptions: Story;
9
+ export declare const Disable: Story;
10
+ export declare const WithInitialValue: Story;
11
+ export declare const OptionSelection: Story;
12
+ export declare const CustomJSX: Story;
13
+ export declare const updateOptionFromOutside: Story;
14
+ export default meta;
@@ -0,0 +1,4 @@
1
+ import { DropDownListProps } from './dropdownTypes';
2
+ import './Dropdown.scss';
3
+ declare const Dropdown: ({ onSelectBlur, onSelectOptionSelector, dropdownPosition, options, optionZIndex, inputRef, labelAccessor, }: DropDownListProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default Dropdown;
@@ -0,0 +1,17 @@
1
+ import { DrowdownPosition, Option } from '../../types';
2
+ export interface DropDownListProps {
3
+ onSelectBlur: () => void;
4
+ onSelectOptionSelector: (option: Option) => void;
5
+ dropdownPosition: DrowdownPosition;
6
+ options?: Option[];
7
+ optionZIndex?: number;
8
+ inputRef?: React.RefObject<HTMLInputElement>;
9
+ labelAccessor?: string;
10
+ valueAccessor?: string;
11
+ }
12
+ export declare const dropdownDefaultCSSData: {
13
+ margin: number;
14
+ optionHeight: number;
15
+ selectInputHeight: number;
16
+ dropDownWrapperPadding: number;
17
+ };
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import SequentialConnectingBranch from './SequentialConnectingBranch';
3
+ declare const meta: Meta<typeof SequentialConnectingBranch>;
4
+ type Story = StoryObj<typeof SequentialConnectingBranch>;
5
+ export declare const Primary: Story;
6
+ export default meta;
@@ -0,0 +1,4 @@
1
+ import './AddBrowserModal.scss';
2
+ import { AddBrowserModalProps } from './types';
3
+ declare const AddBrowserModal: import("react").ForwardRefExoticComponent<AddBrowserModalProps & import("react").RefAttributes<HTMLButtonElement>>;
4
+ export default AddBrowserModal;
@@ -0,0 +1,3 @@
1
+ export interface AddBrowserModalProps {
2
+ onUpdateAddBrowser: () => void;
3
+ }
@@ -0,0 +1,4 @@
1
+ import './DatasetListModal.scss';
2
+ import { DatasetListModalProps } from './types';
3
+ declare const DatasetListModal: import("react").ForwardRefExoticComponent<DatasetListModalProps & import("react").RefAttributes<HTMLButtonElement>>;
4
+ export default DatasetListModal;
@@ -0,0 +1,3 @@
1
+ export interface DatasetListModalProps {
2
+ onUpdateDatasetList: () => void;
3
+ }
@@ -0,0 +1,10 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import StateDropdown from './StateDropdown';
3
+ declare const meta: Meta<typeof StateDropdown>;
4
+ type Story = StoryObj<typeof StateDropdown>;
5
+ export declare const Disable: Story;
6
+ export declare const Review: Story;
7
+ export declare const Reject: Story;
8
+ export declare const Approved: Story;
9
+ export declare const NewState: Story;
10
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import StatusButton from './StatusButton';
3
+ declare const meta: Meta<typeof StatusButton>;
4
+ type Story = StoryObj<typeof StatusButton>;
5
+ export declare const Passed: Story;
6
+ export declare const Failed: Story;
7
+ export declare const Running: Story;
8
+ export declare const Terminated: Story;
9
+ export declare const Skipped: Story;
10
+ export declare const Warning: Story;
11
+ export declare const PartiallyExecuted: Story;
12
+ export declare const Aborted: Story;
13
+ export declare const NotExecuted: Story;
14
+ export default meta;
@@ -0,0 +1,11 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import Card from './StatusCard';
3
+ import { CardProps } from './types';
4
+ declare const meta: Meta<typeof Card>;
5
+ export default meta;
6
+ type Story = StoryObj<CardProps>;
7
+ export declare const Passed: Story;
8
+ export declare const Failed: Story;
9
+ export declare const Warning: Story;
10
+ export declare const Skipped: Story;
11
+ export declare const Flaky: Story;
@@ -0,0 +1,13 @@
1
+ import { StoryObj, Meta } from '@storybook/react';
2
+ import Table from './Table';
3
+ declare const meta: Meta<typeof Table>;
4
+ type Story = StoryObj<typeof Table>;
5
+ export declare const Default: Story;
6
+ export declare const PrimaryHeaderTextColor: Story;
7
+ export declare const TableDataTextColor: Story;
8
+ export declare const PageTable: Story;
9
+ export declare const PrimaryHeader: Story;
10
+ export declare const FixedHeaderWithBorder: Story;
11
+ export declare const WithCheckBox: Story;
12
+ export declare const TableWithNoData: Story;
13
+ export default meta;
@@ -0,0 +1,7 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import TableTree from './TableTree';
3
+ import './TableTreeStories.scss';
4
+ declare const meta: Meta<typeof TableTree>;
5
+ type Story = StoryObj<typeof TableTree>;
6
+ export declare const Default: Story;
7
+ export default meta;
@@ -0,0 +1,9 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import Tabs from './Tabs';
3
+ declare const meta: Meta<typeof Tabs>;
4
+ type Story = StoryObj<typeof Tabs>;
5
+ export declare const DefaultTabs: Story;
6
+ export declare const CapsuleTabs: Story;
7
+ export declare const TabsWithDisabledTab: Story;
8
+ export declare const WithoutBorder: Story;
9
+ export default meta;
@@ -0,0 +1,9 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import Textarea from './Textarea';
3
+ declare const meta: Meta<typeof Textarea>;
4
+ type Story = StoryObj<typeof Textarea>;
5
+ export declare const Default: Story;
6
+ export declare const Primary: Story;
7
+ export declare const Disabled: Story;
8
+ export declare const Controlled: Story;
9
+ export default meta;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import Toaster from './Toast';
3
+ declare const meta: Meta<typeof Toaster>;
4
+ type Story = StoryObj<typeof Toaster>;
5
+ export declare const Controlled: Story;
6
+ export default meta;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Toastify } from './Toastify';
3
+ declare const meta: Meta<typeof Toastify>;
4
+ type Story = StoryObj<typeof Toastify>;
5
+ export declare const Controlled: Story;
6
+ export default meta;
@@ -0,0 +1,12 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import Toggle from './Toggle';
3
+ declare const meta: Meta<typeof Toggle>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Toggle>;
6
+ export declare const Default: Story;
7
+ export declare const Disabled: Story;
8
+ export declare const Checked: Story;
9
+ export declare const SmallSize: Story;
10
+ export declare const MediumSize: Story;
11
+ export declare const DynamicIconAndSize: Story;
12
+ export declare const Controlled: Story;
@@ -0,0 +1,15 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import Tooltip from './Tooltip';
3
+ declare const meta: Meta<typeof Tooltip>;
4
+ type Story = StoryObj<typeof Tooltip>;
5
+ export declare const Default: Story;
6
+ export declare const Controlled: Story;
7
+ export declare const Top: Story;
8
+ export declare const Left: Story;
9
+ export declare const Right: Story;
10
+ export declare const TopStart: Story;
11
+ export declare const TopEnd: Story;
12
+ export declare const BottomStart: Story;
13
+ export declare const BottomEnd: Story;
14
+ export declare const TooltipWithIcon: Story;
15
+ export default meta;
@@ -0,0 +1,10 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import Typography from './Typography';
3
+ declare const meta: Meta<typeof Typography>;
4
+ type Story = StoryObj<typeof Typography>;
5
+ export declare const Docs: Story;
6
+ export declare const Regular12px: Story;
7
+ export declare const Medium12px: Story;
8
+ export declare const SemiBold14px: Story;
9
+ export declare const Bold14px: Story;
10
+ export default meta;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import VariableInput from './VariableInput';
3
+ declare const meta: Meta<typeof VariableInput>;
4
+ type Story = StoryObj<typeof VariableInput>;
5
+ export declare const Default: Story;
6
+ export default meta;
package/lib/index.d.ts CHANGED
@@ -1827,9 +1827,10 @@ interface SearchProps {
1827
1827
  isExpand: boolean;
1828
1828
  onClose: () => void;
1829
1829
  onExpand: (isExpand: boolean) => void;
1830
+ showClose?: boolean;
1830
1831
  }
1831
1832
 
1832
- declare const Search: ({ placeholder, onSearch, disabled, width, value, isExpand, onClose, onExpand, }: SearchProps) => react_jsx_runtime.JSX.Element;
1833
+ declare const Search: ({ placeholder, onSearch, disabled, width, value, isExpand, onClose, onExpand, showClose, }: SearchProps) => react_jsx_runtime.JSX.Element;
1833
1834
 
1834
1835
  interface DatePickerProps {
1835
1836
  /**
@@ -2913,6 +2914,21 @@ interface ScriptSwitchButtonProps {
2913
2914
  }
2914
2915
  declare const ScriptSwitchButton: React__default.FC<ScriptSwitchButtonProps>;
2915
2916
 
2917
+ interface NavBarIcon {
2918
+ name: string;
2919
+ [key: string]: any;
2920
+ }
2921
+ interface MobileSkinProps {
2922
+ children: React.ReactNode | string;
2923
+ orientation?: 'portrait' | 'landscape';
2924
+ type: 'ios' | 'android';
2925
+ navBarIcons: NavBarIcon[];
2926
+ mobileHeight?: number;
2927
+ mobileWidth?: number;
2928
+ }
2929
+
2930
+ declare const MobileSkin: React__default.FC<MobileSkinProps>;
2931
+
2916
2932
  type valueType$1 = any;
2917
2933
  declare const checkEmpty: (value: valueType$1) => boolean;
2918
2934
 
@@ -3089,6 +3105,8 @@ declare const Comments: ({ commentsData, onCommentsDataChange, }: CommentsProps)
3089
3105
 
3090
3106
  declare const useFileDropzone: (options: DropzoneOptions) => DropzoneState;
3091
3107
 
3108
+ declare const useClickOutside: (ref: React.RefObject<HTMLElement>, callback: () => void, ignoreRefs?: Array<React.RefObject<HTMLElement> | undefined>) => void;
3109
+
3092
3110
  interface PopUpModalProps {
3093
3111
  isOpen: boolean;
3094
3112
  onClose: () => void;
@@ -3280,6 +3298,7 @@ declare const PASSWORD_COMPLEX_REGEX: RegExp;
3280
3298
  declare const ALPHABET_ONLY_REGEX: RegExp;
3281
3299
  declare const NUMBERS_ONLY_REGEX: RegExp;
3282
3300
  declare const ALPHANUMERIC_REGEX: RegExp;
3301
+ declare const ALPHANUMERIC_WITH_ROUND_BRACES_REGEX: RegExp;
3283
3302
  declare const DATE_REGEX: RegExp;
3284
3303
  declare const TIME_REGEX: RegExp;
3285
3304
  declare const FILE_EXTENSION_REGEX: RegExp;
@@ -3323,4 +3342,4 @@ declare const ELEMENTS_TRAILING_SPACE_REGEX: RegExp;
3323
3342
  declare const ELEMENTS_WHITE_SPACE_REGEX: RegExp;
3324
3343
  declare const PARAMETER_ALPHANUMERIC_REGEX: RegExp;
3325
3344
 
3326
- export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHANUMERIC_REGEX, Accordion, AddButton as AddResourceButton, AllProjectsDropdown, AppHeader, AttachImage, AttachmentButton, Avatar, BASE64_REGEX, BINARY_NUMBER_REGEX, BarChart, Button, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, Checkbox, Chip, ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DashboardDonutChart, CustomDatePicker as DatePicker, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_REGEX, EditTextField, Editor, ExcelFile as Excel, ExpandableMenu, FILE_EXTENSION_REGEX, FILE_NAME_REGEX, FieldSet, FileDropzone, FilePreview, ForwardedForms as Form, formatString as FormatString, GSTIN_REGEX, HEXADECIMAL_NUMBER_REGEX, HEX_COLOR_REGEX, HSL_COLOR_REGEX, HTML_ATTRIBUTE_REGEX, HTML_TAG_REGEX, HighlightText, INDIAN_CURRENCY_REGEX, INDIAN_PASSPORT_REGEX, INDIAN_PHONE_REGEX, INDIAN_PIN_CODE_REGEX, INTERNATIONAL_PHONE_REGEX, IPV4_REGEX, IPV6_REGEX, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, LINKEDIN_PROFILE_REGEX, LabelEditTextField, LineChart, MAC_ADDRESS_REGEX, MEMORY_VALIDATION_REGEX, MachineInputField, MenuOption, MiniModal, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NLP_DESCRIPTION_REGEX, NUMBERS_ONLY_REGEX, NUMBER_REGEX, PAN_CARD_REGEX, PARAMETER_ALPHANUMERIC_REGEX, PASSWORD_COMPLEX_REGEX, PASSWORD_SIMPLE_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, Paper, PhoneInputField, PieChart, PopUpModal, ProgressBar, RGB_COLOR_REGEX, ROMAN_NUMERALS_REGEX, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, SSN_REGEX, STEP_GROUP_NAME_REGEX, ScriptSwitchButton, Search, Select, SequentialConnectingBranch, StateDropdown, StatusButton, StatusCard, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, _default as TableTree, TableWithAccordion, Tabs, Textarea as TextArea, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, Typography, UNIT_REGEX, URL_REGEX, USERNAME_REGEX, USERNAME_SPECIAL_REGEX, US_ZIP_CODE_REGEX, UUID_REGEX, VEHICLE_REGISTRATION_REGEX, VariableDropdown, VariableInput, WHITESPACE_REGEX, capitalize, checkEmpty, compareArrays, compareObjects, debounce, ffid, findAndInsert, getEncryptedData, getExtension, getExtensionWithPeriod, getSequentialPayload, hasDuplicateFile, saveFileFromBlob, throttle, toast, truncateText, useFileDropzone, useKeyboardActions, useTheme };
3345
+ export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, Accordion, AddButton as AddResourceButton, AllProjectsDropdown, AppHeader, AttachImage, AttachmentButton, Avatar, BASE64_REGEX, BINARY_NUMBER_REGEX, BarChart, Button, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, Checkbox, Chip, ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DashboardDonutChart, CustomDatePicker as DatePicker, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_REGEX, EditTextField, Editor, ExcelFile as Excel, ExpandableMenu, FILE_EXTENSION_REGEX, FILE_NAME_REGEX, FieldSet, FileDropzone, FilePreview, ForwardedForms as Form, formatString as FormatString, GSTIN_REGEX, HEXADECIMAL_NUMBER_REGEX, HEX_COLOR_REGEX, HSL_COLOR_REGEX, HTML_ATTRIBUTE_REGEX, HTML_TAG_REGEX, HighlightText, INDIAN_CURRENCY_REGEX, INDIAN_PASSPORT_REGEX, INDIAN_PHONE_REGEX, INDIAN_PIN_CODE_REGEX, INTERNATIONAL_PHONE_REGEX, IPV4_REGEX, IPV6_REGEX, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, LINKEDIN_PROFILE_REGEX, LabelEditTextField, LineChart, MAC_ADDRESS_REGEX, MEMORY_VALIDATION_REGEX, MachineInputField, MenuOption, MiniModal, MobileSkin, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NLP_DESCRIPTION_REGEX, NUMBERS_ONLY_REGEX, NUMBER_REGEX, PAN_CARD_REGEX, PARAMETER_ALPHANUMERIC_REGEX, PASSWORD_COMPLEX_REGEX, PASSWORD_SIMPLE_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, Paper, PhoneInputField, PieChart, PopUpModal, ProgressBar, RGB_COLOR_REGEX, ROMAN_NUMERALS_REGEX, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, SSN_REGEX, STEP_GROUP_NAME_REGEX, ScriptSwitchButton, Search, Select, SequentialConnectingBranch, StateDropdown, StatusButton, StatusCard, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, _default as TableTree, TableWithAccordion, Tabs, Textarea as TextArea, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, Typography, UNIT_REGEX, URL_REGEX, USERNAME_REGEX, USERNAME_SPECIAL_REGEX, US_ZIP_CODE_REGEX, UUID_REGEX, VEHICLE_REGISTRATION_REGEX, VariableDropdown, VariableInput, WHITESPACE_REGEX, capitalize, checkEmpty, compareArrays, compareObjects, debounce, ffid, findAndInsert, getEncryptedData, getExtension, getExtensionWithPeriod, getSequentialPayload, hasDuplicateFile, saveFileFromBlob, throttle, toast, truncateText, useClickOutside, useFileDropzone, useKeyboardActions, useTheme };