@linzjs/step-ag-grid 30.4.3 → 31.1.1

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 (73) hide show
  1. package/dist/GridTheme.scss +12 -7
  2. package/dist/index.css +6 -3
  3. package/dist/src/utils/__tests__/testQuick.ts +7 -7
  4. package/dist/src/utils/__tests__/testUtil.ts +3 -1
  5. package/dist/src/utils/__tests__/vitestUtil.ts +3 -1
  6. package/dist/src/utils/storybook.d.ts +4 -0
  7. package/dist/src/utils/useInterval.d.ts +17 -0
  8. package/dist/src/utils/useIsomorphicLayoutEffect.d.ts +17 -0
  9. package/dist/step-ag-grid.cjs +310 -214
  10. package/dist/step-ag-grid.cjs.map +1 -1
  11. package/dist/step-ag-grid.esm.js +310 -214
  12. package/dist/step-ag-grid.esm.js.map +1 -1
  13. package/package.json +26 -52
  14. package/src/components/Grid.tsx +6 -3
  15. package/src/components/PostSortRowsHook.ts +3 -1
  16. package/src/components/gridFilter/GridFilterColumnsMultiSelect.scss +18 -20
  17. package/src/components/gridFilter/GridFilterColumnsToggle.tsx +3 -4
  18. package/src/components/gridFilter/useGridFilter.ts +2 -2
  19. package/src/components/gridForm/GridFormDropDown.tsx +1 -1
  20. package/src/components/gridForm/GridFormInlineTextInput.tsx +1 -2
  21. package/src/components/gridForm/GridFormMultiSelect.tsx +10 -4
  22. package/src/components/gridForm/GridFormSubComponentTextArea.tsx +1 -2
  23. package/src/components/gridForm/GridFormSubComponentTextInput.tsx +1 -2
  24. package/src/components/gridForm/GridFormTextArea.tsx +1 -2
  25. package/src/components/gridForm/GridFormTextInput.tsx +1 -2
  26. package/src/components/gridHeader/GridHeaderSelect.tsx +3 -1
  27. package/src/components/gridHook/useGridCopy.ts +13 -3
  28. package/src/components/gridHook/useGridRangeSelection.ts +29 -16
  29. package/src/contexts/GridContextProvider.tsx +18 -7
  30. package/src/lui/ActionButton.scss +1 -1
  31. package/src/lui/ActionButton.tsx +5 -1
  32. package/src/lui/FormError.scss +1 -1
  33. package/src/lui/TextAreaInput.tsx +1 -1
  34. package/src/lui/TextInputFormatted.scss +13 -13
  35. package/src/lui/TextInputFormatted.tsx +1 -1
  36. package/src/react-menu3/README.md +66 -67
  37. package/src/react-menu3/components/ControlledMenu.tsx +2 -2
  38. package/src/react-menu3/components/Menu.tsx +1 -1
  39. package/src/react-menu3/components/MenuItem.tsx +1 -1
  40. package/src/react-menu3/components/MenuList.tsx +8 -2
  41. package/src/react-menu3/components/SubMenu.tsx +6 -6
  42. package/src/react-menu3/hooks/useBEM.ts +2 -1
  43. package/src/react-menu3/hooks/useItemState.ts +8 -4
  44. package/src/react-menu3/styles/_var.scss +1 -1
  45. package/src/react-menu3/styles/core.scss +6 -6
  46. package/src/react-menu3/styles/index.scss +11 -8
  47. package/src/react-menu3/styles/theme-dark.scss +1 -1
  48. package/src/react-menu3/styles/transitions/slide.scss +8 -8
  49. package/src/react-menu3/utils/utils.ts +2 -1
  50. package/src/stories/grid/FormTest.scss +13 -13
  51. package/src/stories/grid/GridInlineText.stories.tsx +2 -2
  52. package/src/stories/grid/GridSorting.stories.tsx +6 -2
  53. package/src/stories/grid/GridViewSelectableList.stories.tsx +121 -0
  54. package/src/styles/ComponentLoadingWrapper.scss +1 -1
  55. package/src/styles/ContextMenu.scss +1 -1
  56. package/src/styles/Grid.scss +11 -9
  57. package/src/styles/GridCell.scss +1 -1
  58. package/src/styles/GridFilterColumnsToggle.scss +1 -1
  59. package/src/styles/GridFormInlineTextInput.scss +7 -7
  60. package/src/styles/GridFormMultiSelectGrid.scss +1 -1
  61. package/src/styles/GridFormSubComponentTextInput.scss +4 -4
  62. package/src/styles/GridIcon.scss +1 -1
  63. package/src/styles/GridPopoverMenu.scss +1 -1
  64. package/src/styles/GridTheme.scss +12 -7
  65. package/src/styles/index.scss +16 -16
  66. package/src/styles/react-menu-customisations.scss +119 -120
  67. package/src/utils/__tests__/testQuick.ts +7 -7
  68. package/src/utils/__tests__/testUtil.ts +3 -1
  69. package/src/utils/__tests__/vitestUtil.ts +3 -1
  70. package/src/utils/deferredPromise.ts +1 -1
  71. package/src/utils/storybook.ts +5 -0
  72. package/src/utils/useInterval.ts +44 -0
  73. package/src/utils/useIsomorphicLayoutEffect.ts +18 -0
