@open-pioneer/map-navigation 0.11.0 → 0.12.0-dev.20250725080856

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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @open-pioneer/map-navigation
2
2
 
3
+ ## 0.12.0-dev.20250725080856
4
+
5
+ ### Minor Changes
6
+
7
+ - 2732052: Icons have been changed to unify the appearance of the components. Preferably, Lucide react-icons are used.
8
+
9
+ ### Patch Changes
10
+
11
+ - 10d2fe7: Update dependencies
12
+ - da6a410: Update dependencies
13
+ - Updated dependencies [10d2fe7]
14
+ - Updated dependencies [2702df4]
15
+ - Updated dependencies [8986b3b]
16
+ - Updated dependencies [f1f69f2]
17
+ - Updated dependencies [da6a410]
18
+ - @open-pioneer/map@0.12.0-dev.20250725080856
19
+ - @open-pioneer/map-ui-components@0.12.0-dev.20250725080856
20
+
3
21
  ## 0.11.0
4
22
 
5
23
  ### Minor Changes
@@ -94,7 +112,6 @@
94
112
  ### Minor Changes
95
113
 
96
114
  - 2fa8020: Update trails core package dependencies.
97
-
98
115
  - Also updates Chakra UI to the latest 2.x version and Chakra React Select to version 5.
99
116
  - Removes any obsolete references to `@chakra-ui/system`.
100
117
  This dependency seems to be no longer required and may lead to duplicate packages in your dependency tree.
package/History.js CHANGED
@@ -5,7 +5,7 @@ import { useCommonComponentProps } from '@open-pioneer/react-utils';
5
5
  import { useReactiveSnapshot } from '@open-pioneer/reactivity';
6
6
  import classNames from 'classnames';
7
7
  import { useIntl } from './_virtual/_virtual-pioneer-module_react-hooks.js';
8
- import { FiCornerUpLeft, FiCornerUpRight } from 'react-icons/fi';
8
+ import { LuCornerUpLeft, LuCornerUpRight } from 'react-icons/lu';
9
9
  import { useHistoryViewModel } from './ViewHistoryModel.js';
10
10
 
11
11
  const HistoryForward = function HistoryForward2(props) {
@@ -60,13 +60,13 @@ function getDirectionProps(intl, viewDirection) {
60
60
  return {
61
61
  defaultClassName: "view-forward",
62
62
  buttonLabel: intl.formatMessage({ id: "view-forward.title" }),
63
- buttonIcon: /* @__PURE__ */ jsx(FiCornerUpRight, {})
63
+ buttonIcon: /* @__PURE__ */ jsx(LuCornerUpRight, {})
64
64
  };
65
65
  case "backward":
66
66
  return {
67
67
  defaultClassName: "view-backward",
68
68
  buttonLabel: intl.formatMessage({ id: "view-backward.title" }),
69
- buttonIcon: /* @__PURE__ */ jsx(FiCornerUpLeft, {})
69
+ buttonIcon: /* @__PURE__ */ jsx(LuCornerUpLeft, {})
70
70
  };
71
71
  }
72
72
  }
