@pingux/astro 1.27.0-alpha.9 → 1.28.0

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 (43) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/NOTICE.html +5016 -0
  3. package/lib/cjs/components/DataTable/DataTable.js +477 -0
  4. package/lib/cjs/components/DataTable/DataTable.stories.js +310 -0
  5. package/lib/cjs/components/DataTable/DataTable.styles.js +156 -0
  6. package/lib/cjs/components/DataTable/DataTable.test.js +1307 -0
  7. package/lib/cjs/components/DataTable/DataTableChip.js +63 -0
  8. package/lib/cjs/components/DataTable/DataTableChip.test.js +38 -0
  9. package/lib/cjs/components/DataTable/DataTableMenu.js +51 -0
  10. package/lib/cjs/components/DataTable/DataTableMenu.test.js +20 -0
  11. package/lib/cjs/components/DataTable/DataTableMultiLine.js +75 -0
  12. package/lib/cjs/components/DataTable/DataTableMultiLine.test.js +30 -0
  13. package/lib/cjs/components/DataTable/DataTableVirtualizer.js +188 -0
  14. package/lib/cjs/components/DataTable/index.js +54 -0
  15. package/lib/cjs/components/MultivaluesField/MultivaluesField.js +10 -10
  16. package/lib/cjs/context/DataTableContext/index.js +31 -0
  17. package/lib/cjs/index.js +67 -2
  18. package/lib/cjs/recipes/FlippableCaretMenuButton.stories.js +38 -30
  19. package/lib/cjs/recipes/MaskedValue.stories.js +8 -5
  20. package/lib/cjs/recipes/OneWayToBidirectionalArrow.stories.js +38 -33
  21. package/lib/cjs/recipes/RowLineChart.stories.js +58 -70
  22. package/lib/cjs/styles/variants/variants.js +4 -1
  23. package/lib/components/DataTable/DataTable.js +431 -0
  24. package/lib/components/DataTable/DataTable.stories.js +273 -0
  25. package/lib/components/DataTable/DataTable.styles.js +137 -0
  26. package/lib/components/DataTable/DataTable.test.js +1256 -0
  27. package/lib/components/DataTable/DataTableChip.js +33 -0
  28. package/lib/components/DataTable/DataTableChip.test.js +31 -0
  29. package/lib/components/DataTable/DataTableMenu.js +24 -0
  30. package/lib/components/DataTable/DataTableMenu.test.js +13 -0
  31. package/lib/components/DataTable/DataTableMultiLine.js +46 -0
  32. package/lib/components/DataTable/DataTableMultiLine.test.js +22 -0
  33. package/lib/components/DataTable/DataTableVirtualizer.js +157 -0
  34. package/lib/components/DataTable/index.js +5 -0
  35. package/lib/components/MultivaluesField/MultivaluesField.js +10 -10
  36. package/lib/context/DataTableContext/index.js +5 -0
  37. package/lib/index.js +4 -1
  38. package/lib/recipes/FlippableCaretMenuButton.stories.js +38 -30
  39. package/lib/recipes/MaskedValue.stories.js +8 -5
  40. package/lib/recipes/OneWayToBidirectionalArrow.stories.js +38 -33
  41. package/lib/recipes/RowLineChart.stories.js +58 -70
  42. package/lib/styles/variants/variants.js +3 -1
  43. package/package.json +55 -50
package/CHANGELOG.md CHANGED
@@ -3,6 +3,40 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.28.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.27.0...@pingux/astro@1.28.0) (2022-09-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * [UIP-5605] MultiValuesField custom options fix ([b5bd9f8](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b5bd9f81352cc7dbbfd661dee166c69bd6de51e8))
12
+ * [UIP-5640] Environment Breadcrumb spread props into Popover ([09c1304](https://gitlab.corp.pingidentity.com/ux/pingux/commit/09c13043fa57396a58b39b98c089f0f9394143a2))
13
+
14
+
15
+ ### Features
16
+
17
+ * [UIP-5490] Add DataTable component ([799ac36](https://gitlab.corp.pingidentity.com/ux/pingux/commit/799ac3665a0b082a7c70f51255057eb03080c428))
18
+ * [UIP-5567] Page header component ([5048e7f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5048e7f20c54585981a0875b2c6b434fc0f3657c))
19
+
20
+
21
+
22
+
23
+
24
+ # [1.27.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.26.0...@pingux/astro@1.27.0) (2022-09-13)
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+ * [UIP-5620] delete onPress from AccordionGroup ([2074816](https://gitlab.corp.pingidentity.com/ux/pingux/commit/20748165b572bae5f6876c66e665096900933e49))
30
+
31
+
32
+ ### Features
33
+
34
+ * [UIP-5556] MultiValueField readOnly ([7d1e920](https://gitlab.corp.pingidentity.com/ux/pingux/commit/7d1e920fb63115d7eee90876de6fde924d5353b5))
35
+
36
+
37
+
38
+
39
+
6
40
  # [1.26.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.25.2...@pingux/astro@1.26.0) (2022-09-06)
7
41
 
8
42