spiderly 19.5.2 → 19.5.4-preview.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 (61) hide show
  1. package/README.md +6 -1
  2. package/fesm2022/spiderly.mjs +2603 -2325
  3. package/fesm2022/spiderly.mjs.map +1 -1
  4. package/lib/components/auth/partials/auth.component.d.ts +3 -3
  5. package/lib/components/base-form/base-form copy.d.ts +130 -9
  6. package/lib/components/layout/topbar/topbar.component.d.ts +3 -3
  7. package/lib/components/spiderly-buttons/google-button/google-button.component.d.ts +1 -1
  8. package/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.d.ts +1 -1
  9. package/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.d.ts +2 -2
  10. package/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.d.ts +2 -2
  11. package/lib/components/spiderly-data-table/spiderly-data-table.component.d.ts +6 -6
  12. package/lib/components/spiderly-data-view/spiderly-data-view.component.d.ts +1 -1
  13. package/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.d.ts +1 -1
  14. package/lib/components/spiderly-form-control/spiderly-form-control.d.ts +8 -2
  15. package/lib/controls/spiderly-file/spiderly-file.component.d.ts +16 -4
  16. package/lib/entities/codebook.d.ts +1 -1
  17. package/lib/entities/filter-rule.d.ts +1 -1
  18. package/lib/entities/filter.d.ts +3 -3
  19. package/lib/entities/image-dimensions-validation-result.d.ts +4 -0
  20. package/lib/entities/init-company-auth-dialog-details.d.ts +1 -1
  21. package/lib/entities/init-top-bar-data.d.ts +2 -2
  22. package/lib/entities/is-authorized-for-save-event.d.ts +1 -1
  23. package/lib/entities/last-menu-icon-index-clicked.d.ts +1 -1
  24. package/lib/entities/lazy-load-selected-ids-result.d.ts +1 -1
  25. package/lib/entities/namebook.d.ts +1 -1
  26. package/lib/entities/primeng-option.d.ts +1 -1
  27. package/lib/entities/security-entities.d.ts +12 -12
  28. package/lib/entities/simple-save-result.d.ts +1 -1
  29. package/lib/interceptors/http-loading.interceptor.d.ts +1 -1
  30. package/lib/services/base-form.service.d.ts +2 -4
  31. package/lib/services/config.service.base.d.ts +1 -1
  32. package/lib/services/helper-functions.d.ts +13 -9
  33. package/lib/services/validator-abstract.service.d.ts +8 -3
  34. package/package.json +1 -1
  35. package/public-api.d.ts +26 -27
  36. package/styles/components/info-card/info-card.component.scss +7 -7
  37. package/styles/components/layout/profile-avatar/profile-avatar.component.scss +5 -5
  38. package/styles/components/layout/topbar/topbar.component.scss +8 -8
  39. package/styles/components/spiderly-data-table/spiderly-data-table.component.scss +39 -39
  40. package/styles/components/spiderly-data-view/spiderly-data-view.component.scss +45 -47
  41. package/styles/components/spiderly-panels/panel-body/panel-body.component.scss +6 -6
  42. package/styles/components/spiderly-panels/panel-footer/panel-footer.component.scss +15 -15
  43. package/styles/components/spiderly-panels/spiderly-panel/spiderly-panel.component.scss +59 -59
  44. package/styles/controls/base-controls.scss +12 -12
  45. package/styles/controls/spiderly-checkbox/spiderly-checkbox.component.scss +18 -18
  46. package/styles/styles/layout/_content.scss +8 -8
  47. package/styles/styles/layout/_footer.scss +8 -8
  48. package/styles/styles/layout/_main.scss +18 -18
  49. package/styles/styles/layout/_menu.scss +116 -109
  50. package/styles/styles/layout/_mixins.scss +8 -8
  51. package/styles/styles/layout/_preloading.scss +38 -37
  52. package/styles/styles/layout/_responsive.scss +78 -78
  53. package/styles/styles/layout/_spiderly-controls.scss +1 -1
  54. package/styles/styles/layout/_topbar.scss +211 -206
  55. package/styles/styles/layout/_typography.scss +35 -30
  56. package/styles/styles/layout/_utils.scss +15 -15
  57. package/styles/styles/layout/_variables.scss +796 -705
  58. package/styles/styles/layout/layout.scss +2 -2
  59. package/styles/styles/styles.scss +1 -1
  60. package/lib/entities/mime-type.d.ts +0 -11
  61. package/lib/services/translate-labels-abstract.service.d.ts +0 -7