package/History.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"History.js","sources":["History.tsx"],"sourcesContent":["// SPDX-FileCopyrightText: 2023-2025 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { ButtonProps } from \"@chakra-ui/react\";\nimport { MapModelProps, useMapModel } from \"@open-pioneer/map\";\nimport { ToolButton } from \"@open-pioneer/map-ui-components\";\nimport { CommonComponentProps, useCommonComponentProps } from \"@open-pioneer/react-utils\";\nimport { useReactiveSnapshot } from \"@open-pioneer/reactivity\";\nimport { PackageIntl } from \"@open-pioneer/runtime\";\nimport classNames from \"classnames\";\nimport { useIntl } from \"open-pioneer:react-hooks\";\nimport { FC, RefAttributes } from \"react\";\nimport { FiCornerUpLeft, FiCornerUpRight } from \"react-icons/fi\";\nimport { useHistoryViewModel } from \"./ViewHistoryModel\";\n\nexport type HistoryForwardProps = Omit<HistoryProps, \"viewDirection\">;\n\n/**\n * Provides a button by which the user can navigate to the next map view.\n *\n * This component composes {@link History}.\n */\nexport const HistoryForward: FC<HistoryForwardProps> = function HistoryForward(\n props: HistoryForwardProps\n) {\n return <History viewDirection=\"forward\" {...props} />;\n};\n\nexport type HistoryBackwardProps = HistoryForwardProps;\n\n/**\n * Provides a button by which the user can navigate to the previous map view.\n *\n * This component composes {@link History}.\n */\nexport const HistoryBackward: FC<HistoryBackwardProps> = function HistoryBackward(\n props: HistoryBackwardProps\n) {\n return <History viewDirection=\"backward\" {...props} />;\n};\n\nexport interface HistoryProps\n extends CommonComponentProps,\n RefAttributes<HTMLButtonElement>,\n MapModelProps {\n /**\n * Additional properties for the `Button` element.\n *\n * Note that the ToolButton also defines some of these props.\n */\n buttonProps?: Partial<ButtonProps>;\n\n /**\n * The view direction.\n *\n * The button will either view forward or view backward depending on this value.\n */\n viewDirection: \"forward\" | \"backward\";\n}\n\n/**\n * Provides a button by which the user can navigate forward or backward in the view history of the map.\n */\nexport const History: FC<HistoryProps> = function History(props: HistoryProps) {\n const intl = useIntl();\n const { buttonProps, viewDirection, ref } = props;\n const { map } = useMapModel(props);\n const viewModel = useHistoryViewModel(map);\n const { defaultClassName, buttonLabel, buttonIcon } = getDirectionProps(intl, viewDirection);\n const { containerProps } = useCommonComponentProps(classNames(\"view\", defaultClassName), props);\n\n const canNavigate = useReactiveSnapshot(() => {\n if (!viewModel) {\n return false;\n }\n\n if (viewDirection === \"forward\") {\n return viewModel.canForward;\n } else {\n return viewModel.canBackward;\n }\n }, [viewModel, viewDirection]);\n const navigate = () => {\n if (!viewModel) {\n return;\n }\n\n if (viewDirection === \"forward\") {\n viewModel.forward();\n } else {\n viewModel.backward();\n }\n };\n\n return (\n viewModel && (\n <ToolButton\n ref={ref}\n {...containerProps}\n buttonProps={buttonProps}\n label={buttonLabel}\n icon={buttonIcon}\n onClick={navigate}\n disabled={!canNavigate}\n />\n )\n );\n};\n\nfunction getDirectionProps(intl: PackageIntl, viewDirection: \"forward\" | \"backward\") {\n switch (viewDirection) {\n case \"forward\":\n return {\n defaultClassName: \"view-forward\",\n buttonLabel: intl.formatMessage({ id: \"view-forward.title\" }),\n buttonIcon: <FiCornerUpRight />\n };\n case \"backward\":\n return {\n defaultClassName: \"view-backward\",\n buttonLabel: intl.formatMessage({ id: \"view-backward.title\" }),\n buttonIcon: <FiCornerUpLeft />\n };\n }\n}\n"],"names":["HistoryForward","HistoryBackward","History"],"mappings":";;;;;;;;;;AAqBa,MAAA,cAAA,GAA0C,SAASA,eAAAA,CAC5D,KACF,EAAA;AACE,EAAA,uBAAQ,GAAA,CAAA,OAAA,EAAA,EAAQ,aAAc,EAAA,SAAA,EAAW,GAAG,KAAO,EAAA,CAAA;AACvD;AASa,MAAA,eAAA,GAA4C,SAASC,gBAAAA,CAC9D,KACF,EAAA;AACE,EAAA,uBAAQ,GAAA,CAAA,OAAA,EAAA,EAAQ,aAAc,EAAA,UAAA,EAAY,GAAG,KAAO,EAAA,CAAA;AACxD;AAwBa,MAAA,OAAA,GAA4B,SAASC,QAAAA,CAAQ,KAAqB,EAAA;AAC3E,EAAA,MAAM,OAAO,OAAQ,EAAA;AACrB,EAAA,MAAM,EAAE,WAAA,EAAa,aAAe,EAAA,GAAA,EAAQ,GAAA,KAAA;AAC5C,EAAA,MAAM,EAAE,GAAA,EAAQ,GAAA,WAAA,CAAY,KAAK,CAAA;AACjC,EAAM,MAAA,SAAA,GAAY,oBAAoB,GAAG,CAAA;AACzC,EAAA,MAAM,EAAE,gBAAkB,EAAA,WAAA,EAAa,YAAe,GAAA,iBAAA,CAAkB,MAAM,aAAa,CAAA;AAC3F,EAAM,MAAA,EAAE,gBAAmB,GAAA,uBAAA,CAAwB,WAAW,MAAQ,EAAA,gBAAgB,GAAG,KAAK,CAAA;AAE9F,EAAM,MAAA,WAAA,GAAc,oBAAoB,MAAM;AAC1C,IAAA,IAAI,CAAC,SAAW,EAAA;AACZ,MAAO,OAAA,KAAA;AAAA;AAGX,IAAA,IAAI,kBAAkB,SAAW,EAAA;AAC7B,MAAA,OAAO,SAAU,CAAA,UAAA;AAAA,KACd,MAAA;AACH,MAAA,OAAO,SAAU,CAAA,WAAA;AAAA;AACrB,GACD,EAAA,CAAC,SAAW,EAAA,aAAa,CAAC,CAAA;AAC7B,EAAA,MAAM,WAAW,MAAM;AACnB,IAAA,IAAI,CAAC,SAAW,EAAA;AACZ,MAAA;AAAA;AAGJ,IAAA,IAAI,kBAAkB,SAAW,EAAA;AAC7B,MAAA,SAAA,CAAU,OAAQ,EAAA;AAAA,KACf,MAAA;AACH,MAAA,SAAA,CAAU,QAAS,EAAA;AAAA;AACvB,GACJ;AAEA,EAAA,OACI,SACI,oBAAA,GAAA;AAAA,IAAC,UAAA;AAAA,IAAA;AAAA,MACG,GAAA;AAAA,MACC,GAAG,cAAA;AAAA,MACJ,WAAA;AAAA,MACA,KAAO,EAAA,WAAA;AAAA,MACP,IAAM,EAAA,UAAA;AAAA,MACN,OAAS,EAAA,QAAA;AAAA,MACT,UAAU,CAAC;AAAA;AAAA,GACf;AAGZ;AAEA,SAAS,iBAAA,CAAkB,MAAmB,aAAuC,EAAA;AACjF,EAAA,QAAQ,aAAe;AAAA,IACnB,KAAK,SAAA;AACD,MAAO,OAAA;AAAA,QACH,gBAAkB,EAAA,cAAA;AAAA,QAClB,aAAa,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,sBAAsB,CAAA;AAAA,QAC5D,UAAA,sBAAa,eAAgB,EAAA,EAAA;AAAA,OACjC;AAAA,IACJ,KAAK,UAAA;AACD,MAAO,OAAA;AAAA,QACH,gBAAkB,EAAA,eAAA;AAAA,QAClB,aAAa,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,uBAAuB,CAAA;AAAA,QAC7D,UAAA,sBAAa,cAAe,EAAA,EAAA;AAAA,OAChC;AAAA;AAEZ;;;;"}
1
+ {"version":3,"file":"History.js","sources":["History.tsx"],"sourcesContent":["// SPDX-FileCopyrightText: 2023-2025 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { ButtonProps } from \"@chakra-ui/react\";\nimport { MapModelProps, useMapModel } from \"@open-pioneer/map\";\nimport { ToolButton } from \"@open-pioneer/map-ui-components\";\nimport { CommonComponentProps, useCommonComponentProps } from \"@open-pioneer/react-utils\";\nimport { useReactiveSnapshot } from \"@open-pioneer/reactivity\";\nimport { PackageIntl } from \"@open-pioneer/runtime\";\nimport classNames from \"classnames\";\nimport { useIntl } from \"open-pioneer:react-hooks\";\nimport { FC, RefAttributes } from \"react\";\nimport { LuCornerUpLeft, LuCornerUpRight } from \"react-icons/lu\";\nimport { useHistoryViewModel } from \"./ViewHistoryModel\";\n\nexport type HistoryForwardProps = Omit<HistoryProps, \"viewDirection\">;\n\n/**\n * Provides a button by which the user can navigate to the next map view.\n *\n * This component composes {@link History}.\n */\nexport const HistoryForward: FC<HistoryForwardProps> = function HistoryForward(\n props: HistoryForwardProps\n) {\n return <History viewDirection=\"forward\" {...props} />;\n};\n\nexport type HistoryBackwardProps = HistoryForwardProps;\n\n/**\n * Provides a button by which the user can navigate to the previous map view.\n *\n * This component composes {@link History}.\n */\nexport const HistoryBackward: FC<HistoryBackwardProps> = function HistoryBackward(\n props: HistoryBackwardProps\n) {\n return <History viewDirection=\"backward\" {...props} />;\n};\n\nexport interface HistoryProps\n extends CommonComponentProps,\n RefAttributes<HTMLButtonElement>,\n MapModelProps {\n /**\n * Additional properties for the `Button` element.\n *\n * Note that the ToolButton also defines some of these props.\n */\n buttonProps?: Partial<ButtonProps>;\n\n /**\n * The view direction.\n *\n * The button will either view forward or view backward depending on this value.\n */\n viewDirection: \"forward\" | \"backward\";\n}\n\n/**\n * Provides a button by which the user can navigate forward or backward in the view history of the map.\n */\nexport const History: FC<HistoryProps> = function History(props: HistoryProps) {\n const intl = useIntl();\n const { buttonProps, viewDirection, ref } = props;\n const { map } = useMapModel(props);\n const viewModel = useHistoryViewModel(map);\n const { defaultClassName, buttonLabel, buttonIcon } = getDirectionProps(intl, viewDirection);\n const { containerProps } = useCommonComponentProps(classNames(\"view\", defaultClassName), props);\n\n const canNavigate = useReactiveSnapshot(() => {\n if (!viewModel) {\n return false;\n }\n\n if (viewDirection === \"forward\") {\n return viewModel.canForward;\n } else {\n return viewModel.canBackward;\n }\n }, [viewModel, viewDirection]);\n const navigate = () => {\n if (!viewModel) {\n return;\n }\n\n if (viewDirection === \"forward\") {\n viewModel.forward();\n } else {\n viewModel.backward();\n }\n };\n\n return (\n viewModel && (\n <ToolButton\n ref={ref}\n {...containerProps}\n buttonProps={buttonProps}\n label={buttonLabel}\n icon={buttonIcon}\n onClick={navigate}\n disabled={!canNavigate}\n />\n )\n );\n};\n\nfunction getDirectionProps(intl: PackageIntl, viewDirection: \"forward\" | \"backward\") {\n switch (viewDirection) {\n case \"forward\":\n return {\n defaultClassName: \"view-forward\",\n buttonLabel: intl.formatMessage({ id: \"view-forward.title\" }),\n buttonIcon: <LuCornerUpRight />\n };\n case \"backward\":\n return {\n defaultClassName: \"view-backward\",\n buttonLabel: intl.formatMessage({ id: \"view-backward.title\" }),\n buttonIcon: <LuCornerUpLeft />\n };\n }\n}\n"],"names":["HistoryForward","HistoryBackward","History"],"mappings":";;;;;;;;;;AAqBa,MAAA,cAAA,GAA0C,SAASA,eAAAA,CAC5D,KACF,EAAA;AACE,EAAA,uBAAQ,GAAA,CAAA,OAAA,EAAA,EAAQ,aAAc,EAAA,SAAA,EAAW,GAAG,KAAO,EAAA,CAAA;AACvD;AASa,MAAA,eAAA,GAA4C,SAASC,gBAAAA,CAC9D,KACF,EAAA;AACE,EAAA,uBAAQ,GAAA,CAAA,OAAA,EAAA,EAAQ,aAAc,EAAA,UAAA,EAAY,GAAG,KAAO,EAAA,CAAA;AACxD;AAwBa,MAAA,OAAA,GAA4B,SAASC,QAAAA,CAAQ,KAAqB,EAAA;AAC3E,EAAA,MAAM,OAAO,OAAQ,EAAA;AACrB,EAAA,MAAM,EAAE,WAAA,EAAa,aAAe,EAAA,GAAA,EAAQ,GAAA,KAAA;AAC5C,EAAA,MAAM,EAAE,GAAA,EAAQ,GAAA,WAAA,CAAY,KAAK,CAAA;AACjC,EAAM,MAAA,SAAA,GAAY,oBAAoB,GAAG,CAAA;AACzC,EAAA,MAAM,EAAE,gBAAkB,EAAA,WAAA,EAAa,YAAe,GAAA,iBAAA,CAAkB,MAAM,aAAa,CAAA;AAC3F,EAAM,MAAA,EAAE,gBAAmB,GAAA,uBAAA,CAAwB,WAAW,MAAQ,EAAA,gBAAgB,GAAG,KAAK,CAAA;AAE9F,EAAM,MAAA,WAAA,GAAc,oBAAoB,MAAM;AAC1C,IAAA,IAAI,CAAC,SAAW,EAAA;AACZ,MAAO,OAAA,KAAA;AAAA;AAGX,IAAA,IAAI,kBAAkB,SAAW,EAAA;AAC7B,MAAA,OAAO,SAAU,CAAA,UAAA;AAAA,KACd,MAAA;AACH,MAAA,OAAO,SAAU,CAAA,WAAA;AAAA;AACrB,GACD,EAAA,CAAC,SAAW,EAAA,aAAa,CAAC,CAAA;AAC7B,EAAA,MAAM,WAAW,MAAM;AACnB,IAAA,IAAI,CAAC,SAAW,EAAA;AACZ,MAAA;AAAA;AAGJ,IAAA,IAAI,kBAAkB,SAAW,EAAA;AAC7B,MAAA,SAAA,CAAU,OAAQ,EAAA;AAAA,KACf,MAAA;AACH,MAAA,SAAA,CAAU,QAAS,EAAA;AAAA;AACvB,GACJ;AAEA,EAAA,OACI,SACI,oBAAA,GAAA;AAAA,IAAC,UAAA;AAAA,IAAA;AAAA,MACG,GAAA;AAAA,MACC,GAAG,cAAA;AAAA,MACJ,WAAA;AAAA,MACA,KAAO,EAAA,WAAA;AAAA,MACP,IAAM,EAAA,UAAA;AAAA,MACN,OAAS,EAAA,QAAA;AAAA,MACT,UAAU,CAAC;AAAA;AAAA,GACf;AAGZ;AAEA,SAAS,iBAAA,CAAkB,MAAmB,aAAuC,EAAA;AACjF,EAAA,QAAQ,aAAe;AAAA,IACnB,KAAK,SAAA;AACD,MAAO,OAAA;AAAA,QACH,gBAAkB,EAAA,cAAA;AAAA,QAClB,aAAa,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,sBAAsB,CAAA;AAAA,QAC5D,UAAA,sBAAa,eAAgB,EAAA,EAAA;AAAA,OACjC;AAAA,IACJ,KAAK,UAAA;AACD,MAAO,OAAA;AAAA,QACH,gBAAkB,EAAA,eAAA;AAAA,QAClB,aAAa,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,uBAAuB,CAAA;AAAA,QAC7D,UAAA,sBAAa,cAAe,EAAA,EAAA;AAAA,OAChC;AAAA;AAEZ;;;;"}
package/InitialExtent.js CHANGED
@@ -3,7 +3,7 @@ import { useMapModel } from '@open-pioneer/map';
3
3
  import { ToolButton } from '@open-pioneer/map-ui-components';