@@ -1,5 +1,5 @@
1
- @use "@linzjs/lui/dist/scss/Core" as lui;
2
- @use "ag-grid-community/styles" as ag;
1
+ @use '@linzjs/lui/dist/scss/Core' as lui;
2
+ @use 'ag-grid-community/styles' as ag;
3
3
 
4
4
  // ag-grid likes to add 1px to this, so we subtract to compensate
5
5
  $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
@@ -44,7 +44,7 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
44
44
  data-color: lui.$charcoal,
45
45
  foreground-color: lui.$charcoal,
46
46
  font-family: (
47
- "Open Sans",
47
+ 'Open Sans',
48
48
  system-ui,
49
49
  sans-serif,
50
50
  ),
@@ -58,6 +58,7 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
58
58
  )
59
59
  );
60
60
 
61
+ .ag-theme-step-view-list-default,
61
62
  .ag-theme-step-default.theme-specific,
62
63
  .ag-theme-step-compact.theme-specific {
63
64
  // Don't hide the drag handle
@@ -154,7 +155,7 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
154
155
  content: none !important;
155
156
  }
156
157
  }
157
-
158
+
158
159
  .ag-header-cell-filter-button.ag-has-popup-positioned-under .ag-icon-filter {
159
160
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M6 12.984v-1.969h12v1.969zM3 6h18v2.016H3zm6.984 12v-2.016h4.031V18z'/%3E%3C/svg%3E") !important;
160
161
  background-color: #007198;
@@ -243,7 +244,8 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
243
244
  visibility: inherit;
244
245
  }
245
246
 
246
- .ag-row-highlight-above::after, .ag-row-highlight-below::after {
247
+ .ag-row-highlight-above::after,
248
+ .ag-row-highlight-below::after {
247
249
  content: '';
248
250
  height: 3px;
249
251
  background-color: transparent;
@@ -268,7 +270,7 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
268
270
 
269
271
  .ag-pinned-left-header,
270
272
  .ag-pinned-left-cols-container {
271
- clip-path: polygon(0% 0%, 120% 0%, 120% 100%, 0% 100%);
273
+ clip-path: polygon(0% 0%, 120% 0%, 120% 100%, 0% 100%);
272
274
  }
273
275
 
274
276
  .ag-pinned-right-header,
@@ -278,6 +280,9 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
278
280
  }
279
281
 
280
282
  .ag-theme-step-view-list-default.theme-specific {
283
+ .ag-header-hide-default-select .ag-labeled {
284
+ display: none;
285
+ }
281
286
 
282
287
  .ag-header-cell {
283
288
  font-size: 14px;
@@ -295,4 +300,4 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
295
300
  .ag-header-cell {
296
301
  font-size: 14px;
297
302
  }
298
- }
303
+ }
package/dist/index.css CHANGED
@@ -311,7 +311,8 @@
311
311
  text-transform: uppercase;
312
312
  }
313
313
 
314
- .react-menu-inline-test .szh-menu-container, .react-menu-inline-test .szh-menu {
314
+ .react-menu-inline-test .szh-menu-container,
315
+ .react-menu-inline-test .szh-menu {
315
316
  position: static !important;
316
317
  }
317
318
 
@@ -328,7 +329,8 @@
328
329
  user-select: none;
329
330
  }
330
331
 
331
- .LabelPreferencesPanelGridCellAlignCenter .ag-cell-wrapper, .LabelPreferencesPanelGridCellAlignCenter .GridCell-container {
332
+ .LabelPreferencesPanelGridCellAlignCenter .ag-cell-wrapper,
333
+ .LabelPreferencesPanelGridCellAlignCenter .GridCell-container {
332
334
  display: flex;
333
335
  justify-content: center;
334
336
  }
@@ -447,7 +449,8 @@
447
449
  margin-right: auto;
448
450
  }
449
451
 
