@htmlbricks/hb-input-coords 0.61.3 → 0.61.4
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/main.iife.js +4 -4
- package/main.iife.js.map +1 -1
- package/manifest.json +34 -1
- package/package.json +1 -1
- package/types/webcomponent.type.d.json +33 -0
- package/types/webcomponent.type.d.ts +4 -1
package/manifest.json
CHANGED
|
@@ -99,6 +99,12 @@
|
|
|
99
99
|
"additionalProperties": false,
|
|
100
100
|
"description": "Other parameters that may be specific to a certain kind of form control.",
|
|
101
101
|
"properties": {
|
|
102
|
+
"center": {
|
|
103
|
+
"items": {
|
|
104
|
+
"type": "number"
|
|
105
|
+
},
|
|
106
|
+
"type": "array"
|
|
107
|
+
},
|
|
102
108
|
"latitudeLabel": {
|
|
103
109
|
"type": "string"
|
|
104
110
|
},
|
|
@@ -110,6 +116,33 @@
|
|
|
110
116
|
},
|
|
111
117
|
"longitudePlaceholder": {
|
|
112
118
|
"type": "string"
|
|
119
|
+
},
|
|
120
|
+
"options": {
|
|
121
|
+
"additionalProperties": false,
|
|
122
|
+
"properties": {
|
|
123
|
+
"centerFromGeometries": {
|
|
124
|
+
"type": "boolean"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"type": "object"
|
|
128
|
+
},
|
|
129
|
+
"source": {
|
|
130
|
+
"additionalProperties": false,
|
|
131
|
+
"properties": {
|
|
132
|
+
"type": {
|
|
133
|
+
"type": "string"
|
|
134
|
+
},
|
|
135
|
+
"url": {
|
|
136
|
+
"type": "string"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"required": [
|
|
140
|
+
"type"
|
|
141
|
+
],
|
|
142
|
+
"type": "object"
|
|
143
|
+
},
|
|
144
|
+
"zoom": {
|
|
145
|
+
"type": "number"
|
|
113
146
|
}
|
|
114
147
|
},
|
|
115
148
|
"type": "object"
|
|
@@ -330,5 +363,5 @@
|
|
|
330
363
|
"size": {},
|
|
331
364
|
"iifePath": "main.iife.js",
|
|
332
365
|
"repoName": "@htmlbricks/hb-input-coords",
|
|
333
|
-
"version": "0.61.
|
|
366
|
+
"version": "0.61.4"
|
|
334
367
|
}
|
package/package.json
CHANGED
|
@@ -42,6 +42,12 @@
|
|
|
42
42
|
"additionalProperties": false,
|
|
43
43
|
"description": "Other parameters that may be specific to a certain kind of form control.",
|
|
44
44
|
"properties": {
|
|
45
|
+
"center": {
|
|
46
|
+
"items": {
|
|
47
|
+
"type": "number"
|
|
48
|
+
},
|
|
49
|
+
"type": "array"
|
|
50
|
+
},
|
|
45
51
|
"latitudeLabel": {
|
|
46
52
|
"type": "string"
|
|
47
53
|
},
|
|
@@ -53,6 +59,33 @@
|
|
|
53
59
|
},
|
|
54
60
|
"longitudePlaceholder": {
|
|
55
61
|
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
"options": {
|
|
64
|
+
"additionalProperties": false,
|
|
65
|
+
"properties": {
|
|
66
|
+
"centerFromGeometries": {
|
|
67
|
+
"type": "boolean"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"type": "object"
|
|
71
|
+
},
|
|
72
|
+
"source": {
|
|
73
|
+
"additionalProperties": false,
|
|
74
|
+
"properties": {
|
|
75
|
+
"type": {
|
|
76
|
+
"type": "string"
|
|
77
|
+
},
|
|
78
|
+
"url": {
|
|
79
|
+
"type": "string"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"required": [
|
|
83
|
+
"type"
|
|
84
|
+
],
|
|
85
|
+
"type": "object"
|
|
86
|
+
},
|
|
87
|
+
"zoom": {
|
|
88
|
+
"type": "number"
|
|
56
89
|
}
|
|
57
90
|
},
|
|
58
91
|
"type": "object"
|
|
@@ -34,11 +34,14 @@ export type FormSchemaEntry = {
|
|
|
34
34
|
* Other parameters that may be specific to a certain kind of form control.
|
|
35
35
|
*/
|
|
36
36
|
params?: {
|
|
37
|
-
|
|
37
|
+
zoom?: number;
|
|
38
38
|
latitudePlaceholder?: string;
|
|
39
39
|
longitudePlaceholder?: string;
|
|
40
40
|
latitudeLabel?: string;
|
|
41
41
|
longitudeLabel?: string;
|
|
42
|
+
source?: { type: string; url?: string }
|
|
43
|
+
options?: { centerFromGeometries?: boolean }
|
|
44
|
+
center?: number[]
|
|
42
45
|
}
|
|
43
46
|
};
|
|
44
47
|
|