@tap-payments/os-micro-frontend-shared 0.1.268 → 0.1.270-test.1-test.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 (95) hide show
  1. package/build/components/BrandLogo/index.d.ts +1 -1
  2. package/build/components/Chip/style.d.ts +0 -1
  3. package/build/components/CountBadge/style.d.ts +0 -1
  4. package/build/components/Dialog/style.d.ts +0 -1
  5. package/build/components/FlippingCard/style.d.ts +0 -1
  6. package/build/components/ImageWrapper/ImageWrapper.d.ts +0 -1
  7. package/build/components/JSONViewer/style.d.ts +0 -1
  8. package/build/components/LeftPeekRightExpandingChip/style.d.ts +0 -1
  9. package/build/components/MerchantLogo/index.d.ts +1 -1
  10. package/build/components/OpenFileInNewTab/index.d.ts +1 -1
  11. package/build/components/RightLeftExpandingCenterChip/style.d.ts +0 -1
  12. package/build/components/SearchButton/styles.d.ts +0 -1
  13. package/build/components/StatusBar/StatusBar.js +4 -3
  14. package/build/components/StatusBar/type.d.ts +1 -1
  15. package/build/components/StatusIcons/AuthIcons/style.d.ts +0 -1
  16. package/build/components/StatusIcons/AuthorizationAutoIcons/style.d.ts +0 -1
  17. package/build/components/StatusIcons/ChargeStatusIcon/style.d.ts +0 -1
  18. package/build/components/StatusIcons/SourceIcons/style.d.ts +0 -1
  19. package/build/components/TableCells/CustomCells/ActionCell/style.d.ts +0 -1
  20. package/build/components/TableCells/CustomCells/ApplicationStatusCell/style.d.ts +0 -1
  21. package/build/components/TableCells/CustomCells/AuthenticationCell/style.d.ts +0 -1
  22. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/style.d.ts +0 -1
  23. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/style.d.ts +0 -1
  24. package/build/components/TableCells/CustomCells/BalanceCell/style.d.ts +0 -1
  25. package/build/components/TableCells/CustomCells/ChannelsCell/style.d.ts +0 -1
  26. package/build/components/TableCells/CustomCells/CheckoutStatusCell/style.d.ts +0 -1
  27. package/build/components/TableCells/CustomCells/DestinationStatusCell/style.d.ts +0 -1
  28. package/build/components/TableCells/CustomCells/DueDateCell/style.d.ts +0 -1
  29. package/build/components/TableCells/CustomCells/IDButton/style.d.ts +0 -1
  30. package/build/components/TableCells/CustomCells/IntentsStatusCell/style.d.ts +0 -1
  31. package/build/components/TableCells/CustomCells/InvoiceStatusCell/style.d.ts +0 -1
  32. package/build/components/TableCells/CustomCells/PayoutStatusCell/style.d.ts +0 -1
  33. package/build/components/TableCells/CustomCells/ProductsCell/style.d.ts +0 -1
  34. package/build/components/TableCells/CustomCells/ReferenceCell/style.d.ts +0 -1
  35. package/build/components/TableCells/CustomCells/RefundChargeCell/style.d.ts +0 -1
  36. package/build/components/TableCells/CustomCells/RefundStatusCell/style.d.ts +0 -1
  37. package/build/components/TableCells/CustomCells/SalesChannelCell/style.d.ts +0 -1
  38. package/build/components/TableCells/CustomCells/SegmentsCell/style.d.ts +0 -1
  39. package/build/components/TableCells/CustomCells/SourceCell/style.d.ts +0 -1
  40. package/build/components/TableCells/CustomCells/StatusCell/style.d.ts +0 -1
  41. package/build/components/TableCells/CustomCells/TokenStatusCell/style.d.ts +0 -1
  42. package/build/components/TableCells/CustomCells/style.d.ts +0 -1
  43. package/build/components/TableHeader/FiltersRow.d.ts +1 -1
  44. package/build/components/TableHeader/FiltersRow.js +17 -4
  45. package/build/components/TableHeader/FiltersRowWrapper.d.ts +5 -0
  46. package/build/components/TableHeader/FiltersRowWrapper.js +18 -0
  47. package/build/components/TableHeader/TableHeader.d.ts +5 -4
  48. package/build/components/TableHeader/TableHeader.js +21 -6
  49. package/build/components/TableHeader/TableHeaderWrapper.d.ts +5 -0
  50. package/build/components/TableHeader/TableHeaderWrapper.js +18 -0
  51. package/build/components/TableHeader/TableModeButton.d.ts +9 -0
  52. package/build/components/TableHeader/TableModeButton.js +11 -0
  53. package/build/components/TableHeader/TableView/ColumnItem.d.ts +14 -0
  54. package/build/components/TableHeader/TableView/ColumnItem.js +29 -0
  55. package/build/components/TableHeader/TableView/CustomViews.d.ts +5 -0
  56. package/build/components/TableHeader/TableView/CustomViews.js +21 -0
  57. package/build/components/TableHeader/TableView/DefaultViews.d.ts +13 -0
  58. package/build/components/TableHeader/TableView/DefaultViews.js +22 -0
  59. package/build/components/TableHeader/TableView/TableView.d.ts +12 -0
  60. package/build/components/TableHeader/TableView/TableView.js +55 -0
  61. package/build/components/TableHeader/TableView/hooks/index.d.ts +3 -0
  62. package/build/components/TableHeader/TableView/hooks/index.js +3 -0
  63. package/build/components/TableHeader/TableView/hooks/useColumnItem.d.ts +21 -0
  64. package/build/components/TableHeader/TableView/hooks/useColumnItem.js +29 -0
  65. package/build/components/TableHeader/TableView/hooks/useSubMenu.d.ts +10 -0
  66. package/build/components/TableHeader/TableView/hooks/useSubMenu.js +31 -0
  67. package/build/components/TableHeader/TableView/hooks/useViewColumns.d.ts +13 -0
  68. package/build/components/TableHeader/TableView/hooks/useViewColumns.js +45 -0
  69. package/build/components/TableHeader/TableView/index.d.ts +3 -0
  70. package/build/components/TableHeader/TableView/index.js +3 -0
  71. package/build/components/TableHeader/TableView/style.d.ts +24 -0
  72. package/build/components/TableHeader/TableView/style.js +102 -0
  73. package/build/components/TableHeader/TableView/type.d.ts +10 -0
  74. package/build/components/TableHeader/TableView/type.js +1 -0
  75. package/build/components/TableHeader/data.d.ts +5 -0
  76. package/build/components/TableHeader/data.js +7 -0
  77. package/build/components/TableHeader/index.d.ts +6 -2
  78. package/build/components/TableHeader/index.js +6 -2
  79. package/build/components/TableHeader/style.d.ts +1 -1
  80. package/build/components/TableHeader/style.js +1 -1
  81. package/build/components/TableHeader/type.d.ts +19 -11
  82. package/build/components/TableHeader/type.js +0 -7
  83. package/build/components/ViewColumnRadioFilter/ViewColumnRadioFilter.d.ts +2 -0
  84. package/build/components/ViewColumnRadioFilter/ViewColumnRadioFilter.js +28 -0
  85. package/build/components/ViewColumnRadioFilter/index.d.ts +1 -0
  86. package/build/components/ViewColumnRadioFilter/index.js +1 -0
  87. package/build/components/ViewColumnRadioFilter/style.d.ts +3 -0
  88. package/build/components/ViewColumnRadioFilter/style.js +20 -0
  89. package/build/components/ViewColumnRadioFilter/type.d.ts +9 -0
  90. package/build/components/ViewColumnRadioFilter/type.js +1 -0
  91. package/build/components/VirtualTables/components/style.d.ts +0 -1
  92. package/build/components/index.d.ts +2 -0
  93. package/build/components/index.js +2 -0
  94. package/build/types/tsUtils.d.ts +1 -0
  95. package/package.json +3 -3
