@vertigis/react-ui 11.16.4 → 11.17.0
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/icons/FilterOff.js +1 -1
- package/icons/FilterOn.js +1 -1
- package/icons/Legend.js +2 -2
- package/icons/LegendOff.d.ts +4 -0
- package/icons/LegendOff.js +3 -0
- package/icons/index.d.ts +1 -0
- package/icons/index.js +1 -0
- package/package.json +2 -2
package/icons/FilterOff.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import createSvgIcon from "./utils/createSvgIcon.js";
|
|
3
|
-
export default createSvgIcon(_jsx("path", { d: "
|
|
3
|
+
export default createSvgIcon(_jsx("path", { d: "M13 15.23v3.15l-2 1v-2.15l-2 2V21a.999.999 0 0 0 1 1c.15 0 .31-.04.45-.11l4-2c.34-.17.55-.51.55-.89v-5.77l-2 2zM22.29.29 20.58 2H3a1.002 1.002 0 0 0-.75 1.66L9 11.38v2.2L.29 22.29l1.42 1.42 22-22L22.29.29zM11 11.58V11c0-.24-.09-.48-.25-.66L5.2 4h13.38L11 11.58z" }), "FilterOff");
|
package/icons/FilterOn.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import createSvgIcon from "./utils/createSvgIcon.js";
|
|
3
|
-
export default createSvgIcon(_jsx("path", { d: "
|
|
3
|
+
export default createSvgIcon(_jsx("path", { d: "M21.753 3.659 15 11.376V19c0 .379-.214.725-.553.895l-4 2a1.003 1.003 0 0 1-.973-.044A1.003 1.003 0 0 1 9 21v-9.624L2.248 3.659A1 1 0 0 1 3.001 2h18a1 1 0 0 1 .753 1.659z" }), "FilterOn");
|
package/icons/Legend.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { jsx as _jsx
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import createSvgIcon from "./utils/createSvgIcon.js";
|
|
3
|
-
export default createSvgIcon(
|
|
3
|
+
export default createSvgIcon(_jsx("path", { d: "M2 9v5h5V9H2zm4 4H3v-3h3v3zm-4 5.727L4.727 16l2.728 2.727-2.727 2.727L2 18.727zM4.5 2a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5zM9 11h13v2H9v-2zm0-7h7v2H9V4zm0 14h9v2H9v-2z" }), "Legend");
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import createSvgIcon from "./utils/createSvgIcon.js";
|
|
3
|
+
export default createSvgIcon(_jsx("path", { d: "M17.248 11H22v2h-6.752l2-2zM4.5 7a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zM16 4H9v2h7V4zM7 14H2V9h5v5zm-1-4H3v3h3v-3zm3 9.248V20h9v-2h-7.752L9 19.248zm-4.654 1.825 2.727-2.727-.002-.002 5.343-5.343h.005l2-2h-.005l9.293-9.294L22.293.293 11.586 11H9v2h.586l-3.929 3.929L4.728 16l-2.727 2.727.929.929-2.637 2.637 1.414 1.414 2.637-2.637.002.002z" }), "LegendOff");
|
package/icons/index.d.ts
CHANGED
|
@@ -341,6 +341,7 @@ export { default as LayersMenu } from "./LayersMenu.js";
|
|
|
341
341
|
export { default as LayersReorder } from "./LayersReorder.js";
|
|
342
342
|
export { default as LayersSnapping } from "./LayersSnapping.js";
|
|
343
343
|
export { default as Legend } from "./Legend.js";
|
|
344
|
+
export { default as LegendOff } from "./LegendOff.js";
|
|
344
345
|
export { default as LeisureFacilitySearch } from "./LeisureFacilitySearch.js";
|
|
345
346
|
export { default as LineStyleEdit } from "./LineStyleEdit.js";
|
|
346
347
|
export { default as Link } from "./Link.js";
|
package/icons/index.js
CHANGED
|
@@ -341,6 +341,7 @@ export { default as LayersMenu } from "./LayersMenu.js";
|
|
|
341
341
|
export { default as LayersReorder } from "./LayersReorder.js";
|
|
342
342
|
export { default as LayersSnapping } from "./LayersSnapping.js";
|
|
343
343
|
export { default as Legend } from "./Legend.js";
|
|
344
|
+
export { default as LegendOff } from "./LegendOff.js";
|
|
344
345
|
export { default as LeisureFacilitySearch } from "./LeisureFacilitySearch.js";
|
|
345
346
|
export { default as LineStyleEdit } from "./LineStyleEdit.js";
|
|
346
347
|
export { default as Link } from "./Link.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/react-ui",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.17.0",
|
|
4
4
|
"description": "Utilities and React components used in VertiGIS applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vertigis",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@types/lodash.merge": "^4.6.7",
|
|
39
39
|
"@types/marked": "^4.0.2",
|
|
40
40
|
"@types/react-color": "^3.0.6",
|
|
41
|
-
"@vertigis/icons": "5.0.
|
|
41
|
+
"@vertigis/icons": "5.0.513"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"@esri/arcgis-html-sanitizer": "^3.0.1",
|