intergalactic 15.52.0-prerelease.0-prerelease-15fe9f5e → 15.53.0-prerelease-dfe34e97

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 (215) 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/components.json +12 -12
  9. package/d3-chart/Pattern.d.ts +336 -0
  10. package/d3-chart/Plot.d.ts +4 -0
  11. package/d3-chart/RadialTree.d.ts +7 -2
  12. package/d3-chart/component/Chart/AbstractChart.type.d.ts +3 -0
  13. package/d3-chart/component/ChartLegend/BaseLegend.type.d.ts +3 -0
  14. package/d3-chart/component/ChartLegend/LegendItem/LegendItem.type.d.ts +7 -1
  15. package/d3-chart/index.d.ts +3 -0
  16. package/d3-chart/lib/cjs/Area.js +25 -13
  17. package/d3-chart/lib/cjs/Area.js.map +1 -1
  18. package/d3-chart/lib/cjs/Axis.js +14 -14
  19. package/d3-chart/lib/cjs/Bar.js +23 -12
  20. package/d3-chart/lib/cjs/Bar.js.map +1 -1
  21. package/d3-chart/lib/cjs/Bubble.js +25 -13
  22. package/d3-chart/lib/cjs/Bubble.js.map +1 -1
  23. package/d3-chart/lib/cjs/Donut.js +28 -12
  24. package/d3-chart/lib/cjs/Donut.js.map +1 -1
  25. package/d3-chart/lib/cjs/Dots.js +55 -28
  26. package/d3-chart/lib/cjs/Dots.js.map +1 -1
  27. package/d3-chart/lib/cjs/GroupBar.js +4 -2
  28. package/d3-chart/lib/cjs/GroupBar.js.map +1 -1
  29. package/d3-chart/lib/cjs/HorizontalBar.js +23 -12
  30. package/d3-chart/lib/cjs/HorizontalBar.js.map +1 -1
  31. package/d3-chart/lib/cjs/Hover.js +9 -6
  32. package/d3-chart/lib/cjs/Hover.js.map +1 -1
  33. package/d3-chart/lib/cjs/Line.js +23 -15
  34. package/d3-chart/lib/cjs/Line.js.map +1 -1
  35. package/d3-chart/lib/cjs/Pattern.js +540 -0
  36. package/d3-chart/lib/cjs/Pattern.js.map +1 -0
  37. package/d3-chart/lib/cjs/Plot.js +7 -5
  38. package/d3-chart/lib/cjs/Plot.js.map +1 -1
  39. package/d3-chart/lib/cjs/Radar.js +126 -83
  40. package/d3-chart/lib/cjs/Radar.js.map +1 -1
  41. package/d3-chart/lib/cjs/RadialTree.js +126 -100
  42. package/d3-chart/lib/cjs/RadialTree.js.map +1 -1
  43. package/d3-chart/lib/cjs/ReferenceLine.js +9 -9
  44. package/d3-chart/lib/cjs/ScatterPlot.js +22 -10
  45. package/d3-chart/lib/cjs/ScatterPlot.js.map +1 -1
  46. package/d3-chart/lib/cjs/StackBar.js +8 -4
  47. package/d3-chart/lib/cjs/StackBar.js.map +1 -1
  48. package/d3-chart/lib/cjs/StackedArea.js +4 -1
  49. package/d3-chart/lib/cjs/StackedArea.js.map +1 -1
  50. package/d3-chart/lib/cjs/Tooltip.js +21 -11
  51. package/d3-chart/lib/cjs/Tooltip.js.map +1 -1
  52. package/d3-chart/lib/cjs/Venn.js +28 -12
  53. package/d3-chart/lib/cjs/Venn.js.map +1 -1
  54. package/d3-chart/lib/cjs/a11y/PlotA11yModule.js +2 -2
  55. package/d3-chart/lib/cjs/a11y/PlotA11yView.js +2 -2
  56. package/d3-chart/lib/cjs/component/Chart/AbstractChart.js +7 -3
  57. package/d3-chart/lib/cjs/component/Chart/AbstractChart.js.map +1 -1
  58. package/d3-chart/lib/cjs/component/Chart/AbstractChart.type.js.map +1 -1
  59. package/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.js +4 -2
  60. package/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.js.map +1 -1
  61. package/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.type.js.map +1 -1
  62. package/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js +4 -4
  63. package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js +80 -53
  64. package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js.map +1 -1
  65. package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.type.js +1 -1
  66. package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.type.js.map +1 -1
  67. package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/legend-item.shadow.css +17 -3
  68. package/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js +6 -6
  69. package/d3-chart/lib/cjs/index.js +19 -0
  70. package/d3-chart/lib/cjs/index.js.map +1 -1
  71. package/d3-chart/lib/cjs/style/area.shadow.css +6 -1
  72. package/d3-chart/lib/cjs/style/bar.shadow.css +7 -1
  73. package/d3-chart/lib/cjs/style/bubble.shadow.css +8 -1
  74. package/d3-chart/lib/cjs/style/donut.shadow.css +7 -1
  75. package/d3-chart/lib/cjs/style/dot.shadow.css +2 -2
  76. package/d3-chart/lib/cjs/style/radar.shadow.css +7 -1
  77. package/d3-chart/lib/cjs/style/radial-tree.shadow.css +5 -0
  78. package/d3-chart/lib/cjs/style/scatterplot.shadow.css +8 -1
  79. package/d3-chart/lib/cjs/style/tooltip.shadow.css +6 -6
  80. package/d3-chart/lib/cjs/style/venn.shadow.css +11 -0
  81. package/d3-chart/lib/cjs/types/Plot.d.js.map +1 -1
  82. package/d3-chart/lib/cjs/types/index.d.js +12 -0
  83. package/d3-chart/lib/cjs/types/index.d.js.map +1 -1
  84. package/d3-chart/lib/es6/Area.js +25 -13
  85. package/d3-chart/lib/es6/Area.js.map +1 -1
  86. package/d3-chart/lib/es6/Axis.js +14 -14
  87. package/d3-chart/lib/es6/Bar.js +23 -12
  88. package/d3-chart/lib/es6/Bar.js.map +1 -1
  89. package/d3-chart/lib/es6/Bubble.js +25 -13
  90. package/d3-chart/lib/es6/Bubble.js.map +1 -1
  91. package/d3-chart/lib/es6/Donut.js +28 -12
  92. package/d3-chart/lib/es6/Donut.js.map +1 -1
  93. package/d3-chart/lib/es6/Dots.js +56 -29
  94. package/d3-chart/lib/es6/Dots.js.map +1 -1
  95. package/d3-chart/lib/es6/GroupBar.js +4 -2
  96. package/d3-chart/lib/es6/GroupBar.js.map +1 -1
  97. package/d3-chart/lib/es6/HorizontalBar.js +23 -12
  98. package/d3-chart/lib/es6/HorizontalBar.js.map +1 -1
  99. package/d3-chart/lib/es6/Hover.js +9 -6
  100. package/d3-chart/lib/es6/Hover.js.map +1 -1
  101. package/d3-chart/lib/es6/Line.js +24 -16
  102. package/d3-chart/lib/es6/Line.js.map +1 -1
  103. package/d3-chart/lib/es6/Pattern.js +534 -0
  104. package/d3-chart/lib/es6/Pattern.js.map +1 -0
  105. package/d3-chart/lib/es6/Plot.js +7 -5
  106. package/d3-chart/lib/es6/Plot.js.map +1 -1
  107. package/d3-chart/lib/es6/Radar.js +126 -83
  108. package/d3-chart/lib/es6/Radar.js.map +1 -1
  109. package/d3-chart/lib/es6/RadialTree.js +127 -101
  110. package/d3-chart/lib/es6/RadialTree.js.map +1 -1
  111. package/d3-chart/lib/es6/ReferenceLine.js +9 -9
  112. package/d3-chart/lib/es6/ScatterPlot.js +22 -10
  113. package/d3-chart/lib/es6/ScatterPlot.js.map +1 -1
  114. package/d3-chart/lib/es6/StackBar.js +8 -4
  115. package/d3-chart/lib/es6/StackBar.js.map +1 -1
  116. package/d3-chart/lib/es6/StackedArea.js +4 -1
  117. package/d3-chart/lib/es6/StackedArea.js.map +1 -1
  118. package/d3-chart/lib/es6/Tooltip.js +22 -11
  119. package/d3-chart/lib/es6/Tooltip.js.map +1 -1
  120. package/d3-chart/lib/es6/Venn.js +28 -12
  121. package/d3-chart/lib/es6/Venn.js.map +1 -1
  122. package/d3-chart/lib/es6/a11y/PlotA11yModule.js +2 -2
  123. package/d3-chart/lib/es6/a11y/PlotA11yView.js +2 -2
  124. package/d3-chart/lib/es6/component/Chart/AbstractChart.js +7 -3
  125. package/d3-chart/lib/es6/component/Chart/AbstractChart.js.map +1 -1
  126. package/d3-chart/lib/es6/component/Chart/AbstractChart.type.js.map +1 -1
  127. package/d3-chart/lib/es6/component/ChartLegend/BaseLegend.js +4 -2
  128. package/d3-chart/lib/es6/component/ChartLegend/BaseLegend.js.map +1 -1
  129. package/d3-chart/lib/es6/component/ChartLegend/BaseLegend.type.js.map +1 -1
  130. package/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js +4 -4
  131. package/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js +80 -53
  132. package/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js.map +1 -1
  133. package/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.type.js +1 -1
  134. package/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.type.js.map +1 -1
  135. package/d3-chart/lib/es6/component/ChartLegend/LegendItem/legend-item.shadow.css +17 -3
  136. package/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js +6 -6
  137. package/d3-chart/lib/es6/index.js +1 -0
  138. package/d3-chart/lib/es6/index.js.map +1 -1
  139. package/d3-chart/lib/es6/style/area.shadow.css +6 -1
  140. package/d3-chart/lib/es6/style/bar.shadow.css +7 -1
  141. package/d3-chart/lib/es6/style/bubble.shadow.css +8 -1
  142. package/d3-chart/lib/es6/style/donut.shadow.css +7 -1
  143. package/d3-chart/lib/es6/style/dot.shadow.css +2 -2
  144. package/d3-chart/lib/es6/style/radar.shadow.css +7 -1
  145. package/d3-chart/lib/es6/style/radial-tree.shadow.css +5 -0
  146. package/d3-chart/lib/es6/style/scatterplot.shadow.css +8 -1
  147. package/d3-chart/lib/es6/style/tooltip.shadow.css +6 -6
  148. package/d3-chart/lib/es6/style/venn.shadow.css +11 -0
  149. package/d3-chart/lib/es6/types/Plot.d.js.map +1 -1
  150. package/d3-chart/lib/es6/types/index.d.js +3 -0
  151. package/d3-chart/lib/es6/types/index.d.js.map +1 -1
  152. package/d3-chart/lib/types/Pattern.d.ts +336 -0
  153. package/d3-chart/lib/types/Plot.d.ts +4 -0
  154. package/d3-chart/lib/types/RadialTree.d.ts +7 -2
  155. package/d3-chart/lib/types/component/Chart/AbstractChart.type.d.ts +3 -0
  156. package/d3-chart/lib/types/component/ChartLegend/BaseLegend.type.d.ts +3 -0
  157. package/d3-chart/lib/types/component/ChartLegend/LegendItem/LegendItem.type.d.ts +7 -1
  158. package/d3-chart/lib/types/index.d.ts +3 -0
  159. package/date-picker/lib/cjs/components/RangePickerAbstract.js +8 -4
  160. package/date-picker/lib/cjs/components/RangePickerAbstract.js.map +1 -1
  161. package/date-picker/lib/es6/components/RangePickerAbstract.js +8 -4
  162. package/date-picker/lib/es6/components/RangePickerAbstract.js.map +1 -1
  163. package/drag-and-drop/index.d.ts +13 -2
  164. package/drag-and-drop/lib/cjs/DragAndDrop.js +96 -44
  165. package/drag-and-drop/lib/cjs/DragAndDrop.js.map +1 -1
  166. package/drag-and-drop/lib/cjs/index.d.js.map +1 -1
  167. package/drag-and-drop/lib/cjs/translations/de.json +5 -0
  168. package/drag-and-drop/lib/cjs/translations/en.json +5 -0
  169. package/drag-and-drop/lib/cjs/translations/es.json +5 -0
  170. package/drag-and-drop/lib/cjs/translations/fr.json +5 -0
  171. package/drag-and-drop/lib/cjs/translations/it.json +5 -0
  172. package/drag-and-drop/lib/cjs/translations/ja.json +5 -0
  173. package/drag-and-drop/lib/cjs/translations/ko.json +5 -0
  174. package/drag-and-drop/lib/cjs/translations/nl.json +5 -0
  175. package/drag-and-drop/lib/cjs/translations/pl.json +5 -0
  176. package/drag-and-drop/lib/cjs/translations/pt.json +5 -0
  177. package/drag-and-drop/lib/cjs/translations/sv.json +5 -0
  178. package/drag-and-drop/lib/cjs/translations/tr.json +5 -0
  179. package/drag-and-drop/lib/cjs/translations/vi.json +5 -0
  180. package/drag-and-drop/lib/cjs/translations/zh.json +5 -0
  181. package/drag-and-drop/lib/es6/DragAndDrop.js +96 -44
  182. package/drag-and-drop/lib/es6/DragAndDrop.js.map +1 -1
  183. package/drag-and-drop/lib/es6/index.d.js.map +1 -1
  184. package/drag-and-drop/lib/es6/translations/de.json +5 -0
  185. package/drag-and-drop/lib/es6/translations/en.json +5 -0
  186. package/drag-and-drop/lib/es6/translations/es.json +5 -0
  187. package/drag-and-drop/lib/es6/translations/fr.json +5 -0
  188. package/drag-and-drop/lib/es6/translations/it.json +5 -0
  189. package/drag-and-drop/lib/es6/translations/ja.json +5 -0
  190. package/drag-and-drop/lib/es6/translations/ko.json +5 -0
  191. package/drag-and-drop/lib/es6/translations/nl.json +5 -0
  192. package/drag-and-drop/lib/es6/translations/pl.json +5 -0
  193. package/drag-and-drop/lib/es6/translations/pt.json +5 -0
  194. package/drag-and-drop/lib/es6/translations/sv.json +5 -0
  195. package/drag-and-drop/lib/es6/translations/tr.json +5 -0
  196. package/drag-and-drop/lib/es6/translations/vi.json +5 -0
  197. package/drag-and-drop/lib/es6/translations/zh.json +5 -0
  198. package/drag-and-drop/lib/types/index.d.ts +13 -2
  199. package/package.json +3 -3
  200. package/pills/lib/cjs/Pills.js +44 -57
  201. package/pills/lib/cjs/Pills.js.map +1 -1
  202. package/pills/lib/cjs/style/pills.shadow.css +3 -9
  203. package/pills/lib/es6/Pills.js +44 -57
  204. package/pills/lib/es6/Pills.js.map +1 -1
  205. package/pills/lib/es6/style/pills.shadow.css +3 -9
  206. package/utils/lib/enhances/a11yEnhance.d.ts +9 -3
  207. package/utils/lib/enhances/a11yEnhance.js +11 -11
  208. package/utils/lib/enhances/a11yEnhance.js.map +1 -1
  209. package/utils/lib/enhances/a11yEnhance.mjs +11 -11
  210. package/utils/lib/enhances/a11yEnhance.mjs.map +1 -1
  211. package/utils/lib/themes/auto.css +3 -3
  212. package/utils/lib/themes/dark.css +2 -2
  213. package/utils/lib/themes/dark.json +1 -1
  214. package/utils/lib/themes/default.css +1 -1
  215. package/utils/lib/themes/light.css +1 -1
