@dereekb/dbx-web 9.24.12 → 9.24.14
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/lib/interaction/prompt/prompt.page.component.mjs +1 -1
- package/esm2020/lib/layout/column/two/two.column.component.mjs +1 -1
- package/esm2020/lib/layout/content/content.container.directive.mjs +6 -3
- package/esm2020/lib/loading/loading.component.mjs +11 -8
- package/fesm2015/dereekb-dbx-web.mjs +16 -11
- package/fesm2015/dereekb-dbx-web.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-web.mjs +16 -11
- package/fesm2020/dereekb-dbx-web.mjs.map +1 -1
- package/lib/layout/content/_content.scss +20 -0
- package/lib/layout/content/content.container.directive.d.ts +2 -1
- package/lib/loading/loading.component.d.ts +3 -1
- package/mapbox/package.json +3 -3
- package/package.json +3 -3
- package/table/package.json +3 -3
|
@@ -102,6 +102,22 @@ $scroll-content-bottom-padding: 42px;
|
|
|
102
102
|
padding: 0 calc($content-container-padding / 3);
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
+
&.container-top-padding-none {
|
|
106
|
+
padding-top: 0;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
&.container-top-padding-min {
|
|
110
|
+
padding-top: 2px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
&.container-top-padding-small {
|
|
114
|
+
padding-top: 6px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
&.container-top-padding-normal {
|
|
118
|
+
padding-top: 12px;
|
|
119
|
+
}
|
|
120
|
+
|
|
105
121
|
// width
|
|
106
122
|
&.container-small {
|
|
107
123
|
max-width: $max-small-content-container-width;
|
|
@@ -127,6 +143,10 @@ $scroll-content-bottom-padding: 42px;
|
|
|
127
143
|
}
|
|
128
144
|
}
|
|
129
145
|
|
|
146
|
+
.dbx-content-container-header-padded {
|
|
147
|
+
padding: $content-container-padding-small-screen;
|
|
148
|
+
}
|
|
149
|
+
|
|
130
150
|
.dbx-scroll-content {
|
|
131
151
|
padding-bottom: $scroll-content-bottom-padding;
|
|
132
152
|
}
|
|
@@ -7,6 +7,7 @@ export declare type DbxContentContainerWidth = 'small' | 'medium' | 'wide' | 'fu
|
|
|
7
7
|
export declare class DbxContentContainerDirective {
|
|
8
8
|
grow: DbxContentContainerWidth;
|
|
9
9
|
padding: DbxContentContainerPadding;
|
|
10
|
+
topPadding: DbxContentContainerPadding;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxContentContainerDirective, never>;
|
|
11
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxContentContainerDirective, "dbx-content-container,[dbxContentContainer],.dbx-content-container", never, { "grow": "grow"; "padding": "padding"; }, {}, never, never, false>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxContentContainerDirective, "dbx-content-container,[dbxContentContainer],.dbx-content-container", never, { "grow": "grow"; "padding": "padding"; "topPadding": "topPadding"; }, {}, never, never, false>;
|
|
12
13
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
3
3
|
import { ThemePalette } from '@angular/material/core';
|
|
4
4
|
import { ProgressBarMode } from '@angular/material/progress-bar';
|
|
5
5
|
import { LoadingContext } from '@dereekb/rxjs';
|
|
@@ -13,6 +13,7 @@ export interface DbxLoadingComponentState {
|
|
|
13
13
|
* Loading View component that provides content sections for loading, error, and an error action.
|
|
14
14
|
*/
|
|
15
15
|
export declare class DbxLoadingComponent implements OnDestroy {
|
|
16
|
+
readonly cdRef: ChangeDetectorRef;
|
|
16
17
|
private _context;
|
|
17
18
|
private _inputLoading;
|
|
18
19
|
private _inputError;
|
|
@@ -29,6 +30,7 @@ export declare class DbxLoadingComponent implements OnDestroy {
|
|
|
29
30
|
* Whether or not to add padding to the linear presentation when linear is complete. This prevents the linear bar from pushing content around.
|
|
30
31
|
*/
|
|
31
32
|
padding?: Maybe<boolean>;
|
|
33
|
+
constructor(cdRef: ChangeDetectorRef);
|
|
32
34
|
ngOnDestroy(): void;
|
|
33
35
|
get context(): Maybe<LoadingContext>;
|
|
34
36
|
set context(context: Maybe<LoadingContext>);
|
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.14",
|
|
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.14",
|
|
8
|
+
"@dereekb/dbx-web": "9.24.14",
|
|
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.14",
|
|
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.14",
|
|
11
|
+
"@dereekb/dbx-core": "9.24.14",
|
|
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.14",
|
|
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.14",
|
|
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.14"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"tslib": "^2.3.0"
|