@net7/boilerplate-arianna 3.4.2 → 3.5.0

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.
Files changed (36) hide show
  1. package/esm2020/lib/components/extended-tree/extended-tree.mjs +29 -0
  2. package/esm2020/lib/components/index.mjs +2 -1
  3. package/esm2020/lib/config/apollo.config.mjs +31 -3
  4. package/esm2020/lib/config-types/arianna/layouts.mjs +1 -1
  5. package/esm2020/lib/data-sources/extended-tree.ds.mjs +136 -0
  6. package/esm2020/lib/data-sources/index.mjs +2 -1
  7. package/esm2020/lib/data-sources/tree.ds.mjs +1 -1
  8. package/esm2020/lib/event-handlers/extended-tree.eh.mjs +15 -0
  9. package/esm2020/lib/event-handlers/index.mjs +2 -1
  10. package/esm2020/lib/event-handlers/tree.eh.mjs +7 -1
  11. package/esm2020/lib/helpers/node.helper.mjs +14 -0
  12. package/esm2020/lib/layouts/scheda-layout/scheda-layout.config.mjs +2 -1
  13. package/esm2020/lib/layouts/scheda-layout/scheda-layout.ds.mjs +120 -5
  14. package/esm2020/lib/layouts/scheda-layout/scheda-layout.eh.mjs +113 -6
  15. package/esm2020/lib/layouts/scheda-layout/scheda-layout.mjs +5 -4
  16. package/esm2020/lib/n7-boilerplate-arianna.module.mjs +7 -3
  17. package/fesm2015/net7-boilerplate-arianna.mjs +455 -15
  18. package/fesm2015/net7-boilerplate-arianna.mjs.map +1 -1
  19. package/fesm2020/net7-boilerplate-arianna.mjs +462 -15
  20. package/fesm2020/net7-boilerplate-arianna.mjs.map +1 -1
  21. package/lib/components/extended-tree/extended-tree.d.ts +24 -0
  22. package/lib/components/index.d.ts +1 -0
  23. package/lib/config/apollo.config.d.ts +4 -0
  24. package/lib/config-types/arianna/layouts.d.ts +15 -0
  25. package/lib/data-sources/extended-tree.ds.d.ts +25 -0
  26. package/lib/data-sources/index.d.ts +1 -0
  27. package/lib/event-handlers/extended-tree.eh.d.ts +6 -0
  28. package/lib/event-handlers/index.d.ts +1 -0
  29. package/lib/event-handlers/tree.eh.d.ts +2 -0
  30. package/lib/helpers/node.helper.d.ts +8 -0
  31. package/lib/layouts/scheda-layout/scheda-layout.ds.d.ts +30 -1
  32. package/lib/layouts/scheda-layout/scheda-layout.eh.d.ts +9 -0
  33. package/lib/n7-boilerplate-arianna.module.d.ts +7 -6
  34. package/package.json +1 -1
  35. package/src/lib/styles/arianna/components/_extended-tree.scss +115 -0
  36. package/src/lib/styles/arianna/layouts/_scheda-layout.scss +87 -12
@@ -0,0 +1,24 @@
1
+ import { Anchor, InnerTitleData, InputSelectData, InputTextData, PaginationData } from '@net7/components';
2
+ import * as i0 from "@angular/core";
3
+ export declare type ExtendedTreeData = {
4
+ header: InnerTitleData;
5
+ items: {
6
+ icon: string;
7
+ thumbnail?: string;
8
+ label: string;
9
+ anchor: Anchor;
10
+ }[];
11
+ pagination: PaginationData;
12
+ limitSelect?: InputSelectData;
13
+ pageInput?: InputTextData;
14
+ loading?: boolean;
15
+ };
16
+ export declare class ExtendedTreeComponent {
17
+ data: ExtendedTreeData;
18
+ emit: (type: string, payload?: any) => void;
19
+ lb: any;
20
+ onPageInputSubmit(): void;
21
+ onCollapseClick(type: any): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExtendedTreeComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExtendedTreeComponent, "aw-extended-tree", never, { "data": "data"; "emit": "emit"; "lb": "lb"; }, {}, never, ["*"]>;
24
+ }
@@ -4,3 +4,4 @@ export * from './chart-tippy/chart-tippy';
4
4
  export * from './aw-facets-wrapper/aw-facets-wrapper';