@@ -1,13 +1,18 @@
1
1
  import { TranslocoService } from '@jsverse/transloco';
2
- import { SpiderlyFormArray, SpiderlyFormControl, SpiderlyValidatorFn } from "../components/spiderly-form-control/spiderly-form-control";
2
+ import { SpiderlyFormArray, SpiderlyFormControl, SpiderlyValidatorFn } from '../components/spiderly-form-control/spiderly-form-control';
3
+ import { ImageDimensionsValidationResult } from '../entities/image-dimensions-validation-result';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare abstract class ValidatorAbstractService {
5
6
  protected translocoService: TranslocoService;
6
7
  constructor(translocoService: TranslocoService);
7
8
  abstract setValidator(formControl: SpiderlyFormControl, className: string): SpiderlyValidatorFn;
8
- isArrayEmpty: (control: SpiderlyFormControl) => SpiderlyValidatorFn;
9
+ abstract setFormArrayValidator(formArray: SpiderlyFormArray, className: string): void;
10
+ validateImageDimensions(file: File, imageWidth: number, imageHeight: number): Promise<ImageDimensionsValidationResult>;
9
11
  notEmpty: (control: SpiderlyFormControl) => void;
10
- isFormArrayEmpty: (control: SpiderlyFormArray) => SpiderlyValidatorFn;
12
+ /** Validates that a SpiderlyFormArray (collection of form controls/groups) is not empty. */
13
+ isFormArrayEmpty: (control: SpiderlyFormArray) => void;
14
+ /** Validates that a SpiderlyFormControl holding an array value (e.g., multi-select dropdown) is not empty. */
15
+ isArrayEmpty: (control: SpiderlyFormControl) => SpiderlyValidatorFn;
11
16
  static ɵfac: i0.ɵɵFactoryDeclaration<ValidatorAbstractService, never>;
12
17
  static ɵprov: i0.ɵɵInjectableDeclaration<ValidatorAbstractService>;
13
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spiderly",
3
- "version": "19.5.2",
3
+ "version": "19.5.4-preview.0",
4
4
  "author": "Filip Trivan",
5
5
  "license": "MIT",
6
6
  "description": "Spiderly Angular Library to use in combination with Spiderly.",
package/public-api.d.ts CHANGED
@@ -1,7 +1,11 @@
1
+ export * from './lib/controls/base-autocomplete-control';
2
+ export * from './lib/controls/base-control';
3
+ export * from './lib/controls/base-dropdown-control';
1
4
  export * from './lib/controls/spiderly-autocomplete/spiderly-autocomplete.component';
2
5
  export * from './lib/controls/spiderly-calendar/spiderly-calendar.component';
3
6
  export * from './lib/controls/spiderly-checkbox/spiderly-checkbox.component';
4
7
  export * from './lib/controls/spiderly-colorpicker/spiderly-colorpicker.component';
8
+ export * from './lib/controls/spiderly-controls.module';
5
9
  export * from './lib/controls/spiderly-dropdown/spiderly-dropdown.component';
6
10
  export * from './lib/controls/spiderly-editor/spiderly-editor.component';
7
11
  export * from './lib/controls/spiderly-file/spiderly-file.component';
@@ -11,25 +15,28 @@ export * from './lib/controls/spiderly-number/spiderly-number.component';
11
15
  export * from './lib/controls/spiderly-password/spiderly-password.component';
12
16
  export * from './lib/controls/spiderly-textarea/spiderly-textarea.component';
13
17
  export * from './lib/controls/spiderly-textbox/spiderly-textbox.component';
14
- export * from './lib/controls/base-control';
15
- export * from './lib/controls/base-autocomplete-control';
16
- export * from './lib/controls/base-dropdown-control';
17
- export * from './lib/controls/spiderly-controls.module';
18
- export * from './lib/components/base-form/base-form copy';
19
- export * from './lib/components/card-skeleton/card-skeleton.component';
18
+ export * from './lib/components/auth/login/login.component';
20
19
  export * from './lib/components/auth/partials/login-verification.component';
21
20
  export * from './lib/components/auth/partials/verification-wrapper.component';
22
- export * from './lib/components/auth/login/login.component';
21
+ export * from './lib/components/base-form/base-form copy';
22
+ export * from './lib/components/card-skeleton/card-skeleton.component';
23
23
  export * from './lib/components/footer/footer.component';
24
- export * from './lib/components/spiderly-buttons/google-button/google-button.component';
25
24
  export * from './lib/components/index-card/index-card.component';
26
25
  export * from './lib/components/info-card/info-card.component';
26
+ export * from './lib/components/layout/layout.component';
27
+ export * from './lib/components/layout/profile-avatar/profile-avatar.component';
28
+ export * from './lib/components/layout/sidebar/menuitem.component';
29
+ export * from './lib/components/layout/sidebar/sidebar-menu.component';
30
+ export * from './lib/components/layout/sidebar/sidebar.component';
31
+ export * from './lib/components/layout/sidemenu-topbar/sidemenu-topbar.component';
32
+ export * from './lib/components/layout/topbar/topbar.component';
27
33
  export * from './lib/components/not-found/not-found.component';
28
34
  export * from './lib/components/required/required.component';
35
+ export * from './lib/components/spiderly-buttons/google-button/google-button.component';
29
36
  export * from './lib/components/spiderly-buttons/return-button/return-button.component';
37
+ export * from './lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base';
30
38
  export * from './lib/components/spiderly-buttons/spiderly-button/spiderly-button.component';
31
39
  export * from './lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component';
32
- export * from './lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base';
33
40
  export * from './lib/components/spiderly-data-table/spiderly-data-table.component';
34
41
  export * from './lib/components/spiderly-data-view/spiderly-data-view.component';
35
42
  export * from './lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component';
@@ -40,34 +47,27 @@ export * from './lib/components/spiderly-panels/panel-header/panel-header.compon
40
47
  export * from './lib/components/spiderly-panels/spiderly-card/spiderly-card.component';
41
48
  export * from './lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component';
42
49
  export * from './lib/components/spiderly-panels/spiderly-panels.module';
43
- export * from './lib/components/layout/sidebar/sidebar-menu.component';
44
- export * from './lib/components/layout/sidebar/menuitem.component';
45
- export * from './lib/components/layout/sidebar/sidebar.component';
46
- export * from './lib/components/layout/sidemenu-topbar/sidemenu-topbar.component';
47
- export * from './lib/components/layout/layout.component';
48
- export * from './lib/components/layout/topbar/topbar.component';
49
- export * from './lib/components/layout/profile-avatar/profile-avatar.component';
50
50
  export * from './lib/entities/base-entity';
51
51
  export * from './lib/entities/codebook';
52
+ export * from './lib/entities/filter';
53
+ export * from './lib/entities/filter-rule';
54
+ export * from './lib/entities/filter-sort-meta';
55
+ export * from './lib/entities/image-dimensions-validation-result';
56
+ export * from './lib/entities/init-company-auth-dialog-details';
57
+ export * from './lib/entities/init-top-bar-data';
58
+ export * from './lib/entities/is-authorized-for-save-event';
52
59
  export * from './lib/entities/last-menu-icon-index-clicked';
53
60
  export * from './lib/entities/lazy-load-selected-ids-result';
54
61
  export * from './lib/entities/menuchangeevent';
55
- export * from './lib/entities/mime-type';
56
62
  export * from './lib/entities/namebook';
63
+ export * from './lib/entities/paginated-result';
57
64
  export * from './lib/entities/primeng-option';
58
65
  export * from './lib/entities/security-entities';
59
66
  export * from './lib/entities/simple-save-result';
60
67
  export * from './lib/entities/spiderly-button';
61
- export * from './lib/entities/filter';
62
- export * from './lib/entities/filter-rule';
63
- export * from './lib/entities/filter-sort-meta';
64
- export * from './lib/entities/paginated-result';
65
- export * from './lib/entities/init-company-auth-dialog-details';
66
- export * from './lib/entities/init-top-bar-data';
67
- export * from './lib/entities/is-authorized-for-save-event';
68
+ export * from './lib/enums/match-mode-enum-codes';
68
69
  export * from './lib/enums/security-enums';
69
70
  export * from './lib/enums/verification-type-codes';
70
- export * from './lib/enums/match-mode-enum-codes';
71
71
  export * from './lib/guards/auth.guard';
72
72
  export * from './lib/guards/not-auth.guard';
73
73
  export * from './lib/handlers/spiderly-error-handler';
@@ -77,13 +77,12 @@ export * from './lib/interceptors/jwt.interceptor';
77
77
  export * from './lib/interceptors/unauthorized.interceptor';
78
78
  export * from './lib/services/api.service.security';
79
79
  export * from './lib/services/app-initializer';
80
+ export * from './lib/services/app-layout.service.base';
80
81
  export * from './lib/services/auth.service.base';
81
82
  export * from './lib/services/base-form.service';
82
83
  export * from './lib/services/config.service.base';
83
84
  export * from './lib/services/helper-functions';
84
85
  export * from './lib/services/spiderly-message.service';
85
86
  export * from './lib/services/spiderly-transloco-loader';
86
- export * from './lib/services/translate-labels-abstract.service';
87
87
  export * from './lib/services/validator-abstract.service';
88
- export * from './lib/services/app-layout.service.base';
89
88
  export * from './lib/directives/template-type.directive';
@@ -35,19 +35,19 @@
35
35
  transform: rotate(30deg);
36
36
  color: var(--p-primary-400);
37
37
  opacity: 0.2;
38
- position: absolute;
39
- overflow: hidden;
40
- right: -30px;
41
- top: -25px;
38
+ position: absolute;
39
+ overflow: hidden;
40
+ right: -30px;
41
+ top: -25px;
42
42
  z-index: 1;
43
-
43
+
44
44
  i {
45
45
  font-size: 270px;
46
46
  }
47
47
  }
