qwc2 2026.9.2 → 2026.9.8
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/actions/map.js +5 -1
- package/components/AppMenu.js +1 -1
- package/components/AttributeTableWidget.js +246 -249
- package/components/IdentifyTool.js +66 -33
- package/components/IdentifyViewer.js +173 -186
- package/components/PickFeature.js +9 -6
- package/components/ResizeableWindow.js +0 -1
- package/components/map3d/Map3D.js +1 -1
- package/components/map3d/style/MapControls3D.css +0 -4
- package/components/style/ResizeableWindow.css +11 -11
- package/components/widgets/ComboBox.js +2 -0
- package/components/widgets/FeaturesTable.js +97 -36
- package/components/widgets/LayerCatalogWidget.js +1 -1
- package/components/widgets/PopupMenu.js +17 -0
- package/components/widgets/style/FeaturesTable.css +25 -8
- package/components/widgets/style/MenuButton.css +1 -1
- package/icons/star.svg +7 -0
- package/package.json +2 -2
- package/plugins/AttributeTable.js +3 -0
- package/plugins/FeatureSearch.js +9 -1
- package/plugins/FeatureSelection.js +5 -1
- package/plugins/Identify.js +3 -0
- package/plugins/Print.js +16 -12
- package/plugins/Redlining.js +46 -8
- package/plugins/Reports.js +5 -2
- package/plugins/ThemeSwitcher.js +1 -1
- package/plugins/map/RedliningSupport.js +9 -3
- package/reducers/map.js +8 -1
- package/reducers/redlining.js +1 -0
- package/static/translations/bg-BG.json +7 -6
- package/static/translations/ca-ES.json +7 -6
- package/static/translations/cs-CZ.json +7 -6
- package/static/translations/de-CH.json +8 -7
- package/static/translations/de-DE.json +7 -6
- package/static/translations/en-US.json +7 -6
- package/static/translations/es-ES.json +7 -6
- package/static/translations/fi-FI.json +7 -6
- package/static/translations/fr-FR.json +7 -6
- package/static/translations/hu-HU.json +7 -6
- package/static/translations/it-IT.json +7 -6
- package/static/translations/ja-JP.json +7 -6
- package/static/translations/nl-NL.json +7 -6
- package/static/translations/no-NO.json +7 -6
- package/static/translations/pl-PL.json +7 -6
- package/static/translations/pt-BR.json +7 -6
- package/static/translations/pt-PT.json +7 -6
- package/static/translations/ro-RO.json +7 -6
- package/static/translations/ru-RU.json +7 -6
- package/static/translations/sv-SE.json +7 -6
- package/static/translations/tr-TR.json +7 -6
- package/static/translations/tsconfig.json +6 -5
- package/static/translations/uk-UA.json +7 -6
- package/utils/DxfImportUtils.js +959 -0
- package/utils/DxfUtils.js +0 -60
- package/utils/FeatureStyles.js +47 -10
- package/utils/FileImportUtils.js +51 -68
- package/utils/IdentifyUtils.js +5 -4
- package/utils/VectorLayerUtils.js +15 -9
package/actions/map.js
CHANGED
|
@@ -74,11 +74,15 @@ export function panTo(pos, crs) {
|
|
|
74
74
|
}
|
|
75
75
|
export function zoomToExtent(extent, crs) {
|
|
76
76
|
var zoomOffset = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
|
|
77
|
+
var minZoom = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : undefined;
|
|
78
|
+
var maxZoom = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : undefined;
|
|
77
79
|
return {
|
|
78
80
|
type: ZOOM_TO_EXTENT,
|
|
79
81
|
extent: extent,
|
|
80
82
|
crs: crs,
|
|
81
|
-
zoomOffset: zoomOffset
|
|
83
|
+
zoomOffset: zoomOffset,
|
|
84
|
+
minZoom: minZoom,
|
|
85
|
+
maxZoom: maxZoom
|
|
82
86
|
};
|
|
83
87
|
}
|
|
84
88
|
export function zoomToPoint(pos, zoom, crs) {
|
package/components/AppMenu.js
CHANGED
|
@@ -358,7 +358,7 @@ var AppMenu = /*#__PURE__*/function (_React$Component) {
|
|
|
358
358
|
curEntry: null
|
|
359
359
|
});
|
|
360
360
|
},
|
|
361
|
-
placeholder: LocaleUtils.tr("
|
|
361
|
+
placeholder: LocaleUtils.tr("common.filter"),
|
|
362
362
|
ref: this.setFilterField,
|
|
363
363
|
role: "input",
|
|
364
364
|
type: "text",
|