Skip to content

Commit 2d54322

Browse files
authored
Merge pull request #18 from mendixlabs/2.3.0-release-changes
Update version number for 2.3.0 release
2 parents dffa903 + 2ca45ef commit 2d54322

File tree

6 files changed

+3
-7
lines changed

6 files changed

+3
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tagselector",
33
"widgetName": "TagSelector",
4-
"version": "2.2.0",
4+
"version": "2.3.0",
55
"description": "Pluggable Mendix widget to select/delete/create objects and assign them to an existing object.",
66
"copyright": "2020 Mendix Technology BV",
77
"author": "Nick",

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="TagSelector" version="2.2.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="TagSelector" version="2.3.0" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="TagSelector.xml"/>
66
</widgetFiles>
0 Bytes
Binary file not shown.

tests/testProject/TagSelectTestApp.mpr.lock

Whitespace-only changes.
76 KB
Binary file not shown.

typings/TagSelectorProps.d.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@
33
* WARNING: All changes made to this file will be overwritten
44
* @author Mendix UI Content Team
55
*/
6-
import { CSSProperties } from "react";
76
import { ActionValue, EditableValue, ListValue, ListAttributeValue } from "mendix";
87

98
export interface TagSelectorContainerProps {
109
name: string;
11-
class: string;
12-
style?: CSSProperties;
1310
tabIndex?: number;
1411
id: string;
1512
tagLabel: EditableValue<string>;
@@ -33,8 +30,7 @@ export interface TagSelectorContainerProps {
3330
}
3431

3532
export interface TagSelectorPreviewProps {
36-
class: string;
37-
style: string;
33+
readOnly: boolean;
3834
tagLabel: string;
3935
selectTag: {} | null;
4036
createTag: {} | null;

0 commit comments

Comments
 (0)