48
48
  }
49
49
 
50
- ::ng-deep{
50
+ ::ng-deep {
51
51
  html.dark .info-card {
52
52
  background-color: var(--p-primary-950);
53
53
 
@@ -58,4 +58,4 @@
58
58
  color: var(--p-primary-400);
59
59
  }
60
60
  }
61
- }
61
+ }
@@ -1,9 +1,9 @@
1
1
  .side-menu-profile-dialog {
2
- right: 26px;
3
- top: 60px;
2
+ right: 26px;
3
+ top: 60px;
4
4
  }
5
5
 
6
6
  .top-menu-profile-dialog {
7
- right: 0px;
8
- top: 40px;
9
- }
7
+ right: 0px;
8
+ top: 40px;
9
+ }
@@ -1,11 +1,11 @@
1
1
  .topbar-wrapper {
2
- background-color: var(--p-content-background);
3
- width: 100%;
4
- border-bottom: 1px solid var(--p-content-border-color);
2
+ background-color: var(--p-content-background);
3
+ width: 100%;
4
+ border-bottom: 1px solid var(--p-content-border-color);
5
5
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
6
- position: sticky;
7
- top: 0;
8
- left: 0;
6
+ position: sticky;
7
+ top: 0;
8
+ left: 0;
9
9
  z-index: 1000;
10
10
  }
