@dereekb/dbx-form 9.3.0 → 9.3.3
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/esm2020/mapbox/lib/field/latlng/latlng.field.component.mjs +23 -18
- package/esm2020/mapbox/lib/field/latlng/latlng.module.mjs +5 -1
- package/fesm2015/dereekb-dbx-form-mapbox.mjs +25 -17
- package/fesm2015/dereekb-dbx-form-mapbox.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-form-mapbox.mjs +25 -17
- package/fesm2020/dereekb-dbx-form-mapbox.mjs.map +1 -1
- package/mapbox/esm2020/dereekb-dbx-form-mapbox.mjs +5 -0
- package/mapbox/esm2020/index.mjs +3 -0
- package/mapbox/esm2020/lib/field/index.mjs +2 -0
- package/mapbox/esm2020/lib/field/latlng/index.mjs +4 -0
- package/mapbox/esm2020/lib/field/latlng/latlng.field.component.mjs +129 -0
- package/mapbox/esm2020/lib/field/latlng/latlng.field.mjs +26 -0
- package/mapbox/esm2020/lib/field/latlng/latlng.module.mjs +57 -0
- package/mapbox/esm2020/lib/mapbox.module.mjs +15 -0
- package/mapbox/fesm2015/dereekb-dbx-form-mapbox.mjs +222 -0
- package/mapbox/fesm2015/dereekb-dbx-form-mapbox.mjs.map +1 -0
- package/mapbox/fesm2020/dereekb-dbx-form-mapbox.mjs +224 -0
- package/mapbox/fesm2020/dereekb-dbx-form-mapbox.mjs.map +1 -0
- package/mapbox/lib/field/latlng/latlng.field.component.d.ts +6 -4
- package/mapbox/lib/field/latlng/latlng.module.d.ts +6 -5
- package/mapbox/package.json +40 -0
- package/package.json +3 -3
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dereekb/dbx-form/mapbox",
|
|
3
|
+
"version": "9.3.3",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^14.1.0",
|
|
6
|
+
"@angular/core": "^14.1.0",
|
|
7
|
+
"@angular/forms": "^14.0.0",
|
|
8
|
+
"@dereekb/dbx-web": "9.3.3",
|
|
9
|
+
"@ngx-formly/core": "6.0.0-rc.2",
|
|
10
|
+
"@ngx-formly/material": "6.0.0-rc.2",
|
|
11
|
+
"ngx-editor": "^15.0.0",
|
|
12
|
+
"@ng-web-apis/geolocation": "^2.0.0",
|
|
13
|
+
"mapbox-gl": "^2.9.2",
|
|
14
|
+
"@dereekb/dbx-web/mapbox": "9.3.3",
|
|
15
|
+
"@dereekb/dbx-form": "9.3.3"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"tslib": "^2.3.0"
|
|
19
|
+
},
|
|
20
|
+
"module": "fesm2015/dereekb-dbx-form-mapbox.mjs",
|
|
21
|
+
"es2020": "fesm2020/dereekb-dbx-form-mapbox.mjs",
|
|
22
|
+
"esm2020": "esm2020/dereekb-dbx-form-mapbox.mjs",
|
|
23
|
+
"fesm2020": "fesm2020/dereekb-dbx-form-mapbox.mjs",
|
|
24
|
+
"fesm2015": "fesm2015/dereekb-dbx-form-mapbox.mjs",
|
|
25
|
+
"typings": "index.d.ts",
|
|
26
|
+
"exports": {
|
|
27
|
+
"./package.json": {
|
|
28
|
+
"default": "./package.json"
|
|
29
|
+
},
|
|
30
|
+
".": {
|
|
31
|
+
"types": "./index.d.ts",
|
|
32
|
+
"esm2020": "./esm2020/dereekb-dbx-form-mapbox.mjs",
|
|
33
|
+
"es2020": "./fesm2020/dereekb-dbx-form-mapbox.mjs",
|
|
34
|
+
"es2015": "./fesm2015/dereekb-dbx-form-mapbox.mjs",
|
|
35
|
+
"node": "./fesm2015/dereekb-dbx-form-mapbox.mjs",
|
|
36
|
+
"default": "./fesm2020/dereekb-dbx-form-mapbox.mjs"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"sideEffects": false
|
|
40
|
+
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-form",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.3",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.0.0",
|
|
6
6
|
"@angular/core": "^14.0.0",
|
|
7
7
|
"lodash.clonedeep": "^4.5.0",
|
|
8
|
-
"@dereekb/dbx-core": "9.3.
|
|
8
|
+
"@dereekb/dbx-core": "9.3.3",
|
|
9
9
|
"@angular/material": "^14.0.0",
|
|
10
|
-
"@dereekb/dbx-web": "9.3.
|
|
10
|
+
"@dereekb/dbx-web": "9.3.3",
|
|
11
11
|
"@angular/forms": "^14.0.0",
|
|
12
12
|
"@ngx-formly/core": "6.0.0-rc.2",
|
|
13
13
|
"@ngx-formly/material": "6.0.0-rc.2",
|