@redsift/table 12.5.6 → 12.5.7-muiv6
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/CONTRIBUTING.md +6 -0
- package/_internal/BaseComponents.js +1 -1
- package/_internal/BasePopper.js +2469 -0
- package/_internal/BasePopper.js.map +1 -0
- package/_internal/ControlledPagination.js +11004 -0
- package/_internal/ControlledPagination.js.map +1 -0
- package/_internal/DataGrid2.js +81 -149
- package/_internal/DataGrid2.js.map +1 -1
- package/_internal/GridToolbarFilterSemanticField2.js +3 -1340
- package/_internal/GridToolbarFilterSemanticField2.js.map +1 -1
- package/_internal/Pagination.js +1 -1
- package/_internal/Portal.js +6538 -0
- package/_internal/Portal.js.map +1 -0
- package/_internal/StatefulDataGrid.js +1 -1
- package/_internal/StatefulDataGrid2.js +1512 -1071
- package/_internal/StatefulDataGrid2.js.map +1 -1
- package/_internal/Toolbar2.js +6 -23
- package/_internal/Toolbar2.js.map +1 -1
- package/_internal/ToolbarWrapper2.js +1 -1
- package/_internal/jsx-runtime.js +1342 -0
- package/_internal/jsx-runtime.js.map +1 -0
- package/_internal/useControlledDatagridState.js +308 -43
- package/_internal/useControlledDatagridState.js.map +1 -1
- package/index.d.ts +354 -519
- package/index.js +15 -46
- package/index.js.map +1 -1
- package/package.json +10 -9
- package/_internal/BaseIconButton.js +0 -126
- package/_internal/BaseIconButton.js.map +0 -1
- package/_internal/ServerSideControlledPagination.js +0 -337
- package/_internal/ServerSideControlledPagination.js.map +0 -1
package/CONTRIBUTING.md
CHANGED
|
@@ -101,6 +101,10 @@ import { sum as d3sum, scaleOrdinal as d3scaleOrdinal, ScaleOrdinal as d3ScaleOr
|
|
|
101
101
|
|
|
102
102
|
## Component
|
|
103
103
|
|
|
104
|
+
### Design principles
|
|
105
|
+
|
|
106
|
+
Before any design/API decision (defaults, adding/exposing styling or spacing props), follow [`docs/design-guidelines.md`](docs/design-guidelines.md) and reference principles by slug (e.g. `DS-SPACING-01`) in code, PRs and reviews.
|
|
107
|
+
|
|
104
108
|
### Scaffolding
|
|
105
109
|
|
|
106
110
|
Each component should be in its own folder. If a subcomponent can be used as a standalone component, it should be in its own folder too. For instance, `CheckboxGroup` uses `Checkbox` but `Checkbox` can be used alone. In this case, `CheckboxGroup` and `Checkbox` both have their own folder. For `PieChart` and `PieChartSlice`, a `PieChartSlice` can not be used alone. It only exists inside a `PieChart` component. Therefore, both components are inside the same folder.
|
|
@@ -412,6 +416,8 @@ yarn build:products
|
|
|
412
416
|
|
|
413
417
|
## Publishing a release
|
|
414
418
|
|
|
419
|
+
> **Canonical process:** the full, up-to-date release workflow — the three parallel MUI DataGrid version lines (muiv6 / muiv7 / muiv8), peer-dependency bumps, docs/MCP regeneration and the pre-release checklist — lives in **`.github/instructions/release.instructions.md`**. Follow that as the source of truth. The steps below are a simplified single-line summary and omit the multi-version release details.
|
|
420
|
+
|
|
415
421
|
### Stable release
|
|
416
422
|
|
|
417
423
|
1. Make sure you're on the release branch (ex: `release/vX.Y.Z`) and a PR is opened on Github
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { B as BaseButton, a as BaseCheckbox, b as BaseIcon, c as
|
|
1
|
+
export { B as BaseButton, a as BaseCheckbox, b as BaseIcon, c as BasePopper, m as muiIconToDSIcon } from './BasePopper.js';
|
|
2
2
|
export { B as BaseTextField } from './BaseTextField.js';
|
|
3
3
|
//# sourceMappingURL=BaseComponents.js.map
|