11
11
 
@@ -14,7 +14,7 @@
14
14
  margin: auto;
15
15
  }
16
16
 
17
- ::ng-deep{
17
+ ::ng-deep {
18
18
  .show-hover-bg-on-root-items {
19
19
  .p-menubar-root-list > .p-menubar-item > .p-menubar-item-content {
20
20
  background-color: transparent !important;
@@ -36,4 +36,4 @@
36
36
  height: 16px;
37
37
  }
38
38
  }
39
- }
39
+ }
@@ -1,49 +1,49 @@
1
1
  .table-header {
2
- display: flex;
3
- justify-content: space-between;
4
- align-items: center;
2
+ display: flex;
3
+ justify-content: space-between;
4
+ align-items: center;
5
5
  }
6
6
 
7
7
  @media (max-width: 640px) {
8
- .table-header {
9
- display: flex;
10
- flex-direction: column;
11
- align-items: start;
12
- gap: 14px;
13
- }
8
+ .table-header {
9
+ display: flex;
10
+ flex-direction: column;
11
+ align-items: start;
12
+ gap: 14px;
13
+ }
14
14
  }
15
15
 
16
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
- }
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
34
  }
35
35
 
36
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
- }
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
+ }
@@ -1,56 +1,54 @@
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
- }
1
+ ::ng-deep {
2
+ .p-datatable-tbody {
3
+ display: flex;
4
+ flex-direction: column;
5
+ gap: 18px;
6
+ }
7
+
8
+ .p-datatable-header {
9
+ margin-bottom: 36px;
10
+ border: 0 !important;
11
+ padding: 0 !important;
12
+ background-color: transparent !important;
13
+ }
14
+
15
+ .p-paginator {
16
+ padding: 18px 9px 0px 9px !important;
17
+ }
18
+
19
+ .p-fluid {
20
+ width: 100% !important;
21
+ }
22
+
23
+ .p-inputtext {
24
+ width: 100% !important;
25
+ }
26
+
27
+ .p-inputnumber {
28
+ width: 100% !important;
29
+ }
30
+
31
+ .p-datepicker {
32
+ width: 100% !important;
33
+ }
35
34
  }
