@dereekb/dbx-web 9.24.41 → 9.24.42
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/calendar/package.json +2 -2
- package/esm2020/mapbox/lib/mapbox.store.mjs +47 -13
- package/fesm2015/dereekb-dbx-web-mapbox.mjs +47 -13
- package/fesm2015/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-web-mapbox.mjs +47 -13
- package/fesm2020/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/lib/layout/list/_list.scss +16 -0
- package/mapbox/esm2020/lib/mapbox.store.mjs +47 -13
- package/mapbox/fesm2015/dereekb-dbx-web-mapbox.mjs +47 -13
- package/mapbox/fesm2015/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/mapbox/fesm2020/dereekb-dbx-web-mapbox.mjs +47 -13
- package/mapbox/fesm2020/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/mapbox/lib/mapbox.store.d.ts +17 -0
- package/mapbox/package.json +3 -3
- package/package.json +3 -3
- package/table/package.json +3 -3
|
@@ -27,6 +27,17 @@ export interface DbxMapboxMarginCalculationSizing {
|
|
|
27
27
|
rightMargin: number;
|
|
28
28
|
fullWidth: number;
|
|
29
29
|
}
|
|
30
|
+
export declare type DbxMapboxStoreBoundRefreshType = 'always' | 'when_not_rendering' | 'only_after_render_finishes';
|
|
31
|
+
export interface DbxMapboxStoreBoundRefreshSettings {
|
|
32
|
+
/**
|
|
33
|
+
* Max bound refresh interval.
|
|
34
|
+
*/
|
|
35
|
+
throttle: number;
|
|
36
|
+
/**
|
|
37
|
+
* Whether or not to wait to update the bound until after it has finished rendering.
|
|
38
|
+
*/
|
|
39
|
+
refreshType: DbxMapboxStoreBoundRefreshType;
|
|
40
|
+
}
|
|
30
41
|
export interface DbxMapboxStoreState {
|
|
31
42
|
/**
|
|
32
43
|
* Current MapService being utilized.
|
|
@@ -74,6 +85,10 @@ export interface DbxMapboxStoreState {
|
|
|
74
85
|
* Minimum vector size to use for the viewportBoundFunction$. If not defined there is no minimum.
|
|
75
86
|
*/
|
|
76
87
|
minimumVirtualViewportSize?: Maybe<Partial<Vector>>;
|
|
88
|
+
/**
|
|
89
|
+
* Bound refresh settings
|
|
90
|
+
*/
|
|
91
|
+
boundRefreshSettings: DbxMapboxStoreBoundRefreshSettings;
|
|
77
92
|
/**
|
|
78
93
|
* Whether or not to use the virtual bound (vs raw bound) for all bound-related observables.
|
|
79
94
|
*
|
|
@@ -126,6 +141,7 @@ export declare class DbxMapboxMapStore extends ComponentStore<DbxMapboxStoreStat
|
|
|
126
141
|
readonly mapService$: Observable<MapService>;
|
|
127
142
|
readonly currentMapInstance$: Observable<Maybe<MapboxGl.Map>>;
|
|
128
143
|
readonly mapInstance$: Observable<MapboxGl.Map>;
|
|
144
|
+
readonly boundRefreshSettings$: Observable<DbxMapboxStoreBoundRefreshSettings>;
|
|
129
145
|
readonly moveState$: Observable<MapboxMapMoveState>;
|
|
130
146
|
readonly lifecycleState$: Observable<MapboxMapLifecycleState>;
|
|
131
147
|
readonly zoomState$: Observable<MapboxMapZoomState>;
|
|
@@ -190,6 +206,7 @@ export declare class DbxMapboxMapStore extends ComponentStore<DbxMapboxStoreStat
|
|
|
190
206
|
readonly setMargin: (() => void) | ((observableOrValue: Maybe<DbxMapboxMarginCalculationSizing> | Observable<Maybe<DbxMapboxMarginCalculationSizing>>) => Subscription);
|
|
191
207
|
readonly setMinimumVirtualViewportSize: (() => void) | ((observableOrValue: Maybe<Partial<Vector>> | Observable<Maybe<Partial<Vector>>>) => Subscription);
|
|
192
208
|
readonly setUseVirtualBound: (observableOrValue: boolean | Observable<boolean>) => Subscription;
|
|
209
|
+
readonly setBoundRefreshSettings: (observableOrValue: Partial<DbxMapboxStoreBoundRefreshSettings> | Observable<Partial<DbxMapboxStoreBoundRefreshSettings>>) => Subscription;
|
|
193
210
|
private readonly _setMapService;
|
|
194
211
|
private readonly _setLifecycleState;
|
|
195
212
|
private readonly _setMoveState;
|
package/mapbox/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-web/mapbox",
|
|
3
|
-
"version": "9.24.
|
|
3
|
+
"version": "9.24.42",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.1.0",
|
|
6
6
|
"@angular/core": "^14.1.0",
|
|
7
|
-
"@dereekb/dbx-core": "9.24.
|
|
8
|
-
"@dereekb/dbx-web": "9.24.
|
|
7
|
+
"@dereekb/dbx-core": "9.24.42",
|
|
8
|
+
"@dereekb/dbx-web": "9.24.42",
|
|
9
9
|
"ngx-mapbox-gl": "^9.1.0",
|
|
10
10
|
"mapbox-gl": "^2.9.2",
|
|
11
11
|
"@mapbox/geo-viewport": "git+https://git@github.com/dereekb/geo-viewport#165513972f87dca23a20c177f4d173edc51b5e2f"
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-web",
|
|
3
|
-
"version": "9.24.
|
|
3
|
+
"version": "9.24.42",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.0.0",
|
|
6
6
|
"@angular/core": "^14.0.0",
|
|
7
7
|
"linkify-string": "4.0.0-beta.5",
|
|
8
8
|
"linkifyjs": "^4.0.0-beta.5",
|
|
9
9
|
"@angular/material": "^14.2.0",
|
|
10
|
-
"@dereekb/rxjs": "9.24.
|
|
11
|
-
"@dereekb/dbx-core": "9.24.
|
|
10
|
+
"@dereekb/rxjs": "9.24.42",
|
|
11
|
+
"@dereekb/dbx-core": "9.24.42",
|
|
12
12
|
"change-case": "^4.1.2",
|
|
13
13
|
"@angular/flex-layout": "^14.0.0-beta.41",
|
|
14
14
|
"ng-overlay-container": "^14.0.0",
|
package/table/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-web/table",
|
|
3
|
-
"version": "9.24.
|
|
3
|
+
"version": "9.24.42",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.2.0",
|
|
6
6
|
"@angular/core": "^14.2.0",
|
|
7
|
-
"@dereekb/dbx-core": "9.24.
|
|
7
|
+
"@dereekb/dbx-core": "9.24.42",
|
|
8
8
|
"@angular/material": "^14.2.0",
|
|
9
9
|
"@angular/forms": "^14.2.0",
|
|
10
|
-
"@dereekb/dbx-web": "9.24.
|
|
10
|
+
"@dereekb/dbx-web": "9.24.42"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"tslib": "^2.3.0"
|