4
4
  import { useCommonComponentProps } from '@open-pioneer/react-utils';
5
5
  import { useIntl } from './_virtual/_virtual-pioneer-module_react-hooks.js';
6
- import { FiHome } from 'react-icons/fi';
6
+ import { LuHouse } from 'react-icons/lu';
7
7
 
8
8
  const InitialExtent = function InitialExtent2(props) {
9
9
  const { containerProps } = useCommonComponentProps("initial-extent", props);
@@ -28,7 +28,7 @@ const InitialExtent = function InitialExtent2(props) {
28
28
  ref,
29
29
  buttonProps,
30
30
  label: intl.formatMessage({ id: "initial-extent.title" }),
31
- icon: /* @__PURE__ */ jsx(FiHome, {}),
31
+ icon: /* @__PURE__ */ jsx(LuHouse, {}),
32
32
  onClick: setInitExtent,
33
33
  ...containerProps
34
34
  }
@@ -1 +1 @@
1
- {"version":3,"file":"InitialExtent.js","sources":["InitialExtent.tsx"],"sourcesContent":["// SPDX-FileCopyrightText: 2023-2025 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { ButtonProps } from \"@chakra-ui/react\";\nimport { MapModelProps, useMapModel } from \"@open-pioneer/map\";\nimport { ToolButton } from \"@open-pioneer/map-ui-components\";\nimport { CommonComponentProps, useCommonComponentProps } from \"@open-pioneer/react-utils\";\nimport { Extent } from \"ol/extent\";\nimport { useIntl } from \"open-pioneer:react-hooks\";\nimport { FC, RefAttributes } from \"react\";\nimport { FiHome } from \"react-icons/fi\";\n\nexport interface InitialExtentProps\n extends CommonComponentProps,\n RefAttributes<HTMLButtonElement>,\n MapModelProps {\n /**\n * Additional properties for the `Button` element.\n *\n * Note that the ToolButton also defines some of these props.\n */\n buttonProps?: Partial<ButtonProps>;\n}\n\n/**\n * Provides a simple button that switches the view to its initial viewpoint.\n */\nexport const InitialExtent: FC<InitialExtentProps> = function InitialExtent(\n props: InitialExtentProps\n) {\n const { containerProps } = useCommonComponentProps(\"initial-extent\", props);\n const { map } = useMapModel(props);\n const intl = useIntl();\n const { buttonProps, ref } = props;\n\n function setInitExtent() {\n const initialExtent = map?.initialExtent;\n if (initialExtent) {\n const newExtent: Extent = [\n initialExtent.xMin,\n initialExtent.yMin,\n initialExtent.xMax,\n initialExtent.yMax\n ];\n\n map.olView.fit(newExtent, { duration: 200 });\n }\n }\n\n return (\n <ToolButton\n ref={ref}\n buttonProps={buttonProps}\n label={intl.formatMessage({ id: \"initial-extent.title\" })}\n icon={<FiHome />}\n onClick={setInitExtent}\n {...containerProps}\n />\n );\n};\n"],"names":["InitialExtent"],"mappings":";;;;;;;AA0Ba,MAAA,aAAA,GAAwC,SAASA,cAAAA,CAC1D,KACF,EAAA;AACE,EAAA,MAAM,EAAE,cAAA,EAAmB,GAAA,uBAAA,CAAwB,kBAAkB,KAAK,CAAA;AAC1E,EAAA,MAAM,EAAE,GAAA,EAAQ,GAAA,WAAA,CAAY,KAAK,CAAA;AACjC,EAAA,MAAM,OAAO,OAAQ,EAAA;AACrB,EAAM,MAAA,EAAE,WAAa,EAAA,GAAA,EAAQ,GAAA,KAAA;AAE7B,EAAA,SAAS,aAAgB,GAAA;AACrB,IAAA,MAAM,gBAAgB,GAAK,EAAA,aAAA;AAC3B,IAAA,IAAI,aAAe,EAAA;AACf,MAAA,MAAM,SAAoB,GAAA;AAAA,QACtB,aAAc,CAAA,IAAA;AAAA,QACd,aAAc,CAAA,IAAA;AAAA,QACd,aAAc,CAAA,IAAA;AAAA,QACd,aAAc,CAAA;AAAA,OAClB;AAEA,MAAA,GAAA,CAAI,OAAO,GAAI,CAAA,SAAA,EAAW,EAAE,QAAA,EAAU,KAAK,CAAA;AAAA;AAC/C;AAGJ,EACI,uBAAA,GAAA;AAAA,IAAC,UAAA;AAAA,IAAA;AAAA,MACG,GAAA;AAAA,MACA,WAAA;AAAA,MACA,OAAO,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,wBAAwB,CAAA;AAAA,MACxD,IAAA,sBAAO,MAAO,EAAA,EAAA,CAAA;AAAA,MACd,OAAS,EAAA,aAAA;AAAA,MACR,GAAG;AAAA;AAAA,GACR;AAER;;;;"}
1
+ {"version":3,"file":"InitialExtent.js","sources":["InitialExtent.tsx"],"sourcesContent":["// SPDX-FileCopyrightText: 2023-2025 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { ButtonProps } from \"@chakra-ui/react\";\nimport { MapModelProps, useMapModel } from \"@open-pioneer/map\";\nimport { ToolButton } from \"@open-pioneer/map-ui-components\";\nimport { CommonComponentProps, useCommonComponentProps } from \"@open-pioneer/react-utils\";\nimport { Extent } from \"ol/extent\";\nimport { useIntl } from \"open-pioneer:react-hooks\";\nimport { FC, RefAttributes } from \"react\";\nimport { LuHouse } from \"react-icons/lu\";\n\nexport interface InitialExtentProps\n extends CommonComponentProps,\n RefAttributes<HTMLButtonElement>,\n MapModelProps {\n /**\n * Additional properties for the `Button` element.\n *\n * Note that the ToolButton also defines some of these props.\n */\n buttonProps?: Partial<ButtonProps>;\n}\n\n/**\n * Provides a simple button that switches the view to its initial viewpoint.\n */\nexport const InitialExtent: FC<InitialExtentProps> = function InitialExtent(\n props: InitialExtentProps\n) {\n const { containerProps } = useCommonComponentProps(\"initial-extent\", props);\n const { map } = useMapModel(props);\n const intl = useIntl();\n const { buttonProps, ref } = props;\n\n function setInitExtent() {\n const initialExtent = map?.initialExtent;\n if (initialExtent) {\n const newExtent: Extent = [\n initialExtent.xMin,\n initialExtent.yMin,\n initialExtent.xMax,\n initialExtent.yMax\n ];\n\n map.olView.fit(newExtent, { duration: 200 });\n }\n }\n\n return (\n <ToolButton\n ref={ref}\n buttonProps={buttonProps}\n label={intl.formatMessage({ id: \"initial-extent.title\" })}\n icon={<LuHouse />}\n onClick={setInitExtent}\n {...containerProps}\n />\n );\n};\n"],"names":["InitialExtent"],"mappings":";;;;;;;AA0Ba,MAAA,aAAA,GAAwC,SAASA,cAAAA,CAC1D,KACF,EAAA;AACE,EAAA,MAAM,EAAE,cAAA,EAAmB,GAAA,uBAAA,CAAwB,kBAAkB,KAAK,CAAA;AAC1E,EAAA,MAAM,EAAE,GAAA,EAAQ,GAAA,WAAA,CAAY,KAAK,CAAA;AACjC,EAAA,MAAM,OAAO,OAAQ,EAAA;AACrB,EAAM,MAAA,EAAE,WAAa,EAAA,GAAA,EAAQ,GAAA,KAAA;AAE7B,EAAA,SAAS,aAAgB,GAAA;AACrB,IAAA,MAAM,gBAAgB,GAAK,EAAA,aAAA;AAC3B,IAAA,IAAI,aAAe,EAAA;AACf,MAAA,MAAM,SAAoB,GAAA;AAAA,QACtB,aAAc,CAAA,IAAA;AAAA,QACd,aAAc,CAAA,IAAA;AAAA,QACd,aAAc,CAAA,IAAA;AAAA,QACd,aAAc,CAAA;AAAA,OAClB;AAEA,MAAA,GAAA,CAAI,OAAO,GAAI,CAAA,SAAA,EAAW,EAAE,QAAA,EAAU,KAAK,CAAA;AAAA;AAC/C;AAGJ,EACI,uBAAA,GAAA;AAAA,IAAC,UAAA;AAAA,IAAA;AAAA,MACG,GAAA;AAAA,MACA,WAAA;AAAA,MACA,OAAO,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,wBAAwB,CAAA;AAAA,MACxD,IAAA,sBAAO,OAAQ,EAAA,EAAA,CAAA;AAAA,MACf,OAAS,EAAA,aAAA;AAAA,MACR,GAAG;AAAA;AAAA,GACR;AAER;;;;"}
package/Zoom.js CHANGED
@@ -5,7 +5,7 @@ import { useCommonComponentProps } from '@open-pioneer/react-utils';
5
5
  import classNames from 'classnames';
6
6
  import { useIntl } from './_virtual/_virtual-pioneer-module_react-hooks.js';
7
7
  import { useState } from 'react';
8
- import { FiMinus, FiPlus } from 'react-icons/fi';
8
+ import { LuMinus, LuPlus } from 'react-icons/lu';
9
9
 
10
10
  const ZoomIn = function ZoomIn2(props) {
11
11
  return /* @__PURE__ */ jsx(Zoom, { zoomDirection: "in", ...props });
@@ -56,13 +56,13 @@ function getDirectionProps(intl, zoomDirection) {
56
56
  return {
57
57
  defaultClassName: "zoom-in",
58
58
  buttonLabel: intl.formatMessage({ id: "zoom-in.title" }),
59
- buttonIcon: /* @__PURE__ */ jsx(FiPlus, {})
59
+ buttonIcon: /* @__PURE__ */ jsx(LuPlus, {})
60
60
  };
61
61
  case "out":
62
62
  return {
63
63
  defaultClassName: "zoom-out",
64
64
  buttonLabel: intl.formatMessage({ id: "zoom-out.title" }),
65
- buttonIcon: /* @__PURE__ */ jsx(FiMinus, {})
65
+ buttonIcon: /* @__PURE__ */ jsx(LuMinus, {})
66
66
  };
67
67
  }
68
68
  }
package/Zoom.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"Zoom.js","sources":["Zoom.tsx"],"sourcesContent":["// SPDX-FileCopyrightText: 2023-2025 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { ButtonProps } from \"@chakra-ui/react\";\nimport { MapModelProps, useMapModel } from \"@open-pioneer/map\";\nimport { ToolButton } from \"@open-pioneer/map-ui-components\";\nimport { CommonComponentProps, useCommonComponentProps } from \"@open-pioneer/react-utils\";\nimport { PackageIntl } from \"@open-pioneer/runtime\";\nimport classNames from \"classnames\";\nimport { useIntl } from \"open-pioneer:react-hooks\";\nimport { FC, RefAttributes, useState } from \"react\";\nimport { FiMinus, FiPlus } from \"react-icons/fi\";\n\nexport type ZoomInProps = Omit<ZoomProps, \"zoomDirection\">;\n\n/**\n * Provides a button by which the user can zoom into the map.\n *\n * This component composes {@link Zoom}.\n */\nexport const ZoomIn: FC<ZoomInProps> = function ZoomIn(props) {\n return <Zoom zoomDirection=\"in\" {...props} />;\n};\n\nexport type ZoomOutProps = ZoomInProps;\n\n/**\n * Provides a button by which the user can zoom out of the map.\n *\n * This component composes {@link Zoom}.\n */\nexport const ZoomOut: FC<ZoomOutProps> = function ZoomOut(props) {\n return <Zoom zoomDirection=\"out\" {...props} />;\n};\n\nexport interface ZoomProps\n extends CommonComponentProps,\n RefAttributes<HTMLButtonElement>,\n MapModelProps {\n /**\n * Additional properties for the `Button` element.\n *\n * Note that the ToolButton also defines some of these props.\n */\n buttonProps?: Partial<ButtonProps>;\n\n /**\n * The zoom direction.\n *\n * The button will either zoom in or zoom out depending on this value.\n */\n zoomDirection: \"in\" | \"out\";\n}\n\n/**\n * Provides a button by which the user can zoom in or zoom out of the map.\n */\nexport const Zoom: FC<ZoomProps> = function Zoom(props: ZoomProps) {\n const { buttonProps, zoomDirection, ref } = props;\n const { map } = useMapModel(props);\n const intl = useIntl();\n const [disabled, setDisabled] = useState<boolean>(false);\n const { defaultClassName, buttonLabel, buttonIcon } = getDirectionProps(intl, zoomDirection);\n\n const { containerProps } = useCommonComponentProps(classNames(\"zoom\", defaultClassName), props);\n\n function zoom() {\n if (disabled) {\n return;\n }\n setDisabled(true);\n const view = map?.olView;\n let currZoom = map?.zoomLevel;\n\n const maxZoom = view?.getMaxZoom() || Number.MAX_SAFE_INTEGER;\n const minZoom = view?.getMinZoom() || 0;\n if (view && currZoom !== undefined) {\n if (zoomDirection === \"in\" && currZoom < maxZoom) {\n ++currZoom;\n } else if (zoomDirection === \"out\" && currZoom > minZoom) {\n --currZoom;\n }\n\n view.animate({ zoom: currZoom, duration: 200 }, () => setDisabled(false));\n }\n }\n\n return (\n <ToolButton\n ref={ref}\n buttonProps={buttonProps}\n label={buttonLabel}\n icon={buttonIcon}\n onClick={zoom}\n {...containerProps}\n />\n );\n};\n\nfunction getDirectionProps(intl: PackageIntl, zoomDirection: \"in\" | \"out\") {\n switch (zoomDirection) {\n case \"in\":\n return {\n defaultClassName: \"zoom-in\",\n buttonLabel: intl.formatMessage({ id: \"zoom-in.title\" }),\n buttonIcon: <FiPlus />\n };\n case \"out\":\n return {\n defaultClassName: \"zoom-out\",\n buttonLabel: intl.formatMessage({ id: \"zoom-out.title\" }),\n buttonIcon: <FiMinus />\n };\n }\n}\n"],"names":["ZoomIn","ZoomOut","Zoom"],"mappings":";;;;;;;;;AAmBa,MAAA,MAAA,GAA0B,SAASA,OAAAA,CAAO,KAAO,EAAA;AAC1D,EAAA,uBAAQ,GAAA,CAAA,IAAA,EAAA,EAAK,aAAc,EAAA,IAAA,EAAM,GAAG,KAAO,EAAA,CAAA;AAC/C;AASa,MAAA,OAAA,GAA4B,SAASC,QAAAA,CAAQ,KAAO,EAAA;AAC7D,EAAA,uBAAQ,GAAA,CAAA,IAAA,EAAA,EAAK,aAAc,EAAA,KAAA,EAAO,GAAG,KAAO,EAAA,CAAA;AAChD;AAwBa,MAAA,IAAA,GAAsB,SAASC,KAAAA,CAAK,KAAkB,EAAA;AAC/D,EAAA,MAAM,EAAE,WAAA,EAAa,aAAe,EAAA,GAAA,EAAQ,GAAA,KAAA;AAC5C,EAAA,MAAM,EAAE,GAAA,EAAQ,GAAA,WAAA,CAAY,KAAK,CAAA;AACjC,EAAA,MAAM,OAAO,OAAQ,EAAA;AACrB,EAAA,MAAM,CAAC,QAAA,EAAU,WAAW,CAAA,GAAI,SAAkB,KAAK,CAAA;AACvD,EAAA,MAAM,EAAE,gBAAkB,EAAA,WAAA,EAAa,YAAe,GAAA,iBAAA,CAAkB,MAAM,aAAa,CAAA;AAE3F,EAAM,MAAA,EAAE,gBAAmB,GAAA,uBAAA,CAAwB,WAAW,MAAQ,EAAA,gBAAgB,GAAG,KAAK,CAAA;AAE9F,EAAA,SAAS,IAAO,GAAA;AACZ,IAAA,IAAI,QAAU,EAAA;AACV,MAAA;AAAA;AAEJ,IAAA,WAAA,CAAY,IAAI,CAAA;AAChB,IAAA,MAAM,OAAO,GAAK,EAAA,MAAA;AAClB,IAAA,IAAI,WAAW,GAAK,EAAA,SAAA;AAEpB,IAAA,MAAM,OAAU,GAAA,IAAA,EAAM,UAAW,EAAA,IAAK,MAAO,CAAA,gBAAA;AAC7C,IAAM,MAAA,OAAA,GAAU,IAAM,EAAA,UAAA,EAAgB,IAAA,CAAA;AACtC,IAAI,IAAA,IAAA,IAAQ,aAAa,MAAW,EAAA;AAChC,MAAI,IAAA,aAAA,KAAkB,IAAQ,IAAA,QAAA,GAAW,OAAS,EAAA;AAC9C,QAAE,EAAA,QAAA;AAAA,OACK,MAAA,IAAA,aAAA,KAAkB,KAAS,IAAA,QAAA,GAAW,OAAS,EAAA;AACtD,QAAE,EAAA,QAAA;AAAA;AAGN,MAAK,IAAA,CAAA,OAAA,CAAQ,EAAE,IAAA,EAAM,QAAU,EAAA,QAAA,EAAU,KAAO,EAAA,MAAM,WAAY,CAAA,KAAK,CAAC,CAAA;AAAA;AAC5E;AAGJ,EACI,uBAAA,GAAA;AAAA,IAAC,UAAA;AAAA,IAAA;AAAA,MACG,GAAA;AAAA,MACA,WAAA;AAAA,MACA,KAAO,EAAA,WAAA;AAAA,MACP,IAAM,EAAA,UAAA;AAAA,MACN,OAAS,EAAA,IAAA;AAAA,MACR,GAAG;AAAA;AAAA,GACR;AAER;AAEA,SAAS,iBAAA,CAAkB,MAAmB,aAA6B,EAAA;AACvE,EAAA,QAAQ,aAAe;AAAA,IACnB,KAAK,IAAA;AACD,MAAO,OAAA;AAAA,QACH,gBAAkB,EAAA,SAAA;AAAA,QAClB,aAAa,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,iBAAiB,CAAA;AAAA,QACvD,UAAA,sBAAa,MAAO,EAAA,EAAA;AAAA,OACxB;AAAA,IACJ,KAAK,KAAA;AACD,MAAO,OAAA;AAAA,QACH,gBAAkB,EAAA,UAAA;AAAA,QAClB,aAAa,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,kBAAkB,CAAA;AAAA,QACxD,UAAA,sBAAa,OAAQ,EAAA,EAAA;AAAA,OACzB;AAAA;AAEZ;;;;"}
1
+ {"version":3,"file":"Zoom.js","sources":["Zoom.tsx"],"sourcesContent":["// SPDX-FileCopyrightText: 2023-2025 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { ButtonProps } from \"@chakra-ui/react\";\nimport { MapModelProps, useMapModel } from \"@open-pioneer/map\";\nimport { ToolButton } from \"@open-pioneer/map-ui-components\";\nimport { CommonComponentProps, useCommonComponentProps } from \"@open-pioneer/react-utils\";\nimport { PackageIntl } from \"@open-pioneer/runtime\";\nimport classNames from \"classnames\";\nimport { useIntl } from \"open-pioneer:react-hooks\";\nimport { FC, RefAttributes, useState } from \"react\";\nimport { LuMinus, LuPlus } from \"react-icons/lu\";\n\nexport type ZoomInProps = Omit<ZoomProps, \"zoomDirection\">;\n\n/**\n * Provides a button by which the user can zoom into the map.\n *\n * This component composes {@link Zoom}.\n */\nexport const ZoomIn: FC<ZoomInProps> = function ZoomIn(props) {\n return <Zoom zoomDirection=\"in\" {...props} />;\n};\n\nexport type ZoomOutProps = ZoomInProps;\n\n/**\n * Provides a button by which the user can zoom out of the map.\n *\n * This component composes {@link Zoom}.\n */\nexport const ZoomOut: FC<ZoomOutProps> = function ZoomOut(props) {\n return <Zoom zoomDirection=\"out\" {...props} />;\n};\n\nexport interface ZoomProps\n extends CommonComponentProps,\n RefAttributes<HTMLButtonElement>,\n MapModelProps {\n /**\n * Additional properties for the `Button` element.\n *\n * Note that the ToolButton also defines some of these props.\n */\n buttonProps?: Partial<ButtonProps>;\n\n /**\n * The zoom direction.\n *\n * The button will either zoom in or zoom out depending on this value.\n */\n zoomDirection: \"in\" | \"out\";\n}\n\n/**\n * Provides a button by which the user can zoom in or zoom out of the map.\n */\nexport const Zoom: FC<ZoomProps> = function Zoom(props: ZoomProps) {\n const { buttonProps, zoomDirection, ref } = props;\n const { map } = useMapModel(props);\n const intl = useIntl();\n const [disabled, setDisabled] = useState<boolean>(false);\n const { defaultClassName, buttonLabel, buttonIcon } = getDirectionProps(intl, zoomDirection);\n\n const { containerProps } = useCommonComponentProps(classNames(\"zoom\", defaultClassName), props);\n\n function zoom() {\n if (disabled) {\n return;\n }\n setDisabled(true);\n const view = map?.olView;\n let currZoom = map?.zoomLevel;\n\n const maxZoom = view?.getMaxZoom() || Number.MAX_SAFE_INTEGER;\n const minZoom = view?.getMinZoom() || 0;\n if (view && currZoom !== undefined) {\n if (zoomDirection === \"in\" && currZoom < maxZoom) {\n ++currZoom;\n } else if (zoomDirection === \"out\" && currZoom > minZoom) {\n --currZoom;\n }\n\n view.animate({ zoom: currZoom, duration: 200 }, () => setDisabled(false));\n }\n }\n\n return (\n <ToolButton\n ref={ref}\n buttonProps={buttonProps}\n label={buttonLabel}\n icon={buttonIcon}\n onClick={zoom}\n {...containerProps}\n />\n );\n};\n\nfunction getDirectionProps(intl: PackageIntl, zoomDirection: \"in\" | \"out\") {\n switch (zoomDirection) {\n case \"in\":\n return {\n defaultClassName: \"zoom-in\",\n buttonLabel: intl.formatMessage({ id: \"zoom-in.title\" }),\n buttonIcon: <LuPlus />\n };\n case \"out\":\n return {\n defaultClassName: \"zoom-out\",\n buttonLabel: intl.formatMessage({ id: \"zoom-out.title\" }),\n buttonIcon: <LuMinus />\n };\n }\n}\n"],"names":["ZoomIn","ZoomOut","Zoom"],"mappings":";;;;;;;;;AAmBa,MAAA,MAAA,GAA0B,SAASA,OAAAA,CAAO,KAAO,EAAA;AAC1D,EAAA,uBAAQ,GAAA,CAAA,IAAA,EAAA,EAAK,aAAc,EAAA,IAAA,EAAM,GAAG,KAAO,EAAA,CAAA;AAC/C;AASa,MAAA,OAAA,GAA4B,SAASC,QAAAA,CAAQ,KAAO,EAAA;AAC7D,EAAA,uBAAQ,GAAA,CAAA,IAAA,EAAA,EAAK,aAAc,EAAA,KAAA,EAAO,GAAG,KAAO,EAAA,CAAA;AAChD;AAwBa,MAAA,IAAA,GAAsB,SAASC,KAAAA,CAAK,KAAkB,EAAA;AAC/D,EAAA,MAAM,EAAE,WAAA,EAAa,aAAe,EAAA,GAAA,EAAQ,GAAA,KAAA;AAC5C,EAAA,MAAM,EAAE,GAAA,EAAQ,GAAA,WAAA,CAAY,KAAK,CAAA;AACjC,EAAA,MAAM,OAAO,OAAQ,EAAA;AACrB,EAAA,MAAM,CAAC,QAAA,EAAU,WAAW,CAAA,GAAI,SAAkB,KAAK,CAAA;AACvD,EAAA,MAAM,EAAE,gBAAkB,EAAA,WAAA,EAAa,YAAe,GAAA,iBAAA,CAAkB,MAAM,aAAa,CAAA;AAE3F,EAAM,MAAA,EAAE,gBAAmB,GAAA,uBAAA,CAAwB,WAAW,MAAQ,EAAA,gBAAgB,GAAG,KAAK,CAAA;AAE9F,EAAA,SAAS,IAAO,GAAA;AACZ,IAAA,IAAI,QAAU,EAAA;AACV,MAAA;AAAA;AAEJ,IAAA,WAAA,CAAY,IAAI,CAAA;AAChB,IAAA,MAAM,OAAO,GAAK,EAAA,MAAA;AAClB,IAAA,IAAI,WAAW,GAAK,EAAA,SAAA;AAEpB,IAAA,MAAM,OAAU,GAAA,IAAA,EAAM,UAAW,EAAA,IAAK,MAAO,CAAA,gBAAA;AAC7C,IAAM,MAAA,OAAA,GAAU,IAAM,EAAA,UAAA,EAAgB,IAAA,CAAA;AACtC,IAAI,IAAA,IAAA,IAAQ,aAAa,MAAW,EAAA;AAChC,MAAI,IAAA,aAAA,KAAkB,IAAQ,IAAA,QAAA,GAAW,OAAS,EAAA;AAC9C,QAAE,EAAA,QAAA;AAAA,OACK,MAAA,IAAA,aAAA,KAAkB,KAAS,IAAA,QAAA,GAAW,OAAS,EAAA;AACtD,QAAE,EAAA,QAAA;AAAA;AAGN,MAAK,IAAA,CAAA,OAAA,CAAQ,EAAE,IAAA,EAAM,QAAU,EAAA,QAAA,EAAU,KAAO,EAAA,MAAM,WAAY,CAAA,KAAK,CAAC,CAAA;AAAA;AAC5E;AAGJ,EACI,uBAAA,GAAA;AAAA,IAAC,UAAA;AAAA,IAAA;AAAA,MACG,GAAA;AAAA,MACA,WAAA;AAAA,MACA,KAAO,EAAA,WAAA;AAAA,MACP,IAAM,EAAA,UAAA;AAAA,MACN,OAAS,EAAA,IAAA;AAAA,MACR,GAAG;AAAA;AAAA,GACR;AAER;AAEA,SAAS,iBAAA,CAAkB,MAAmB,aAA6B,EAAA;AACvE,EAAA,QAAQ,aAAe;AAAA,IACnB,KAAK,IAAA;AACD,MAAO,OAAA;AAAA,QACH,gBAAkB,EAAA,SAAA;AAAA,QAClB,aAAa,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,iBAAiB,CAAA;AAAA,QACvD,UAAA,sBAAa,MAAO,EAAA,EAAA;AAAA,OACxB;AAAA,IACJ,KAAK,KAAA;AACD,MAAO,OAAA;AAAA,QACH,gBAAkB,EAAA,UAAA;AAAA,QAClB,aAAa,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,kBAAkB,CAAA;AAAA,QACxD,UAAA,sBAAa,OAAQ,EAAA,EAAA;AAAA,OACzB;AAAA;AAEZ;;;;"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@open-pioneer/map-navigation",
4
- "version": "0.11.0",
4
+ "version": "0.12.0-dev.20250725080856",
5
5
  "description": "This package provides a collection of map navigation controls.",
6
6
  "keywords": [
7
7
  "open-pioneer-trails"
@@ -15,16 +15,16 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@conterra/reactivity-core": "^0.7.0",
18
- "@chakra-ui/react": "^3.19.2",
18
+ "@chakra-ui/react": "^3.21.1",
19
19
  "@open-pioneer/react-utils": "^4.0.0",
20
20
  "@open-pioneer/reactivity": "^4.0.0",
21
21
  "@open-pioneer/runtime": "^4.0.0",
22
22
  "classnames": "^2.5.1",
23
- "ol": "^10.5.0",
23
+ "ol": "^10.6.1",
24
24
  "react": "^19.1.0",
25
25
  "react-icons": "^5.5.0",
26
- "@open-pioneer/map": "^0.11.0",
27
- "@open-pioneer/map-ui-components": "^0.11.0"
26
+ "@open-pioneer/map": "0.12.0-dev.20250725080856",
27
+ "@open-pioneer/map-ui-components": "0.12.0-dev.20250725080856"
28
28
  },
29
29
  "exports": {
30
30
  "./package.json": "./package.json",