36
35
 
37
-
38
36
  .data-view-grid {
39
- display: grid;
40
- gap: 18px;
41
- grid-template-columns: 1fr 1fr 1fr;
42
- margin-bottom: 18px;
37
+ display: grid;
38
+ gap: 18px;
39
+ grid-template-columns: 1fr 1fr 1fr;
40
+ margin-bottom: 18px;
43
41
  }
44
42
 
45
43
  @media (max-width: 1080px) {
46
- .data-view-grid {
47
- gap: 12px;
48
- grid-template-columns: 1fr 1fr;
49
- }
44
+ .data-view-grid {
45
+ gap: 12px;
46
+ grid-template-columns: 1fr 1fr;
47
+ }
50
48
  }
51
49
 
52
50
  @media (max-width: 500px) {
53
- .data-view-grid {
54
- grid-template-columns: 1fr;
55
- }
56
- }
51
+ .data-view-grid {
52
+ grid-template-columns: 1fr;
53
+ }
54
+ }
@@ -1,9 +1,9 @@
1
- .non-grid-panel-bottom-padding{
2
- padding-bottom: 14px;
1
+ .non-grid-panel-bottom-padding {
2
+ padding-bottom: 14px;
3
3
  }
4
4
 
5
5
  @media (max-width: 600px) {
6
- .non-grid-panel-bottom-padding{
7
- padding-bottom: 0px;
8
- }
9
- }
6
+ .non-grid-panel-bottom-padding {
7
+ padding-bottom: 0px;
8
+ }
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;
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
10
  }
11
11
 
