intergalactic 15.52.0-prerelease.0-prerelease-3f2a94a7 → 15.53.0-prerelease-77cebec3

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 (437) hide show
  1. package/CHANGELOG.md +31 -4
  2. package/accordion/lib/cjs/Accordion.js +7 -6
  3. package/accordion/lib/cjs/Accordion.js.map +1 -1
  4. package/accordion/lib/cjs/style/accordion.shadow.css +2 -2
  5. package/accordion/lib/es6/Accordion.js +7 -6
  6. package/accordion/lib/es6/Accordion.js.map +1 -1
  7. package/accordion/lib/es6/style/accordion.shadow.css +2 -2
  8. package/animation/lib/cjs/Animation.js +11 -11
  9. package/animation/lib/cjs/Collapse.js +28 -28
  10. package/animation/lib/cjs/FadeInOut.js +28 -28
  11. package/animation/lib/cjs/Scale.js +28 -28
  12. package/animation/lib/cjs/Slide.js +28 -28
  13. package/animation/lib/cjs/Transform.js +28 -28
  14. package/animation/lib/es6/Animation.js +11 -11
  15. package/animation/lib/es6/Collapse.js +28 -28
  16. package/animation/lib/es6/FadeInOut.js +28 -28
  17. package/animation/lib/es6/Scale.js +28 -28
  18. package/animation/lib/es6/Slide.js +28 -28
  19. package/animation/lib/es6/Transform.js +28 -28
  20. package/badge/lib/cjs/Badge.js +6 -6
  21. package/badge/lib/es6/Badge.js +6 -6
  22. package/base-trigger/lib/cjs/BaseTrigger.js +18 -18
  23. package/base-trigger/lib/cjs/ButtonTrigger.js +3 -3
  24. package/base-trigger/lib/cjs/FilterTrigger.js +7 -7
  25. package/base-trigger/lib/cjs/LinkTrigger.js +12 -12
  26. package/base-trigger/lib/es6/BaseTrigger.js +18 -18
  27. package/base-trigger/lib/es6/ButtonTrigger.js +3 -3
  28. package/base-trigger/lib/es6/FilterTrigger.js +7 -7
  29. package/base-trigger/lib/es6/LinkTrigger.js +12 -12
  30. package/breadcrumbs/lib/cjs/Breadcrumbs.js +6 -6
  31. package/breadcrumbs/lib/es6/Breadcrumbs.js +6 -6
  32. package/button/lib/cjs/Button.js +26 -26
  33. package/button/lib/es6/Button.js +26 -26
  34. package/card/lib/cjs/Card.js +8 -8
  35. package/card/lib/es6/Card.js +8 -8
  36. package/carousel/lib/cjs/Carousel.js +16 -16
  37. package/carousel/lib/es6/Carousel.js +16 -16
  38. package/checkbox/lib/cjs/Checkbox.js +16 -16
  39. package/checkbox/lib/es6/Checkbox.js +16 -16
  40. package/color-picker/lib/cjs/ColorPicker.js +23 -23
  41. package/color-picker/lib/cjs/PaletteManager.js +23 -23
  42. package/color-picker/lib/cjs/components/InputColor.js +23 -23
  43. package/color-picker/lib/es6/ColorPicker.js +23 -23
  44. package/color-picker/lib/es6/PaletteManager.js +23 -23
  45. package/color-picker/lib/es6/components/InputColor.js +23 -23
  46. package/components.json +12 -12
  47. package/counter/lib/cjs/Counter.js +10 -10
  48. package/counter/lib/es6/Counter.js +10 -10
  49. package/d3-chart/Pattern.d.ts +336 -0
  50. package/d3-chart/Plot.d.ts +4 -0
  51. package/d3-chart/RadialTree.d.ts +7 -2
  52. package/d3-chart/component/Chart/AbstractChart.type.d.ts +3 -0
  53. package/d3-chart/component/ChartLegend/BaseLegend.type.d.ts +3 -0
  54. package/d3-chart/component/ChartLegend/LegendItem/LegendItem.type.d.ts +7 -1
  55. package/d3-chart/index.d.ts +3 -0
  56. package/d3-chart/lib/cjs/Area.js +25 -13
  57. package/d3-chart/lib/cjs/Area.js.map +1 -1
  58. package/d3-chart/lib/cjs/Axis.js +14 -14
  59. package/d3-chart/lib/cjs/Bar.js +23 -12
  60. package/d3-chart/lib/cjs/Bar.js.map +1 -1
  61. package/d3-chart/lib/cjs/Bubble.js +25 -13
  62. package/d3-chart/lib/cjs/Bubble.js.map +1 -1
  63. package/d3-chart/lib/cjs/Donut.js +28 -12
  64. package/d3-chart/lib/cjs/Donut.js.map +1 -1
  65. package/d3-chart/lib/cjs/Dots.js +55 -28
  66. package/d3-chart/lib/cjs/Dots.js.map +1 -1
  67. package/d3-chart/lib/cjs/GroupBar.js +4 -2
  68. package/d3-chart/lib/cjs/GroupBar.js.map +1 -1
  69. package/d3-chart/lib/cjs/HorizontalBar.js +23 -12
  70. package/d3-chart/lib/cjs/HorizontalBar.js.map +1 -1
  71. package/d3-chart/lib/cjs/Hover.js +9 -6
  72. package/d3-chart/lib/cjs/Hover.js.map +1 -1
  73. package/d3-chart/lib/cjs/Line.js +23 -15
  74. package/d3-chart/lib/cjs/Line.js.map +1 -1
  75. package/d3-chart/lib/cjs/Pattern.js +540 -0
  76. package/d3-chart/lib/cjs/Pattern.js.map +1 -0
  77. package/d3-chart/lib/cjs/Plot.js +7 -5
  78. package/d3-chart/lib/cjs/Plot.js.map +1 -1
  79. package/d3-chart/lib/cjs/Radar.js +126 -83
  80. package/d3-chart/lib/cjs/Radar.js.map +1 -1
  81. package/d3-chart/lib/cjs/RadialTree.js +126 -100
  82. package/d3-chart/lib/cjs/RadialTree.js.map +1 -1
  83. package/d3-chart/lib/cjs/ReferenceLine.js +9 -9
  84. package/d3-chart/lib/cjs/ScatterPlot.js +22 -10
  85. package/d3-chart/lib/cjs/ScatterPlot.js.map +1 -1
  86. package/d3-chart/lib/cjs/StackBar.js +8 -4
  87. package/d3-chart/lib/cjs/StackBar.js.map +1 -1
  88. package/d3-chart/lib/cjs/StackedArea.js +4 -1
  89. package/d3-chart/lib/cjs/StackedArea.js.map +1 -1
  90. package/d3-chart/lib/cjs/Tooltip.js +21 -11
  91. package/d3-chart/lib/cjs/Tooltip.js.map +1 -1
  92. package/d3-chart/lib/cjs/Venn.js +28 -12
  93. package/d3-chart/lib/cjs/Venn.js.map +1 -1
  94. package/d3-chart/lib/cjs/a11y/PlotA11yModule.js +2 -2
  95. package/d3-chart/lib/cjs/a11y/PlotA11yView.js +2 -2
  96. package/d3-chart/lib/cjs/component/Chart/AbstractChart.js +7 -3
  97. package/d3-chart/lib/cjs/component/Chart/AbstractChart.js.map +1 -1
  98. package/d3-chart/lib/cjs/component/Chart/AbstractChart.type.js.map +1 -1
  99. package/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.js +4 -2
  100. package/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.js.map +1 -1
  101. package/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.type.js.map +1 -1
  102. package/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js +4 -4
  103. package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js +80 -53
  104. package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js.map +1 -1
  105. package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.type.js +1 -1
  106. package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.type.js.map +1 -1
  107. package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/legend-item.shadow.css +17 -3
  108. package/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js +6 -6
  109. package/d3-chart/lib/cjs/index.js +19 -0
  110. package/d3-chart/lib/cjs/index.js.map +1 -1
  111. package/d3-chart/lib/cjs/style/area.shadow.css +6 -1
  112. package/d3-chart/lib/cjs/style/bar.shadow.css +7 -1
  113. package/d3-chart/lib/cjs/style/bubble.shadow.css +8 -1
  114. package/d3-chart/lib/cjs/style/donut.shadow.css +7 -1
  115. package/d3-chart/lib/cjs/style/dot.shadow.css +2 -2
  116. package/d3-chart/lib/cjs/style/radar.shadow.css +7 -1
  117. package/d3-chart/lib/cjs/style/radial-tree.shadow.css +5 -0
  118. package/d3-chart/lib/cjs/style/scatterplot.shadow.css +8 -1
  119. package/d3-chart/lib/cjs/style/tooltip.shadow.css +6 -6
  120. package/d3-chart/lib/cjs/style/venn.shadow.css +11 -0
  121. package/d3-chart/lib/cjs/types/Plot.d.js.map +1 -1
  122. package/d3-chart/lib/cjs/types/index.d.js +12 -0
  123. package/d3-chart/lib/cjs/types/index.d.js.map +1 -1
  124. package/d3-chart/lib/es6/Area.js +25 -13
  125. package/d3-chart/lib/es6/Area.js.map +1 -1
  126. package/d3-chart/lib/es6/Axis.js +14 -14
  127. package/d3-chart/lib/es6/Bar.js +23 -12
  128. package/d3-chart/lib/es6/Bar.js.map +1 -1
  129. package/d3-chart/lib/es6/Bubble.js +25 -13
  130. package/d3-chart/lib/es6/Bubble.js.map +1 -1
  131. package/d3-chart/lib/es6/Donut.js +28 -12
  132. package/d3-chart/lib/es6/Donut.js.map +1 -1
  133. package/d3-chart/lib/es6/Dots.js +56 -29
  134. package/d3-chart/lib/es6/Dots.js.map +1 -1
  135. package/d3-chart/lib/es6/GroupBar.js +4 -2
  136. package/d3-chart/lib/es6/GroupBar.js.map +1 -1
  137. package/d3-chart/lib/es6/HorizontalBar.js +23 -12
  138. package/d3-chart/lib/es6/HorizontalBar.js.map +1 -1
  139. package/d3-chart/lib/es6/Hover.js +9 -6
  140. package/d3-chart/lib/es6/Hover.js.map +1 -1
  141. package/d3-chart/lib/es6/Line.js +24 -16
  142. package/d3-chart/lib/es6/Line.js.map +1 -1
  143. package/d3-chart/lib/es6/Pattern.js +534 -0
  144. package/d3-chart/lib/es6/Pattern.js.map +1 -0
  145. package/d3-chart/lib/es6/Plot.js +7 -5
  146. package/d3-chart/lib/es6/Plot.js.map +1 -1
  147. package/d3-chart/lib/es6/Radar.js +126 -83
  148. package/d3-chart/lib/es6/Radar.js.map +1 -1
  149. package/d3-chart/lib/es6/RadialTree.js +127 -101
  150. package/d3-chart/lib/es6/RadialTree.js.map +1 -1
  151. package/d3-chart/lib/es6/ReferenceLine.js +9 -9
  152. package/d3-chart/lib/es6/ScatterPlot.js +22 -10
  153. package/d3-chart/lib/es6/ScatterPlot.js.map +1 -1
  154. package/d3-chart/lib/es6/StackBar.js +8 -4
  155. package/d3-chart/lib/es6/StackBar.js.map +1 -1
  156. package/d3-chart/lib/es6/StackedArea.js +4 -1
  157. package/d3-chart/lib/es6/StackedArea.js.map +1 -1
  158. package/d3-chart/lib/es6/Tooltip.js +22 -11
  159. package/d3-chart/lib/es6/Tooltip.js.map +1 -1
  160. package/d3-chart/lib/es6/Venn.js +28 -12
  161. package/d3-chart/lib/es6/Venn.js.map +1 -1
  162. package/d3-chart/lib/es6/a11y/PlotA11yModule.js +2 -2
  163. package/d3-chart/lib/es6/a11y/PlotA11yView.js +2 -2
  164. package/d3-chart/lib/es6/component/Chart/AbstractChart.js +7 -3
  165. package/d3-chart/lib/es6/component/Chart/AbstractChart.js.map +1 -1
  166. package/d3-chart/lib/es6/component/Chart/AbstractChart.type.js.map +1 -1
  167. package/d3-chart/lib/es6/component/ChartLegend/BaseLegend.js +4 -2
  168. package/d3-chart/lib/es6/component/ChartLegend/BaseLegend.js.map +1 -1
  169. package/d3-chart/lib/es6/component/ChartLegend/BaseLegend.type.js.map +1 -1
  170. package/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js +4 -4
  171. package/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js +80 -53
  172. package/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js.map +1 -1
  173. package/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.type.js +1 -1
  174. package/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.type.js.map +1 -1
  175. package/d3-chart/lib/es6/component/ChartLegend/LegendItem/legend-item.shadow.css +17 -3
  176. package/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js +6 -6
  177. package/d3-chart/lib/es6/index.js +1 -0
  178. package/d3-chart/lib/es6/index.js.map +1 -1
  179. package/d3-chart/lib/es6/style/area.shadow.css +6 -1
  180. package/d3-chart/lib/es6/style/bar.shadow.css +7 -1
  181. package/d3-chart/lib/es6/style/bubble.shadow.css +8 -1
  182. package/d3-chart/lib/es6/style/donut.shadow.css +7 -1
  183. package/d3-chart/lib/es6/style/dot.shadow.css +2 -2
  184. package/d3-chart/lib/es6/style/radar.shadow.css +7 -1
  185. package/d3-chart/lib/es6/style/radial-tree.shadow.css +5 -0
  186. package/d3-chart/lib/es6/style/scatterplot.shadow.css +8 -1
  187. package/d3-chart/lib/es6/style/tooltip.shadow.css +6 -6
  188. package/d3-chart/lib/es6/style/venn.shadow.css +11 -0
  189. package/d3-chart/lib/es6/types/Plot.d.js.map +1 -1
  190. package/d3-chart/lib/es6/types/index.d.js +3 -0
  191. package/d3-chart/lib/es6/types/index.d.js.map +1 -1
  192. package/d3-chart/lib/types/Pattern.d.ts +336 -0
  193. package/d3-chart/lib/types/Plot.d.ts +4 -0
  194. package/d3-chart/lib/types/RadialTree.d.ts +7 -2
  195. package/d3-chart/lib/types/component/Chart/AbstractChart.type.d.ts +3 -0
  196. package/d3-chart/lib/types/component/ChartLegend/BaseLegend.type.d.ts +3 -0
  197. package/d3-chart/lib/types/component/ChartLegend/LegendItem/LegendItem.type.d.ts +7 -1
  198. package/d3-chart/lib/types/index.d.ts +3 -0
  199. package/data-table/lib/cjs/Body.js +4 -4
  200. package/data-table/lib/cjs/DataTable.js +41 -41
  201. package/data-table/lib/cjs/Head.js +4 -4
  202. package/data-table/lib/es6/Body.js +4 -4
  203. package/data-table/lib/es6/DataTable.js +41 -41
  204. package/data-table/lib/es6/Head.js +4 -4
  205. package/date-picker/lib/cjs/components/Calendar.js +21 -21
  206. package/date-picker/lib/cjs/components/DateRangeComparatorAbstract.js +26 -26
  207. package/date-picker/lib/cjs/components/InputTrigger.js +26 -26
  208. package/date-picker/lib/cjs/components/PickerAbstract.js +26 -26
  209. package/date-picker/lib/cjs/components/RangePickerAbstract.js +34 -30
  210. package/date-picker/lib/cjs/components/RangePickerAbstract.js.map +1 -1
  211. package/date-picker/lib/es6/components/Calendar.js +21 -21
  212. package/date-picker/lib/es6/components/DateRangeComparatorAbstract.js +26 -26
  213. package/date-picker/lib/es6/components/InputTrigger.js +26 -26
  214. package/date-picker/lib/es6/components/PickerAbstract.js +26 -26
  215. package/date-picker/lib/es6/components/RangePickerAbstract.js +34 -30
  216. package/date-picker/lib/es6/components/RangePickerAbstract.js.map +1 -1
  217. package/divider/lib/cjs/Divider.js +9 -9
  218. package/divider/lib/es6/Divider.js +9 -9
  219. package/dot/lib/cjs/Dot.js +10 -10
  220. package/dot/lib/es6/Dot.js +10 -10
  221. package/drag-and-drop/index.d.ts +13 -2
  222. package/drag-and-drop/lib/cjs/DragAndDrop.js +108 -56
  223. package/drag-and-drop/lib/cjs/DragAndDrop.js.map +1 -1
  224. package/drag-and-drop/lib/cjs/index.d.js.map +1 -1
  225. package/drag-and-drop/lib/cjs/translations/de.json +5 -0
  226. package/drag-and-drop/lib/cjs/translations/en.json +5 -0
  227. package/drag-and-drop/lib/cjs/translations/es.json +5 -0
  228. package/drag-and-drop/lib/cjs/translations/fr.json +5 -0
  229. package/drag-and-drop/lib/cjs/translations/it.json +5 -0
  230. package/drag-and-drop/lib/cjs/translations/ja.json +5 -0
  231. package/drag-and-drop/lib/cjs/translations/ko.json +5 -0
  232. package/drag-and-drop/lib/cjs/translations/nl.json +5 -0
  233. package/drag-and-drop/lib/cjs/translations/pl.json +5 -0
  234. package/drag-and-drop/lib/cjs/translations/pt.json +5 -0
  235. package/drag-and-drop/lib/cjs/translations/sv.json +5 -0
  236. package/drag-and-drop/lib/cjs/translations/tr.json +5 -0
  237. package/drag-and-drop/lib/cjs/translations/vi.json +5 -0
  238. package/drag-and-drop/lib/cjs/translations/zh.json +5 -0
  239. package/drag-and-drop/lib/es6/DragAndDrop.js +108 -56
  240. package/drag-and-drop/lib/es6/DragAndDrop.js.map +1 -1
  241. package/drag-and-drop/lib/es6/index.d.js.map +1 -1
  242. package/drag-and-drop/lib/es6/translations/de.json +5 -0
  243. package/drag-and-drop/lib/es6/translations/en.json +5 -0
  244. package/drag-and-drop/lib/es6/translations/es.json +5 -0
  245. package/drag-and-drop/lib/es6/translations/fr.json +5 -0
  246. package/drag-and-drop/lib/es6/translations/it.json +5 -0
  247. package/drag-and-drop/lib/es6/translations/ja.json +5 -0
  248. package/drag-and-drop/lib/es6/translations/ko.json +5 -0
  249. package/drag-and-drop/lib/es6/translations/nl.json +5 -0
  250. package/drag-and-drop/lib/es6/translations/pl.json +5 -0
  251. package/drag-and-drop/lib/es6/translations/pt.json +5 -0
  252. package/drag-and-drop/lib/es6/translations/sv.json +5 -0
  253. package/drag-and-drop/lib/es6/translations/tr.json +5 -0
  254. package/drag-and-drop/lib/es6/translations/vi.json +5 -0
  255. package/drag-and-drop/lib/es6/translations/zh.json +5 -0
  256. package/drag-and-drop/lib/types/index.d.ts +13 -2
  257. package/dropdown/lib/cjs/Dropdown.js +2 -2
  258. package/dropdown/lib/es6/Dropdown.js +2 -2
  259. package/dropdown-menu/lib/cjs/DropdownMenu.js +12 -12
  260. package/dropdown-menu/lib/cjs/styleScrollArea.js +6 -6
  261. package/dropdown-menu/lib/es6/DropdownMenu.js +12 -12
  262. package/dropdown-menu/lib/es6/styleScrollArea.js +6 -6
  263. package/ellipsis/lib/cjs/Ellipsis.js +10 -10
  264. package/ellipsis/lib/es6/Ellipsis.js +10 -10
  265. package/errors/lib/cjs/Error.js +9 -9
  266. package/errors/lib/es6/Error.js +9 -9
  267. package/feature-popover/lib/cjs/FeaturePopover.js +10 -10
  268. package/feature-popover/lib/es6/FeaturePopover.js +10 -10
  269. package/feedback-form/lib/cjs/FeedbackForm.js +7 -7
  270. package/feedback-form/lib/es6/FeedbackForm.js +7 -7
  271. package/flags/lib/cjs/Flags.js +3 -3
  272. package/flags/lib/es6/Flags.js +3 -3
  273. package/flags/lib/sprites/sprite@1x.css +256 -256
  274. package/flags/lib/sprites/sprite@2x.css +257 -257
  275. package/flex-box/lib/cjs/Box/useBox.js +3 -3
  276. package/flex-box/lib/cjs/Flex/useFlex.js +3 -3
  277. package/flex-box/lib/es6/Box/useBox.js +3 -3
  278. package/flex-box/lib/es6/Flex/useFlex.js +3 -3
  279. package/format-text/lib/cjs/FormatText.js +5 -5
  280. package/format-text/lib/es6/FormatText.js +5 -5
  281. package/fullscreen-modal/lib/cjs/FullscreenModal.js +13 -13
  282. package/fullscreen-modal/lib/es6/FullscreenModal.js +13 -13
  283. package/grid/lib/cjs/Grid.js +114 -114
  284. package/grid/lib/es6/Grid.js +114 -114
  285. package/icon/color/Confluence/l/index.js +4 -4
  286. package/icon/color/Confluence/l/index.mjs +4 -4
  287. package/icon/color/Confluence/m/index.js +4 -4
  288. package/icon/color/Confluence/m/index.mjs +4 -4
  289. package/icon/color/MicrosoftOffice/l/index.js +10 -10
  290. package/icon/color/MicrosoftOffice/l/index.mjs +10 -10
  291. package/icon/color/MicrosoftOffice/m/index.js +10 -10
  292. package/icon/color/MicrosoftOffice/m/index.mjs +10 -10
  293. package/icon/lib/cjs/Icon.js +5 -5
  294. package/icon/lib/es6/Icon.js +5 -5
  295. package/icon/pay/Discover/l/index.js +1 -1
  296. package/icon/pay/Discover/l/index.mjs +1 -1
  297. package/icon/pay/Discover/m/index.js +1 -1
  298. package/icon/pay/Discover/m/index.mjs +1 -1
  299. package/icon/pay/JCB/l/index.js +10 -10
  300. package/icon/pay/JCB/l/index.mjs +10 -10
  301. package/icon/pay/JCB/m/index.js +10 -10
  302. package/icon/pay/JCB/m/index.mjs +10 -10
  303. package/icon/pay/Visa/l/index.js +2 -2
  304. package/icon/pay/Visa/l/index.mjs +2 -2
  305. package/icon/pay/Visa/m/index.js +2 -2
  306. package/icon/pay/Visa/m/index.mjs +2 -2
  307. package/illustration/lib/cjs/index.js +1 -1
  308. package/illustration/lib/es6/index.js +1 -1
  309. package/inline-edit/lib/cjs/InlineEdit.js +4 -4
  310. package/inline-edit/lib/es6/InlineEdit.js +4 -4
  311. package/inline-input/lib/cjs/InlineInput.js +18 -18
  312. package/inline-input/lib/es6/InlineInput.js +18 -18
  313. package/input/lib/cjs/Input.js +17 -17
  314. package/input/lib/es6/Input.js +17 -17
  315. package/input-mask/lib/cjs/InputMask.js +6 -6
  316. package/input-mask/lib/es6/InputMask.js +6 -6
  317. package/input-number/lib/cjs/InputNumber.js +9 -9
  318. package/input-number/lib/es6/InputNumber.js +9 -9
  319. package/input-tags/lib/cjs/InputTags.js +12 -12
  320. package/input-tags/lib/es6/InputTags.js +12 -12
  321. package/link/lib/cjs/Link.js +12 -12
  322. package/link/lib/es6/Link.js +12 -12
  323. package/mini-chart/lib/cjs/component/score/Donut.js +9 -9
  324. package/mini-chart/lib/cjs/component/score/Line.js +17 -17
  325. package/mini-chart/lib/cjs/component/trend/Bar.js +7 -7
  326. package/mini-chart/lib/cjs/component/trend/Line.js +7 -7
  327. package/mini-chart/lib/es6/component/score/Donut.js +9 -9
  328. package/mini-chart/lib/es6/component/score/Line.js +17 -17
  329. package/mini-chart/lib/es6/component/trend/Bar.js +7 -7
  330. package/mini-chart/lib/es6/component/trend/Line.js +7 -7
  331. package/modal/lib/cjs/Modal.js +7 -7
  332. package/modal/lib/es6/Modal.js +7 -7
  333. package/notice/lib/cjs/Notice.js +13 -13
  334. package/notice/lib/es6/Notice.js +13 -13
  335. package/notice-bubble/lib/cjs/NoticeBubble.js +12 -12
  336. package/notice-bubble/lib/es6/NoticeBubble.js +12 -12
  337. package/notice-global/lib/cjs/NoticeGlobal.js +11 -11
  338. package/notice-global/lib/es6/NoticeGlobal.js +11 -11
  339. package/package.json +2 -2
  340. package/pagination/lib/cjs/Pagination.js +10 -10
  341. package/pagination/lib/es6/Pagination.js +10 -10
  342. package/pills/lib/cjs/Pills.js +44 -57
  343. package/pills/lib/cjs/Pills.js.map +1 -1
  344. package/pills/lib/cjs/style/pills.shadow.css +3 -9
  345. package/pills/lib/es6/Pills.js +44 -57
  346. package/pills/lib/es6/Pills.js.map +1 -1
  347. package/pills/lib/es6/style/pills.shadow.css +3 -9
  348. package/popper/lib/cjs/Popper.js +6 -6
  349. package/popper/lib/es6/Popper.js +6 -6
  350. package/product-head/lib/cjs/Info.js +4 -4
  351. package/product-head/lib/cjs/ProductHead.js +5 -5
  352. package/product-head/lib/cjs/Title.js +4 -4
  353. package/product-head/lib/es6/Info.js +4 -4
  354. package/product-head/lib/es6/ProductHead.js +5 -5
  355. package/product-head/lib/es6/Title.js +4 -4
  356. package/progress-bar/lib/cjs/ProgressBar.js +15 -15
  357. package/progress-bar/lib/es6/ProgressBar.js +15 -15
  358. package/radio/lib/cjs/Radio.js +14 -14
  359. package/radio/lib/es6/Radio.js +14 -14
  360. package/scroll-area/lib/cjs/ScrollArea.js +9 -9
  361. package/scroll-area/lib/cjs/ScrollBar.js +5 -5
  362. package/scroll-area/lib/es6/ScrollArea.js +9 -9
  363. package/scroll-area/lib/es6/ScrollBar.js +5 -5
  364. package/select/lib/cjs/InputSearch.js +6 -6
  365. package/select/lib/cjs/Select.js +7 -7
  366. package/select/lib/es6/InputSearch.js +6 -6
  367. package/select/lib/es6/Select.js +7 -7
  368. package/side-panel/lib/cjs/SidePanel.js +15 -15
  369. package/side-panel/lib/es6/SidePanel.js +15 -15
  370. package/skeleton/lib/cjs/Charts/Area.js +9 -9
  371. package/skeleton/lib/cjs/Charts/Bar.js +9 -9
  372. package/skeleton/lib/cjs/Charts/Bubble.js +9 -9
  373. package/skeleton/lib/cjs/Charts/Donut.js +9 -9
  374. package/skeleton/lib/cjs/Charts/Histogram.js +9 -9
  375. package/skeleton/lib/cjs/Charts/Line.js +9 -9
  376. package/skeleton/lib/cjs/Charts/RadialTree.js +9 -9
  377. package/skeleton/lib/cjs/Charts/ScatterPlot.js +9 -9
  378. package/skeleton/lib/cjs/Charts/Venn.js +9 -9
  379. package/skeleton/lib/cjs/Skeleton.js +8 -8
  380. package/skeleton/lib/es6/Charts/Area.js +9 -9
  381. package/skeleton/lib/es6/Charts/Bar.js +9 -9
  382. package/skeleton/lib/es6/Charts/Bubble.js +9 -9
  383. package/skeleton/lib/es6/Charts/Donut.js +9 -9
  384. package/skeleton/lib/es6/Charts/Histogram.js +9 -9
  385. package/skeleton/lib/es6/Charts/Line.js +9 -9
  386. package/skeleton/lib/es6/Charts/RadialTree.js +9 -9
  387. package/skeleton/lib/es6/Charts/ScatterPlot.js +9 -9
  388. package/skeleton/lib/es6/Charts/Venn.js +9 -9
  389. package/skeleton/lib/es6/Skeleton.js +8 -8
  390. package/slider/lib/cjs/Slider.js +7 -7
  391. package/slider/lib/es6/Slider.js +7 -7
  392. package/spin/lib/cjs/Spin.js +13 -13
  393. package/spin/lib/es6/Spin.js +13 -13
  394. package/spin-container/lib/cjs/SpinContainer.js +8 -8
  395. package/spin-container/lib/es6/SpinContainer.js +8 -8
  396. package/sticky/lib/cjs/Sticky.js +2 -2
  397. package/sticky/lib/es6/Sticky.js +2 -2
  398. package/switch/lib/cjs/Switch.js +21 -21
  399. package/switch/lib/es6/Switch.js +21 -21
  400. package/tab-line/lib/cjs/TabLine.js +13 -13
  401. package/tab-line/lib/es6/TabLine.js +13 -13
  402. package/tab-panel/lib/cjs/TabPanel.js +8 -8
  403. package/tab-panel/lib/es6/TabPanel.js +8 -8
  404. package/tag/lib/cjs/Tag.js +19 -19
  405. package/tag/lib/es6/Tag.js +19 -19
  406. package/textarea/lib/cjs/Textarea.js +8 -8
  407. package/textarea/lib/es6/Textarea.js +8 -8
  408. package/time-picker/lib/cjs/TimePicker.js +12 -12
  409. package/time-picker/lib/es6/TimePicker.js +12 -12
  410. package/tooltip/lib/cjs/Tooltip.js +6 -6
  411. package/tooltip/lib/es6/Tooltip.js +6 -6
  412. package/typography/lib/cjs/Blockquote.js +4 -4
  413. package/typography/lib/cjs/Hint.js +7 -7
  414. package/typography/lib/cjs/List.js +5 -5
  415. package/typography/lib/cjs/Text.js +34 -34
  416. package/typography/lib/es6/Blockquote.js +4 -4
  417. package/typography/lib/es6/Hint.js +7 -7
  418. package/typography/lib/es6/List.js +5 -5
  419. package/typography/lib/es6/Text.js +34 -34
  420. package/utils/lib/components/invalid-state-pattern/InvalidStatePattern.js +2 -2
  421. package/utils/lib/components/invalid-state-pattern/InvalidStatePattern.mjs +2 -2
  422. package/utils/lib/enhances/a11yEnhance.d.ts +9 -3
  423. package/utils/lib/enhances/a11yEnhance.js +11 -11
  424. package/utils/lib/enhances/a11yEnhance.js.map +1 -1
  425. package/utils/lib/enhances/a11yEnhance.mjs +11 -11
  426. package/utils/lib/enhances/a11yEnhance.mjs.map +1 -1
  427. package/utils/lib/injectStyle.js +1 -1
  428. package/utils/lib/injectStyle.mjs +1 -1
  429. package/utils/lib/themes/auto.css +3 -3
  430. package/utils/lib/themes/dark.css +2 -2
  431. package/utils/lib/themes/dark.json +1 -1
  432. package/utils/lib/themes/default.css +1 -1
  433. package/utils/lib/themes/light.css +1 -1
  434. package/widget-empty/lib/cjs/WidgetEmpty.js +5 -5
  435. package/widget-empty/lib/es6/WidgetEmpty.js +5 -5
  436. package/wizard/lib/cjs/Wizard.js +11 -11
  437. package/wizard/lib/es6/Wizard.js +11 -11
