@agility/plenum-ui 2.0.0-rc6 → 2.0.0-rc61

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 (104) hide show
  1. package/README.md +104 -31
  2. package/build.js +30 -25
  3. package/dist/index.d.ts +446 -320
  4. package/dist/index.js +1 -6108
  5. package/dist/index.js.map +4 -4
  6. package/dist/{lib/tailwind.css → tailwind.css} +3735 -8122
  7. package/dist/types/stories/atoms/buttons/Button/Alternative/Alternative.stories.d.ts +1 -0
  8. package/dist/types/stories/atoms/buttons/Button/Button.d.ts +3 -7
  9. package/dist/types/stories/atoms/buttons/Button/Danger/Danger.stories.d.ts +1 -0
  10. package/dist/types/stories/atoms/buttons/Button/Primary/Primary.stories.d.ts +1 -0
  11. package/dist/types/stories/atoms/buttons/Button/Secondary/Secondary.stories.d.ts +1 -0
  12. package/dist/types/stories/atoms/buttons/Capsule/Capsule.d.ts +1 -1
  13. package/dist/types/stories/atoms/icons/DynamicIcon.d.ts +2 -2
  14. package/dist/types/stories/atoms/icons/TablerIcon.d.ts +1 -1
  15. package/dist/types/stories/index.d.ts +4 -4
  16. package/dist/types/stories/molecules/index.d.ts +3 -3
  17. package/dist/types/stories/molecules/inputs/InputField/InputField.d.ts +8 -8
  18. package/dist/types/stories/molecules/inputs/TextInput/TextInput.d.ts +1 -1
  19. package/dist/types/stories/molecules/inputs/index.d.ts +4 -4
  20. package/dist/types/stories/molecules/inputs/select/Select.d.ts +4 -2
  21. package/dist/types/stories/molecules/inputs/textArea/TextArea.d.ts +34 -21
  22. package/dist/types/stories/molecules/inputs/textArea/TextArea.stories.d.ts +4 -4
  23. package/dist/types/stories/molecules/inputs/textArea/index.d.ts +3 -3
  24. package/dist/types/stories/molecules/inputs/toggleSwitch/ToggleSwitch.d.ts +10 -7
  25. package/dist/types/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.d.ts +5 -5
  26. package/dist/types/stories/organisms/AnimatedLabelInput/index.d.ts +1 -1
  27. package/dist/types/stories/organisms/AnimatedLabelTextArea/AnimatedLabelTextArea.d.ts +12 -0
  28. package/dist/types/stories/organisms/AnimatedLabelTextArea/index.d.ts +3 -0
  29. package/dist/types/stories/organisms/ButtonDropdown/ButtonDropdown.d.ts +1 -0
  30. package/dist/types/stories/organisms/DropdownComponent/DropdownComponent.d.ts +24 -13
  31. package/dist/types/stories/organisms/DropdownComponent/index.d.ts +2 -2
  32. package/dist/types/stories/organisms/EmptySectionPlaceholder/index.d.ts +1 -1
  33. package/dist/types/stories/organisms/TextInputSelect/InputSelect.d.ts +16 -0
  34. package/dist/types/stories/organisms/TextInputSelect/TextInputSelect.d.ts +48 -0
  35. package/dist/types/stories/organisms/TextInputSelect/index.d.ts +3 -0
  36. package/dist/types/stories/organisms/index.d.ts +5 -3
  37. package/local.sh +100 -0
  38. package/package.json +35 -18
  39. package/rollup.config.mjs +42 -0
  40. package/stories/atoms/badges/Badge.tsx +1 -1
  41. package/stories/atoms/buttons/Button/Alternative/Alternative.stories.ts +10 -0
  42. package/stories/atoms/buttons/Button/Button.tsx +111 -25
  43. package/stories/atoms/buttons/Button/Danger/Danger.stories.ts +14 -2
  44. package/stories/atoms/buttons/Button/Primary/Primary.stories.ts +14 -2
  45. package/stories/atoms/buttons/Button/Secondary/Secondary.stories.ts +13 -1
  46. package/stories/atoms/buttons/Button/defaultArgs.ts +1 -1
  47. package/stories/atoms/buttons/Capsule/Capsule.tsx +2 -1
  48. package/stories/atoms/icons/DynamicIcon.stories.ts +1 -1
  49. package/stories/atoms/icons/DynamicIcon.tsx +7 -7
  50. package/stories/atoms/icons/IconWithShadow.stories.ts +3 -3
  51. package/stories/atoms/icons/TablerIcon.tsx +1 -1
  52. package/stories/atoms/loaders/Loader.tsx +12 -6
  53. package/stories/atoms/loaders/NProgress/RadialProgress.tsx +0 -2
  54. package/stories/index.ts +18 -10
  55. package/stories/molecules/index.ts +6 -4
  56. package/stories/molecules/inputs/InputCounter/InputCounter.tsx +2 -2
  57. package/stories/molecules/inputs/InputField/InputField.tsx +32 -29
  58. package/stories/molecules/inputs/TextInput/TextInput.tsx +7 -4
  59. package/stories/molecules/inputs/checkbox/Checkbox.stories.ts +1 -1
  60. package/stories/molecules/inputs/checkbox/Checkbox.tsx +1 -2
  61. package/stories/molecules/inputs/combobox/ComboBox.tsx +126 -135
  62. package/stories/molecules/inputs/index.ts +5 -4
  63. package/stories/molecules/inputs/radio/Radio.stories.ts +2 -2
  64. package/stories/molecules/inputs/select/Select.tsx +10 -2
  65. package/stories/molecules/inputs/textArea/TextArea.stories.ts +7 -5
  66. package/stories/molecules/inputs/textArea/TextArea.tsx +139 -48
  67. package/stories/molecules/inputs/textArea/index.ts +3 -3
  68. package/stories/molecules/inputs/toggleSwitch/ToggleSwitch.stories.tsx +15 -16
  69. package/stories/molecules/inputs/toggleSwitch/ToggleSwitch.tsx +63 -57
  70. package/stories/molecules/tabs/index.tsx +2 -3
  71. package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.stories.tsx +10 -1
  72. package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.tsx +53 -37
  73. package/stories/organisms/AnimatedLabelInput/index.tsx +1 -1
  74. package/stories/organisms/AnimatedLabelTextArea/AnimatedLabelTextArea.stories.tsx +26 -0
  75. package/stories/organisms/AnimatedLabelTextArea/AnimatedLabelTextArea.tsx +61 -0
  76. package/stories/organisms/AnimatedLabelTextArea/index.tsx +3 -0
  77. package/stories/organisms/ButtonDropdown/ButtonDropdown.stories.tsx +65 -58
  78. package/stories/organisms/ButtonDropdown/ButtonDropdown.tsx +42 -30
  79. package/stories/organisms/DropdownComponent/Dropdown.stories.tsx +26 -2
  80. package/stories/organisms/DropdownComponent/DropdownComponent.tsx +225 -179
  81. package/stories/organisms/DropdownComponent/dropdownItems.ts +30 -9
  82. package/stories/organisms/DropdownComponent/index.ts +2 -2
  83. package/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.stories.tsx +3 -3
  84. package/stories/organisms/EmptySectionPlaceholder/index.tsx +2 -1
  85. package/stories/organisms/FormInputWithAddons/FormInputWithAddons.stories.tsx +1 -1
  86. package/stories/organisms/FormInputWithAddons/FormInputWithAddons.tsx +7 -2
  87. package/stories/organisms/TextInputSelect/InputSelect.tsx +59 -0
  88. package/stories/organisms/TextInputSelect/TextInputSelect.stories.tsx +33 -0
  89. package/stories/organisms/TextInputSelect/TextInputSelect.tsx +186 -0
  90. package/stories/organisms/TextInputSelect/index.tsx +3 -0
  91. package/stories/organisms/index.ts +15 -4
  92. package/tailwind.config.js +81 -37
  93. package/tsconfig.lib.json +13 -6
  94. package/watch.js +49 -0
  95. package/.yarnrc.yml +0 -1
  96. package/dist/types/stories/layouts/index.d.ts +0 -0
  97. package/stories/layouts/CardLayout/CardLayout.stories.tsx +0 -18
  98. package/stories/layouts/CardLayout/CardLayout.tsx +0 -22
  99. package/stories/layouts/CardLayout/index.tsx +0 -3
  100. package/stories/layouts/ModalLayout/ModalLayout.stories.tsx +0 -18
  101. package/stories/layouts/ModalLayout/ModalLayout.tsx +0 -22
  102. package/stories/layouts/ModalLayout/index.tsx +0 -3
  103. package/stories/layouts/index.ts +0 -0
  104. package/stories/organisms/DropdownComponent/Dropdown.test.tsx +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.