spiderly 19.3.1 → 19.4.0-preview.1
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/README.md +17 -17
- package/fesm2022/spiderly.mjs +765 -1066
- package/fesm2022/spiderly.mjs.map +1 -1
- package/lib/components/auth/login/login.component.d.ts +3 -3
- package/lib/components/auth/partials/auth.component.d.ts +3 -4
- package/lib/components/auth/partials/login-verification.component.d.ts +2 -2
- package/lib/components/footer/footer.component.d.ts +2 -2
- package/lib/components/layout/layout.component.d.ts +3 -3
- package/lib/components/layout/profile-avatar/profile-avatar.component.d.ts +6 -6
- package/lib/components/layout/sidebar/menuitem.component.d.ts +5 -5
- package/lib/components/layout/sidebar/sidebar-menu.component.d.ts +5 -5
- package/lib/components/layout/sidemenu-topbar/sidemenu-topbar.component.d.ts +4 -4
- package/lib/components/layout/topbar/topbar.component.d.ts +3 -3
- package/lib/components/not-found/not-found.component.d.ts +2 -2
- package/lib/entities/security-entities.d.ts +6 -184
- package/lib/guards/auth.guard.d.ts +3 -3
- package/lib/guards/not-auth.guard.d.ts +2 -2
- package/lib/handlers/spiderly-error-handler.d.ts +2 -2
- package/lib/services/api.service.security.d.ts +5 -18
- package/lib/services/app-initializer.d.ts +2 -2
- package/lib/services/{app-layout-base.service.d.ts → app-layout.service.base.d.ts} +8 -8
- package/lib/services/{auth-base.service.d.ts → auth.service.base.d.ts} +6 -6
- package/lib/services/{config-base.service.d.ts → config.service.base.d.ts} +3 -4
- package/lib/services/spiderly-transloco-loader.d.ts +2 -2
- package/package.json +1 -1
- package/public-api.d.ts +3 -4
- package/styles/components/info-card/info-card.component.scss +60 -60
- package/styles/components/layout/profile-avatar/profile-avatar.component.scss +8 -8
- package/styles/components/layout/topbar/topbar.component.scss +38 -38
- package/styles/components/spiderly-data-table/spiderly-data-table.component.scss +48 -48
- package/styles/components/spiderly-data-view/spiderly-data-view.component.scss +55 -55
- package/styles/components/spiderly-panels/panel-body/panel-body.component.scss +8 -8
- package/styles/components/spiderly-panels/panel-footer/panel-footer.component.scss +16 -16
- package/styles/components/spiderly-panels/spiderly-panel/spiderly-panel.component.scss +87 -87
- package/styles/controls/base-controls.scss +16 -16
- package/styles/controls/spiderly-checkbox/spiderly-checkbox.component.scss +22 -22
- package/styles/styles/layout/_content.scss +14 -14
- package/styles/styles/layout/_footer.scss +11 -11
- package/styles/styles/layout/_main.scss +34 -34
- package/styles/styles/layout/_menu.scss +137 -137
- package/styles/styles/layout/_mixins.scss +13 -13
- package/styles/styles/layout/_preloading.scss +47 -47
- package/styles/styles/layout/_responsive.scss +102 -102
- package/styles/styles/layout/_spiderly-controls.scss +14 -14
- package/styles/styles/layout/_topbar.scss +235 -235
- package/styles/styles/layout/_typography.scss +63 -63
- package/styles/styles/layout/_utils.scss +19 -19
- package/styles/styles/layout/_variables.scss +908 -908
- package/styles/styles/layout/layout.scss +11 -11
- package/styles/styles/shared.scss +483 -483
- package/styles/styles/styles.scss +2 -2
- package/lib/components/base-details/role-base-details.component.d.ts +0 -43
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { HttpHeaders, HttpParams } from "@angular/common/http";
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class ConfigServiceBase {
|
|
4
4
|
production: boolean;
|
|
5
5
|
apiUrl: string;
|
|
6
6
|
frontendUrl: string;
|
|
7
7
|
GoogleClientId: string;
|
|
8
8
|
companyName: string;
|
|
9
9
|
primaryColor: string;
|
|
10
|
-
googleAuth: boolean;
|
|
11
10
|
loginSlug: string;
|
|
12
11
|
accessTokenKey: string;
|
|
13
12
|
refreshTokenKey: string;
|
|
@@ -19,6 +18,6 @@ export declare class ConfigBaseService {
|
|
|
19
18
|
};
|
|
20
19
|
logoPath: string;
|
|
21
20
|
constructor();
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
23
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigServiceBase, never>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ConfigServiceBase>;
|
|
24
23
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ConfigServiceBase } from './config.service.base';
|
|
2
2
|
import { TranslocoLoader } from '@jsverse/transloco';
|
|
3
3
|
import { HttpClient } from '@angular/common/http';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class SpiderlyTranslocoLoader implements TranslocoLoader {
|
|
6
6
|
private http;
|
|
7
7
|
private config;
|
|
8
|
-
constructor(http: HttpClient, config:
|
|
8
|
+
constructor(http: HttpClient, config: ConfigServiceBase);
|
|
9
9
|
getTranslation(lang: string): import("rxjs").Observable<Object>;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyTranslocoLoader, never>;
|
|
11
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<SpiderlyTranslocoLoader>;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -15,7 +15,6 @@ export * from './lib/controls/base-control';
|
|
|
15
15
|
export * from './lib/controls/base-autocomplete-control';
|
|
16
16
|
export * from './lib/controls/base-dropdown-control';
|
|
17
17
|
export * from './lib/controls/spiderly-controls.module';
|
|
18
|
-
export * from './lib/components/base-details/role-base-details.component';
|
|
19
18
|
export * from './lib/components/base-form/base-form copy';
|
|
20
19
|
export * from './lib/components/card-skeleton/card-skeleton.component';
|
|
21
20
|
export * from './lib/components/auth/partials/login-verification.component';
|
|
@@ -78,13 +77,13 @@ export * from './lib/interceptors/jwt.interceptor';
|
|
|
78
77
|
export * from './lib/interceptors/unauthorized.interceptor';
|
|
79
78
|
export * from './lib/services/api.service.security';
|
|
80
79
|
export * from './lib/services/app-initializer';
|
|
81
|
-
export * from './lib/services/auth
|
|
80
|
+
export * from './lib/services/auth.service.base';
|
|
82
81
|
export * from './lib/services/base-form.service';
|
|
83
|
-
export * from './lib/services/config
|
|
82
|
+
export * from './lib/services/config.service.base';
|
|
84
83
|
export * from './lib/services/helper-functions';
|
|
85
84
|
export * from './lib/services/spiderly-message.service';
|
|
86
85
|
export * from './lib/services/spiderly-transloco-loader';
|
|
87
86
|
export * from './lib/services/translate-labels-abstract.service';
|
|
88
87
|
export * from './lib/services/validator-abstract.service';
|
|
89
|
-
export * from './lib/services/app-layout
|
|
88
|
+
export * from './lib/services/app-layout.service.base';
|
|
90
89
|
export * from './lib/directives/template-type.directive';
|
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
.info-card {
|
|
2
|
-
background-color: var(--p-primary-100);
|
|
3
|
-
position: relative;
|
|
4
|
-
overflow: hidden;
|
|
5
|
-
|
|
6
|
-
&__content {
|
|
7
|
-
display: flex;
|
|
8
|
-
align-items: center;
|
|
9
|
-
gap: 21px;
|
|
10
|
-
position: relative;
|
|
11
|
-
z-index: 2;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
&__icon {
|
|
15
|
-
font-size: 21px;
|
|
16
|
-
color: var(--p-primary-color);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
&__header {
|
|
20
|
-
display: flex;
|
|
21
|
-
gap: 8px;
|
|
22
|
-
color: var(--p-primary-color);
|
|
23
|
-
font-weight: 600;
|
|
24
|
-
text-align: left;
|
|
25
|
-
font-size: 17.5px;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
&__body {
|
|
29
|
-
text-align: left;
|
|
30
|
-
margin-top: 8px;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
&__background-icon {
|
|
34
|
-
text-align: center;
|
|
35
|
-
transform: rotate(30deg);
|
|
36
|
-
color: var(--p-primary-400);
|
|
37
|
-
opacity: 0.2;
|
|
38
|
-
position: absolute;
|
|
39
|
-
overflow: hidden;
|
|
40
|
-
right: -30px;
|
|
41
|
-
top: -25px;
|
|
42
|
-
z-index: 1;
|
|
43
|
-
|
|
44
|
-
i {
|
|
45
|
-
font-size: 270px;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
::ng-deep{
|
|
51
|
-
html.dark .info-card {
|
|
52
|
-
background-color: var(--p-primary-950);
|
|
53
|
-
|
|
54
|
-
&__header {
|
|
55
|
-
color: var(--p-primary-400);
|
|
56
|
-
}
|
|
57
|
-
&__icon {
|
|
58
|
-
color: var(--p-primary-400);
|
|
59
|
-
}
|
|
60
|
-
}
|
|
1
|
+
.info-card {
|
|
2
|
+
background-color: var(--p-primary-100);
|
|
3
|
+
position: relative;
|
|
4
|
+
overflow: hidden;
|
|
5
|
+
|
|
6
|
+
&__content {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
gap: 21px;
|
|
10
|
+
position: relative;
|
|
11
|
+
z-index: 2;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&__icon {
|
|
15
|
+
font-size: 21px;
|
|
16
|
+
color: var(--p-primary-color);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&__header {
|
|
20
|
+
display: flex;
|
|
21
|
+
gap: 8px;
|
|
22
|
+
color: var(--p-primary-color);
|
|
23
|
+
font-weight: 600;
|
|
24
|
+
text-align: left;
|
|
25
|
+
font-size: 17.5px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&__body {
|
|
29
|
+
text-align: left;
|
|
30
|
+
margin-top: 8px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&__background-icon {
|
|
34
|
+
text-align: center;
|
|
35
|
+
transform: rotate(30deg);
|
|
36
|
+
color: var(--p-primary-400);
|
|
37
|
+
opacity: 0.2;
|
|
38
|
+
position: absolute;
|
|
39
|
+
overflow: hidden;
|
|
40
|
+
right: -30px;
|
|
41
|
+
top: -25px;
|
|
42
|
+
z-index: 1;
|
|
43
|
+
|
|
44
|
+
i {
|
|
45
|
+
font-size: 270px;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
::ng-deep{
|
|
51
|
+
html.dark .info-card {
|
|
52
|
+
background-color: var(--p-primary-950);
|
|
53
|
+
|
|
54
|
+
&__header {
|
|
55
|
+
color: var(--p-primary-400);
|
|
56
|
+
}
|
|
57
|
+
&__icon {
|
|
58
|
+
color: var(--p-primary-400);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
61
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
.side-menu-profile-dialog {
|
|
2
|
-
right: 26px;
|
|
3
|
-
top: 60px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.top-menu-profile-dialog {
|
|
7
|
-
right: 0px;
|
|
8
|
-
top: 40px;
|
|
1
|
+
.side-menu-profile-dialog {
|
|
2
|
+
right: 26px;
|
|
3
|
+
top: 60px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.top-menu-profile-dialog {
|
|
7
|
+
right: 0px;
|
|
8
|
+
top: 40px;
|
|
9
9
|
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
.topbar-wrapper {
|
|
2
|
-
background-color: var(--p-content-background);
|
|
3
|
-
width: 100%;
|
|
4
|
-
border-bottom: 1px solid var(--p-content-border-color);
|
|
5
|
-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
6
|
-
position: sticky;
|
|
7
|
-
top: 0;
|
|
8
|
-
left: 0;
|
|
9
|
-
z-index: 1000;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.topbar {
|
|
13
|
-
max-width: 1100px;
|
|
14
|
-
margin: auto;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
::ng-deep{
|
|
18
|
-
.show-hover-bg-on-root-items {
|
|
19
|
-
.p-menubar-root-list > .p-menubar-item > .p-menubar-item-content {
|
|
20
|
-
background-color: transparent !important;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
.p-menubar-item-link {
|
|
24
|
-
background-color: transparent !important;
|
|
25
|
-
padding: 10px !important;
|
|
26
|
-
font-size: 15px !important;
|
|
27
|
-
.pi {
|
|
28
|
-
font-size: 15px;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
.p-menubar-button {
|
|
32
|
-
width: 35px !important;
|
|
33
|
-
height: 35px !important;
|
|
34
|
-
.p-icon {
|
|
35
|
-
width: 16px;
|
|
36
|
-
height: 16px;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
1
|
+
.topbar-wrapper {
|
|
2
|
+
background-color: var(--p-content-background);
|
|
3
|
+
width: 100%;
|
|
4
|
+
border-bottom: 1px solid var(--p-content-border-color);
|
|
5
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
6
|
+
position: sticky;
|
|
7
|
+
top: 0;
|
|
8
|
+
left: 0;
|
|
9
|
+
z-index: 1000;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.topbar {
|
|
13
|
+
max-width: 1100px;
|
|
14
|
+
margin: auto;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
::ng-deep{
|
|
18
|
+
.show-hover-bg-on-root-items {
|
|
19
|
+
.p-menubar-root-list > .p-menubar-item > .p-menubar-item-content {
|
|
20
|
+
background-color: transparent !important;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
.p-menubar-item-link {
|
|
24
|
+
background-color: transparent !important;
|
|
25
|
+
padding: 10px !important;
|
|
26
|
+
font-size: 15px !important;
|
|
27
|
+
.pi {
|
|
28
|
+
font-size: 15px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
.p-menubar-button {
|
|
32
|
+
width: 35px !important;
|
|
33
|
+
height: 35px !important;
|
|
34
|
+
.p-icon {
|
|
35
|
+
width: 16px;
|
|
36
|
+
height: 16px;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
39
|
}
|
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
.table-header {
|
|
2
|
-
display: flex;
|
|
3
|
-
justify-content: space-between;
|
|
4
|
-
align-items: center;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
@media (max-width: 640px) {
|
|
8
|
-
.table-header {
|
|
9
|
-
display: flex;
|
|
10
|
-
flex-direction: column;
|
|
11
|
-
align-items: start;
|
|
12
|
-
gap: 14px;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.spiderly-table {
|
|
17
|
-
.p-paginator {
|
|
18
|
-
padding: 1rem;
|
|
19
|
-
}
|
|
20
|
-
.p-paginator-left-content {
|
|
21
|
-
@media (min-width: 1400px) {
|
|
22
|
-
position: absolute;
|
|
23
|
-
padding: 14px;
|
|
24
|
-
left: 0;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
.p-paginator-right-content {
|
|
28
|
-
@media (min-width: 1400px) {
|
|
29
|
-
position: absolute;
|
|
30
|
-
padding: 14px;
|
|
31
|
-
right: 0;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
:host {
|
|
37
|
-
::ng-deep {
|
|
38
|
-
.p-datatable-thead{
|
|
39
|
-
position: unset !important;
|
|
40
|
-
}
|
|
41
|
-
.p-datatable-header{
|
|
42
|
-
border-radius: 6px 6px 0 0;
|
|
43
|
-
}
|
|
44
|
-
.p-datatable {
|
|
45
|
-
border-radius: var(--p-content-border-radius);
|
|
46
|
-
border: 1px solid var(--p-datatable-border-color);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
1
|
+
.table-header {
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: space-between;
|
|
4
|
+
align-items: center;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@media (max-width: 640px) {
|
|
8
|
+
.table-header {
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: column;
|
|
11
|
+
align-items: start;
|
|
12
|
+
gap: 14px;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.spiderly-table {
|
|
17
|
+
.p-paginator {
|
|
18
|
+
padding: 1rem;
|
|
19
|
+
}
|
|
20
|
+
.p-paginator-left-content {
|
|
21
|
+
@media (min-width: 1400px) {
|
|
22
|
+
position: absolute;
|
|
23
|
+
padding: 14px;
|
|
24
|
+
left: 0;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
.p-paginator-right-content {
|
|
28
|
+
@media (min-width: 1400px) {
|
|
29
|
+
position: absolute;
|
|
30
|
+
padding: 14px;
|
|
31
|
+
right: 0;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
:host {
|
|
37
|
+
::ng-deep {
|
|
38
|
+
.p-datatable-thead{
|
|
39
|
+
position: unset !important;
|
|
40
|
+
}
|
|
41
|
+
.p-datatable-header{
|
|
42
|
+
border-radius: 6px 6px 0 0;
|
|
43
|
+
}
|
|
44
|
+
.p-datatable {
|
|
45
|
+
border-radius: var(--p-content-border-radius);
|
|
46
|
+
border: 1px solid var(--p-datatable-border-color);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
49
|
}
|
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
|
|
2
|
-
::ng-deep{
|
|
3
|
-
.p-datatable-tbody {
|
|
4
|
-
display: flex;
|
|
5
|
-
flex-direction: column;
|
|
6
|
-
gap: 18px;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.p-datatable-header {
|
|
10
|
-
margin-bottom: 36px;
|
|
11
|
-
border: 0 !important;
|
|
12
|
-
padding: 0 !important;
|
|
13
|
-
background-color: transparent !important;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.p-paginator {
|
|
17
|
-
padding: 18px 9px 0px 9px !important;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.p-fluid {
|
|
21
|
-
width: 100% !important;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.p-inputtext {
|
|
25
|
-
width: 100% !important;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.p-inputnumber {
|
|
29
|
-
width: 100% !important;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.p-datepicker {
|
|
33
|
-
width: 100% !important;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
.data-view-grid {
|
|
39
|
-
display: grid;
|
|
40
|
-
gap: 18px;
|
|
41
|
-
grid-template-columns: 1fr 1fr 1fr;
|
|
42
|
-
margin-bottom: 18px;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
@media (max-width: 1080px) {
|
|
46
|
-
.data-view-grid {
|
|
47
|
-
gap: 12px;
|
|
48
|
-
grid-template-columns: 1fr 1fr;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
@media (max-width: 500px) {
|
|
53
|
-
.data-view-grid {
|
|
54
|
-
grid-template-columns: 1fr;
|
|
55
|
-
}
|
|
1
|
+
|
|
2
|
+
::ng-deep{
|
|
3
|
+
.p-datatable-tbody {
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
gap: 18px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.p-datatable-header {
|
|
10
|
+
margin-bottom: 36px;
|
|
11
|
+
border: 0 !important;
|
|
12
|
+
padding: 0 !important;
|
|
13
|
+
background-color: transparent !important;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.p-paginator {
|
|
17
|
+
padding: 18px 9px 0px 9px !important;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.p-fluid {
|
|
21
|
+
width: 100% !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.p-inputtext {
|
|
25
|
+
width: 100% !important;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.p-inputnumber {
|
|
29
|
+
width: 100% !important;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.p-datepicker {
|
|
33
|
+
width: 100% !important;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
.data-view-grid {
|
|
39
|
+
display: grid;
|
|
40
|
+
gap: 18px;
|
|
41
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
42
|
+
margin-bottom: 18px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@media (max-width: 1080px) {
|
|
46
|
+
.data-view-grid {
|
|
47
|
+
gap: 12px;
|
|
48
|
+
grid-template-columns: 1fr 1fr;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@media (max-width: 500px) {
|
|
53
|
+
.data-view-grid {
|
|
54
|
+
grid-template-columns: 1fr;
|
|
55
|
+
}
|
|
56
56
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
.non-grid-panel-bottom-padding{
|
|
2
|
-
padding-bottom: 14px;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
@media (max-width: 600px) {
|
|
6
|
-
.non-grid-panel-bottom-padding{
|
|
7
|
-
padding-bottom: 0px;
|
|
8
|
-
}
|
|
1
|
+
.non-grid-panel-bottom-padding{
|
|
2
|
+
padding-bottom: 14px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
@media (max-width: 600px) {
|
|
6
|
+
.non-grid-panel-bottom-padding{
|
|
7
|
+
padding-bottom: 0px;
|
|
8
|
+
}
|
|
9
9
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
.spiderly-panel-footer{
|
|
2
|
-
display: flex;
|
|
3
|
-
align-items: center;
|
|
4
|
-
justify-content: space-between;
|
|
5
|
-
gap: 10px;
|
|
6
|
-
border-top: 1px solid var(--p-content-border-color);
|
|
7
|
-
border-bottom-right-radius: var(--p-content-border-radius);
|
|
8
|
-
border-bottom-left-radius: var(--p-content-border-radius);
|
|
9
|
-
padding: 18px;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.buttons-wrapper{
|
|
13
|
-
gap: 0.5rem;
|
|
14
|
-
display: flex;
|
|
15
|
-
align-items: center;
|
|
16
|
-
flex-wrap: wrap;
|
|
1
|
+
.spiderly-panel-footer{
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
justify-content: space-between;
|
|
5
|
+
gap: 10px;
|
|
6
|
+
border-top: 1px solid var(--p-content-border-color);
|
|
7
|
+
border-bottom-right-radius: var(--p-content-border-radius);
|
|
8
|
+
border-bottom-left-radius: var(--p-content-border-radius);
|
|
9
|
+
padding: 18px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.buttons-wrapper{
|
|
13
|
+
gap: 0.5rem;
|
|
14
|
+
display: flex;
|
|
15
|
+
align-items: center;
|
|
16
|
+
flex-wrap: wrap;
|
|
17
17
|
}
|