5
5
  export * from './pdf-viewer/pdf-viewer';
6
6
  export * from './scheda-dropdown/scheda-dropdown';
7
+ export * from './extended-tree/extended-tree';
@@ -31,6 +31,10 @@ declare const _default: (treeDepth: any) => {
31
31
  queryName: string;
32
32
  queryBody: string;
33
33
  };
34
+ getNodeChildren: {
35
+ queryName: string;
36
+ queryBody: string;
37
+ };
34
38
  getNode: {
35
39
  queryName: string;
36
40
  queryBody: string;
@@ -93,6 +93,21 @@ export interface ConfigAriannaSchedaLayout {
93
93
  /** how many related items */
94
94
  'max-related-items': number;
95
95
  };
96
+ /** extended tree section */
97
+ 'extended-tree'?: {
98
+ /** extended tree section title */
99
+ title: string;
100
+ /** extended tree search input */
101
+ search: {
102
+ placeholder: string;
103
+ };
104
+ /** extended tree lite version? */
105
+ lite?: boolean;
106
+ };
107
+ /** title prev/next navigation */
108
+ 'title-nav'?: {
109
+ enabled: boolean;
110
+ };
96
111
  /** metadata section */
97
112
  metadata: {
98
113
  /** metadata section title */
@@ -0,0 +1,25 @@
1
+ import { DataSource } from '@net7/core';
2
+ import { ExtendedTreeData } from '../components/extended-tree/extended-tree';
3
+ declare type ParentResponse = {
4
+ label: string;
5
+ };
6
+ declare type NodesResponse = {
7
+ items: {
8
+ img?: string;
9
+ label: string;
10
+ id: string;
11
+ document_type: string;
12
+ document_classification: string;
13
+ }[];
14
+ totalCount: number;
15
+ };
16
+ export declare class AwExtendedTreeDS extends DataSource {
17
+ protected transform: ({ parent, nodes }: {
18
+ parent: ParentResponse;
19
+ nodes: NodesResponse;
20
+ }) => ExtendedTreeData;
21
+ setLoading(loading: boolean): void;
22
+ private getPagination;
23
+ private getPaginationLinks;
24
+ }
25
+ export {};
@@ -20,6 +20,7 @@ export * from './scheda-inner-title.ds';
20
20
  export * from './scheda-metadata.ds';
21
21
  export * from './scheda-pdf.ds';
22
22
  export * from './tree.ds';
23
+ export * from './extended-tree.ds';
23
24
  export * from './search-layout-tabs.ds';
24
25
  export * from './aw-facets-wrapper.ds';
25
26
  export * from './gallery-results.ds';
@@ -0,0 +1,6 @@
1
+ import { EventHandler } from '@net7/core';
2
+ import { AwExtendedTreeDS } from '../data-sources';
3
+ export declare class AwExtendedTreeEH extends EventHandler {
4
+ dataSource: AwExtendedTreeDS;
5
+ listen(): void;
6
+ }
@@ -9,6 +9,7 @@ export * from './sidebar-header.eh';
9
9
  export * from './tree.eh';
10
10
  export * from './scheda-dropdown.eh';
11
11
  export * from './scheda-pdf.eh';
12
+ export * from './extended-tree.eh';
12
13
  export * from './search-layout-tabs.eh';
13
14
  export * from './aw-facets-wrapper.eh';
14
15
  export * from './gallery-results.eh';
@@ -1,5 +1,7 @@
1
1
  import { EventHandler } from '@net7/core';
2
+ import { AwTreeDS } from '../data-sources';
2
3
  export declare class AwTreeEH extends EventHandler {
4
+ dataSource: AwTreeDS;
3
5
  private targetOffset;
4
6
  private targetIsOpen;
5
7
  listen(): void;
@@ -0,0 +1,8 @@
1
+ import { ConfigAriannaKeys } from '../config-types';
2
+ declare const _default: {
3
+ getNodeIcon: (configKeys: ConfigAriannaKeys, item: {
4
+ document_type: string;
5
+ document_classification: string;
6
+ }) => string;
7
+ };
8
+ export default _default;
@@ -21,6 +21,7 @@ export declare class AwSchedaLayoutDS extends LayoutDataSource {
21
21
  hasMetadata: boolean;
22
22
  hasRelatedEntities: boolean;
23
23
  hasSimilarItems: boolean;
24
+ hasExtendedTree: boolean;
24
25
  hasDigitalObjects: boolean;
25
26
  digitalObjects: any;
26
27
  currentDigitalObject: any;
@@ -37,8 +38,32 @@ export declare class AwSchedaLayoutDS extends LayoutDataSource {
37
38
  emptyStateString: string;
38
39
  externalUrlText: string;
39
40
  hasContextMenu: () => boolean;
41
+ extendedTreeParams: {
42
+ [key: string]: string;
43
+ };
44
+ lastResponse: any;
40
45
  /** Name of query that should be used (chosen in config) */
41
46
  private getTreeQuery;
47
+ titleNavigation: {
48
+ prev: {
49
+ href: string;
50
+ label: string;
51
+ };
52
+ next: {
53
+ href: string;
54
+ label: string;
55
+ };
56
+ };
57
+ sectionCollapseState: {
58
+ metadata: boolean;
59
+ 'extended-tree': boolean;
60
+ 'similar-items': boolean;
61
+ 'related-entities': boolean;
62
+ };
63
+ documentType: {
64
+ icon: string;
65
+ label: string;
66
+ };
42
67
  onInit({ configuration, mainState, router, options, titleService, communication, }: {
43
68
  configuration: any;
44
69
  mainState: any;
@@ -49,7 +74,7 @@ export declare class AwSchedaLayoutDS extends LayoutDataSource {
49
74
  }): void;
50
75
  onDestroy(): void;
51
76
  getMetadataSectionTitle(): any;
52
- getNavigation(id: any): any;
77
+ getNavigation(): any;
53
78
  setTree(tree: any): void;
54
79
  getTree: () => any;
55
80
  updateNavigation(text: any): void;
@@ -59,10 +84,14 @@ export declare class AwSchedaLayoutDS extends LayoutDataSource {
59
84
  * @param response http response for the tree item
60
85
  */
61
86
  loadContent(response: any): void;
87
+ loadExtendedTree(): void;
88
+ loadTitleNavigation(): void;
89
+ loadDocumentType(): void;
62
90
  /**
63
91
  * Toggle between the tree's collapsed or expanded state.
64
92
  */
65
93
  collapseSidebar(): void;
94
+ onSectionCollapse(id: string): void;
66
95
  private _sidebarStickyControl;
67
96
  getFields(response: any): {
68
97
  key: any;
@@ -1,11 +1,20 @@
1
1
  import { EventHandler } from '@net7/core';
2
+ import { AwSchedaLayoutDS } from './scheda-layout.ds';
2
3
  export declare class AwSchedaLayoutEH extends EventHandler {
4
+ dataSource: AwSchedaLayoutDS;
3
5
  private destroyed$;
4
6
  private configuration;
5
7
  private route;
8
+ private router;
9
+ private treeLoaded$;
10
+ private extendedTreeChanged$;
11
+ private pageInputValue;
6
12
  listen(): void;
7
13
  private listenRoute;
14
+ private listenExtendedTree;
15
+ private listenRouteQueryParams;
8
16
  private loadNavigation;
9
17
  private parseDigitalObjects$;
10
18
  private getManifestImages;
19
+ private checkTreeItems;
11
20
  }
@@ -15,14 +15,15 @@ import * as i11 from "./components/chart-tippy/chart-tippy";
15
15
  import * as i12 from "./components/pdf-viewer/pdf-viewer";
16
16
  import * as i13 from "./components/scheda-dropdown/scheda-dropdown";
17
17
  import * as i14 from "./components/smart-breadcrumbs/smart-breadcrumbs";
18
- import * as i15 from "@angular/common";
19
- import * as i16 from "@angular/router";
20
- import * as i17 from "@net7/components";
21
- import * as i18 from "@net7/boilerplate-common";
22
- import * as i19 from "ngx-extended-pdf-viewer";
18
+ import * as i15 from "./components/extended-tree/extended-tree";
19
+ import * as i16 from "@angular/common";
20
+ import * as i17 from "@angular/router";
21
+ import * as i18 from "@net7/components";
22
+ import * as i19 from "@net7/boilerplate-common";
23
+ import * as i20 from "ngx-extended-pdf-viewer";
23
24
  export declare class N7BoilerplateAriannaModule {
24
25
  constructor(initStatus: ApplicationInitStatus, config: ConfigurationService);
25
26
  static ɵfac: i0.ɵɵFactoryDeclaration<N7BoilerplateAriannaModule, never>;
26
- static ɵmod: i0.ɵɵNgModuleDeclaration<N7BoilerplateAriannaModule, [typeof i1.AwCollectionLayoutComponent, typeof i2.AwEntitaLayoutComponent, typeof i3.AwFacetsWrapperComponent, typeof i4.AwGalleryLayoutComponent, typeof i5.AwHomeLayoutComponent, typeof i6.AwMapLayoutComponent, typeof i7.AwSchedaLayoutComponent, typeof i8.AwSearchLayoutComponent, typeof i9.AwTimelineLayoutComponent, typeof i10.BubbleChartWrapperComponent, typeof i11.ChartTippyComponent, typeof i12.PdfViewerComponent, typeof i13.SchedaDropdownComponent, typeof i14.SmartBreadcrumbsComponent], [typeof i15.CommonModule, typeof i16.RouterModule, typeof i17.DvComponentsLibModule, typeof i18.N7BoilerplateCommonModule, typeof i19.NgxExtendedPdfViewerModule], [typeof i1.AwCollectionLayoutComponent, typeof i2.AwEntitaLayoutComponent, typeof i3.AwFacetsWrapperComponent, typeof i4.AwGalleryLayoutComponent, typeof i5.AwHomeLayoutComponent, typeof i6.AwMapLayoutComponent, typeof i7.AwSchedaLayoutComponent, typeof i8.AwSearchLayoutComponent, typeof i9.AwTimelineLayoutComponent, typeof i10.BubbleChartWrapperComponent, typeof i11.ChartTippyComponent, typeof i12.PdfViewerComponent, typeof i13.SchedaDropdownComponent, typeof i14.SmartBreadcrumbsComponent]>;
27
+ static ɵmod: i0.ɵɵNgModuleDeclaration<N7BoilerplateAriannaModule, [typeof i1.AwCollectionLayoutComponent, typeof i2.AwEntitaLayoutComponent, typeof i3.AwFacetsWrapperComponent, typeof i4.AwGalleryLayoutComponent, typeof i5.AwHomeLayoutComponent, typeof i6.AwMapLayoutComponent, typeof i7.AwSchedaLayoutComponent, typeof i8.AwSearchLayoutComponent, typeof i9.AwTimelineLayoutComponent, typeof i10.BubbleChartWrapperComponent, typeof i11.ChartTippyComponent, typeof i12.PdfViewerComponent, typeof i13.SchedaDropdownComponent, typeof i14.SmartBreadcrumbsComponent, typeof i15.ExtendedTreeComponent], [typeof i16.CommonModule, typeof i17.RouterModule, typeof i18.DvComponentsLibModule, typeof i19.N7BoilerplateCommonModule, typeof i20.NgxExtendedPdfViewerModule], [typeof i1.AwCollectionLayoutComponent, typeof i2.AwEntitaLayoutComponent, typeof i3.AwFacetsWrapperComponent, typeof i4.AwGalleryLayoutComponent, typeof i5.AwHomeLayoutComponent, typeof i6.AwMapLayoutComponent, typeof i7.AwSchedaLayoutComponent, typeof i8.AwSearchLayoutComponent, typeof i9.AwTimelineLayoutComponent, typeof i10.BubbleChartWrapperComponent, typeof i11.ChartTippyComponent, typeof i12.PdfViewerComponent, typeof i13.SchedaDropdownComponent, typeof i14.SmartBreadcrumbsComponent, typeof i15.ExtendedTreeComponent]>;
27
28
  static ɵinj: i0.ɵɵInjectorDeclaration<N7BoilerplateAriannaModule>;
28
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@net7/boilerplate-arianna",
3
- "version": "3.4.2",
3
+ "version": "3.5.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "~13.2.0",
6
6
  "@angular/core": "~13.2.0"
@@ -0,0 +1,115 @@
1
+ /**
2
+ * EXTENDED TREE
3
+ */
4
+
5
+ .aw-extended-tree {
6
+ &__item a {
7
+ display: flex;
8
+ align-items: center;
9
+ padding: $space * 1.8 0 ;
10
+ border-bottom: 1px solid $color-border-light;
11
+ cursor: pointer;
12
+ color: $color-gray-05;
13
+
14
+ &:hover {
15
+ .aw-extended-tree__item-label {
16
+ color: $color-text-link;
17
+ }
18
+ }
19
+ }
20
+
21
+ &__item-icon {
22
+ margin-right: $space;
23
+ }
24
+
25
+ &__item-image img {
26
+ margin-right: $space;
27
+ width: $tree-image-size;
28
+ height: $tree-image-size;
29
+ }
30
+
31
+ &__content, &__footer, &__loader {
32
+ padding: 0 $aw-scheda-content-padding $aw-scheda-content-padding $aw-scheda-content-padding;
33
+ }
34
+
35
+ &__loader {
36
+ .n7-loader {
37
+ margin: 0 auto;
38
+ }
39
+ }
40
+
41
+ &__footer {
42
+ display: flex;
43
+ }
44
+
45
+ &__page-input {
46
+ flex-grow: 1;
47
+ margin-left: $space * 2;
48
+
49
+ .n7-input-text {
50
+ display: inline-block;
51
+ }
52
+
53
+ input.n7-input-text__text[type=number] {
54
+ width: 60px;
55
+ height: $pagination-item-height;
56
+ }
57
+
58
+ button.n7-btn {
59
+ margin-left: $space;
60
+ width: $pagination-item-width;
61
+ height: $pagination-item-height;
62
+ }
63
+ }
64
+
65
+ &__limit-select {
66
+ label {
67
+ font-size: $font-size-m;
68
+ }
69
+
70
+ select {
71
+ margin-left: $space;
72
+ }
73
+ }
74
+
75
+ .n7-inner-title {
76
+ padding: 0;
77
+
78
+ .n7-inner-title__title {
79
+ font-size: $font-size-xxl;
80
+ font-weight: $font-weight-normal;
81
+ }
82
+
83
+ .n7-inner-title__title .aw-extended-tree__total {
84
+ font-size: $font-size-l;
85
+ color: $color-gray-04;
86
+ }
87
+
88
+ .n7-inner-title__subtitle {
89
+ font-size: $font-size-m;
90
+ color: $color-gray-04;
91
+ }
92
+ }
93
+
94
+ .n7-inner-title__search-bar {
95
+ width: 250px;
96
+ }
97
+
98
+ }
99
+
100
+
101
+ /* ------------------------------------ *\
102
+ #MEDIA-QUERIES
103
+ \* ------------------------------------ */
104
+ @media all and (max-width: $breakpoint-laptop) {
105
+ }
106
+
107
+ @media all and (max-width: $breakpoint-ipad-portrait) {
108
+ }
109
+
110
+ @media all and (max-width: $breakpoint-smartphone-landscape) {
111
+ }
112
+
113
+ /* Retina */
114
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
115
+ }
@@ -27,8 +27,8 @@
27
27
  &.is-sticky {
28
28
  .n7-tree {
29
29
  height: calc(
30
- 100% - #{$sidebar-header-height}
31
- ); /* space for sidebar header */
30
+ 100% - #{$sidebar-header-height}
31
+ ); /* space for sidebar header */
32
32
  overflow-y: auto;
33
33
  overflow-x: hidden;
34
34
  }
@@ -210,7 +210,7 @@
210
210
  /* Main title that describes the scheda content */
211
211
  .n7-inner-title {
212
212
  // margin-bottom: $aw-scheda-content-padding;
213
- border-bottom: 2px solid $color-border-normal;
213
+ // border-bottom: 2px solid $color-border-normal;
214
214
 
215
215
  &__title {
216
216
  font-weight: $scheda-title-font-weight;
@@ -218,11 +218,25 @@
218
218
  }
219
219
 
220
220
  /* Minor inner titles that describes the various sections */
221
- .aw-scheda__inner-title {
222
- padding: 0 $aw-scheda-content-padding $aw-scheda-content-padding
223
- $aw-scheda-content-padding;
224
- font-size: $font-size-xxl;
225
- font-weight: $font-weight-normal;
221
+ .aw-scheda__section-title-wrapper {
222
+ display: flex;
223
+ align-items: center;
224
+ padding: 0 $aw-scheda-content-padding $aw-scheda-content-padding
225
+ $aw-scheda-content-padding;
226
+ cursor: pointer;
227
+
228
+ .aw-scheda__inner-title {
229
+ // padding-top: $space;
230
+ flex-grow: 1;
231
+ font-size: $font-size-xxl;
232
+ font-weight: $font-weight-normal;
233
+ }
234
+
235
+ .aw-scheda__collapse button {
236
+ font-size: $font-size-l;
237
+ color: $color-gray-05;
238
+ margin-left: -$space;
239
+ }
226
240
  }
227
241
 
228
242
  /* Sections */
@@ -250,7 +264,7 @@
250
264
  .aw-scheda__metadata {
251
265
  .n7-metadata-viewer {
252
266
  padding: 0 $aw-scheda-content-padding $aw-scheda-content-padding
253
- $aw-scheda-content-padding;
267
+ $aw-scheda-content-padding;
254
268
  }
255
269
  }
256
270
 
@@ -261,7 +275,7 @@
261
275
  align-items: center;
262
276
  justify-content: center;
263
277
  padding: 0 $aw-scheda-content-padding $aw-scheda-content-padding
264
- $aw-scheda-content-padding;
278
+ $aw-scheda-content-padding;
265
279
  height: $bubble-section-patrimonio;
266
280
  }
267
281
 
@@ -277,7 +291,7 @@
277
291
 
278
292
  .aw-scheda__related-items {
279
293
  padding: 0 $aw-scheda-content-padding $aw-scheda-content-padding
280
- $aw-scheda-content-padding;
294
+ $aw-scheda-content-padding;
281
295
 
282
296
  /* Targeting elements in the last row */
283
297
  > *:nth-child(2n + 1):nth-last-child(-n + 2),
@@ -289,6 +303,58 @@
289
303
  }
290
304
  }
291
305
  }
306
+
307
+ /* title wrapper */
308
+ .aw-scheda__title-wrapper {
309
+ display: flex;
310
+ align-items: center;
311
+ border-bottom: 2px solid $color-border-normal;
312
+
313
+ .aw-scheda__title {
314
+ flex-grow: 1;
315
+ border-right: 1px solid $color-gray-03;
316
+ border-left: 1px solid $color-gray-03;
317
+ }
318
+
319
+ .n7-inner-title {
320
+ padding-top: $space;
321
+ }
322
+
323
+ .aw-scheda__next span, .aw-scheda__prev span {
324
+ font-size: $font-size-xxl;
325
+ color: $color-gray-05;
326
+ opacity: .8;
327
+
328
+ &:hover {
329
+ opacity: 1;
330
+ }
331
+ }
332
+
333
+ .aw-scheda__next.is-disabled span, .aw-scheda__prev.is-disabled span {
334
+ color: $color-gray-04;
335
+ opacity: 1;
336
+ }
337
+
338
+ .aw-scheda__document-type {
339
+ display: flex;
340
+ align-items: center;
341
+ padding: $space * 2 $space * 2 0;
342
+
343
+ .aw-scheda__document-type-icon {
344
+ margin-right: $space;
345
+ }
346
+
347
+ .aw-scheda__document-type-label {
348
+ color: $color-gray-04;
349
+ }
350
+ }
351
+ }
352
+
353
+ /* fix section hidden */
354
+ .aw-scheda__related-items[hidden] {
355
+ display: none !important;
356
+ }
357
+
292
358
  }
293
359
 
294
360
  /* ------------------------------------ *\
@@ -350,7 +416,7 @@
350
416
  background-color: $color-background-base;
351
417
  border: 1px solid $color-border-normal;
352
418
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04),
353
- 0 2px 10px rgba(0, 0, 0, 0.04);
419
+ 0 2px 10px rgba(0, 0, 0, 0.04);
354
420
 
355
421
  ul {
356
422
  padding: 0;
@@ -402,6 +468,15 @@
402
468
  }
403
469
  }
404
470
 
471
+ /* extended tree loader */
472
+ .aw-scheda__section-extended-tree-loader {
473
+ padding: 0 0 $space * 2;
474
+
475
+ .n7-loader {
476
+ margin: 0 auto;
477
+ }
478
+ }
479
+
405
480
  /* ------------------------------------ *\
406
481
  #MEDIA-QUERIES
407
482
  \* ------------------------------------ */