pixel-react 1.5.3 → 1.5.5
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/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/assets/utils/functionUtils.d.ts +7 -0
- package/lib/components/AddButton/AddButton.d.ts +5 -0
- package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
- package/lib/components/AddButton/index.d.ts +1 -0
- package/lib/components/AddButton/types.d.ts +4 -0
- package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
- package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
- package/lib/components/Charts/DashboardDonutChart/types.d.ts +13 -3
- package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
- package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
- package/lib/components/Chip/types.d.ts +1 -1
- package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
- package/lib/components/DownloadClient/DownloadClient.d.ts +4 -0
- package/lib/components/DownloadClient/index.d.ts +1 -0
- package/lib/components/DownloadClient/type.d.ts +35 -0
- package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
- package/lib/components/Editor/Editor.stories.d.ts +6 -0
- package/lib/components/Editor/types.d.ts +1 -1
- package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
- package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
- package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +2 -0
- package/lib/components/MultiSelect/MultiSelect.stories.d.ts +1 -0
- package/lib/components/Select/Select.stories.d.ts +1 -0
- package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
- package/lib/components/Toast/types.d.ts +1 -1
- package/lib/components/Toastify/Toastify.d.ts +1 -0
- package/lib/components/Toastify/types.d.ts +1 -1
- package/lib/index.d.ts +73 -50
- package/lib/index.esm.js +255 -102
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +255 -101
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
- package/package.json +1 -1
- package/src/assets/Themes/BaseTheme.scss +21 -4
- package/src/assets/Themes/DarkTheme.scss +18 -0
- package/src/assets/icons/Header_preset.svg +17 -12
- package/src/assets/icons/add_archive.svg +9 -0
- package/src/assets/icons/add_user.svg +9 -0
- package/src/assets/icons/alert.svg +17 -0
- package/src/assets/icons/approval_pending.svg +8 -8
- 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/info_icon.svg +16 -3
- package/src/assets/icons/no_data.svg +13 -0
- package/src/assets/icons/project_element.svg +4 -4
- package/src/assets/icons/remove_user.svg +3 -0
- package/src/assets/icons/step_group.svg +10 -10
- package/src/assets/icons/variable.svg +3 -3
- package/src/assets/utils/functionUtils.ts +55 -1
- package/src/components/Accordion/Accordion.scss +3 -1
- package/src/components/Accordion/Accordion.tsx +17 -17
- package/src/components/AttachImage/AttachImage.scss +20 -17
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +6 -7
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +172 -29
- package/src/components/Charts/DashboardDonutChart/types.ts +14 -3
- package/src/components/Chip/Chip.scss +15 -1
- package/src/components/Chip/Chip.stories.tsx +30 -1
- package/src/components/Chip/types.ts +1 -1
- package/src/components/DownloadClient/DownloadClient.scss +80 -0
- package/src/components/DownloadClient/DownloadClient.stories.tsx +26 -0
- package/src/components/DownloadClient/DownloadClient.tsx +81 -0
- package/src/components/DownloadClient/index.ts +1 -0
- package/src/components/DownloadClient/type.ts +41 -0
- package/src/components/Editor/Editor.stories.tsx +17 -2
- package/src/components/Editor/VariableDropdown.scss +1 -0
- package/src/components/Editor/types.ts +1 -2
- package/src/components/FileDropzone/FileDropzone.scss +4 -3
- package/src/components/Form/Forms.tsx +1 -1
- package/src/components/Icon/iconList.ts +12 -2
- package/src/components/IconRadioGroup/IconRadioGroup.stories.tsx +2 -2
- package/src/components/IconRadioGroup/IconRadioGroup.tsx +0 -2
- package/src/components/StatusButton/StatusButton.scss +1 -1
- package/src/components/TableTree/TableTree.scss +44 -48
- package/src/components/TableTree/TableTree.tsx +17 -6
- package/src/components/Toast/Toast.stories.tsx +47 -83
- package/src/components/Toast/Toast.tsx +2 -1
- package/src/components/Toast/types.ts +1 -1
- package/src/components/Toastify/Toastify.stories.tsx +9 -9
- package/src/components/Toastify/Toastify.tsx +2 -0
- package/src/components/Toastify/types.ts +1 -1
- package/src/index.ts +2 -0
- /package/lib/components/ExcelFile/{ColorBarselector → ColorBarSelector}/ColorBarSelector.d.ts +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.