12
- .buttons-wrapper{
13
- gap: 0.5rem;
14
- display: flex;
15
- align-items: center;
16
- flex-wrap: wrap;
17
- }
12
+ .buttons-wrapper {
13
+ gap: 0.5rem;
14
+ display: flex;
15
+ align-items: center;
16
+ flex-wrap: wrap;
17
+ }
@@ -1,88 +1,88 @@
1
1
  :host {
2
2
  ::ng-deep {
3
- .spiderly-panel{
4
- .p-panel-content{
3
+ .spiderly-panel {
4
+ .p-panel-content {
5
5
  padding: 0;
6
6
  }
7
7
  }
8
- .p-panel{
8
+ .p-panel {
9
9
  overflow: hidden;
10
10
  }
11
- .p-panel-icons{
11
+ .p-panel-icons {
12
12
  display: flex;
13
13
  align-items: center;
14
14
  }
15
-
16
- .panel-header-cursor-pointer {
17
- .p-panel-header {
18
- cursor: pointer !important;
19
- }
20
- }
15
+
16
+ .panel-header-cursor-pointer {
17
+ .p-panel-header {
18
+ cursor: pointer !important;
19
+ }
20
+ }
21
21
  }
22
22
  }
23
23
 
24
- .multiple-panel-first-without-header{
25
- .p-panel {
26
- border-bottom-left-radius: 0px;
27
- border-bottom-right-radius: 0px;
28
- border-top: 1px solid var(--surface-border);
29
- border-top-left-radius: var(--p-content-border-radius);
30
- border-top-right-radius: var(--p-content-border-radius);
31
- border-bottom: none;
32
- }
24
+ .multiple-panel-first-without-header {
25
+ .p-panel {
26
+ border-bottom-left-radius: 0px;
27
+ border-bottom-right-radius: 0px;
28
+ border-top: 1px solid var(--surface-border);
29
+ border-top-left-radius: var(--p-content-border-radius);
30
+ border-top-right-radius: var(--p-content-border-radius);
31
+ border-bottom: none;
32
+ }
33
33
  }
34
34
 
35
- .multiple-panel-middle-without-header{
36
- .p-panel {
37
- border-bottom-left-radius: 0px;
38
- border-bottom-right-radius: 0px;
39
- border-top: 1px solid var(--surface-border);
40
- border-top-left-radius: 0px;
41
- border-top-right-radius: 0px;
42
- border-bottom: none;
43
- }
35
+ .multiple-panel-middle-without-header {
36
+ .p-panel {
37
+ border-bottom-left-radius: 0px;
38
+ border-bottom-right-radius: 0px;
39
+ border-top: 1px solid var(--surface-border);
40
+ border-top-left-radius: 0px;
41
+ border-top-right-radius: 0px;
42
+ border-bottom: none;
43
+ }
44
44
  }
45
45
 
46
- .multiple-panel-last-without-header{
47
- .p-panel {
48
- border-bottom-left-radius: var(--p-content-border-radius);
49
- border-bottom-right-radius: var(--p-content-border-radius);
50
- border-top: 1px solid var(--surface-border);
51
- border-top-left-radius: 0px;
52
- border-top-right-radius: 0px;
53
- }
46
+ .multiple-panel-last-without-header {
47
+ .p-panel {
48
+ border-bottom-left-radius: var(--p-content-border-radius);
49
+ border-bottom-right-radius: var(--p-content-border-radius);
50
+ border-top: 1px solid var(--surface-border);
51
+ border-top-left-radius: 0px;
52
+ border-top-right-radius: 0px;
53
+ }
54
54
  }
55
55
 
56
- .multiple-panel-first{
57
- .p-panel {
58
- border-bottom-left-radius: 0px;
59
- border-bottom-right-radius: 0px;
60
- border-bottom: none;
61
- }
56
+ .multiple-panel-first {
57
+ .p-panel {
58
+ border-bottom-left-radius: 0px;
59
+ border-bottom-right-radius: 0px;
60
+ border-bottom: none;
61
+ }
62
62
  }
63
63
 
64
- .panel-border{
65
- .p-panel {
66
- border-bottom-left-radius: var(--p-content-border-radius);
67
- border-bottom-right-radius: var(--p-content-border-radius);
68
- border-bottom: 1px solid var(--surface-border);
69
- }
64
+ .panel-border {
65
+ .p-panel {
66
+ border-bottom-left-radius: var(--p-content-border-radius);
67
+ border-bottom-right-radius: var(--p-content-border-radius);
68
+ border-bottom: 1px solid var(--surface-border);
69
+ }
70
70
  }
71
71
 
72
72
  .multiple-panel-middle {
73
- .p-panel {
74
- border-radius: 0px;
75
- border-bottom: none;
76
- }
73
+ .p-panel {
74
+ border-radius: 0px;
75
+ border-bottom: none;
76
+ }
77
77
  }
78
78
 
79
79
  .multiple-panel-last {
80
- .p-panel {
81
- border-top-left-radius: 0px;
82
- border-top-right-radius: 0px;
83
- }
80
+ .p-panel {
81
+ border-top-left-radius: 0px;
82
+ border-top-right-radius: 0px;
83
+ }
84
84
  }
85
85
 
86
- .panel-body-wrapper{
87
- padding: 18px;
88
- }
86
+ .panel-body-wrapper {
87
+ padding: 18px;
88
+ }
@@ -1,17 +1,17 @@
1
1
  .spiderly-inputgroup {
2
- display: flex;
3
- gap: 8px;
2
+ display: flex;
3
+ gap: 8px;
4
4
  }
5
5
 
6
6
  .spiderly-inputgroup-addon {
7
- width: 38px;
8
- cursor: pointer;
9
- background-color: var(--p-primary-color);
10
- border-color: var(--p-primary-color);
11
- border-radius: var(--p-content-border-radius);
12
- display: flex;
7
+ width: 38px;
8
+ cursor: pointer;
9
+ background-color: var(--p-primary-color);
10
+ border-color: var(--p-primary-color);
11
+ border-radius: var(--p-content-border-radius);
12
+ display: flex;
13
13
 
14
- i {
15
- margin: auto;
16
- }
17
- }
14
+ i {
15
+ margin: auto;
16
+ }
17
+ }