@@ -670,8 +670,8 @@
670
670
  --intergalactic-chart-grid-bar-chart-base-bg: #e0e1e9;
671
671
  /* Use for highlighting the period on the chart grid. */
672
672
  --intergalactic-chart-grid-period-bg: rgba(196, 199, 207, 0.2);
673
- /* Border of the dot that appears on the chart grid when hovered over. */
674
- --intergalactic-chart-grid-border: #ffffff;
673
+ /* Border for distinguishing data sets and chart dots on the chart grid. */
674
+ --intergalactic-chart-grid-border: #191b23;
675
675
  /* Background color for the clickable date on the X-axis of the chart grid. */
676
676
  --intergalactic-chart-x-axis-accent-period-active: #8a8e9b;
677
677
  /* Background color for the "Start tracking" date on the X-axis of the chart grid. */
@@ -346,7 +346,7 @@
346
346
  "--intergalactic-chart-grid-bar-chart-hover": "rgba(196, 199, 207, 0.3)",
347
347
  "--intergalactic-chart-grid-bar-chart-base-bg": "#e0e1e9",
348
348
  "--intergalactic-chart-grid-period-bg": "rgba(196, 199, 207, 0.2)",
349
- "--intergalactic-chart-grid-border": "#ffffff",
349
+ "--intergalactic-chart-grid-border": "#191b23",
350
350
  "--intergalactic-chart-x-axis-accent-period-active": "#8a8e9b",
