Skip to content

Commit c7e9073

Browse files
committed
chore(nanoflow-actions-native): update changelogs
1 parent d5bd19a commit c7e9073

13 files changed

Lines changed: 29 additions & 183 deletions

File tree

packages/jsActions/nanoflow-actions-native/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [5.0.0] Nanoflow Commons - 2024-12-3
910
### Changed
1011

1112
- Updated @mendix/pluggable-widgets-tools from version v9.0.0 to v10.0.1.

packages/jsActions/nanoflow-actions-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nanoflow-actions-native",
33
"moduleName": "Nanoflow Commons",
4-
"version": "4.0.4",
4+
"version": "5.0.0",
55
"license": "Apache-2.0",
66
"copyright": "© Mendix Technology BV 2022. All rights reserved.",
77
"repository": {
@@ -37,4 +37,4 @@
3737
"mendix": "~10.0.9976",
3838
"rollup": "^2.79.2"
3939
}
40-
}
40+
}

packages/pluggableWidgets/accordion-native/typings/AccordionProps.d.ts

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,6 @@ export interface AccordionPreviewProps {
6767
collapsible: boolean;
6868
collapseBehavior: CollapseBehaviorEnum;
6969
icon: IconEnum;
70-
iconCollapsed:
71-
| { type: "glyph"; iconClass: string }
72-
| { type: "image"; imageUrl: string; iconUrl: string }
73-
| { type: "icon"; iconClass: string }
74-
| undefined;
75-
iconExpanded:
76-
| { type: "glyph"; iconClass: string }
77-
| { type: "image"; imageUrl: string; iconUrl: string }
78-
| { type: "icon"; iconClass: string }
79-
| undefined;
70+
iconCollapsed: { type: "glyph"; iconClass: string; } | { type: "image"; imageUrl: string; iconUrl: string; } | { type: "icon"; iconClass: string; } | undefined;
71+
iconExpanded: { type: "glyph"; iconClass: string; } | { type: "image"; imageUrl: string; iconUrl: string; } | { type: "icon"; iconClass: string; } | undefined;
8072
}

packages/pluggableWidgets/activity-indicator-native/typings/ActivityIndicatorProps.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { CSSProperties } from "react";
88
export interface ActivityIndicatorProps<Style> {
99
name: string;
1010
style: Style[];
11+
1112
}
1213

