@vertigis/react-ui 11.29.1 → 11.30.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/FormLabelColorField/FormLabelColorField.d.ts +19 -0
- package/FormLabelColorField/FormLabelColorField.js +23 -0
- package/FormLabelColorField/index.d.ts +2 -0
- package/FormLabelColorField/index.js +2 -0
- package/FormLabelNumberField/FormLabelNumberField.d.ts +32 -0
- package/FormLabelNumberField/FormLabelNumberField.js +75 -0
- package/FormLabelNumberField/index.d.ts +2 -0
- package/FormLabelNumberField/index.js +2 -0
- package/FormLabelSliderField/FormLabelSliderField.d.ts +43 -0
- package/FormLabelSliderField/FormLabelSliderField.js +88 -0
- package/FormLabelSliderField/index.d.ts +2 -0
- package/FormLabelSliderField/index.js +2 -0
- package/NumberFormatContext/NumberFormatContext.d.ts +20 -0
- package/NumberFormatContext/NumberFormatContext.js +15 -0
- package/NumberFormatContext/index.d.ts +2 -0
- package/NumberFormatContext/index.js +2 -0
- package/NumberInput/NumberInput.d.ts +57 -0
- package/NumberInput/NumberInput.js +143 -0
- package/NumberInput/index.d.ts +2 -0
- package/NumberInput/index.js +2 -0
- package/SymbolInput/SymbolInput.d.ts +77 -0
- package/SymbolInput/SymbolInput.js +457 -0
- package/SymbolInput/SymbolJson.d.ts +134 -0
- package/SymbolInput/SymbolJson.js +2 -0
- package/SymbolInput/index.d.ts +2 -0
- package/SymbolInput/index.js +2 -0
- package/icons/Signature.d.ts +4 -0
- package/icons/Signature.js +3 -0
- package/icons/index.d.ts +1 -0
- package/icons/index.js +1 -0
- package/package.json +2 -2
|
@@ -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: "M24 23H0v-1h24v1Zm-1-3.91c-.57.05-1.63-.65-1.65-.65-.281-3.354-2.726.886-4.39.32.043-1.039.559-2.009.64-3.03-.813-3.018-2.659 5.596-5.91 1.96 10.513-10.152-6.679-13.922-1.52-.11-.98.84-2.08 1.52-3.32 1.89-1.575 2.473 3.402-.203 3.99-1.01 1.271 1.432 3.885 1.694 5.04-.16-.286 2.774 3.233 1.329 4.34.21.217 1.126 1.798 1.578 2.78 1.68.7-.07.7-1.17 0-1.1Zm-12.64-4.01c-.602-10.308 7.932-4.159.64 1.73-.3-.54-.51-1.14-.64-1.73Zm-5.305 4.683-2.202-2.202-2.146 2.146L0 19l2.146-2.146-2.091-2.091.707-.707 2.091 2.091 2.146-2.146.707.707-2.146 2.146 2.202 2.202-.707.707Z" }), "Signature");
|
package/icons/index.d.ts
CHANGED
|
@@ -576,6 +576,7 @@ export { default as ShareMap } from "./ShareMap.js";
|
|
|
576
576
|
export { default as SignAdd } from "./SignAdd.js";
|
|
577
577
|
export { default as SignIn } from "./SignIn.js";
|
|
578
578
|
export { default as SignOut } from "./SignOut.js";
|
|
579
|
+
export { default as Signature } from "./Signature.js";
|
|
579
580
|
export { default as SkateParkSearch } from "./SkateParkSearch.js";
|
|
580
581
|
export { default as SlotBottomCenter } from "./SlotBottomCenter.js";
|
|
581
582
|
export { default as SlotBottomLeft } from "./SlotBottomLeft.js";
|
package/icons/index.js
CHANGED
|
@@ -576,6 +576,7 @@ export { default as ShareMap } from "./ShareMap.js";
|
|
|
576
576
|
export { default as SignAdd } from "./SignAdd.js";
|
|
577
577
|
export { default as SignIn } from "./SignIn.js";
|
|
578
578
|
export { default as SignOut } from "./SignOut.js";
|
|
579
|
+
export { default as Signature } from "./Signature.js";
|
|
579
580
|
export { default as SkateParkSearch } from "./SkateParkSearch.js";
|
|
580
581
|
export { default as SlotBottomCenter } from "./SlotBottomCenter.js";
|
|
581
582
|
export { default as SlotBottomLeft } from "./SlotBottomLeft.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/react-ui",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.30.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.escape": "^4.0.1",
|
|
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.612"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"@esri/arcgis-html-sanitizer": "^3.0.1",
|