pixel-react 1.7.0 → 1.7.2
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/lib/components/Excel/ExcelFile/ExcelFile.d.ts +2 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +2 -0
- package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +0 -2
- package/lib/components/MultiSelect/MultiSelect.stories.d.ts +0 -1
- package/lib/components/PhoneInput/PhoneInput.d.ts +0 -1
- package/lib/components/PhoneInput/types.d.ts +6 -0
- package/lib/components/Select/Select.stories.d.ts +0 -1
- package/lib/index.d.ts +8 -0
- package/lib/index.esm.js +105 -61
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +105 -61
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/Themes/BaseTheme.scss +4 -0
- package/src/assets/Themes/DarkTheme.scss +5 -1
- package/src/assets/icons/approval_pending.svg +8 -8
- package/src/assets/icons/auto_save_icon.svg +4 -0
- package/src/assets/icons/configuration.svg +3 -3
- package/src/assets/icons/defects.svg +8 -8
- package/src/assets/icons/element.svg +4 -4
- package/src/assets/icons/project_element.svg +4 -4
- package/src/assets/icons/step_group.svg +10 -10
- package/src/assets/icons/variable.svg +3 -3
- package/src/assets/icons/web_service_icon.svg +3 -3
- package/src/assets/styles/_colors.scss +0 -1
- package/src/components/ConditionalDropdown/ConditionalDropdown.tsx +1 -1
- package/src/components/DownloadClient/DownloadClient.stories.tsx +1 -1
- package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.scss +1 -1
- package/src/components/Excel/ExcelFile/ExcelFile.scss +43 -56
- package/src/components/Excel/ExcelFile/ExcelFile.tsx +18 -13
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +8 -0
- package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +1 -2
- package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +9 -2
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +133 -117
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +6 -0
- package/src/components/Excel/ExcelFile.stories.tsx +1 -0
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +19 -8
- package/src/components/Icon/iconList.ts +2 -0
- package/src/components/PhoneInput/PhoneInput.stories.tsx +16 -41
- package/src/components/PhoneInput/PhoneInput.tsx +10 -2
- package/src/components/PhoneInput/phoneInput.scss +898 -0
- package/src/components/PhoneInput/types.ts +6 -0
- package/src/components/TableTree/data.ts +0 -45
- package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
- package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
- package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
- package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
- package/lib/components/AddButton/AddButton.d.ts +0 -5
- package/lib/components/AddButton/AddButton.stories.d.ts +0 -6
- package/lib/components/AddButton/index.d.ts +0 -1
- package/lib/components/AddButton/types.d.ts +0 -4
- package/lib/components/AddVariables/AddVariables.d.ts +0 -5
- package/lib/components/AddVariables/index.d.ts +0 -1
- package/lib/components/AddVariables/types.d.ts +0 -35
- package/lib/components/AttachImage/AttachImage.stories.d.ts +0 -7
- package/lib/components/Charts/BarChart/BarChart.stories.d.ts +0 -6
- package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +0 -8
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts +0 -7
- package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +0 -8
- package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +0 -6
- package/lib/components/EditTextField/EditTextField.stories.d.ts +0 -10
- package/lib/components/Editor/Editor.stories.d.ts +0 -6
- package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +0 -4
- package/lib/components/Excel/ExcelFile.stories.d.ts +0 -6
- package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +0 -14
- package/lib/components/ExcelFile/ImportExcelStyles.d.ts +0 -24
- package/lib/components/StatusCard/StatusCard.stories.d.ts +0 -11
- package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +0 -10
- /package/lib/components/ExcelFile/{ColorBarSelector → ColorBarselector}/ColorBarSelector.d.ts +0 -0
@@ -15,6 +15,8 @@ interface ExcelFileProps {
|
|
15
15
|
toolbar?: 'show' | 'disable' | 'hide';
|
16
16
|
/** Callback function to save the Excel data */
|
17
17
|
onSave?: (saveData: any) => void;
|
18
|
+
/** Set your dynamic sheet Height*/
|
19
|
+
sheetHeight?: string;
|
18
20
|
}
|
19
21
|
declare const ExcelFile: React.FC<ExcelFileProps>;
|
20
22
|
export default ExcelFile;
|
@@ -60,6 +60,8 @@ export type Props<CellType extends Types.CellBase> = {
|
|
60
60
|
/** Callback called when the Spreadsheet's evaluated data changes. */
|
61
61
|
onEvaluatedDataChange?: (data: Matrix.Matrix<CellType>) => void;
|
62
62
|
setContextMenu: React.Dispatch<React.SetStateAction<Types.ContextMenuState>>;
|
63
|
+
/** Set your dynamic sheet Height*/
|
64
|
+
sheetHeight: string;
|
63
65
|
};
|
64
66
|
/**
|
65
67
|
* The Spreadsheet component
|
@@ -6,8 +6,6 @@ declare const meta: Meta<typeof LabelEditTextField>;
|
|
6
6
|
type Story = StoryObj<typeof LabelEditTextField>;
|
7
7
|
export declare const textField: Story;
|
8
8
|
export declare const textFieldWithOutLabel: Story;
|
9
|
-
export declare const openTextFieldWithOutLabel: Story;
|
10
9
|
export declare const textFieldWithDropdown: Story;
|
11
10
|
export declare const textFieldWithHighlight: Story;
|
12
|
-
export declare const openLabelEditTextField: Story;
|
13
11
|
export default meta;
|
@@ -7,4 +7,10 @@ export interface PhoneInputProps {
|
|
7
7
|
width?: string;
|
8
8
|
placeholder?: string;
|
9
9
|
isValid: any;
|
10
|
+
id: string;
|
11
|
+
international?: boolean;
|
12
|
+
dropdownStyle?: React.CSSProperties;
|
13
|
+
enableAreaCodeStretch?: boolean;
|
14
|
+
defaultCountry?: string;
|
15
|
+
disabled?: boolean;
|
10
16
|
}
|
package/lib/index.d.ts
CHANGED
@@ -2399,6 +2399,8 @@ interface ExcelFileProps {
|
|
2399
2399
|
toolbar?: 'show' | 'disable' | 'hide';
|
2400
2400
|
/** Callback function to save the Excel data */
|
2401
2401
|
onSave?: (saveData: any) => void;
|
2402
|
+
/** Set your dynamic sheet Height*/
|
2403
|
+
sheetHeight?: string;
|
2402
2404
|
}
|
2403
2405
|
declare const ExcelFile: React__default.FC<ExcelFileProps>;
|
2404
2406
|
|
@@ -3065,6 +3067,12 @@ interface PhoneInputProps {
|
|
3065
3067
|
width?: string;
|
3066
3068
|
placeholder?: string;
|
3067
3069
|
isValid: any;
|
3070
|
+
id: string;
|
3071
|
+
international?: boolean;
|
3072
|
+
dropdownStyle?: React.CSSProperties;
|
3073
|
+
enableAreaCodeStretch?: boolean;
|
3074
|
+
defaultCountry?: string;
|
3075
|
+
disabled?: boolean;
|
3068
3076
|
}
|
3069
3077
|
|
3070
3078
|
declare const PhoneInputField: React__default.FC<PhoneInputProps>;
|