@@ -92,6 +92,7 @@ export { default as StatusBar } from './StatusBar';
92
92
  export { default as MultiSelectStatusButton } from './MultiSelectStatusButton';
93
93
  export * from './Chip';
94
94
  export * from './StatusGroupChips';
95
+ export { default as TableHeader } from './TableHeader';
95
96
  export * from './TableHeader';
96
97
  export { default as RangeCalender } from './RangeCalender';
97
98
  export { default as AppServices } from './AppServices';
@@ -137,3 +138,4 @@ export * from './FilePreview';
137
138
  export * from './FileInputPreview';
138
139
  export * from './ReceiptsViewer';
139
140
  export * from './MerchantsDropdown';
141
+ export * from './ViewColumnRadioFilter';
@@ -2,3 +2,4 @@ export type Override<T, R> = Omit<T, keyof R> & R;
2
2
  export type MakeOptional<T, K extends keyof T> = Override<T, {
3
3
  [P in K]?: T[K];
4
4
  }>;
5
+ export type PartialExcept<T, K extends keyof T> = Partial<Omit<T, K>> & Pick<T, K>;
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@tap-payments/os-micro-frontend-shared",
3
3
  "description": "Shared components and utilities for Tap Payments micro frontends",
4
- "version": "0.1.268",
5
- "testVersion": 0,
4
+ "version": "0.1.270-test.1-test.2",
5
+ "testVersion": 2,
6
6
  "type": "module",
7
7
  "main": "build/index.js",
8
8
  "module": "build/index.js",
@@ -164,4 +164,4 @@
164
164
  "publishConfig": {
165
165
  "registry": "https://registry.npmjs.org/"
166
166
  }
167
- }
167
+ }