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.
Files changed (92) hide show
  1. package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
  2. package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
  3. package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
  4. package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
  5. package/lib/assets/utils/functionUtils.d.ts +7 -0
  6. package/lib/components/AddButton/AddButton.d.ts +5 -0
  7. package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
  8. package/lib/components/AddButton/index.d.ts +1 -0
  9. package/lib/components/AddButton/types.d.ts +4 -0
  10. package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
  11. package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
  12. package/lib/components/Charts/DashboardDonutChart/types.d.ts +13 -3
  13. package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
  14. package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
  15. package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
  16. package/lib/components/Chip/types.d.ts +1 -1
  17. package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
  18. package/lib/components/DownloadClient/DownloadClient.d.ts +4 -0
  19. package/lib/components/DownloadClient/index.d.ts +1 -0
  20. package/lib/components/DownloadClient/type.d.ts +35 -0
  21. package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
  22. package/lib/components/Editor/Editor.stories.d.ts +6 -0
  23. package/lib/components/Editor/types.d.ts +1 -1
  24. package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +4 -0
  25. package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
  26. package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
  27. package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
  28. package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +2 -0
  29. package/lib/components/MultiSelect/MultiSelect.stories.d.ts +1 -0
  30. package/lib/components/Select/Select.stories.d.ts +1 -0
  31. package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
  32. package/lib/components/Toast/types.d.ts +1 -1
  33. package/lib/components/Toastify/Toastify.d.ts +1 -0
  34. package/lib/components/Toastify/types.d.ts +1 -1
  35. package/lib/index.d.ts +73 -50
  36. package/lib/index.esm.js +255 -102
  37. package/lib/index.esm.js.map +1 -1
  38. package/lib/index.js +255 -101
  39. package/lib/index.js.map +1 -1
  40. package/lib/tsconfig.tsbuildinfo +1 -1
  41. package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
  42. package/package.json +1 -1
  43. package/src/assets/Themes/BaseTheme.scss +21 -4
  44. package/src/assets/Themes/DarkTheme.scss +18 -0
  45. package/src/assets/icons/Header_preset.svg +17 -12
  46. package/src/assets/icons/add_archive.svg +9 -0
  47. package/src/assets/icons/add_user.svg +9 -0
  48. package/src/assets/icons/alert.svg +17 -0
  49. package/src/assets/icons/approval_pending.svg +8 -8
  50. package/src/assets/icons/configuration.svg +3 -3
  51. package/src/assets/icons/defects.svg +8 -8
  52. package/src/assets/icons/element.svg +4 -4
  53. package/src/assets/icons/info_icon.svg +16 -3
  54. package/src/assets/icons/no_data.svg +13 -0
  55. package/src/assets/icons/project_element.svg +4 -4
  56. package/src/assets/icons/remove_user.svg +3 -0
  57. package/src/assets/icons/step_group.svg +10 -10
  58. package/src/assets/icons/variable.svg +3 -3
  59. package/src/assets/utils/functionUtils.ts +55 -1
  60. package/src/components/Accordion/Accordion.scss +3 -1
  61. package/src/components/Accordion/Accordion.tsx +17 -17
  62. package/src/components/AttachImage/AttachImage.scss +20 -17
  63. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +6 -7
  64. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +172 -29
  65. package/src/components/Charts/DashboardDonutChart/types.ts +14 -3
  66. package/src/components/Chip/Chip.scss +15 -1
  67. package/src/components/Chip/Chip.stories.tsx +30 -1
  68. package/src/components/Chip/types.ts +1 -1
  69. package/src/components/DownloadClient/DownloadClient.scss +80 -0
  70. package/src/components/DownloadClient/DownloadClient.stories.tsx +26 -0
  71. package/src/components/DownloadClient/DownloadClient.tsx +81 -0
  72. package/src/components/DownloadClient/index.ts +1 -0
  73. package/src/components/DownloadClient/type.ts +41 -0
  74. package/src/components/Editor/Editor.stories.tsx +17 -2
  75. package/src/components/Editor/VariableDropdown.scss +1 -0
  76. package/src/components/Editor/types.ts +1 -2
  77. package/src/components/FileDropzone/FileDropzone.scss +4 -3
  78. package/src/components/Form/Forms.tsx +1 -1
  79. package/src/components/Icon/iconList.ts +12 -2
  80. package/src/components/IconRadioGroup/IconRadioGroup.stories.tsx +2 -2
  81. package/src/components/IconRadioGroup/IconRadioGroup.tsx +0 -2
  82. package/src/components/StatusButton/StatusButton.scss +1 -1
  83. package/src/components/TableTree/TableTree.scss +44 -48
  84. package/src/components/TableTree/TableTree.tsx +17 -6
  85. package/src/components/Toast/Toast.stories.tsx +47 -83
  86. package/src/components/Toast/Toast.tsx +2 -1
  87. package/src/components/Toast/types.ts +1 -1
  88. package/src/components/Toastify/Toastify.stories.tsx +9 -9
  89. package/src/components/Toastify/Toastify.tsx +2 -0
  90. package/src/components/Toastify/types.ts +1 -1
  91. package/src/index.ts +2 -0
  92. /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.