450
- .GridCellAlignCenter .ag-cell-wrapper, .LabelPreferencesPanelGridCellAlignCenter .GridCell-container {
452
+ .GridCellAlignCenter .ag-cell-wrapper,
453
+ .LabelPreferencesPanelGridCellAlignCenter .GridCell-container {
451
454
  display: flex;
452
455
  justify-content: center;
453
456
  }
@@ -52,13 +52,13 @@ const quickSelector = <T extends HTMLElement>(
52
52
  let lastIQueryQuick = props;
53
53
  for (let loop: IQueryQuick | undefined = props; loop; loop = loop.child) {
54
54
  lastIQueryQuick = loop;
55
- loop.selector && (selector += loop.selector);
56
- loop.tagName && (selector += loop.tagName);
57
- loop.ariaLabel && (selector += `[aria-label='${escapeSelectorParam(loop.ariaLabel)}']`);
58
- loop.role && (selector += `[role="${escapeSelectorParam(loop.role)}"]`);
59
- loop.testId && (selector += `[data-testid="${escapeSelectorParam(loop.testId)}"]`);
60
- loop.icon && (selector += `[data-icon='${loop.icon}']`);
61
- loop.classes && (selector += loop.classes);
55
+ if (loop.selector) selector += loop.selector;
56
+ if (loop.tagName) selector += loop.tagName;
57
+ if (loop.ariaLabel) selector += `[aria-label='${escapeSelectorParam(loop.ariaLabel)}']`;
58
+ if (loop.role) selector += `[role="${escapeSelectorParam(loop.role)}"]`;
59
+ if (loop.testId) selector += `[data-testid="${escapeSelectorParam(loop.testId)}"]`;
60
+ if (loop.icon) selector += `[data-icon='${loop.icon}']`;
61
+ if (loop.classes) selector += loop.classes;
62
62
  selector += ' ';
63
63
  }
64
64
 
@@ -259,7 +259,9 @@ export const findMultiSelectOption = async (value: string): Promise<HTMLElement>
259
259
 
260
260
  export const clickMultiSelectOption = async (value: string): Promise<void> => {
261
261
  const menuItem = await findMultiSelectOption(value);
262
- menuItem.parentElement && (await user.click(menuItem.parentElement));
262
+ if (menuItem.parentElement) {
263
+ await user.click(menuItem.parentElement);
264
+ }
263
265
  };
264
266
 
265
267
  const typeInput = async (value: string, filter: IQueryQuick): Promise<void> => {
@@ -260,7 +260,9 @@ export const findMultiSelectOption = async (value: string): Promise<HTMLElement>
260
260
 
261
261
  export const clickMultiSelectOption = async (value: string): Promise<void> => {
262
262
  const menuItem = await findMultiSelectOption(value);
263
- menuItem.parentElement && (await user.click(menuItem.parentElement));
263
+ if (menuItem.parentElement) {
264
+ await user.click(menuItem.parentElement);
265
+ }
264
266
  };
265
267
 
266
268
  const typeInput = async (value: string, filter: IQueryQuick): Promise<void> => {
@@ -0,0 +1,4 @@
1
+ export interface WindowStorybookProps {
2
+ IS_STORYBOOK?: boolean;
3
+ }
4
+ export declare const isStorybook: boolean | undefined;
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Copied from usehooks-ts
3
+ *
4
+ * Custom hook that creates an interval that invokes a callback function at a specified delay using the [`setInterval API`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/setInterval).
5
+ * @param {() => void} callback - The function to be invoked at each interval.
6
+ * @param {number | null} delay - The time, in milliseconds, between each invocation of the callback. Use `null` to clear the interval.
7
+ * @public
8
+ * @see [Documentation](https://usehooks-ts.com/react-hook/use-interval)
9
+ * @example
10
+ * ```tsx
11
+ * const handleInterval = () => {
12
+ * // Code to be executed at each interval
13
+ * };
14
+ * useInterval(handleInterval, 1000);
15
+ * ```
16
+ */
17
+ export declare function useInterval(callback: () => void, delay: number | null): void;
@@ -0,0 +1,17 @@
1
+ import { useEffect } from 'react';
2
+ /**
3
+ * Copied from usehooks-ts
4
+ *
5
+ * Custom hook that uses either `useLayoutEffect` or `useEffect` based on the environment (client-side or server-side).
6
+ * @param {Function} effect - The effect function to be executed.
7
+ * @param {Array<any>} [dependencies] - An array of dependencies for the effect (optional).
8
+ * @public
9
+ * @see [Documentation](https://usehooks-ts.com/react-hook/use-isomorphic-layout-effect)
10
+ * @example
11
+ * ```tsx
12
+ * useIsomorphicLayoutEffect(() => {
13
+ * // Code to be executed during the layout phase on the client side
14
+ * }, [dependency1, dependency2]);
15
+ * ```
16
+ */
17
+ export declare const useIsomorphicLayoutEffect: typeof useEffect;