@linzjs/step-ag-grid 15.1.3 → 16.0.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.
- package/dist/src/components/GridCell.d.ts +1 -1
- package/dist/src/components/GridIcon.d.ts +2 -2
- package/dist/src/components/GridLoadableCell.d.ts +1 -2
- package/dist/src/components/GridNoRowsOverlay.d.ts +3 -3
- package/dist/src/components/GridPopoverHook.d.ts +1 -1
- package/dist/src/components/GridWrapper.d.ts +1 -1
- package/dist/src/components/gridFilter/GridFilterDownloadCsvButton.d.ts +1 -2
- package/dist/src/components/gridFilter/GridFilterQuick.d.ts +1 -2
- package/dist/src/components/gridFilter/GridFilters.d.ts +1 -1
- package/dist/src/components/gridForm/GridFormDropDown.d.ts +1 -1
- package/dist/src/components/gridForm/GridFormEditBearing.d.ts +1 -2
- package/dist/src/components/gridForm/GridFormMessage.d.ts +1 -1
- package/dist/src/components/gridForm/GridFormMultiSelect.d.ts +1 -1
- package/dist/src/components/gridForm/GridFormPopoverMenu.d.ts +1 -1
- package/dist/src/components/gridForm/GridFormTextInput.d.ts +1 -2
- package/dist/src/components/gridHeader/GridHeaderSelect.d.ts +1 -2
- package/dist/src/components/gridHook/useGridContextMenu.d.ts +1 -1
- package/dist/src/components/gridRender/GridRenderPopoutMenuCell.d.ts +1 -2
- package/dist/src/contexts/GridContext.d.ts +1 -1
- package/dist/src/contexts/GridPopoverContextProvider.d.ts +1 -1
- package/dist/src/contexts/GridUpdatingContextProvider.d.ts +1 -1
- package/dist/src/lui/ActionButton.d.ts +1 -1
- package/dist/src/lui/FormError.d.ts +1 -1
- package/dist/src/lui/TextAreaInput.d.ts +1 -1
- package/dist/src/lui/TextInputFormatted.d.ts +1 -1
- package/dist/src/react-menu3/components/ControlledMenu.d.ts +3 -3
- package/dist/src/react-menu3/components/FocusableItem.d.ts +2 -2
- package/dist/src/react-menu3/components/Menu.d.ts +2 -2
- package/dist/src/react-menu3/components/MenuButton.d.ts +1 -1
- package/dist/src/react-menu3/components/MenuDivider.d.ts +1 -1
- package/dist/src/react-menu3/components/MenuGroup.d.ts +2 -2
- package/dist/src/react-menu3/components/MenuHeader.d.ts +2 -2
- package/dist/src/react-menu3/components/MenuItem.d.ts +1 -1
- package/dist/src/react-menu3/components/MenuList.d.ts +1 -2
- package/dist/src/react-menu3/components/MenuRadioGroup.d.ts +2 -2
- package/dist/src/react-menu3/components/SubMenu.d.ts +2 -2
- package/dist/src/react-menu3/utils/utils.d.ts +1 -1
- package/dist/step-ag-grid.cjs.js +807 -3725
- package/dist/step-ag-grid.cjs.js.map +1 -1
- package/dist/step-ag-grid.esm.js +808 -3726
- package/dist/step-ag-grid.esm.js.map +1 -1
- package/package.json +27 -23
- package/src/components/Grid.tsx +14 -18
- package/src/components/GridIcon.tsx +2 -1
- package/src/components/GridNoRowsOverlay.tsx +7 -10
- package/src/contexts/GridContext.tsx +1 -1
- package/src/contexts/GridContextProvider.tsx +32 -13
- package/src/lui/ActionButton.tsx +2 -1
- package/src/lui/TextInputFormatted.tsx +2 -1
- package/src/lui/reactUtils.test.tsx +4 -3
- package/src/stories/components/ActionButton.stories.tsx +2 -1
- package/src/stories/grid/FormTest.tsx +2 -1
- package/src/stories/grid/GridFilterButtons.stories.tsx +5 -15
- package/src/stories/grid/GridNoRowsOverlay.stories.tsx +6 -3
- package/src/stories/grid/GridNonEditableRow.stories.tsx +4 -3
- package/src/stories/grid/GridPopoutContextMenu.stories.tsx +4 -3
- package/src/stories/grid/GridPopoutEditGeneric.stories.tsx +4 -3
- package/src/stories/grid/GridPopoutEditGenericTextArea.stories.tsx +5 -4
- package/src/stories/grid/GridPopoverEditBearing.stories.tsx +4 -3
- package/src/stories/grid/GridPopoverEditDropDown.stories.tsx +4 -3
- package/src/stories/grid/GridPopoverEditMultiSelect.stories.tsx +4 -3
- package/src/stories/grid/GridPopoverEditMultiSelectGrid.stories.tsx +4 -3
- package/src/stories/grid/GridReadOnly.stories.tsx +12 -3
- package/src/stories/grid/gridFormInteraction/GridFormDropDownInteraction.stories.tsx +13 -10
- package/src/stories/grid/gridFormInteraction/GridFormEditBearingCorrectionInteraction.stories.tsx +13 -10
- package/src/stories/grid/gridFormInteraction/GridFormEditBearingInteraction.stories.tsx +13 -10
- package/src/stories/grid/gridFormInteraction/GridFormMultiSelectGridInteraction.stories.tsx +12 -9
- package/src/stories/grid/gridFormInteraction/GridFormMultiSelectInteraction.stories.tsx +17 -14
- package/src/stories/grid/gridFormInteraction/GridFormPopoverMenuInteraction.stories.tsx +17 -14
- package/src/stories/grid/gridFormInteraction/GridFormTextAreaInteraction.stories.tsx +10 -7
- package/src/stories/grid/gridFormInteraction/GridFormTextInputInteraction.stories.tsx +12 -9
- package/src/stories/grid/gridFormStatic/GridFormDropDown.stories.tsx +4 -1
- package/src/stories/grid/gridFormStatic/GridFormEditBearing.stories.tsx +4 -1
- package/src/stories/grid/gridFormStatic/GridFormEditBearingCorrection.stories.tsx +4 -1
- package/src/stories/grid/gridFormStatic/GridFormMessage.stories.tsx +4 -1
- package/src/stories/grid/gridFormStatic/GridFormMultiSelect.stories.tsx +4 -1
- package/src/stories/grid/gridFormStatic/GridFormPopoverMenu.stories.tsx +4 -1
- package/src/stories/grid/gridFormStatic/GridFormTextArea.stories.tsx +4 -1
- package/src/stories/grid/gridFormStatic/GridFormTextInput.stories.tsx +4 -1
- package/src/stories/grid/interactions/GridKeyboardInteractions.stories.tsx +21 -12
- package/src/stories/react-menu/ReactMenu.stories.tsx +6 -4
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.