@@ -18,18 +18,20 @@ import assignProps from 'intergalactic/utils/lib/assignProps';
18
18
  import getOriginChildren from 'intergalactic/utils/lib/getOriginChildren';
19
19
  import canUseDOM from 'intergalactic/utils/lib/canUseDOM';
20
20
  import createElement from './createElement';
21
- import { measureText } from './utils';
21
+ import { getChartDefaultColorName, measureText } from './utils';
22
+ import { PatternSymbol, getPatternSymbolSize } from './Pattern';
22
23
  /*__reshadow-styles__:"./style/radial-tree.shadow.css"*/
23
- var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SRadian_1d7ox_gg_{cursor:pointer;fill:var(--intergalactic-text-large-info, #008ff8)}.___SLine_1d7ox_gg_{stroke:var(--intergalactic-text-large-info, #008ff8)}.___SLine_1d7ox_gg_.__color_1d7ox_gg_{stroke:var(--color_1d7ox)}.___SCap_1d7ox_gg_.__transparent_1d7ox_gg_,.___SIcon_1d7ox_gg_.__transparent_1d7ox_gg_,.___SLabel_1d7ox_gg_.__transparent_1d7ox_gg_,.___SLine_1d7ox_gg_.__transparent_1d7ox_gg_{opacity:.3}.___SCap_1d7ox_gg_{transition:r .1s}.___SLabel_1d7ox_gg_{fill:var(--color_1d7ox)}@media (hover:hover){.___SRadian_1d7ox_gg_:hover .___SLabel_1d7ox_gg_{cursor:pointer;filter:brightness(.6)}}@media (prefers-reduced-motion){.___SLineCap_1d7ox_gg_{transition:none}}" /*__inner_css_end__*/, "1d7ox_gg_") /*__reshadow_css_end__*/, {
24
- "__SRadian": "___SRadian_1d7ox_gg_",
25
- "__SLine": "___SLine_1d7ox_gg_",
26
- "_color": "__color_1d7ox_gg_",
27
- "--color": "--color_1d7ox",
28
- "_transparent": "__transparent_1d7ox_gg_",
29
- "__SCap": "___SCap_1d7ox_gg_",
30
- "__SIcon": "___SIcon_1d7ox_gg_",
31
- "__SLabel": "___SLabel_1d7ox_gg_",
32
- "__SLineCap": "___SLineCap_1d7ox_gg_"
24
+ var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SRadian_1xdaq_gg_{cursor:pointer;fill:var(--intergalactic-text-large-info, #008ff8)}.___SLine_1xdaq_gg_{stroke:var(--intergalactic-text-large-info, #008ff8)}.___SLine_1xdaq_gg_.__color_1xdaq_gg_{stroke:var(--color_1xdaq)}.___SLine_1xdaq_gg_.__transparent_1xdaq_gg_{opacity:.3}.___SCap_1xdaq_gg_{transition:r .1s}.___SCap_1xdaq_gg_.__pattern_1xdaq_gg_{stroke:var(--intergalactic-chart-grid-border, #ffffff);stroke-width:1px}.___SCap_1xdaq_gg_.__transparent_1xdaq_gg_,.___SIcon_1xdaq_gg_.__transparent_1xdaq_gg_,.___SLabel_1xdaq_gg_.__transparent_1xdaq_gg_{opacity:.3}.___SLabel_1xdaq_gg_{fill:var(--color_1xdaq)}@media (hover:hover){.___SRadian_1xdaq_gg_:hover .___SLabel_1xdaq_gg_{cursor:pointer;filter:brightness(.6)}}@media (prefers-reduced-motion){.___SLineCap_1xdaq_gg_{transition:none}}" /*__inner_css_end__*/, "1xdaq_gg_") /*__reshadow_css_end__*/, {
25
+ "__SRadian": "___SRadian_1xdaq_gg_",
26
+ "__SLine": "___SLine_1xdaq_gg_",
27
+ "_color": "__color_1xdaq_gg_",
28
+ "--color": "--color_1xdaq",
29
+ "_transparent": "__transparent_1xdaq_gg_",
30
+ "__SCap": "___SCap_1xdaq_gg_",
31
+ "_pattern": "__pattern_1xdaq_gg_",
32
+ "__SIcon": "___SIcon_1xdaq_gg_",
33
+ "__SLabel": "___SLabel_1xdaq_gg_",
34
+ "__SLineCap": "___SLineCap_1xdaq_gg_"
33
35
  });
34
36
  var baseAngle = -Math.PI / 2; // The top vertical line
35
37
  var RadialTreeBase = /*#__PURE__*/function (_Component) {
@@ -193,8 +195,8 @@ var RadialTreeBase = /*#__PURE__*/function (_Component) {
193
195
  var _this$asProps2 = this.asProps,
194
196
  data = _this$asProps2.data,
195
197
  textSize = _this$asProps2.textSize;
196
- var widths = data.map(function (_ref9) {
197
- var label = _ref9.label;
198
+ var widths = data.map(function (_ref10) {
199
+ var label = _ref10.label;
198
200
  return measureText(label, textSize);
199
201
  });
200
202
  return Math.max.apply(Math, _toConsumableArray(widths));
@@ -274,9 +276,9 @@ var RadialTreeRadian = /*#__PURE__*/function (_Component2) {
274
276
  }
275
277
  _createClass(RadialTreeRadian, [{
276
278
  key: "getInteractiveAreaProps",
277
- value: function getInteractiveAreaProps(_ref11, index) {
279
+ value: function getInteractiveAreaProps(_ref12, index) {
278
280
  var _$rootProps$data;
279
- var $rootProps = _ref11.$rootProps;
281
+ var $rootProps = _ref12.$rootProps;
280
282
  var data = (_$rootProps$data = $rootProps.data) === null || _$rootProps$data === void 0 ? void 0 : _$rootProps$data[index];
281
283
  var _this$computeRadianPo = this.computeRadianPosition(data, index),
282
284
  xStart = _this$computeRadianPo.xStart,
@@ -294,9 +296,9 @@ var RadialTreeRadian = /*#__PURE__*/function (_Component2) {
294
296
  }
295
297
  }, {
296
298
  key: "getLineProps",
297
- value: function getLineProps(_ref12, index) {
298
- var _$rootProps$data2, _color, _ref13;
299
- var $rootProps = _ref12.$rootProps;
299
+ value: function getLineProps(_ref13, index) {
300
+ var _$rootProps$data2, _color, _ref14;
301
+ var $rootProps = _ref13.$rootProps;
300
302
  var data = (_$rootProps$data2 = $rootProps.data) === null || _$rootProps$data2 === void 0 ? void 0 : _$rootProps$data2[index];
301
303
  var _this$computeRadianPo2 = this.computeRadianPosition(data, index),
302
304
  xStart = _this$computeRadianPo2.xStart,
@@ -308,7 +310,7 @@ var RadialTreeRadian = /*#__PURE__*/function (_Component2) {
308
310
  transparent = _this$asProps5.transparent,
309
311
  resolveColor = _this$asProps5.resolveColor;
310
312
  var color = (_color = data.color) !== null && _color !== void 0 ? _color : this.asProps.color;
311
- return _ref13 = {
313
+ return _ref14 = {
312
314
  x1: xStart,
313
315
  y1: yStart,
314
316
  x2: xEnd,
@@ -316,13 +318,13 @@ var RadialTreeRadian = /*#__PURE__*/function (_Component2) {
316
318
  stroke: color,
317
319
  resolveColor: resolveColor,
318
320
  transparent: transparent
319
- }, _defineProperty(_ref13, 'data-x1', xStart), _defineProperty(_ref13, 'data-y1', yStart), _defineProperty(_ref13, 'data-x2', xEnd), _defineProperty(_ref13, 'data-y2', yEnd), _defineProperty(_ref13, 'data-radial-animation', "".concat(uid, "-line")), _defineProperty(_ref13, 'data-radian-index', index), _ref13;
321
+ }, _defineProperty(_ref14, 'data-x1', xStart), _defineProperty(_ref14, 'data-y1', yStart), _defineProperty(_ref14, 'data-x2', xEnd), _defineProperty(_ref14, 'data-y2', yEnd), _defineProperty(_ref14, 'data-radial-animation', "".concat(uid, "-line")), _defineProperty(_ref14, 'data-radian-index', index), _ref14;
320
322
  }
321
323
  }, {
322
324
  key: "getCapProps",
323
- value: function getCapProps(_ref14, index) {
324
- var _$rootProps$data3, _color2, _ref15;
325
- var $rootProps = _ref14.$rootProps;
325
+ value: function getCapProps(_ref15, index) {
326
+ var _$rootProps$data3, _color2, _ref16;
327
+ var $rootProps = _ref15.$rootProps;
326
328
  var data = (_$rootProps$data3 = $rootProps.data) === null || _$rootProps$data3 === void 0 ? void 0 : _$rootProps$data3[index];
327
329
  var _this$computeRadianPo3 = this.computeRadianPosition(data, index),
328
330
  xEnd = _this$computeRadianPo3.xEnd,
@@ -331,18 +333,19 @@ var RadialTreeRadian = /*#__PURE__*/function (_Component2) {
331
333
  var _this$asProps6 = this.asProps,
332
334
  uid = _this$asProps6.uid,
333
335
  transparent = _this$asProps6.transparent,
334
- resolveColor = _this$asProps6.resolveColor;
336
+ resolveColor = _this$asProps6.resolveColor,
337
+ patterns = _this$asProps6.patterns;
335
338
  var color = (_color2 = data.color) !== null && _color2 !== void 0 ? _color2 : this.asProps.color;
336
- return _ref15 = {
339
+ return _ref16 = {
337
340
  x: xEnd,
338
341
  y: yEnd
339
- }, _defineProperty(_ref15, 'data-cx', xEnd), _defineProperty(_ref15, 'data-cy', yEnd), _defineProperty(_ref15, "radius", capSize), _defineProperty(_ref15, "color", color), _defineProperty(_ref15, "resolveColor", resolveColor), _defineProperty(_ref15, "transparent", transparent), _defineProperty(_ref15, 'data-radial-animation', "".concat(uid, "-cap-circle")), _defineProperty(_ref15, 'data-radian-index', index), _ref15;
342
+ }, _defineProperty(_ref16, 'data-cx', xEnd), _defineProperty(_ref16, 'data-cy', yEnd), _defineProperty(_ref16, "radius", capSize), _defineProperty(_ref16, "color", color), _defineProperty(_ref16, "resolveColor", resolveColor), _defineProperty(_ref16, "transparent", transparent), _defineProperty(_ref16, "patterns", patterns), _defineProperty(_ref16, "uid", "".concat(uid, "-cap-").concat(index)), _defineProperty(_ref16, 'data-radial-animation', "".concat(uid, "-cap-circle")), _defineProperty(_ref16, 'data-radian-index', index), _ref16;
340
343
  }
341
344
  }, {
342
345
  key: "getIconProps",
343
- value: function getIconProps(_ref16, index) {
344
- var _$rootProps$data4, _iconColor, _iconSize, _icon, _ref17;
345
- var $rootProps = _ref16.$rootProps;
346
+ value: function getIconProps(_ref17, index) {
347
+ var _$rootProps$data4, _iconColor, _iconSize, _icon, _ref18;
348
+ var $rootProps = _ref17.$rootProps;
346
349
  var data = (_$rootProps$data4 = $rootProps.data) === null || _$rootProps$data4 === void 0 ? void 0 : _$rootProps$data4[index];
347
350
  var _this$computeRadianPo4 = this.computeRadianPosition(data, index),
348
351
  xEnd = _this$computeRadianPo4.xEnd,
@@ -356,16 +359,16 @@ var RadialTreeRadian = /*#__PURE__*/function (_Component2) {
356
359
  var icon = (_icon = data.icon) !== null && _icon !== void 0 ? _icon : this.asProps.icon;
357
360
  var x = xEnd - iconSize / 2;
358
361
  var y = yEnd - iconSize / 2;
359
- return _ref17 = {
362
+ return _ref18 = {
360
363
  x: x,
361
364
  y: y
362
- }, _defineProperty(_ref17, 'data-x', x), _defineProperty(_ref17, 'data-y', y), _defineProperty(_ref17, "iconSize", iconSize), _defineProperty(_ref17, "color", iconColor !== null && iconColor !== void 0 ? iconColor : '#fff'), _defineProperty(_ref17, "resolveColor", resolveColor), _defineProperty(_ref17, 'data-radial-animation', "".concat(uid, "-cap-icon")), _defineProperty(_ref17, 'data-radian-index', index), _defineProperty(_ref17, "icon", icon), _defineProperty(_ref17, "tag", icon), _defineProperty(_ref17, "isActive", isActive), _ref17;
365
+ }, _defineProperty(_ref18, 'data-x', x), _defineProperty(_ref18, 'data-y', y), _defineProperty(_ref18, "iconSize", iconSize), _defineProperty(_ref18, "color", iconColor !== null && iconColor !== void 0 ? iconColor : '#fff'), _defineProperty(_ref18, "resolveColor", resolveColor), _defineProperty(_ref18, 'data-radial-animation', "".concat(uid, "-cap-icon")), _defineProperty(_ref18, 'data-radian-index', index), _defineProperty(_ref18, "icon", icon), _defineProperty(_ref18, "tag", icon), _defineProperty(_ref18, "isActive", isActive), _ref18;
363
366
  }
364
367
  }, {
365
368
  key: "getLabelProps",
366
- value: function getLabelProps(_ref18, index) {
367
- var _$rootProps$data5, _color3, _ref20;
368
- var $rootProps = _ref18.$rootProps;
369
+ value: function getLabelProps(_ref19, index) {
370
+ var _$rootProps$data5, _color3, _ref21;
371
+ var $rootProps = _ref19.$rootProps;
369
372
  var data = (_$rootProps$data5 = $rootProps.data) === null || _$rootProps$data5 === void 0 ? void 0 : _$rootProps$data5[index];
370
373
  var _this$computeRadianPo5 = this.computeRadianPosition(data, index),
371
374
  xLabelCenter = _this$computeRadianPo5.xLabelCenter,
@@ -377,14 +380,14 @@ var RadialTreeRadian = /*#__PURE__*/function (_Component2) {
377
380
  textSize = _this$asProps8.textSize,
378
381
  transparent = _this$asProps8.transparent,
379
382
  resolveColor = _this$asProps8.resolveColor;
380
- var _ref19 = data,
381
- label = _ref19.label;
383
+ var _ref20 = data,
384
+ label = _ref20.label;
382
385
  var color = (_color3 = data.color) !== null && _color3 !== void 0 ? _color3 : this.asProps.color;
383
- return _ref20 = {
386
+ return _ref21 = {
384
387
  x: xLabelCenter,
385
388
  y: yLabelCenter,
386
389
  angle: labelAngle
387
- }, _defineProperty(_ref20, 'data-radial-animation', "".concat(uid, "-label")), _defineProperty(_ref20, 'data-radian-index', index), _defineProperty(_ref20, "label", label), _defineProperty(_ref20, "color", color), _defineProperty(_ref20, "resolveColor", resolveColor), _defineProperty(_ref20, "isHorizontal", isHorizontal), _defineProperty(_ref20, "textSize", textSize), _defineProperty(_ref20, "transparent", transparent), _ref20;
390
+ }, _defineProperty(_ref21, 'data-radial-animation', "".concat(uid, "-label")), _defineProperty(_ref21, 'data-radian-index', index), _defineProperty(_ref21, "label", label), _defineProperty(_ref21, "color", color), _defineProperty(_ref21, "resolveColor", resolveColor), _defineProperty(_ref21, "isHorizontal", isHorizontal), _defineProperty(_ref21, "textSize", textSize), _defineProperty(_ref21, "transparent", transparent), _ref21;
388
391
  }
389
392
  }, {
390
393
  key: "getRadianKey",
@@ -494,10 +497,10 @@ _defineProperty(RadialTreeRadian, "defaultProps", {
494
497
  iconSize: 16,
495
498
  textSize: 14
496
499
  });
497
- var InteractiveArea = function InteractiveArea(_ref21) {
500
+ var InteractiveArea = function InteractiveArea(_ref22) {
498
501
  var _ref4;
499
- var SInteractiveArea = _ref21.Element,
500
- styles = _ref21.styles;
502
+ var SInteractiveArea = _ref22.Element,
503
+ styles = _ref22.styles;
501
504
  return _ref4 = sstyled(styles), /*#__PURE__*/React.createElement(SInteractiveArea, _ref4.cn("SInteractiveArea", {
502
505
  "stroke": 'transparent',
503
506
  "render": 'line'
@@ -506,13 +509,13 @@ var InteractiveArea = function InteractiveArea(_ref21) {
506
509
 
507
510
  /** @deprecated */
508
511
 
509
- var Line = function Line(_ref22) {
512
+ var Line = function Line(_ref23) {
510
513
  var _ref5;
511
- var SLine = _ref22.Element,
512
- styles = _ref22.styles,
513
- stroke = _ref22.stroke,
514
- resolveColor = _ref22.resolveColor,
515
- transparent = _ref22.transparent;
514
+ var SLine = _ref23.Element,
515
+ styles = _ref23.styles,
516
+ stroke = _ref23.stroke,
517
+ resolveColor = _ref23.resolveColor,
518
+ transparent = _ref23.transparent;
516
519
  return _ref5 = sstyled(styles), /*#__PURE__*/React.createElement(SLine, _ref5.cn("SLine", {
517
520
  "render": 'line',
518
521
  "stroke": resolveColor(stroke),
@@ -522,42 +525,65 @@ var Line = function Line(_ref22) {
522
525
 
523
526
  /** @deprecated */
524
527
 
525
- var Cap = function Cap(_ref23) {
526
- var _ref6;
527
- var SCap = _ref23.Element,
528
- styles = _ref23.styles,
529
- x = _ref23.x,
530
- y = _ref23.y,
531
- radius = _ref23.radius,
532
- color = _ref23.color,
533
- resolveColor = _ref23.resolveColor,
534
- transparent = _ref23.transparent;
535
- return _ref6 = sstyled(styles), /*#__PURE__*/React.createElement(SCap, _ref6.cn("SCap", {
536
- "render": 'circle',
537
- "cx": x,
538
- "cy": y,
539
- "r": radius,
528
+ var Cap = function Cap(_ref24) {
529
+ var _ref7;
530
+ var SCap = _ref24.Element,
531
+ styles = _ref24.styles,
532
+ _ref24$x = _ref24.x,
533
+ x = _ref24$x === void 0 ? 0 : _ref24$x,
534
+ _ref24$y = _ref24.y,
535
+ y = _ref24$y === void 0 ? 0 : _ref24$y,
536
+ radius = _ref24.radius,
537
+ color = _ref24.color,
538
+ resolveColor = _ref24.resolveColor,
539
+ transparent = _ref24.transparent,
540
+ patterns = _ref24.patterns;
541
+ if (!patterns) {
542
+ var _ref6;
543
+ return _ref6 = sstyled(styles), /*#__PURE__*/React.createElement(SCap, _ref6.cn("SCap", {
544
+ "render": 'circle',
545
+ "cx": x,
546
+ "cy": y,
547
+ "r": radius,
548
+ "fill": resolveColor(color),
549
+ "transparent": transparent
550
+ }));
551
+ }
552
+ var patternKey = color || getChartDefaultColorName(0);
553
+ var _getPatternSymbolSize = getPatternSymbolSize({
554
+ patternKey: patternKey,
555
+ patterns: patterns
556
+ }),
557
+ _getPatternSymbolSize2 = _slicedToArray(_getPatternSymbolSize, 2),
558
+ width = _getPatternSymbolSize2[0],
559
+ height = _getPatternSymbolSize2[1];
560
+ return _ref7 = sstyled(styles), /*#__PURE__*/React.createElement(SCap, _ref7.cn("SCap", {
561
+ "render": PatternSymbol,
562
+ "patternKey": color,
563
+ "x": x - (width || 0) / 2,
564
+ "y": y - (height || 0) / 2,
540
565
  "fill": resolveColor(color),
541
- "transparent": transparent
566
+ "transparent": transparent,
567
+ "pattern": true
542
568
  }));
543
569
  };
544
570
 
545
571
  /** @deprecated */
546
572
 
547
- var Icon = function Icon(_ref24) {
548
- var _ref7;
549
- var SIcon = _ref24.Element,
550
- styles = _ref24.styles,
551
- isActive = _ref24.isActive,
552
- tag = _ref24.tag,
553
- x = _ref24.x,
554
- y = _ref24.y,
555
- iconSize = _ref24.iconSize,
556
- transparent = _ref24.transparent;
573
+ var Icon = function Icon(_ref25) {
574
+ var _ref8;
575
+ var SIcon = _ref25.Element,
576
+ styles = _ref25.styles,
577
+ isActive = _ref25.isActive,
578
+ tag = _ref25.tag,
579
+ x = _ref25.x,
580
+ y = _ref25.y,
581
+ iconSize = _ref25.iconSize,
582
+ transparent = _ref25.transparent;
557
583
  if (!(isActive && tag)) return null;
558
584
  var width = iconSize;
559
585
  var height = iconSize;
560
- return _ref7 = sstyled(styles), /*#__PURE__*/React.createElement(SIcon, _ref7.cn("SIcon", {
586
+ return _ref8 = sstyled(styles), /*#__PURE__*/React.createElement(SIcon, _ref8.cn("SIcon", {
561
587
  "x": x,
562
588
  "y": y,
563
589
  "width": width,
@@ -569,19 +595,19 @@ var Icon = function Icon(_ref24) {
569
595
 
570
596
  /** @deprecated */
571
597
 
572
- var Label = function Label(_ref25) {
573
- var SLabel = _ref25.Element,
574
- Children = _ref25.Children,
575
- styles = _ref25.styles,
576
- label = _ref25.label,
577
- color = _ref25.color,
578
- resolveColor = _ref25.resolveColor,
579
- isHorizontal = _ref25.isHorizontal,
580
- x = _ref25.x,
581
- y = _ref25.y,
582
- textSize = _ref25.textSize,
583
- angle = _ref25.angle,
584
- transparent = _ref25.transparent;
598
+ var Label = function Label(_ref26) {
599
+ var SLabel = _ref26.Element,
600
+ Children = _ref26.Children,
601
+ styles = _ref26.styles,
602
+ label = _ref26.label,
603
+ color = _ref26.color,
604
+ resolveColor = _ref26.resolveColor,
605
+ isHorizontal = _ref26.isHorizontal,
606
+ x = _ref26.x,
607
+ y = _ref26.y,
608
+ textSize = _ref26.textSize,
609
+ angle = _ref26.angle,
610
+ transparent = _ref26.transparent;
585
611
  var lines = String(label).split('\n');
586
612
  var linesCount = lines.length;
587
613
  var SLabelLine = 'tspan';
@@ -622,22 +648,22 @@ var Radian = createElement(RadialTreeRadian, {
622
648
 
623
649
  /** @deprecated */
624
650
 
625
- var Title = function Title(_ref26) {
626
- var _ref8;
627
- var STitle = _ref26.Element,
628
- Children = _ref26.Children,
629
- children = _ref26.children,
630
- styles = _ref26.styles,
631
- textSize = _ref26.textSize,
632
- color = _ref26.color,
633
- resolveColor = _ref26.resolveColor,
634
- x = _ref26.x,
635
- y = _ref26.y,
636
- dataHintsHandler = _ref26.dataHintsHandler;
651
+ var Title = function Title(_ref27) {
652
+ var _ref9;
653
+ var STitle = _ref27.Element,
654
+ Children = _ref27.Children,
655
+ children = _ref27.children,
656
+ styles = _ref27.styles,
657
+ textSize = _ref27.textSize,
658
+ color = _ref27.color,
659
+ resolveColor = _ref27.resolveColor,
660
+ x = _ref27.x,
661
+ y = _ref27.y,
662
+ dataHintsHandler = _ref27.dataHintsHandler;
637
663
  if (typeof children === 'string') {
638
664
  dataHintsHandler.setTitle('vertical', children);
639
665
  }
640
- return _ref8 = sstyled(styles), /*#__PURE__*/React.createElement(STitle, _ref8.cn("STitle", {
666
+ return _ref9 = sstyled(styles), /*#__PURE__*/React.createElement(STitle, _ref9.cn("STitle", {
641
667
  "aria-hidden": true,
642
668
  "render": 'text',
643
669
  "textAnchor": 'middle',
@@ -646,7 +672,7 @@ var Title = function Title(_ref26) {
646
672
  "fill": resolveColor(color),
647
673
  "x": x,
648
674
  "y": y
649
- }), /*#__PURE__*/React.createElement(Children, _ref8.cn("Children", {})));
675
+ }), /*#__PURE__*/React.createElement(Children, _ref9.cn("Children", {})));
650
676
  };
651
677
  var RadialTree = createElement(RadialTreeBase, {
652
678
  Title: Title,