1314
export interface ActivityIndicatorPreviewProps {
@@ -20,4 +21,5 @@ export interface ActivityIndicatorPreviewProps {
2021
styleObject?: CSSProperties;
2122
readOnly: boolean;
2223
renderMode?: "design" | "xray" | "structure";
24+
2325
}

packages/pluggableWidgets/animation-native/typings/AnimationProps.d.ts

Lines changed: 4 additions & 91 deletions
Original file line numberDiff line numberDiff line change
@@ -8,100 +8,13 @@ import { ActionValue, DynamicValue } from "mendix";
88

99
export type AnimationTypeEnum = "in" | "attention" | "out";
1010

11-
export type AnimationInEnum =
12-
| "none"
13-
| "bounceIn"
14-
| "bounceInDown"
15-
| "bounceInUp"
16-
| "bounceInLeft"
17-
| "bounceInRight"
18-
| "fadeIn"
19-
| "fadeInDown"
20-
| "fadeInDownBig"
21-
| "fadeInUp"
22-
| "fadeInUpBig"
23-
| "fadeInLeft"
24-
| "fadeInLeftBig"
25-
| "fadeInRight"
26-
| "fadeInRightBig"
27-
| "slideInDown"
28-
| "slideInUp"
29-
| "slideInLeft"
30-
| "slideInRight"
31-
| "zoomIn"
32-
| "zoomInDown"
33-
| "zoomInUp"
34-
| "zoomInLeft"
35-
| "zoomInRight";
11+
export type AnimationInEnum = "none" | "bounceIn" | "bounceInDown" | "bounceInUp" | "bounceInLeft" | "bounceInRight" | "fadeIn" | "fadeInDown" | "fadeInDownBig" | "fadeInUp" | "fadeInUpBig" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "slideInDown" | "slideInUp" | "slideInLeft" | "slideInRight" | "zoomIn" | "zoomInDown" | "zoomInUp" | "zoomInLeft" | "zoomInRight";
3612

37-
export type AnimationAttentionEnum =
38-
| "none"
39-
| "bounce"
40-
| "flash"
41-
| "pulse"
42-
| "rotate"
43-
| "rubberBand"
44-
| "shake"
45-
| "swing"
46-
| "tada"
47-
| "wobble";
13+
export type AnimationAttentionEnum = "none" | "bounce" | "flash" | "pulse" | "rotate" | "rubberBand" | "shake" | "swing" | "tada" | "wobble";
4814

49-
export type AnimationOutEnum =
50-
| "none"
51-
| "bounceOut"
52-
| "bounceOutDown"
53-
| "bounceOutUp"
54-
| "bounceOutLeft"
55-
| "bounceOutRight"
56-
| "fadeOut"
57-
| "fadeOutDown"
58-
| "fadeOutDownBig"
59-
| "fadeOutUp"
60-
| "fadeOutUpBig"
61-
| "fadeOutLeft"
62-
| "fadeOutLeftBig"
63-
| "fadeOutRight"
64-
| "fadeOutRightBig"
65-
| "slideOutDown"
66-
| "slideOutUp"
67-
| "slideOutLeft"
68-
| "slideOutRight"
69-
| "zoomOut"
70-
| "zoomOutDown"
71-
| "zoomOutUp"
72-
| "zoomOutLeft"
73-
| "zoomOutRight";
15+
export type AnimationOutEnum = "none" | "bounceOut" | "bounceOutDown" | "bounceOutUp" | "bounceOutLeft" | "bounceOutRight" | "fadeOut" | "fadeOutDown" | "fadeOutDownBig" | "fadeOutUp" | "fadeOutUpBig" | "fadeOutLeft" | "fadeOutLeftBig" | "fadeOutRight" | "fadeOutRightBig" | "slideOutDown" | "slideOutUp" | "slideOutLeft" | "slideOutRight" | "zoomOut" | "zoomOutDown" | "zoomOutUp" | "zoomOutLeft" | "zoomOutRight";
7416

75-
export type EasingEnum =
76-
| "linear"
77-
| "ease"
78-
| "ease_in"
79-
| "ease_out"
80-
| "ease_in_out"
81-
| "ease_in_cubic"
82-
| "ease_out_cubic"
83-
| "ease_in_out_cubic"
84-
| "ease_in_circ"
85-
| "ease_out_circ"
86-
| "ease_in_out_circ"
87-
| "ease_in_expo"
88-
| "ease_out_expo"
89-
| "ease_in_out_expo"
90-
| "ease_in_quad"
91-
| "ease_out_quad"
92-
| "ease_in_out_quad"
93-
| "ease_in_quart"
94-
| "ease_out_quart"
95-
| "ease_in_out_quart"
96-
| "ease_in_quint"
97-
| "ease_out_quint"
98-
| "ease_in_out_quint"
99-
| "ease_in_sine"
100-
| "ease_out_sine"
101-
| "ease_in_out_sine"
102-
| "ease_in_back"
103-
| "ease_out_back"
104-
| "ease_in_out_back";
17+
export type EasingEnum = "linear" | "ease" | "ease_in" | "ease_out" | "ease_in_out" | "ease_in_cubic" | "ease_out_cubic" | "ease_in_out_cubic" | "ease_in_circ" | "ease_out_circ" | "ease_in_out_circ" | "ease_in_expo" | "ease_out_expo" | "ease_in_out_expo" | "ease_in_quad" | "ease_out_quad" | "ease_in_out_quad" | "ease_in_quart" | "ease_out_quart" | "ease_in_out_quart" | "ease_in_quint" | "ease_out_quint" | "ease_in_out_quint" | "ease_in_sine" | "ease_out_sine" | "ease_in_out_sine" | "ease_in_back" | "ease_out_back" | "ease_in_out_back";
10518

10619
export type DirectionEnum = "normal" | "alternate";
10720

packages/pluggableWidgets/background-image-native/typings/BackgroundImageProps.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface BackgroundImagePreviewProps {
2828
styleObject?: CSSProperties;
2929
readOnly: boolean;
3030
renderMode?: "design" | "xray" | "structure";
31-
image: { type: "static"; imageUrl: string } | { type: "dynamic"; entity: string } | null;
31+
image: { type: "static"; imageUrl: string; } | { type: "dynamic"; entity: string; } | null;
3232
resizeMode: ResizeModeEnum;
3333
opacity: number | null;
3434
content: { widgetCount: number; renderer: ComponentType<{ children: ReactNode; caption?: string }> };

packages/pluggableWidgets/feedback-native/typings/FeedbackProps.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ export interface FeedbackPreviewProps {
2626
renderMode?: "design" | "xray" | "structure";
2727
sprintrapp: string;
2828
allowScreenshot: boolean;
29-
logo: { type: "static"; imageUrl: string } | { type: "dynamic"; entity: string } | null;
29+
logo: { type: "static"; imageUrl: string; } | { type: "dynamic"; entity: string; } | null;
3030
}

packages/pluggableWidgets/floating-action-button-native/typings/FloatingActionButtonProps.d.ts

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@ export interface SecondaryButtonsType {
1717
}
1818

1919
export interface SecondaryButtonsPreviewType {
20-
icon:
21-
| { type: "glyph"; iconClass: string }
22-
| { type: "image"; imageUrl: string; iconUrl: string }
23-
| { type: "icon"; iconClass: string }
24-
| undefined;
20+
icon: { type: "glyph"; iconClass: string; } | { type: "image"; imageUrl: string; iconUrl: string; } | { type: "icon"; iconClass: string; } | undefined;
2521
caption: string;
2622
onClick: {} | null;
2723
}
@@ -47,16 +43,8 @@ export interface FloatingActionButtonPreviewProps {
4743
styleObject?: CSSProperties;
4844
readOnly: boolean;
4945
renderMode?: "design" | "xray" | "structure";
50-
icon:
51-
| { type: "glyph"; iconClass: string }
52-
| { type: "image"; imageUrl: string; iconUrl: string }
53-
| { type: "icon"; iconClass: string }
54-
| undefined;
55-
iconActive:
56-
| { type: "glyph"; iconClass: string }
57-
| { type: "image"; imageUrl: string; iconUrl: string }
58-
| { type: "icon"; iconClass: string }
59-
| undefined;
46+
icon: { type: "glyph"; iconClass: string; } | { type: "image"; imageUrl: string; iconUrl: string; } | { type: "icon"; iconClass: string; } | undefined;
47+
iconActive: { type: "glyph"; iconClass: string; } | { type: "image"; imageUrl: string; iconUrl: string; } | { type: "icon"; iconClass: string; } | undefined;
6048
horizontalPosition: HorizontalPositionEnum;
6149
verticalPosition: VerticalPositionEnum;
6250
onClick: {} | null;

packages/pluggableWidgets/gallery-text-filter-native/typings/GalleryTextFilterProps.d.ts

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,7 @@
66
import { CSSProperties } from "react";
77
import { ActionValue, DynamicValue, EditableValue } from "mendix";
88

9-
export type DefaultFilterEnum =
10-
| "contains"
11-
| "startsWith"
12-
| "endsWith"
13-
| "greater"
14-
| "greaterEqual"
15-
| "equal"
16-
| "notEqual"
17-
| "smaller"
18-
| "smallerEqual"
19-
| "empty"
20-
| "notEmpty";
9+
export type DefaultFilterEnum = "contains" | "startsWith" | "endsWith" | "greater" | "greaterEqual" | "equal" | "notEqual" | "smaller" | "smallerEqual" | "empty" | "notEmpty";
2110

2211
export interface GalleryTextFilterProps<Style> {
2312
name: string;

packages/pluggableWidgets/image-native/typings/ImageProps.d.ts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,10 @@ export interface ImagePreviewProps {
5353
readOnly: boolean;
5454
renderMode?: "design" | "xray" | "structure";
5555
datasource: DatasourceEnum;
56-
imageObject: { type: "static"; imageUrl: string } | { type: "dynamic"; entity: string } | null;
57-
defaultImageDynamic: { type: "static"; imageUrl: string } | { type: "dynamic"; entity: string } | null;
56+
imageObject: { type: "static"; imageUrl: string; } | { type: "dynamic"; entity: string; } | null;
57+
defaultImageDynamic: { type: "static"; imageUrl: string; } | { type: "dynamic"; entity: string; } | null;
5858
imageUrl: string;
59-
imageIcon:
60-
| { type: "glyph"; iconClass: string }
61-
| { type: "image"; imageUrl: string; iconUrl: string }
62-
| { type: "icon"; iconClass: string }
63-
| undefined;
59+
imageIcon: { type: "glyph"; iconClass: string; } | { type: "image"; imageUrl: string; iconUrl: string; } | { type: "icon"; iconClass: string; } | undefined;
6460
isBackgroundImage: boolean;
6561
children: { widgetCount: number; renderer: ComponentType<{ children: ReactNode; caption?: string }> };
6662
resizeMode: ResizeModeEnum;

0 commit comments

Comments
 (0)