Skip to content

Commit 4782ea4

Browse files
committed
chore(data-widget): move three state checkbox style to atlas core
1 parent ee57610 commit 4782ea4

File tree

11 files changed

+17
-128
lines changed

11 files changed

+17
-128
lines changed

packages/modules/data-widgets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/data-widgets",
33
"moduleName": "Data Widgets",
4-
"version": "2.12.0",
4+
"version": "2.12.1",
55
"license": "Apache-2.0",
66
"copyright": "© Mendix Technology BV 2023. All rights reserved.",
77
"private": true,

packages/modules/data-widgets/src/themesource/datawidgets/web/_three-state-checkbox.scss

Lines changed: 0 additions & 88 deletions
This file was deleted.

packages/pluggableWidgets/datagrid-web/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Changed
10+
11+
- We move select all checkbox styling to atlas core. Please update atlas core for correct styling if you are using the select all feature or exclude "Checkbox" from exclusion variables if you want to create your own styling.
12+
913
## [2.12.0] - 2024-01-16
1014

1115
### Added

packages/pluggableWidgets/datagrid-web/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/datagrid-web",
33
"widgetName": "Datagrid",
4-
"version": "2.12.0",
4+
"version": "2.12.1",
55
"description": "",
66
"copyright": "© Mendix Technology BV 2023. All rights reserved.",
77
"private": true,
@@ -54,6 +54,7 @@
5454
"@mendix/widget-plugin-grid": "workspace:*",
5555
"@mendix/widget-plugin-hooks": "workspace:*",
5656
"@mendix/widget-plugin-platform": "workspace:*",
57-
"@mendix/widget-plugin-test-utils": "workspace:*"
57+
"@mendix/widget-plugin-test-utils": "workspace:*",
58+
"@mendix/widget-plugin-component-kit": "workspace:*"
5859
}
5960
}

packages/pluggableWidgets/datagrid-web/src/components/CheckboxColumnHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ThreeStateCheckBox } from "@mendix/widget-plugin-grid/components/ThreeStateCheckBox";
1+
import { ThreeStateCheckBox } from "@mendix/widget-plugin-component-kit/ThreeStateCheckBox";
22
import { Fragment, ReactElement, createElement } from "react";
33
import { useWidgetProps } from "../helpers/useWidgetProps";
44

packages/pluggableWidgets/datagrid-web/src/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="Datagrid" version="2.12.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="Datagrid" version="2.12.1" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="Datagrid.xml" />
66
</widgetFiles>

packages/pluggableWidgets/selection-helper-web/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Changed
10+
11+
- We move the selection checkbox styling to atlas core. Please update atlas core for correct styling if you are using this feature, or exclude "Checkbox" from exclusion variables if you want to create your own styling.
12+
913
## [1.0.3] - 2023-10-13
1014

1115
### Fixed

packages/pluggableWidgets/selection-helper-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/selection-helper-web",
33
"widgetName": "SelectionHelper",
4-
"version": "1.0.3",
4+
"version": "1.0.4",
55
"description": "",
66
"copyright": "© Mendix Technology BV 2023. All rights reserved.",
77
"license": "Apache-2.0",

packages/pluggableWidgets/selection-helper-web/src/components/SelectionHelperComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { createElement, CSSProperties, ReactElement, ReactNode, useMemo } from "react";
2-
import { ThreeStateCheckBox } from "@mendix/widget-plugin-grid/components/ThreeStateCheckBox";
2+
import { ThreeStateCheckBox } from "@mendix/widget-plugin-component-kit/ThreeStateCheckBox";
33

44
interface Props {
55
type: "checkbox" | "custom";

packages/pluggableWidgets/selection-helper-web/src/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="SelectionHelper" version="1.0.3" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="SelectionHelper" version="1.0.4" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="SelectionHelper.xml" />
66
</widgetFiles>

0 commit comments

Comments
 (0)