@plesk/ui-library 3.35.1 → 3.35.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.
Files changed (147) hide show
  1. package/cjs/components/Button/Button.js +1 -2
  2. package/cjs/components/Carousel/Carousel.js +25 -39
  3. package/cjs/components/Drawer/Header.js +71 -108
  4. package/cjs/components/Form/Form.js +5 -7
  5. package/cjs/components/FormFieldCheckbox/FormFieldCheckbox.js +8 -67
  6. package/cjs/components/Grid/Grid.js +9 -71
  7. package/cjs/components/GridCol/GridCol.js +3 -54
  8. package/cjs/components/Link/Link.js +1 -2
  9. package/cjs/components/List/List.js +11 -8
  10. package/cjs/components/ProgressDialog/ProgressDialog.js +12 -85
  11. package/cjs/components/Rating/Rating.js +5 -36
  12. package/cjs/components/Skeleton/index.js +2 -2
  13. package/cjs/components/SplitButton/SplitButton.js +1 -2
  14. package/cjs/components/SwitchesPanel/SwitchesPanel.js +3 -26
  15. package/cjs/components/SwitchesPanelItem/SwitchesPanelItem.js +3 -57
  16. package/cjs/components/Toaster/Toaster.js +3 -3
  17. package/cjs/components/index.js +14 -11
  18. package/cjs/index.js +1 -1
  19. package/cjs/tests/renderer.js +7 -1
  20. package/dist/plesk-ui-library-rtl.css +1 -1
  21. package/dist/plesk-ui-library-rtl.css.map +1 -1
  22. package/dist/plesk-ui-library.css +1 -1
  23. package/dist/plesk-ui-library.css.map +1 -1
  24. package/dist/plesk-ui-library.js +273 -672
  25. package/dist/plesk-ui-library.js.map +1 -1
  26. package/dist/plesk-ui-library.min.js +5 -5
  27. package/dist/plesk-ui-library.min.js.map +1 -1
  28. package/esm/components/Button/Button.js +1 -2
  29. package/esm/components/Carousel/Carousel.js +25 -37
  30. package/esm/components/Drawer/Header.js +70 -107
  31. package/esm/components/Form/Form.js +5 -7
  32. package/esm/components/FormFieldCheckbox/FormFieldCheckbox.js +8 -65
  33. package/esm/components/Grid/Grid.js +9 -69
  34. package/esm/components/GridCol/GridCol.js +2 -55
  35. package/esm/components/Link/Link.js +1 -2
  36. package/esm/components/List/List.js +11 -8
  37. package/esm/components/ProgressDialog/ProgressDialog.js +12 -83
  38. package/esm/components/Rating/Rating.js +5 -36
  39. package/esm/components/Skeleton/index.js +2 -2
  40. package/esm/components/SplitButton/SplitButton.js +1 -2
  41. package/esm/components/SwitchesPanel/SwitchesPanel.js +3 -24
  42. package/esm/components/SwitchesPanelItem/SwitchesPanelItem.js +3 -55
  43. package/esm/components/Toaster/Toaster.js +3 -1
  44. package/esm/components/index.js +1 -2
  45. package/esm/index.js +1 -1
  46. package/esm/tests/renderer.js +7 -1
  47. package/package.json +16 -17
  48. package/styleguide/build/bundle.6318f4a5.js +2 -0
  49. package/styleguide/index.html +2 -2
  50. package/types/src/components/Button/Button.d.ts +2 -3
  51. package/types/src/components/Carousel/Carousel.d.ts +58 -0
  52. package/types/src/components/Carousel/index.d.ts +2 -0
  53. package/types/src/components/Dialog/Dialog.d.ts +1 -1
  54. package/types/src/components/Dialog/index.d.ts +1 -1
  55. package/types/src/components/Drawer/Header.d.ts +4 -20
  56. package/types/src/components/Form/Form.d.ts +5 -0
  57. package/types/src/components/FormFieldCheckbox/FormFieldCheckbox.d.ts +53 -0
  58. package/types/src/components/FormFieldCheckbox/index.d.ts +2 -0
  59. package/types/src/components/FormFieldPassword/generatePassword.d.ts +2 -0
  60. package/types/src/components/Grid/Grid.d.ts +97 -0
  61. package/types/src/components/Grid/index.d.ts +2 -0
  62. package/types/src/components/GridCol/GridCol.d.ts +53 -0
  63. package/types/src/components/GridCol/index.d.ts +2 -0
  64. package/types/src/components/Link/Link.d.ts +1 -2
  65. package/types/src/components/LocaleProvider/LocaleProvider.d.ts +1 -1
  66. package/types/src/components/ProgressDialog/ProgressDialog.d.ts +125 -0
  67. package/types/src/components/ProgressDialog/index.d.ts +2 -0
  68. package/types/src/components/Rating/Rating.d.ts +27 -0
  69. package/types/src/components/Rating/index.d.ts +2 -0
  70. package/types/src/components/Skeleton/Skeleton.d.ts +3 -5
  71. package/types/src/components/Skeleton/SkeletonTabs.d.ts +4 -4
  72. package/types/src/components/Skeleton/SkeletonText.d.ts +2 -2
  73. package/types/src/components/Skeleton/index.d.ts +4 -1
  74. package/types/src/components/SplitButton/SplitButton.d.ts +1 -2
  75. package/types/src/components/SwitchesPanel/SwitchesPanel.d.ts +24 -0
  76. package/types/src/components/SwitchesPanel/index.d.ts +2 -0
  77. package/types/src/components/SwitchesPanelItem/SwitchesPanelItem.d.ts +78 -0
  78. package/types/src/components/SwitchesPanelItem/index.d.ts +2 -0
  79. package/types/src/components/index.d.ts +10 -2
  80. package/types/src/components/utils.d.ts +1 -1
  81. package/cjs/components/Alert/Alert.stories.js +0 -34
  82. package/cjs/components/Button/Button.stories.js +0 -109
  83. package/cjs/components/Cuttable/Cuttable.stories.js +0 -46
  84. package/cjs/components/Dialog/Dialog.stories.js +0 -49
  85. package/cjs/components/Drawer/Drawer.stories.js +0 -65
  86. package/cjs/components/Form/Form.stories.js +0 -35
  87. package/cjs/components/FormFieldCheckbox/FormFieldCheckbox.stories.js +0 -32
  88. package/cjs/components/Icon/Icon.stories.js +0 -32
  89. package/cjs/components/ItemLink/ItemLink.stories.js +0 -20
  90. package/cjs/components/ItemList/ItemList.stories.js +0 -122
  91. package/cjs/components/List/List.stories.js +0 -152
  92. package/cjs/components/Markdown/Markdown.stories.js +0 -51
  93. package/cjs/components/Menu/Menu.stories.js +0 -77
  94. package/cjs/components/Popover/Popover.stories.js +0 -60
  95. package/cjs/components/Select/Select.stories.js +0 -57
  96. package/cjs/components/Skeleton/Skeleton.stories.js +0 -24
  97. package/cjs/components/Skeleton/SkeletonTabs.stories.js +0 -15
  98. package/cjs/components/Skeleton/SkeletonText.stories.js +0 -33
  99. package/cjs/components/Status/Status.stories.js +0 -19
  100. package/cjs/components/Tabs/Tabs.stories.js +0 -24
  101. package/dist/.DS_Store +0 -0
  102. package/dist/images/default.svg +0 -1
  103. package/dist/images/filtered.svg +0 -1
  104. package/esm/components/Alert/Alert.stories.js +0 -27
  105. package/esm/components/Button/Button.stories.js +0 -99
  106. package/esm/components/Cuttable/Cuttable.stories.js +0 -39
  107. package/esm/components/Dialog/Dialog.stories.js +0 -42
  108. package/esm/components/Drawer/Drawer.stories.js +0 -56
  109. package/esm/components/Form/Form.stories.js +0 -27
  110. package/esm/components/FormFieldCheckbox/FormFieldCheckbox.stories.js +0 -23
  111. package/esm/components/Icon/Icon.stories.js +0 -23
  112. package/esm/components/ItemLink/ItemLink.stories.js +0 -12
  113. package/esm/components/ItemList/ItemList.stories.js +0 -109
  114. package/esm/components/List/List.stories.js +0 -139
  115. package/esm/components/Markdown/Markdown.stories.js +0 -43
  116. package/esm/components/Menu/Menu.stories.js +0 -65
  117. package/esm/components/Popover/Popover.stories.js +0 -52
  118. package/esm/components/Select/Select.stories.js +0 -48
  119. package/esm/components/Skeleton/Skeleton.stories.js +0 -15
  120. package/esm/components/Skeleton/SkeletonTabs.stories.js +0 -7
  121. package/esm/components/Skeleton/SkeletonText.stories.js +0 -23
  122. package/esm/components/Status/Status.stories.js +0 -11
  123. package/esm/components/Tabs/Tabs.stories.js +0 -16
  124. package/styleguide/build/bundle.edc3f2a1.js +0 -2
  125. package/types/src/components/Alert/Alert.stories.d.ts +0 -11
  126. package/types/src/components/Button/Button.stories.d.ts +0 -17
  127. package/types/src/components/Cuttable/Cuttable.stories.d.ts +0 -17
  128. package/types/src/components/Dialog/Dialog.stories.d.ts +0 -25
  129. package/types/src/components/Drawer/Drawer.stories.d.ts +0 -43
  130. package/types/src/components/Form/Form.stories.d.ts +0 -13
  131. package/types/src/components/FormFieldCheckbox/FormFieldCheckbox.stories.d.ts +0 -20
  132. package/types/src/components/Icon/Icon.stories.d.ts +0 -7
  133. package/types/src/components/ItemLink/ItemLink.stories.d.ts +0 -12
  134. package/types/src/components/ItemList/ItemList.stories.d.ts +0 -172
  135. package/types/src/components/List/List.stories.d.ts +0 -30
  136. package/types/src/components/Markdown/Markdown.stories.d.ts +0 -10
  137. package/types/src/components/Menu/Menu.stories.d.ts +0 -20
  138. package/types/src/components/Popover/Popover.stories.d.ts +0 -25
  139. package/types/src/components/Select/Select.stories.d.ts +0 -12
  140. package/types/src/components/Skeleton/Skeleton.stories.d.ts +0 -15
  141. package/types/src/components/Skeleton/SkeletonTabs.stories.d.ts +0 -5
  142. package/types/src/components/Skeleton/SkeletonText.stories.d.ts +0 -23
  143. package/types/src/components/Status/Status.stories.d.ts +0 -11
  144. package/types/src/components/Tabs/Tabs.stories.d.ts +0 -10
  145. package/types/src/tests/index.d.ts +0 -1
  146. package/types/src/tests/renderer.d.ts +0 -23
  147. /package/styleguide/build/{bundle.edc3f2a1.js.LICENSE.txt → bundle.6318f4a5.js.LICENSE.txt} +0 -0
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" width="320" height="192" viewBox="0 0 320 192"><path fill="#ECEFF4" d="M270.084 106.575c-10.901-36.887-50.05-15.762-71.138-36.52-7.776-7.629-13.63-17.428-21.956-24.427-14.064-11.942-34.556-13.898-49.46-4.803-8.762 5.359-15.344 13.889-23.612 20.144-16.193 12.161-32.564-1.563-46.987 14.26-6.593 7.28-9.818 18.485-6.392 28.377 4.21 12.035 16.632 19.204 21.117 31.098 2.564 6.846 2.15 14.346 3.676 21.48 2.398 11.289 10.06 21.418 19.892 26.39 9.834 4.973 21.699 4.721 30.877-.78 9.73-5.784 16.499-16.467 26.153-22.944a95.649 95.649 0 0131.724-13.767c9.348-2.172 20.574-4.014 30.037-1.467 10.089 2.749 18.538 8.151 29.217 7.147 18.999-1.708 32.663-24.394 26.852-44.188z"/><path fill="#A7ADB7" d="M88.48 35.22c.78-.42 1.5-.78 2.28-1.14 23.46-10.92 46.68 13.2 66.24 25.2 14.1 8.7 30.36 17.7 46.38 13.32 5.94-1.62 11.22-4.98 16.8-7.56 5.58-2.58 12-4.32 17.88-2.52 5.88 1.8 10.56 8.34 8.52 14.16-1.68 4.62-6.66 7.02-10.02 10.62-11.46 12.18 14.76 25.26 17.94 35.76 4.5 14.94-.72 32.4-12.72 42.36-12 10.02-30.06 12-43.98 4.86-18.66-9.54-29.1-20.76-51.9-14.7-17.46 4.62-31.86 16.26-50.16 20.04-5.22 1.08-10.62 1.8-15.84.78-5.22-1.02-10.26-4.14-12.54-9-3.3-7.08.24-15.48 4.98-21.6 4.8-6.12 10.98-11.34 14.22-18.42 7.32-15.96-13.44-31.02-19.5-44.34-9.18-19.86 4.02-38.7 21.42-47.82z"/><path fill="#DFE2E8" fill-rule="evenodd" d="M220.331 70.004L222.7 83.88s-.54 4.62-.9 6.6l-.052.296c-.494 2.822-3.281 18.744-6.728 21.904-4.32 3.96-7.8.6-3.06-5.1l1.86-9.84-.36-.42s-.06 2.34-1.68 5.28c-1.181 2.126-3.234 4.252-4.9 5.977l-.08.083c-4.14 4.26-6.42 1.2-6.42 1.2s-1.38-1.44 2.76-5.46c4.32-4.14 5.76-9.66 5.76-9.66s-4.56 4.92-8.28 5.82c-1.239.124-2.073.312-2.855.488-1.488.335-2.784.627-6.325.352-2.4.42-5.7-4.38.6-4.32l8.1-2.46 5.52-4.98-6.42 2.4s-6.96 3.12-8.22 3.72c-1.26.6-6.84.42-3.3-3.12 3.54-3.48 8.4-5.34 8.4-5.34s6.84-2.94 6.54-4.56c-.056-.335-.268-11.114 4.539-15.945-.776-2.262-1.372-5.529 1.041-6.735 3.84-1.86 12.96-2.22 13.98 1.38 1.02 3.6-.84 8.64-.84 8.64l-1.049-.076z" clip-rule="evenodd"/><path fill="#fff" d="M225.76 69.42c1.5 2.7-.42 6.18-.42 6.18.6 5.34.24 6.96.24 6.96s-1.2-8.22 0 .3c.42 3.18.3 4.8.06 5.64-.18.54-.78.84-1.32.6-7.44-2.82-6-12.48-6-12.48s-2.04.24-4.74-2.82c-2.7-3-2.76-6.9 1.2-11.94 3.96-5.04 7.98-1.44 8.16.84-.06.06-.36 1.02 2.82 6.72z"/><path fill="#00326D" d="M209.08 126.24c-2.4-8.64-22.02-11.76-25.68-12.18-8.52-.96-25.32-1.98-39.78 0-3.6.48-23.34 3.54-25.68 12.18-.36 1.44 0 3.48.84 4.8 4.56 7.08 16.8 12.18 29.64 12.3h30.12c12.9-.12 24.3-4.62 29.64-12.3.96-1.32 1.26-3.42.9-4.8z"/><path fill="#000" d="M207.7 127.14c-2.28-7.86-21.42-10.74-24.96-11.1-8.28-.9-24.54-1.8-38.58 0-3.54.48-22.62 3.24-24.96 11.1-.36 1.26 0 3.18.84 4.38 4.44 6.42 16.26 11.1 28.8 11.22h29.28c12.48-.06 23.58-4.2 28.8-11.22.9-1.2 1.2-3.12.78-4.38z"/><path fill="#fff" d="M186.04 185.1s.3-.12.78-.3c.54-.18 1.32-.48 2.28-.9.48-.24 1.02-.48 1.56-.78.24-.18.54-.36.78-.6s.48-.48.66-.78c.12-.3.18-.66.06-.96-.12-.3-.36-.66-.72-.9-.66-.54-1.5-.9-2.4-1.26-1.86-.66-3.96-1.14-6.24-1.56-2.28-.42-4.74-.66-7.32-.9-5.16-.42-10.8-.54-16.68-.24-5.82.24-11.34.84-16.2 1.92-1.2.24-2.34.54-3.48.9-1.08.36-2.16.78-3.06 1.26-.42.24-.84.54-1.2.9-.3.36-.48.78-.42 1.14.06.42.42.78.78 1.08.36.3.78.54 1.2.78.84.42 1.68.72 2.52 1.02.84.24 1.62.48 2.34.66 1.5.36 2.76.6 3.84.78 1.08.18 1.86.3 2.46.42.54.12.84.12.84.18 0 0-.3 0-.84-.06s-1.38-.12-2.46-.3c-1.08-.12-2.34-.36-3.84-.66-.72-.18-1.56-.36-2.4-.6-.84-.24-1.74-.54-2.64-.96-.42-.24-.9-.48-1.32-.78-.24-.18-.42-.36-.6-.6s-.3-.48-.42-.78c-.06-.3-.06-.6.06-.9.12-.3.24-.54.42-.72.36-.42.84-.72 1.32-1.02.96-.54 2.04-1.02 3.12-1.38 1.14-.36 2.28-.66 3.48-.96 4.86-1.14 10.44-1.74 16.32-1.98 5.88-.24 11.58-.12 16.8.3 2.58.24 5.04.54 7.38.96 2.28.42 4.44.96 6.3 1.68.96.36 1.8.78 2.58 1.38.36.3.66.66.84 1.14.18.42.06.96-.12 1.32-.18.36-.48.66-.78.9-.3.24-.6.42-.84.6-.6.36-1.14.54-1.62.78-1.02.42-1.8.6-2.4.78-.42 0-.66.06-.72 0z" opacity=".23"/><path fill="#000" d="M190.78 138.48c.6-4.08 1.26-9.24 1.08-10.38-.6-5.04-9.9-9.3-28.5-9-20.82-.12-27.6 4.02-28.2 9-.12 1.14.72 8.94 1.08 10.32.66 9.12 1.2 23.22-2.04 42.9 11.04 1.98 20.4 2.46 28.26 2.76v.06c.36 0 .72 0 1.08-.06.36 0 .72 0 1.14.06v-.06c7.86-.3 17.22-1.26 28.26-3.24-5.7-36.6-2.16-42.3-2.16-42.36z"/><path fill="#8A0030" d="M190.78 138.48c.6-4.08 1.26-9.24 1.08-10.38-.6-5.04-9.9-9.3-28.5-9-20.82-.12-27.6 4.02-28.2 9-.12 1.14.72 8.94 1.08 10.32 0 0 9.18-5.7 27.6-5.46 18.42.24 26.94 5.52 26.94 5.52z"/><path fill="#2F3235" d="M163.48 190.92c16.237 0 29.4-4.218 29.4-9.42 0-5.203-13.163-9.42-29.4-9.42s-29.4 4.217-29.4 9.42c0 5.202 13.163 9.42 29.4 9.42z"/><path fill="#fff" d="M186.4 171.66s-5.94-30.96.3-46.08l-2.94-1.56s-4.8 16.02-2.22 45.3l4.86 2.34z"/><path fill="#FFDC74" d="M171.7 66.9l-3.66-.24-1.92-3.12-1.32 3.48-3.54.78 2.88 2.28-.36 3.66 3.06-2.04 3.36 1.44-.9-3.48 2.4-2.76zM161.44 52.02l-1.68-2.34 1.08-2.7-2.76.78-2.28-1.68-.06 2.82-2.4 1.62 2.7.96.9 2.76 1.68-2.34 2.82.12zM148.36 65.58l-4.08-1.62-1.02-4.14-2.7 3.3-4.32-.42 2.28 3.72-1.68 3.96 4.14-1.14 3.3 2.94.36-4.32 3.72-2.28zM188.14 62.82l-1.68-1.74.36-2.34-2.16 1.14-2.16-1.2.42 2.52-1.86 1.68 2.52.3 1.02 2.28 1.08-2.22 2.46-.42zM172.96 86.7l-1.5-1.92.72-2.34-2.34.9-1.98-1.44.06 2.52-1.98 1.44 2.46.6.72 2.4 1.32-2.1 2.52-.06zM164.38 31.92l-1.5-1.2.06-1.92-1.56 1.14-1.74-.72.48 1.92-1.2 1.44 1.92.06 1.02 1.62.72-1.86 1.8-.48zM148.06 43.14l-1.38-.66-.18-1.56-1.14 1.08-1.5-.3.72 1.44-.78 1.32 1.56-.24 1.02 1.02.24-1.5 1.44-.6zM157.12 41.4l-.66-1.02.42-.96-1.02.3-.96-.72v1.08l-.9.6 1.08.48.24 1.02.6-.84 1.2.06zM180.88 68.4l-1.08-.24-.48-.96-.54.96-1.14.18.84.78-.24 1.08.96-.48 1.02.54-.12-1.14.78-.72zM157.84 61.02l-.84-.84.24-1.08-1.08.48-.9-.6.12 1.14-.78.78 1.08.12.48 1.08.54-.96 1.14-.12zM168.82 98.46l-1.14-.06-.6-.96-.3 1.08-1.14.18.84.78-.06 1.14.9-.6 1.02.42-.24-1.14.72-.84zM162.94 92.46v.84l-.66.42.78.24.18.84.54-.6h.84l-.48-.66.3-.78-.84.18-.66-.48z"/><path fill="#fff" d="M141.28 111.12c-1.08 0-1.98-.66-2.28-1.68L127.78 74.7c-.18-.6-.12-1.26.12-1.86.3-.6.78-1.02 1.38-1.2l24.42-7.92c.24-.06.48-.12.72-.12 1.08 0 1.98.66 2.28 1.68l11.22 34.74c.18.6.12 1.26-.12 1.86-.3.6-.78 1.02-1.38 1.2L142 111c-.24.06-.48.12-.72.12z"/><path fill="#53BCE7" d="M154.48 64.56c.66 0 1.26.42 1.44 1.08l11.22 34.74c.24.78-.18 1.68-.96 1.92l-24.42 7.92c-.18.06-.3.06-.48.06-.66 0-1.26-.42-1.44-1.08l-11.22-34.74c-.24-.78.18-1.68.96-1.92L154 64.62c.18-.06.3-.06.48-.06zm0-1.8c-.36 0-.66.06-1.02.18l-24.48 7.86c-1.74.54-2.7 2.46-2.16 4.2l11.22 34.74c.48 1.38 1.74 2.28 3.18 2.28.36 0 .66-.06 1.02-.18l24.42-7.92c1.74-.54 2.7-2.46 2.16-4.2L157.6 65.04c-.42-1.38-1.74-2.28-3.12-2.28z"/><path fill="#009BEC" d="M157.96 81.78c-.06 0-.72-.24-1.86.12-.3.12-.6.24-.84.36-.72-1.38-2.16-1.74-2.22-1.74l-.36-.06-.12.36c-.12.48-.18.96-.12 1.44.06.9.48 1.68 1.14 2.22-.42.48-1.2.78-1.38.9l-13.74 4.56c-.36.12-.54.48-.42.84.36 1.2.96 2.34 1.8 3.36.9 1.08 1.92 1.74 3 2.04 1.26.3 3 .06 4.92-.54.84-.3 1.68-.66 2.46-1.08 1.08-.6 2.1-1.38 2.94-2.34.66-.78 1.26-1.68 1.62-2.64.66-1.62.9-3.18.96-4.56.06 0 .12-.06.18-.06 1.2-.42 1.74-1.14 2.04-1.68.18-.36.3-.72.3-1.14v-.3l-.3-.06z"/><path fill="#009BEC" d="M139.54 89.04l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.12.18.18.24.12zM142.12 88.2l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.12.12.18.24.12zM144.7 87.36l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.06.12.12.24.12zM147.22 86.52l1.86-.6c.06 0 .12-.12.12-.24l-.6-1.68c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.12.12.24.18.3.18zM141.34 85.86l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.06.12.12.24.12zM143.92 84.96l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c0 .12.12.18.24.12zM146.44 84.12l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.12.18.18.24.12zM145.66 81.78l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.12.12.12.24.12zM149.8 85.62l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.12.12.18.24.12zM132.609 74.048l-1.383.403 1.076 3.687 1.382-.404-1.075-3.686zM163.883 97.072l-1.374.43 1.15 3.664 1.374-.431-1.15-3.663z"/><path fill="#fff" d="M116.02 52.5c-.66 0-1.26-.42-1.5-1.08l-8.58-22.02c-.12-.42-.12-.84.06-1.2s.48-.66.9-.84l15.66-4.02c.18-.06.36-.12.54-.12.66 0 1.26.42 1.5 1.08l8.34 20.34c.12.36.12.84-.06 1.2-.18.42-.48.72-.9.84l-15.42 5.76c-.18 0-.36.06-.54.06z"/><path fill="#53BCE7" d="M123.16 23.82c.42 0 .78.24.96.66l8.28 20.28c.06.24.06.54-.06.78s-.3.42-.54.54l-15.42 5.76c-.12.06-.24.06-.36.06-.42 0-.78-.24-.96-.66l-8.58-22.02c-.12-.24-.06-.54 0-.78.12-.24.3-.42.54-.48l15.6-4.02h.12c.18-.12.3-.12.42-.12zm0-1.2c-.24 0-.54.06-.78.12l-15.66 4.02c-1.14.42-1.74 1.68-1.32 2.82l8.58 22.02c.36.9 1.2 1.44 2.1 1.44.24 0 .54-.06.78-.12l15.42-5.76c1.14-.42 1.74-1.68 1.32-2.82l-8.4-20.28c-.3-.9-1.14-1.44-2.04-1.44z"/><path fill="#009BEC" d="M126.16 39.84c-.42-.18-.48-.78-.9-.96-.3-2.1-1.8-3.6-3.24-4.38-1.26-.66-1.2-1.68-1.5-2.52-.42-1.26-1.38-2.46-2.94-1.98-1.68.54-1.74 2.1-1.5 2.94.6 1.98 1.2 2.34.48 4.14-.84 2.1-.48 3.84.12 4.62-.06.24-.24.48-.54.72-.84.72.12 1.26 0 1.86-.06.18 0 .36 0 .48.12.42.6.72 1.26.48.84-.36 1.86 0 2.4-.18.48-.12.78-.54.84-.96.78-.48 1.8-.78 2.7-.84.3.36.78.48 1.2.36.96-.3.84-1.5 1.8-2.22.36-.24.42-.72.3-1.08-.12-.18-.24-.42-.48-.48zm-7.44-4.56c-.18.06-.42-.06-.72-.18-.42-.12-.78-.18-.84-.42-.06-.18.18-.3.42-.6s.3-.54.6-.66.48 0 .96.06.78 0 .84.24c.06.24-.3.48-.54.72-.24.48-.36.78-.72.84zm0-3.42c.54-.06.9.84.78 1.38h-.24c0-.36-.18-.9-.54-.84-.24.06-.3.42-.24.66h-.36c-.12-.54.12-1.14.6-1.2zm-1.98.84c.36-.24.78.18.9.66l-.12.18c-.12-.18-.3-.48-.48-.36-.24.18 0 .72.18.78l-.18.18c-.36-.36-.66-1.2-.3-1.44zm2.4 11.94c-1.32-.18-1.68.06-1.92.18-.48.12-.72-.18-.66-.54.06-.3-.06-.6-.18-.84-.18-.36-.24-.48.06-.72.42-.36.54-.72.66-.96.3-.72 1.02.06 1.62.72.42.42.96.54 1.32 1.08.3.42-.12 1.2-.9 1.08zm5.76-5.82h-.18c-.24-.54-1.98-.84-1.8.24-.66.36-.06 1.38 0 2.16.06.36 0 .66 0 .96-.72.66-1.68 1.2-2.64 1.02-.24-.3-.48-.48-.78-.6.3-.18.42-.66 0-.96-.18-.18-.48-.24-.78-.36-1.08-.36-1.74-1.38-1.62-2.46.06-.42.18-.9.42-1.38.24-.72 0-1.5-.18-2.04l.48.12c.36.12.66.24.96.18.48-.18.66-.54.96-.84l.48-.48c.54.96 1.62 1.92 2.34 2.76.42.48 1.02.84 1.62 1.08.3.06.6.24.72.6zm.96 2.4c-.54.42-.78 1.02-.96 1.44-.36.72-1.14.66-1.38.18-.24-.54-.06-.96-.12-1.68-.06-.6-.48-1.5-.24-1.68.48 1.02 1.44.24 1.56-.12.42-.12.48 0 .66.36.12.24.24.36.54.54.36.18.42.6-.06.96zm-7.26-6.24c-.42.12-.78-.06-1.08-.18-.18-.06-.06-.3.12-.24.3.12.6.24.9.18.36-.12.6-.54.96-.84.12-.12.3.12.18.18-.42.3-.66.78-1.08.9zM109.347 28.883l-.906.318.835 2.377.906-.318-.835-2.377zM129.919 42.634l-.89.36.945 2.336.89-.36-.945-2.336z"/><path fill="#fff" d="M147.88 28.32c-.3 0-.6-.12-.78-.3l-11.04-9.18c-.24-.24-.42-.54-.42-.84 0-.3.06-.66.3-.9l13.08-15c.24-.3.6-.48.96-.48.3 0 .6.12.78.3l11.04 8.58c.54.42.6 1.2.12 1.74L148.84 27.9c-.24.3-.6.42-.96.42z"/><path fill="#53BCE7" d="M149.92 2.28c.12 0 .24 0 .42.18l10.98 8.52c.12.12.18.24.24.42 0 .18-.06.36-.12.48l-13.08 15.66c-.12.12-.3.24-.48.24-.12 0-.24 0-.42-.18l-11.04-9.18c-.12-.12-.24-.24-.24-.42s.06-.36.12-.48l13.08-15c.18-.18.36-.24.54-.24zm0-1.2c-.54 0-1.08.24-1.44.66l-13.08 15c-.66.78-.54 1.98.24 2.58l11.04 9.18c.36.3.78.42 1.2.42.54 0 1.08-.24 1.44-.66l13.08-15.6c.66-.78.54-1.98-.24-2.58L151.12 1.5c-.36-.3-.78-.42-1.2-.42z"/><path fill="#00ADEF" d="M147.22 8.7l3.42 2.22-2.52 2.94-3.06-2.58 2.16-2.58zm.6 5.46l-2.52 2.94-2.7-3 2.16-2.52 3.06 2.58zm3.18-3l4.56 2.88-3.06 3.54-4.08-3.42 2.58-3zm1.2 6.84l-3 3.54-3.54-4.02 2.52-2.94L152.2 18z"/><path fill="#009BEC" d="M150.756 4.705l-.557-.456-1.218 1.484.557.457 1.218-1.485zM149.074 24.46l-.557-.457-1.217 1.484.557.457 1.217-1.485z"/><path fill="#fff" d="M188.44 96c-.54 0-1.08-.24-1.38-.72l-11.64-16.44c-.54-.78-.36-1.8.42-2.34l23.28-15.18c.3-.24.66-.36 1.02-.36.54 0 1.08.24 1.38.72l11.7 15.12c.54.72.36 1.8-.42 2.34L189.4 95.7c-.3.24-.66.3-.96.3z"/><path fill="#53BCE7" d="M200.08 61.86c.24 0 .48.12.66.36l11.64 15.06c.24.36.12.84-.18 1.08l-23.34 16.56c-.18.12-.36.12-.48.12-.24 0-.48-.12-.66-.36l-11.64-16.44c-.18-.24-.18-.48-.12-.6 0-.12.06-.36.3-.48l23.28-15.18c.24-.06.42-.12.54-.12zm0-1.8c-.54 0-1.02.18-1.5.48l-23.34 15.24a2.54 2.54 0 00-.6 3.6l11.64 16.44c.48.72 1.32 1.08 2.1 1.08.54 0 1.02-.18 1.5-.48l23.34-16.56a2.54 2.54 0 00.6-3.6L202.18 61.2a2.516 2.516 0 00-2.1-1.14z"/><path fill="#00ADEF" fill-rule="evenodd" d="M200.86 73.56c1.2 1.68 1.68 3.72 1.38 5.64-.36-.6-1.14-.9-1.92-.36-1.62 1.08-.6 3.24-4.44 4.44l-3.24 1.02 5.22-7.2c.06-.12.18-.12.24 0l.48.66c0 .06.06.06.12 0l.42-.3c.06 0 .06-.06 0-.12-.96-1.2-1.8-2.46-2.64-3.72 0-.06-.06-.06-.12 0l-.42.3c-.06 0-.06.06 0 .12l.48.66c.12.12.06.24 0 .3l-1.92 2.82-5.4 1.62 5.28-7.32c.06-.12.12-.12.18 0l.54.78c0 .06.06.06.12 0l.42-.3c.06 0 .06-.06 0-.12-.6-.78-1.2-1.56-1.68-2.28 2.64-.12 5.28 1.02 6.9 3.36zm.66 8.1c-.54 1.14-1.44 2.16-2.52 3-2.46 1.74-5.58 1.92-8.1.66l7.2-2.04c1.08-.3 2.46-.84 3.42-1.62zm-11.76 3.06c-.72-.54-1.38-1.14-1.92-1.92a7.76 7.76 0 01-1.08-2.1l7.2-2.1-4.2 6.12zm-3.3-5.16c-.54-2.94.66-6.06 3.24-7.92.96-.66 2.04-1.14 3.12-1.32l-6.36 9.24z" clip-rule="evenodd"/><path fill="#009BEC" d="M200.498 64.302l-.68-.99-2.621 1.803.68.988 2.621-1.801zM191.107 91.658l-.68-.989-2.62 1.802.68.989 2.62-1.802z"/><path fill="#fff" d="M188.26 51.12h-.24l-14.58-2.7c-.36-.06-.66-.24-.84-.54-.18-.3-.3-.66-.18-.96l4.2-19.44c.12-.66.66-1.08 1.32-1.08h.24l14.28 1.44c.66.12 1.14.84 1.02 1.5l-3.84 20.7c-.24.66-.78 1.08-1.38 1.08z"/><path fill="#53BCE7" d="M177.82 26.94h.24l14.16 1.44c.18.06.3.12.42.3s.12.36.12.54l-3.84 20.7c-.06.36-.36.6-.72.6h-.12l-14.58-2.7c-.18-.06-.36-.12-.48-.3s-.12-.36-.12-.54l4.2-19.44c.12-.36.36-.6.72-.6zm0-1.2c-.9 0-1.68.66-1.86 1.56l-4.2 19.5c-.18 1.02.48 2.04 1.56 2.22l14.58 2.7c.12 0 .24.06.36.06.9 0 1.68-.66 1.86-1.56l3.84-20.7c.18-1.02-.48-2.04-1.56-2.22l-14.22-1.44c-.12-.12-.24-.12-.36-.12z"/><path fill="#00ADEF" d="M186.58 43.02c-5.22 1.5-7.92-.96-9.66-2.46-.12-.12-.3-.06-.18.18.54.9 2.28 3.12 5.04 3.6 2.76.48 4.62-.78 4.86-1.02.24-.18.12-.36-.06-.3zm1.5-.54c-.12-.18-.78-.36-1.2-.36-.42 0-1.08.12-1.08.3 0 .06.06.06.36.06s1.14.06 1.26.3c.12.24-.48 1.26-.6 1.38-.12.18 0 .24.18.12.18-.06.48-.36.72-.72s.42-.9.36-1.08z"/><path fill="#00ADEF" fill-rule="evenodd" d="M184.12 37.74c-.12.6-.18 1.14-.54 1.62-.3.42-.78.6-1.2.54-.6-.12-.84-.6-.78-1.26.24-1.32 1.44-1.38 2.58-1.2l-.06.3zm.9 4.08c-.12.06-.24.06-.36 0-.42-.54-.48-.72-.72-1.2-1.02.72-1.62.9-2.76.72-1.32-.24-2.22-1.2-1.92-2.82.24-1.26 1.02-1.98 2.1-2.28.9-.24 2.1-.12 3-.06l.06-.18c.06-.36.18-.78 0-1.14-.12-.3-.48-.48-.78-.54-.6-.12-1.2.12-1.38.72-.06.12-.18.24-.3.24l-1.56-.48c-.12-.06-.24-.18-.18-.36.66-1.8 2.4-2.04 3.9-1.8.78.12 1.74.48 2.22 1.14.66.84.42 1.74.24 2.82l-.42 2.4c-.12.72.12 1.08.36 1.56.06.18.06.3-.06.42-.42.24-1.08.6-1.44.84z" clip-rule="evenodd"/><path fill="#00ADEF" d="M186.58 43.02c-5.22 1.5-7.92-.96-9.66-2.46-.12-.12-.3-.06-.18.18.54.9 2.28 3.12 5.04 3.6 2.76.48 4.62-.78 4.86-1.02.24-.18.12-.36-.06-.3zm1.5-.54c-.12-.18-.78-.36-1.2-.36-.42 0-1.08.12-1.08.3 0 .06.06.06.36.06s1.14.06 1.26.3c.12.24-.48 1.26-.6 1.38-.12.18 0 .24.18.12.18-.06.48-.36.72-.72s.42-.9.36-1.08z"/><path fill="#00ADEF" fill-rule="evenodd" d="M184.12 37.74c-.12.6-.18 1.14-.54 1.62-.3.42-.78.6-1.2.54-.6-.12-.84-.6-.78-1.26.24-1.32 1.44-1.38 2.58-1.2l-.06.3zm.9 4.08c-.12.06-.24.06-.36 0-.42-.54-.48-.72-.72-1.2-1.02.72-1.62.9-2.76.72-1.32-.24-2.22-1.2-1.92-2.82.24-1.26 1.02-1.98 2.1-2.28.9-.24 2.1-.12 3-.06l.06-.18c.06-.36.18-.78 0-1.14-.12-.3-.48-.48-.78-.54-.6-.12-1.2.12-1.38.72-.06.12-.18.24-.3.24l-1.56-.48c-.12-.06-.24-.18-.18-.36.66-1.8 2.4-2.04 3.9-1.8.78.12 1.74.48 2.22 1.14.66.84.42 1.74.24 2.82l-.42 2.4c-.12.72.12 1.08.36 1.56.06.18.06.3-.06.42-.42.24-1.08.6-1.44.84z" clip-rule="evenodd"/><path fill="#009BEC" d="M178.966 28.366l-.703-.154-.41 1.876.703.154.41-1.876zM188.51 47.676l-.704-.154-.41 1.876.704.153.41-1.875z"/><path fill="#fff" d="M123.82 100.14c-5.7 9.3-9.54 9.9-13.56 10.26-1.86.18-2.58-1.08-2.52-1.62.06-.84-1.02-1.2-1.62-1.5-.12-.06-.24-.12-.3-.24s-.12-.24-.12-.36c-.06-.3-.12-.42-.36-.6-.24-.12-.36-.24-.54-.48-.12-.24-.24-.54-.42-.72-.42-.48-1.14-.66-1.56-1.14-.24-.3-.36-.66-.54-.96-.18-.3-.3-.42-.6-.6-.6-.42-1.08-1.26-1.56-1.8-.36-.48-.72-.96-1.14-1.44-.36-.36-.66-.78-1.08-1.02-.3-.18-.6-.3-.84-.6-.06-.06-.12-.18-.18-.24-.12-.24-.36-.42-.54-.66a.455.455 0 00-.24-.12c-.12 0-.24.06-.36.06s-.18-.12-.24-.18c-.42-.3-1.02 0-1.5-.12-.3-.06-.54-.36-.78-.54-.9-.78-2.22-.72-3.36-1.08-.24-.06-5.7-1.98-6.78-2.46-1.74-.84-3-.6-4.02-2.34-.48-.78-1.32-2.82-.9-3.6.48-.78 1.5-1.14 2.4-1.08.9.06 5.16 3.42 9.12 3 .9-.12 2.28-1.32 1.74-2.4-.36-.9-4.02-4.32-4.38-11.1-.06-1.02.9-3.78 1.8-4.26 1.14-.6 2.34.66 3.12 1.62 1.26 1.5 1.62 3.78 3.06 5.28-1.02-2.76-1.14-4.08-1.38-6.42-.06-.96-.78-4.5 2.34-6 1.02-.48 2.46.42 2.94 1.14 1.56 2.34 1.02 4.92 2.58 7.32.66.48 1.92.06 2.22-.12.66-.36 1.62-2.76 3.72-3.06 1.26-.18 4.68 1.08 5.82 1.68 1.2.66 2.52.9 2.52 2.46.78.18 1.98.48 2.64.06.96-.54 1.56-.54 2.28-.18.6.36 1.14 1.5 1.5 1.98.42.6.42.36 1.02.9.72.6.96 1.68.9 2.58-.06 1.56-.84 2.76-.54 4.38.48 2.7 1.92 5.58.84 8.34-.54 1.38-1.14 2.76-.96 4.26.36 1.14 1.14 2.58.36 3.72z"/><path fill="#DFE2E8" d="M123.16 89.76c.84-.12 1.56-.36 1.62-.84-.12 1.5.36 3 .54 4.5.18 1.38.3 2.28.12 3.66-.18 1.02-.3 1.98-.66 2.94-.36 1.02-1.02 1.74-1.5 2.64-.54.9-1.08 1.68-1.8 2.46-1.44 1.5-3 2.88-4.68 4.08-1.86 1.32-3.9 2.52-6.18 2.7-2.34.18-4.68-.78-6.24-2.52-.78-.9-1.38-1.98-2.22-2.82-1.5-1.44-3.6-2.04-5.34-3.12-1.5-.96-2.7-2.34-4.2-3.3-2.58-1.74-5.88-2.16-8.46-3.9-1.5-1.02-2.76-2.82-3.78-4.26-1.5-2.04-2.58-3.54-1.98-6.06 1.5 1.26 2.16 3.24 3.9 4.32 1.62 1.02 3.48 1.56 5.34 2.16 1.5.48 3.06.96 4.56 1.44.9.3 2.58 1.26 3.36.54.48-.48.72-1.2 1.2-1.68-.54.54-.66 2.58-.24 3.18.54.9 1.98 1.68 2.76 2.46 2.22 2.28 4.44 4.56 6.72 6.78.84.84 1.68 1.68 2.76 2.1 2.82 1.56 6.42-2.52 8.22-4.02 1.38-1.14 2.76-2.34 3.9-3.72 1.14-1.38 1.92-3.12 1.98-4.92.06-1.8-.78-3.66-2.28-4.62.3-.06 1.56 0 2.58-.18z"/><path fill="#DFE2E8" d="M117.28 78.66c0-.84.06-1.86-.3-1.92-.18-.06-.36.12-.48.3-.78 1.14-1.5 2.82-3.18 2.4-1.2-.3-2.16-1.26-3.12-1.98-.78-.6-1.38-1.74-2.46-1.8-.12.18-.12.42-.12.6.06.3.54.9.72 1.14.6 1.02 1.26 2.04 1.5 3.24.48 2.22.06 4.5-.42 6.72-.54 2.7-1.08 5.34-1.62 8.04-.24 1.08-.48 1.68-1.02 2.58-.12.18-1.32 1.98-1.26 2.16.3.6.96.96 1.62 1.02 1.5 0 2.22-1.98 2.94-3.06l2.7-4.14c1.26-1.92 3-4.02 3.84-6.12.66-1.74 1.98-3.6 1.74-5.58-.12-1.02-.78-1.62-1.08-2.46-.06-.24-.06-.66 0-1.14z"/><path fill="#FEC007" d="M98.44 112.5c-.06.18-.12.36-.06.54.06.36.24.84 1.02 1.14.78.3 1.44.3 1.8 0 .12-.06.18-.18.18-.24l3.36-7.86s-.42.42-1.8-.06c-.54-.18-1.32-.78-1.26-1.2l-3.24 7.68zM128.32 46.08c-1.62-.72-1.5-1.14-1.5-1.14l5.52-13.5c.24-.48 1.32-.48 2.46-.06 1.2.42 2.04 1.2 1.86 1.68 0 .06 0 .06-.06.12l-6 13.14c-.18.24-1.26.18-2.28-.24z"/><path fill="#000" d="M130.6 46.26c-.18.3-1.26.24-2.28-.18-1.38-.6-1.5-1.02-1.5-1.14l-25.08 59.82c0 .42.72 1.02 1.26 1.2 1.2.42 1.68.18 1.74.12l25.86-59.82z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" width="320" height="192" viewBox="0 0 320 192"><g clip-path="url(#clip0)"><path fill="#A7ADB7" d="M186.5 168.3c16.7-3.9 37-9.4 52.8-26.6 15.8-17.3 27.1-46.7 18.9-65.4-8.1-18.8-35.7-27.4-57.7-41.3C178.4 21 161.8 1.6 144.4.2c-17.6-1.4-36 15.4-52.7 35.1a170.2 170.2 0 00-38.8 71.2c-6.9 28.6-5.3 63.4 11.1 76 16.6 12.8 48.2 3.3 70.5-2.5 22.3-6 35.3-8.1 52-11.7z"/><path fill="url(#paint0_linear)" fill-rule="evenodd" d="M156.1 41.7l-33.9-1.8-.3-33.1c7.4-4.7 15-7.4 22.4-6.7 4 .3 8 1.6 12.2 3.6l-.4 38z" clip-rule="evenodd"/><path fill="#DFE2E8" d="M69.8 104.6a131 131 0 0126 26.2c10 13.5 17.3 28.9 28.4 41.4 23.6 27 71 28.6 86-8.5 3.8-9.3 6.5-12 14-18.6 8.3-7.4 20.7-5.4 31.7-6 16.1-1 24.6-11 26.3-21.4 2.1-13.1-6.2-23.5-9.7-35.5-3.8-12.6-1.6-27.7-14.5-35.3-10.9-6.4-24.8-3.3-36.8.7-12 4-24.8 9-36.9 5.5a57 57 0 01-21.6-14.5 89 89 0 00-63.9-22.1c-13.3 1.3-33 5.9-43.4 14.6-14 11.6-25.6 39.3-13 55.7 5.8 7.7 19.1 11.7 26.8 17.5.2 0 .4 0 .6.3z"/><path fill="#C4C9D3" fill-rule="evenodd" d="M211.4 160.7c-8.5 3.5-17 5.7-24.9 7.6l-14.6 3c-10.8 2.3-21.8 4.5-37.4 8.7l-1.6.4c-3.2-2.4-6.2-5-8.8-8-6.5-7.4-11.7-15.9-17-24.2a260 260 0 00-11.3-17.3c-7.4-10-16.2-18.7-26-26.2l-.4-.2-.3-.2c-3-2.3-6.8-4.2-10.7-6.3-1-.4-1.8-1-2.8-1.5a180 180 0 0136-61.3c5.8-6.7 11.6-13.1 17.7-18.5a88.4 88.4 0 0153.3 22.1c6.4 6 13.3 12.1 21.6 14.5 11.5 3.3 23.5-.8 35-4.8l2-.7 1.7-.5c15.5 8.2 30 16.2 35.4 29 8 18-2.2 45.8-17 63.3-6.4.3-12.3 1.5-17 5.7a37.5 37.5 0 00-12.9 15.4z" clip-rule="evenodd"/><path fill="#252628" d="M91.4 127a26.5 26.5 0 100-53 26.5 26.5 0 000 53z"/><path fill="#fff" d="M84 98.2A9 9 0 1084 80a9 9 0 100 18.2z"/><path fill="#53BCE7" d="M264.2 91.2c0-4.6-8.3-19-8.3-19s-8.3 14.3-8.3 19a8.3 8.3 0 0016.7 0z"/><path fill="#fff" d="M255.8 89.9c.6-2.2-.1-4.4-1.7-4.8-1.5-.5-3.1 1-3.8 3.3-.7 2.1.1 4.3 1.6 4.8 1.6.4 3.3-1 3.9-3.3z"/><path fill="#252628" d="M249.9 66c-7.6-.4-13 1-16.4 4.6-6.3 6.6-4.7 19-2.6 35v1.2c.7 5.2-.4 9.1-3.1 12-4.7 4.6-14.2 6.2-28 4.7h-17c-12.2 0-23.3.7-48 .7-4.5 0-14.1 1.8-20.7 1.3-4-.4-8.3-2.9-1.9-8.8l-18.5 1-.1 7.5c-6.5.1-13.8-.4-20.8-3.3-11.8-4.7-16.1-2.7-20.4.1-2.4 1.7-4 2.9-9.1 1.5-1-.4-2.1.2-2.4 1.3-.4 1 .2 2 1.3 2.4 6.8 2 9.8-.1 12.4-2 3-2 5.8-4 16.7.3 6.9 2.7 13.8 3.6 20 3.6 5.7 0 10.8-.7 14.9-1.2l3.8-.5h17.5l55-.2H199c5.6.7 22.8 2.5 31.1-5.8 3.6-3.6 5.2-8.7 4.3-15.2l-.2-1c-1.9-15-3.4-26.7 1.6-32.1 2.5-2.6 6.8-3.7 13.2-3.3 1 .1 2-.8 2-1.8.7-1-.2-2-1.1-2z"/><path fill="#666" d="M255.1 64.2l-7.8.3.3 6.8 7.8-.3-.3-6.8z"/><path fill="#fff" d="M250 63.3c-.5 0-.7.4-.7.7v7.3c0 .5.3.7.7.7.4 0 .6-.3.6-.7V64c0-.5-.2-.7-.6-.7zM253 63.3c-.5 0-.7.4-.7.7v7.3c0 .5.3.7.6.7.5 0 .7-.3.7-.7V64c.1-.5-.2-.7-.7-.7z"/><path fill="#9AD0E8" d="M122.3 61l33.5 1 .4-28.8a88 88 0 00-34.7-15l.8 42.8z"/><path fill="#00326D" d="M167.5 87s-9.4-12.6-11.3-16l-1.7-16.6-28.3-1-2.2 41 56.4 8.4-13-14.8.1-1z"/><path fill="#0053CC" d="M179.7 92.5s-26.4-10.3-28.2-13.4c-1.7-3 7.4-7.8 7.4-7.8l20.8 21.2z"/><path fill="#009BEC" d="M229.3 110.4c1-1 1.8-8.3-4.4-9.3a476 476 0 00-27.3-3.4c-13.6-1.1-26.2-17.4-31.7-19-5.6-1.8-10.9 4.8-14 7-3 2.1-14.2.5-16.3-2.8-4.7-7.6-7.6-7-11-7.4-3.3-.4-2.4 5.3-4.6 14-2 8.6-4 16 .7 20.7 4.7 4.7 28 5.4 28 5.4l31.9 4 33.4-.3 15.3-8.9z"/><path fill="#53BCE7" d="M191.4 97.7l-31.2-17.1-1-.6c-1.4.8-2.6 1.9-3.8 2.9L167 99.5l18.9.5 5.4-2.3z"/><path fill="#000" d="M165.3 77.7c5 1.4 24.8 17 33.4 22-2 1.3-5.3.7-8.6-.2-4.5-1.2-24.4-13.6-32.7-18.5 2.6-1.8 5-4 8-3.3z"/><path fill="#fff" d="M207.5 107.1l-11-9.5-11.4-7s-13.5 6.8-22 3.1c-8.5-3.6 4.3 16.4 4.3 16.4l39.8 3.4.3-6.4z"/><path fill="#0053CC" d="M201.7 119.4l16.1-2.4 11.5-6.6c.6-.5 1.1-3.3.5-5.7l-.9-.2c.1.3 0 .5-.1.8-.9 1.5-22.8.2-22.8.2l-3.1 1.4c-3.4 1.6-7.2 2-10.9 1.4l-4.6-.7-12-2.5-17.2-3.4a66 66 0 01-12.8-3.7L122.8 89l-1 4c-1.2 5.2-1 9-1 9l-1 .8v1.8l-2.1-.1c.3 2 1.1 4 2.7 5.6.5.4 1.3 1 2.1 1.4l66.1 8h13z"/><path fill="#9AD0E8" d="M120 89.2l.4-1.8c9.4 2.7 24.9 10 25.6 27l-5.7.4c-7.1-.7-16.8-2-19.6-5-4.8-4.4-2.9-11.9-.7-20.6z"/><path fill="#53BCE7" d="M118 105c10 4.8 42.6-5 43.5 12-2 .2-19.4-2-21.3-2-7.1-.6-14-4-17.9-4.4-2.5 0-4.6-5-4.4-5.6z"/><path fill="#666" d="M229.8 110s-10.5 6.3-26.8 7c-24.8 1-37.4-7-49.7-8.1-12.3-1.1-22.2 1.4-27.1 1.2-4.9-.2-6.4-1.6-7-2.1-1.4 2-1.8 11.9 0 14.7.7 1.4 7.4 2.3 19.2 2 26-.8 49 .8 57.2 1 8.3.2 20 1.6 27-4 4.7-3.6 7.2-11.7 7.2-11.7z"/><path fill="#00326D" d="M195.5 125.8c1.5 0 3 0 4.5.2-39.3-8.3-41.6-13.4-56.2-13-11 .2-20 7.3-25.9 5.1-.4 4.2 2.2 7.5 2.2 7.5 11.3-.5 6.3-.5 18.1-.8 26.2-.9 49 .8 57.3 1z"/><path fill="#000" d="M186 95.2c-.5.7-.2 1.7.5 2 .8.5 1.8.3 2.1-.5.5-.8.2-1.8-.5-2-.7-.5-1.7-.2-2.1.5zM181.5 92.5c-.5.8-.2 1.8.5 2.1.8.4 1.8.2 2.1-.5.5-.8.2-1.8-.5-2.1-.7-.5-1.7-.1-2.1.5z"/><path fill="#009BEC" d="M177 89.9c-.4.8-.1 1.7.6 2 .8.5 1.8.3 2.1-.5.5-.7.2-1.7-.5-2-.7-.5-1.7-.3-2.1.5zM172.7 87.3c-.4.7-.2 1.7.5 2 .8.5 1.8.3 2.1-.5.5-.8.3-1.8-.5-2-.7-.5-1.7-.3-2.1.5zM168.3 84.6c-.4.8-.2 1.8.6 2.1.7.4 1.7.2 2-.5.5-.8.3-1.8-.5-2.1-.7-.5-1.7-.2-2 .5zM164 82c-.5.8-.3 1.7.5 2 .7.5 1.7.3 2-.5.5-.7.3-1.7-.5-2-.7-.5-1.6-.3-2 .5z"/><path fill="#515151" d="M168.6 78.7l-2.5 4.3a1 1 0 01-.8.4.8.8 0 01-.4-.2c-.4-.2-.5-.8-.3-1.2l2.4-4c.6.1 1 .4 1.6.7zM170.6 85.6a1 1 0 01-.8.4c-.2 0-.3 0-.4-.2-.4-.2-.5-.7-.3-1.2l2.5-4.2 1.4 1-2.4 4.2zM174.9 88.2a1 1 0 01-.8.5.8.8 0 01-.4-.2c-.5-.3-.6-.8-.3-1.2l2.4-4 1.4 1.1-2.3 3.8zM179.4 90.9a1 1 0 01-.8.4.8.8 0 01-.4-.2c-.5-.2-.6-.8-.3-1.2l2-3.6c.2 0 .2 0 .3.2l1.2.9-2 3.5zM183.8 93.5a1 1 0 01-.8.4.8.8 0 01-.4-.2c-.5-.2-.6-.7-.4-1.2l2-3.2 1.4 1.1-1.8 3.1zM188.2 96.3a1 1 0 01-.8.4l-.4-.2c-.5-.2-.6-.8-.4-1.2l1.8-2.9 1.4 1-1.6 2.9z"/><path fill="#009BEC" d="M139.7 121.5a3 3 0 01-3.1-3.4c.2-1.4 1.5-2.7 5.1-3a34 34 0 0115.6 3.7c1.1.4 1 2.3-.5 2.3l-17.1.4z"/><path fill="#53BCE7" d="M122 69.5s25.1 1 35 .7l.2-18.6h-36.6l1.4 17.9z"/><path fill="#fff" d="M121.4 55.4c-.2 0-.2 0-.2-.2l.2-.2h1.8c.1 0 .2 0 .2.2s-.1.2-.2.2h-1.8zM126.7 55.4c-.2 0-.2 0-.2-.2 0-.1 0-.2.2-.2h3.4c.1 0 .2 0 .2.2 0 .1 0 .2-.2.2h-3.4c.1 0 .1 0 0 0zm7 0c-.2 0-.2-.2-.2-.3l.2-.2h3.4c.1 0 .3 0 .3.2l-.3.2h-3.4zm7 0c-.3 0-.3-.2-.3-.3l.2-.2h3.4c.2 0 .3 0 .3.2 0 .1-.1.2-.3.2h-3.4zm7-.2c-.3 0-.3-.1-.3-.2l.3-.2h3.4c.2 0 .2 0 .2.2s-.1.2-.2.2h-3.4zM154.7 55l-.2-.1c0-.2 0-.2.2-.2h1.8c.2 0 .2 0 .2.2l-.2.2h-1.8z"/><path fill="#0053CC" d="M229.4 126.8H71.1c-1.7 0-3.1 1.4-3.1 3 0 1.7 1.4 3.1 3 3.1h158.4c1.7 0 3.1-1.4 3.1-3a3 3 0 00-3-3.1z"/></g><defs><linearGradient id="paint0_linear" x1="139.5" x2="142.2" y1="20.9" y2="0" gradientUnits="userSpaceOnUse"><stop stop-color="#8D939C"/><stop offset="1" stop-color="#8D939C" stop-opacity="0"/></linearGradient><clipPath id="clip0"><path fill="#fff" d="M0 0h320v192H0z"/></clipPath></defs></svg>
@@ -1,27 +0,0 @@
1
- // Copyright 1999-2023. Plesk International GmbH. All rights reserved.
2
-
3
- import Alert from './Alert';
4
- import { jsx as _jsx } from "react/jsx-runtime";
5
- import { Fragment as _Fragment } from "react/jsx-runtime";
6
- import { jsxs as _jsxs } from "react/jsx-runtime";
7
- export const Basic = args => /*#__PURE__*/_jsx(Alert, {
8
- ...args
9
- });
10
- Basic.args = {
11
- children: 'Content'
12
- };
13
- export const Intents = () => /*#__PURE__*/_jsxs(_Fragment, {
14
- children: [/*#__PURE__*/_jsx(Basic, {
15
- intent: "info",
16
- ...Basic.args
17
- }), /*#__PURE__*/_jsx(Basic, {
18
- intent: "success",
19
- ...Basic.args
20
- }), /*#__PURE__*/_jsx(Basic, {
21
- intent: "warning",
22
- ...Basic.args
23
- }), /*#__PURE__*/_jsx(Basic, {
24
- intent: "danger",
25
- ...Basic.args
26
- })]
27
- });
@@ -1,99 +0,0 @@
1
- // Copyright 1999-2023. Plesk International GmbH. All rights reserved.
2
-
3
- import Button from './Button';
4
- import { jsx as _jsx } from "react/jsx-runtime";
5
- import { Fragment as _Fragment } from "react/jsx-runtime";
6
- import { jsxs as _jsxs } from "react/jsx-runtime";
7
- export const Basic = args => /*#__PURE__*/_jsx(Button, {
8
- ...args
9
- });
10
- Basic.args = {
11
- children: 'Click me'
12
- };
13
- export const Ghost = args => /*#__PURE__*/_jsx(Button, {
14
- ghost: true,
15
- ...args
16
- });
17
- Ghost.args = {
18
- icon: 'gear'
19
- };
20
- export const Intents = () => /*#__PURE__*/_jsxs(_Fragment, {
21
- children: [/*#__PURE__*/_jsx(Basic, {
22
- intent: "info",
23
- ...Basic.args
24
- }), ` `, /*#__PURE__*/_jsx(Basic, {
25
- intent: "success",
26
- ...Basic.args
27
- }), ` `, /*#__PURE__*/_jsx(Basic, {
28
- intent: "warning",
29
- ...Basic.args
30
- }), ` `, /*#__PURE__*/_jsx(Basic, {
31
- intent: "danger",
32
- ...Basic.args
33
- })]
34
- });
35
- export const Arrows = () => /*#__PURE__*/_jsxs(_Fragment, {
36
- children: [/*#__PURE__*/_jsxs("p", {
37
- children: [/*#__PURE__*/_jsx(Basic, {
38
- arrow: "forward",
39
- ...Basic.args
40
- }), ` `, /*#__PURE__*/_jsx(Basic, {
41
- arrow: "forward",
42
- size: "lg",
43
- ...Basic.args
44
- }), ` `, /*#__PURE__*/_jsx(Basic, {
45
- arrow: "forward",
46
- icon: "cpu",
47
- ...Basic.args
48
- }), ` `, /*#__PURE__*/_jsx(Basic, {
49
- arrow: "forward",
50
- intent: "danger",
51
- ...Basic.args
52
- })]
53
- }), /*#__PURE__*/_jsxs("p", {
54
- children: [/*#__PURE__*/_jsx(Basic, {
55
- arrow: "backward",
56
- ...Basic.args
57
- }), ` `, /*#__PURE__*/_jsx(Basic, {
58
- arrow: "backward",
59
- size: "lg",
60
- ...Basic.args
61
- }), ` `, /*#__PURE__*/_jsx(Basic, {
62
- arrow: "backward",
63
- icon: "cpu",
64
- ...Basic.args
65
- }), ` `, /*#__PURE__*/_jsx(Basic, {
66
- arrow: "backward",
67
- intent: "danger",
68
- ...Basic.args
69
- })]
70
- })]
71
- });
72
- export const States = () => [{
73
- intent: 'primary'
74
- }, {
75
- disabled: true
76
- }, {
77
- ghost: true
78
- }].map((props, index) =>
79
- /*#__PURE__*/
80
- // eslint-disable-next-line react/no-array-index-key
81
- _jsxs("p", {
82
- children: [/*#__PURE__*/_jsx(Basic, {
83
- state: "hovered",
84
- ...Basic.args,
85
- ...props
86
- }), ` `, /*#__PURE__*/_jsx(Basic, {
87
- state: "active",
88
- ...Basic.args,
89
- ...props
90
- }), ` `, /*#__PURE__*/_jsx(Basic, {
91
- state: "loading",
92
- ...Basic.args,
93
- ...props
94
- }), ` `, /*#__PURE__*/_jsx(Basic, {
95
- state: "focused",
96
- ...Basic.args,
97
- ...props
98
- })]
99
- }, index.toString()));
@@ -1,39 +0,0 @@
1
- // Copyright 1999-2023. Plesk International GmbH. All rights reserved.
2
-
3
- import Cuttable from './Cuttable';
4
- import Paragraph from '../Paragraph';
5
- import { Basic as BasicItemList } from '../ItemList/ItemList.stories';
6
- import { jsx as _jsx } from "react/jsx-runtime";
7
- import { Fragment as _Fragment } from "react/jsx-runtime";
8
- import { jsxs as _jsxs } from "react/jsx-runtime";
9
- export const Basic = args => /*#__PURE__*/_jsx(Cuttable, {
10
- ...args
11
- });
12
- Basic.args = {
13
- children: /*#__PURE__*/_jsxs(_Fragment, {
14
- children: [/*#__PURE__*/_jsx(Paragraph, {
15
- children: 'Text 1'
16
- }), /*#__PURE__*/_jsx(Paragraph, {
17
- children: 'Text 2'
18
- }), /*#__PURE__*/_jsx(Paragraph, {
19
- children: 'Text 3'
20
- }), /*#__PURE__*/_jsx(Paragraph, {
21
- children: 'Text 4'
22
- }), /*#__PURE__*/_jsx(Paragraph, {
23
- children: 'Text 5'
24
- }), /*#__PURE__*/_jsx(Paragraph, {
25
- children: 'Text 6'
26
- }), /*#__PURE__*/_jsx(Paragraph, {
27
- children: 'Text 7'
28
- })]
29
- })
30
- };
31
- export const WithItemList = args => /*#__PURE__*/_jsx(Cuttable, {
32
- ...args
33
- });
34
- WithItemList.args = {
35
- maxHeight: 60,
36
- children: /*#__PURE__*/_jsx(BasicItemList, {
37
- ...BasicItemList.args
38
- })
39
- };
@@ -1,42 +0,0 @@
1
- // Copyright 1999-2023. Plesk International GmbH. All rights reserved.
2
-
3
- import { useState } from 'react';
4
- import Button from '../Button';
5
- import Dialog from './Dialog';
6
- import image from '../../docs/public/placeholders/placeholder_400x400.svg';
7
- import { jsx as _jsx } from "react/jsx-runtime";
8
- import { Fragment as _Fragment } from "react/jsx-runtime";
9
- import { jsxs as _jsxs } from "react/jsx-runtime";
10
- export const Basic = args => {
11
- const [isOpen, setIsOpen] = useState(false);
12
- return /*#__PURE__*/_jsxs(_Fragment, {
13
- children: [/*#__PURE__*/_jsx(Button, {
14
- onClick: () => setIsOpen(true),
15
- "data-id": "trigger",
16
- children: 'Open'
17
- }), /*#__PURE__*/_jsx(Dialog, {
18
- ...args,
19
- "data-type": "test",
20
- isOpen: isOpen,
21
- onClose: () => setIsOpen(false)
22
- })]
23
- });
24
- };
25
- Basic.args = {
26
- children: 'Dialog content.',
27
- title: 'Title',
28
- subtitle: 'Subtitle'
29
- };
30
- export const WithSideBanner = args => /*#__PURE__*/_jsx(Basic, {
31
- ...args
32
- });
33
- WithSideBanner.args = {
34
- ...Basic.args,
35
- size: 'xs',
36
- sideBanner: /*#__PURE__*/_jsx("img", {
37
- src: image
38
- }),
39
- sideBannerContainer: {
40
- background: 'skyblue'
41
- }
42
- };
@@ -1,56 +0,0 @@
1
- // Copyright 1999-2023. Plesk International GmbH. All rights reserved.
2
-
3
- import { useState } from 'react';
4
- import Button from '../Button';
5
- import Drawer from './Drawer';
6
- import image from '../../docs/public/placeholders/placeholder_400x400.svg';
7
- import { jsx as _jsx } from "react/jsx-runtime";
8
- import { Fragment as _Fragment } from "react/jsx-runtime";
9
- import { jsxs as _jsxs } from "react/jsx-runtime";
10
- export const Basic = args => {
11
- const [isOpen, setIsOpen] = useState(false);
12
- return /*#__PURE__*/_jsxs(_Fragment, {
13
- children: [/*#__PURE__*/_jsx(Button, {
14
- onClick: () => setIsOpen(true),
15
- "data-id": "trigger",
16
- children: 'Open'
17
- }), /*#__PURE__*/_jsx(Drawer, {
18
- ...args,
19
- "data-type": "test",
20
- isOpen: isOpen,
21
- onClose: () => setIsOpen(false)
22
- })]
23
- });
24
- };
25
- Basic.args = {
26
- children: 'Drawer content.',
27
- title: 'Title',
28
- subtitle: 'Subtitle'
29
- };
30
- export const WithForm = args => /*#__PURE__*/_jsx(Basic, {
31
- ...args
32
- });
33
- WithForm.args = {
34
- ...Basic.args,
35
- form: {}
36
- };
37
- export const WithSideBanner = args => /*#__PURE__*/_jsx(Basic, {
38
- ...args
39
- });
40
- WithSideBanner.args = {
41
- ...Basic.args,
42
- size: 'xs',
43
- sideBanner: /*#__PURE__*/_jsx("img", {
44
- src: image
45
- }),
46
- sideBannerContainer: {
47
- background: 'skyblue'
48
- }
49
- };
50
- export const WithClosingConfirmation = args => /*#__PURE__*/_jsx(Basic, {
51
- ...args
52
- });
53
- WithClosingConfirmation.args = {
54
- ...Basic.args,
55
- closingConfirmation: true
56
- };
@@ -1,27 +0,0 @@
1
- // Copyright 1999-2023. Plesk International GmbH. All rights reserved.
2
-
3
- import Form from './Form';
4
- import FormFieldText from '../FormFieldText';
5
- import FormFieldPassword from '../FormFieldPassword';
6
- import FormFieldCheckbox from '../FormFieldCheckbox';
7
- import { jsx as _jsx } from "react/jsx-runtime";
8
- export const Basic = args => /*#__PURE__*/_jsx(Form, {
9
- ...args
10
- });
11
- Basic.args = {
12
- values: {
13
- field1: 'Value 1',
14
- field2: 'Value 2',
15
- field3: true
16
- },
17
- children: [/*#__PURE__*/_jsx(FormFieldText, {
18
- label: "Field 1",
19
- name: "field1"
20
- }, "1"), /*#__PURE__*/_jsx(FormFieldPassword, {
21
- label: "Field 2",
22
- name: "field2"
23
- }, "2"), /*#__PURE__*/_jsx(FormFieldCheckbox, {
24
- label: "Field 3",
25
- name: "field3"
26
- }, "3")]
27
- };
@@ -1,23 +0,0 @@
1
- // Copyright 1999-2023. Plesk International GmbH. All rights reserved.
2
-
3
- import Form from '../Form';
4
- import FormFieldCheckbox from './FormFieldCheckbox';
5
- import { jsx as _jsx } from "react/jsx-runtime";
6
- export const Basic = args => /*#__PURE__*/_jsx(Form, {
7
- children: /*#__PURE__*/_jsx(FormFieldCheckbox, {
8
- ...args
9
- })
10
- });
11
- Basic.args = {
12
- name: 'name',
13
- label: 'Lorem ipsum dolor sit amet.'
14
- };
15
- export const WithFullDescription = args => /*#__PURE__*/_jsx(Basic, {
16
- ...args
17
- });
18
- WithFullDescription.args = {
19
- ...Basic.args,
20
- label: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ac justo sed neque interdum varius. Aenean sollicitudin placerat orci, quis viverra libero mattis a. Morbi ac erat sed elit ullamcorper laoreet sed eget tortor. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.',
21
- fullDescription: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ac justo sed neque interdum varius. Aenean sollicitudin placerat orci, quis viverra libero mattis a.',
22
- required: true
23
- };
@@ -1,23 +0,0 @@
1
- // Copyright 1999-2023. Plesk International GmbH. All rights reserved.
2
-
3
- import Icon from './Icon';
4
- import { NAMES_12 } from './constants';
5
- import { jsx as _jsx } from "react/jsx-runtime";
6
- export const Basic = args => /*#__PURE__*/_jsx(Icon, {
7
- ...args
8
- });
9
- Basic.args = {};
10
- export const All = () => /*#__PURE__*/_jsx("div", {
11
- style: {
12
- display: 'inline-block'
13
- },
14
- id: "icons",
15
- children: NAMES_12.map(name => /*#__PURE__*/_jsx("div", {
16
- style: {
17
- margin: 16
18
- },
19
- children: /*#__PURE__*/_jsx(Icon, {
20
- name: name
21
- })
22
- }, name))
23
- });
@@ -1,12 +0,0 @@
1
- // Copyright 1999-2023. Plesk International GmbH. All rights reserved.
2
-
3
- import ItemLink from './ItemLink';
4
- import { jsx as _jsx } from "react/jsx-runtime";
5
- export const Basic = args => /*#__PURE__*/_jsx(ItemLink, {
6
- ...args
7
- });
8
- Basic.args = {
9
- children: 'Add new item',
10
- onClick: () => {},
11
- 'data-test': 'item-link'
12
- };
@@ -1,109 +0,0 @@
1
- // Copyright 1999-2023. Plesk International GmbH. All rights reserved.
2
-
3
- import { cloneElement } from 'react';
4
- import ItemList from './ItemList';
5
- import Item from '../Item';
6
- import Icon from '../Icon';
7
- import { jsx as _jsx } from "react/jsx-runtime";
8
- export const Basic = args => /*#__PURE__*/_jsx(ItemList, {
9
- ...args
10
- });
11
- Basic.args = {
12
- minColumnWidth: 220,
13
- gap: 'md',
14
- children: [/*#__PURE__*/_jsx(Item, {
15
- value: "1",
16
- title: "Title 1",
17
- description: "Description 1",
18
- "data-test": "item1",
19
- icon: /*#__PURE__*/_jsx(Icon, {
20
- name: "star-circle-filled",
21
- intent: "info"
22
- }),
23
- onClick: () => {},
24
- children: 'Content 1'
25
- }, "1"), /*#__PURE__*/_jsx(Item, {
26
- value: "2",
27
- title: "Title 2",
28
- description: "Description 2",
29
- "data-test": "item2",
30
- icon: /*#__PURE__*/_jsx(Icon, {
31
- name: "star-circle-filled",
32
- intent: "success"
33
- }),
34
- onClick: () => {},
35
- children: 'Content 2'
36
- }, "2"), /*#__PURE__*/_jsx(Item, {
37
- value: "3",
38
- title: "Title 3",
39
- description: "Description 3",
40
- "data-test": "item3",
41
- icon: /*#__PURE__*/_jsx(Icon, {
42
- name: "star-circle-filled",
43
- intent: "warning"
44
- }),
45
- onClick: () => {},
46
- hoverable: true,
47
- children: 'Content 3'
48
- }, "3"), /*#__PURE__*/_jsx(Item, {
49
- value: "4",
50
- title: "Title 4",
51
- description: "Description 4",
52
- "data-test": "item4",
53
- icon: /*#__PURE__*/_jsx(Icon, {
54
- name: "star-circle-filled",
55
- intent: "danger"
56
- }),
57
- onClick: () => {},
58
- disabled: true,
59
- hoverable: true,
60
- children: 'Content 4'
61
- }, "4")]
62
- };
63
- export const Cards = Basic.bind(null);
64
- Cards.args = {
65
- ...Basic.args,
66
- children: Basic.args.children.map(child => child ? /*#__PURE__*/cloneElement(child, {
67
- view: 'card',
68
- footer: `Footer ${child.props.value}`
69
- }) : null)
70
- };
71
- export const Reorderables = Basic.bind(null);
72
- Reorderables.args = {
73
- ...Basic.args,
74
- reorderable: true
75
- };
76
- export const Selectables = Basic.bind(null);
77
- Selectables.args = {
78
- ...Basic.args,
79
- selectable: true,
80
- defaultValue: '2'
81
- };
82
- export const HoverableItemList = Basic.bind(null);
83
- HoverableItemList.args = {
84
- ...Basic.args,
85
- hoverable: true,
86
- defaultValue: '2',
87
- children: Basic.args.children.map((child, index) => {
88
- if (!child) {
89
- return null;
90
- }
91
- return /*#__PURE__*/cloneElement(child, {
92
- hoverable: index === 0 ? false : undefined
93
- });
94
- })
95
- };
96
- export const HoverableItems = Basic.bind(null);
97
- HoverableItems.args = {
98
- ...Basic.args,
99
- hoverable: false,
100
- defaultValue: '2',
101
- children: Basic.args.children.map((child, index) => {
102
- if (!child) {
103
- return null;
104
- }
105
- return /*#__PURE__*/cloneElement(child, {
106
- hoverable: index % 2 === 0
107
- });
108
- })
109
- };
@@ -1,139 +0,0 @@
1
- // Copyright 1999-2023. Plesk International GmbH. All rights reserved.
2
-
3
- import { useState } from 'react';
4
- import List from './List';
5
- import ListActions from './ListActions';
6
- import ListAction from './ListAction';
7
- import { jsx as _jsx } from "react/jsx-runtime";
8
- import { jsxs as _jsxs } from "react/jsx-runtime";
9
- export const Basic = args => /*#__PURE__*/_jsx(List, {
10
- ...args
11
- });
12
- Basic.args = {
13
- columns: [{
14
- key: 'col1',
15
- title: 'Countr 2',
16
- type: 'title'
17
- }, {
18
- key: 'col2',
19
- title: 'Population',
20
- align: 'right'
21
- }],
22
- data: [{
23
- key: '1',
24
- col1: 'China',
25
- col2: '1 433 783 686'
26
- }, {
27
- key: '2',
28
- col1: 'India',
29
- col2: '1 366 417 754'
30
- }, {
31
- key: '3',
32
- col1: 'United States',
33
- col2: '329 064 917'
34
- }, {
35
- key: '4',
36
- col1: ' Indonesia',
37
- col2: '270 625 568'
38
- }, {
39
- key: '5',
40
- col1: 'Pakistan',
41
- col2: '216 565 318'
42
- }]
43
- };
44
- export const Vertical = Basic.bind(null);
45
- Vertical.args = {
46
- ...Basic.args,
47
- vertical: 480
48
- };
49
- export const Nested = Basic.bind(null);
50
- Nested.args = {
51
- ...Basic.args,
52
- data: [{
53
- key: '1',
54
- col1: 'China',
55
- col2: '1 433 783 686',
56
- data: [{
57
- key: '2',
58
- col1: 'Guangdong',
59
- col2: '113 460 126'
60
- }, {
61
- key: '3',
62
- col1: 'Shandong',
63
- col2: '100 471 831'
64
- }]
65
- }, {
66
- key: '4',
67
- col1: 'India',
68
- col2: '1 366 417 754',
69
- data: [{
70
- key: '5',
71
- col1: 'Uttar Pradesh',
72
- col2: '237 882 725'
73
- }, {
74
- key: '6',
75
- col1: 'Bihar',
76
- col2: '124 799 926'
77
- }]
78
- }]
79
- };
80
- export const NestedFullFeatured = Nested.bind(null);
81
- NestedFullFeatured.args = {
82
- ...Nested.args,
83
- onSelectionChange: () => {},
84
- renderRowBody: () => null
85
- };
86
- export const ExpandedList = Nested.bind(null);
87
- ExpandedList.args = {
88
- ...Nested.args,
89
- onSelectionChange: () => {},
90
- renderRowBody: () => 'row body',
91
- expandedRows: ['1', '2', '4', '6']
92
- };
93
- export const Reorderable = args => {
94
- const {
95
- data: initialData,
96
- ...props
97
- } = args;
98
- const [data, setData] = useState(initialData);
99
- const handleReorderEnd = _ref => {
100
- let {
101
- oldIndex,
102
- newIndex
103
- } = _ref;
104
- const nextData = [...data];
105
- nextData.splice(newIndex, 0, nextData.splice(oldIndex, 1)[0]);
106
- setData(nextData);
107
- };
108
- return /*#__PURE__*/_jsx(Basic, {
109
- data: data,
110
- reorderable: true,
111
- onReorderEnd: handleReorderEnd,
112
- ...props
113
- });
114
- };
115
- Reorderable.args = {
116
- ...Basic.args
117
- };
118
- export const ReorderableFullFeatured = Reorderable.bind(null);
119
- ReorderableFullFeatured.args = {
120
- ...Reorderable.args,
121
- columns: [...Reorderable.args.columns, {
122
- key: 'actions',
123
- type: 'actions',
124
- render: () => /*#__PURE__*/_jsxs(ListActions, {
125
- children: [/*#__PURE__*/_jsx(ListAction, {
126
- icon: "clip",
127
- primary: true
128
- }), /*#__PURE__*/_jsx(ListAction, {
129
- icon: "clock",
130
- primary: true
131
- }), /*#__PURE__*/_jsx(ListAction, {
132
- icon: "clone",
133
- primary: true
134
- })]
135
- })
136
- }],
137
- onSelectionChange: () => {},
138
- renderRowBody: () => null
139
- };