351
351
  "--intergalactic-chart-x-axis-accent-data-start-tracking": "rgba(0, 159, 129, 0.2)",
352
352
  "--intergalactic-duration-extra-slow": "500",
@@ -695,7 +695,7 @@
695
695
  --intergalactic-chart-grid-bar-chart-base-bg: #e0e1e9;
696
696
  /* Use for highlighting the period on the chart grid. */
697
697
  --intergalactic-chart-grid-period-bg: rgba(196, 199, 207, 0.2);
698
- /* Border of the dot that appears on the chart grid when hovered over. */
698
+ /* Border for distinguishing data sets and chart dots on the chart grid. */
699
699
  --intergalactic-chart-grid-border: #ffffff;
700
700
  /* Background color for the clickable date on the X-axis of the chart grid. */
701
701
  --intergalactic-chart-x-axis-accent-period-active: #6c6e79;
@@ -695,7 +695,7 @@
695
695
  --intergalactic-chart-grid-bar-chart-base-bg: #e0e1e9;
696
696
  /* Use for highlighting the period on the chart grid. */
697
697
  --intergalactic-chart-grid-period-bg: rgba(196, 199, 207, 0.2);
698
- /* Border of the dot that appears on the chart grid when hovered over. */
698
+ /* Border for distinguishing data sets and chart dots on the chart grid. */
699
699
  --intergalactic-chart-grid-border: #ffffff;
700
700
  /* Background color for the clickable date on the X-axis of the chart grid. */
701
701
  --intergalactic-chart-x-axis-accent-period-active: #6c6e79;