@sap-ux/fe-fpm-writer 0.33.5 → 0.33.7
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.
|
@@ -128,6 +128,24 @@ export interface FilterBar extends BuildingBlock {
|
|
|
128
128
|
* This event is fired when the Go button is pressed or after a condition change.
|
|
129
129
|
*/
|
|
130
130
|
search?: string;
|
|
131
|
+
/**
|
|
132
|
+
* If true, the search is triggered automatically when a filter value is changed.
|
|
133
|
+
*
|
|
134
|
+
* @default false
|
|
135
|
+
*/
|
|
136
|
+
liveMode?: boolean;
|
|
137
|
+
/**
|
|
138
|
+
* Handles the visibility of the 'Clear' button on the FilterBar.
|
|
139
|
+
*
|
|
140
|
+
* @default false
|
|
141
|
+
*/
|
|
142
|
+
showClearButton?: boolean;
|
|
143
|
+
/**
|
|
144
|
+
* Displays possible errors during the search in a message box.
|
|
145
|
+
*
|
|
146
|
+
* @default true
|
|
147
|
+
*/
|
|
148
|
+
showMessages?: boolean;
|
|
131
149
|
}
|
|
132
150
|
/**
|
|
133
151
|
* Represents the format options for a field control.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/fe-fpm-writer",
|
|
3
3
|
"description": "SAP Fiori elements flexible programming model writer",
|
|
4
|
-
"version": "0.33.
|
|
4
|
+
"version": "0.33.7",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"semver": "7.5.4",
|
|
32
32
|
"xml-formatter": "2.6.1",
|
|
33
33
|
"xpath": "0.0.33",
|
|
34
|
-
"@sap-ux/fiori-annotation-api": "0.4.
|
|
35
|
-
"@sap-ux/project-access": "1.29.
|
|
34
|
+
"@sap-ux/fiori-annotation-api": "0.4.10",
|
|
35
|
+
"@sap-ux/project-access": "1.29.9"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/inquirer": "8.2.6",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@types/semver": "7.5.2",
|
|
44
44
|
"@types/vinyl": "2.0.7",
|
|
45
45
|
"@sap-ux/i18n": "0.2.1",
|
|
46
|
-
"@sap-ux/ui-prompting": "0.3.
|
|
46
|
+
"@sap-ux/ui-prompting": "0.3.18"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
49
|
"node": ">=18.x"
|
|
@@ -3,5 +3,8 @@
|
|
|
3
3
|
metaPath="<%- data.metaPath %>"<% } %><% if (data.contextPath) { %>
|
|
4
4
|
contextPath="<%- data.contextPath %>"<% } %><% if (data.search) { %>
|
|
5
5
|
search="<%- data.search %>"<% } %><% if (data.filterChanged) { %>
|
|
6
|
-
filterChanged="<%- data.filterChanged %>"<% } %>
|
|
6
|
+
filterChanged="<%- data.filterChanged %>"<% } %><% if (data.liveMode !== undefined) { %>
|
|
7
|
+
liveMode="<%- data.liveMode %>"<% } %><% if (data.showClearButton !== undefined) { %>
|
|
8
|
+
showClearButton="<%- data.showClearButton %>"<% } %><% if (data.showMessages !== undefined) { %>
|
|
9
|
+
showMessages="<%- data.showMessages %>"<% } %>
|
|
7
10
|
/>
|