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,63 +1,68 @@
1
- h1, h2, h3, h4, h5, h6 {
2
- margin: 1.5rem 0 1rem 0;
3
- font-family: inherit;
4
- font-weight: 500;
5
- line-height: 1.2;
6
- color: var(--surface-900);
1
+ h1,
2
+ h2,
3
+ h3,
4
+ h4,
5
+ h5,
6
+ h6 {
7
+ margin: 1.5rem 0 1rem 0;
8
+ font-family: inherit;
9
+ font-weight: 500;
10
+ line-height: 1.2;
11
+ color: var(--surface-900);
7
12
 
8
- &:first-child {
9
- margin-top: 0;
10
- }
13
+ &:first-child {
14
+ margin-top: 0;
15
+ }
11
16
  }
12
17
 
13
18
  h1 {
14
- font-size: 2.5rem;
19
+ font-size: 2.5rem;
15
20
  }
16
21
 
17
22
  h2 {
18
- font-size: 2rem;
23
+ font-size: 2rem;
19
24
  }
20
25
 
21
26
  h3 {
22
- font-size: 1.75rem;
27
+ font-size: 1.75rem;
23
28
  }
24
29
 
25
30
  h4 {
26
- font-size: 1.5rem;
31
+ font-size: 1.5rem;
27
32
  }
28
33
 
29
34
  h5 {
30
- font-size: 1.25rem;
35
+ font-size: 1.25rem;
31
36
  }
32
37
 
33
38
  h6 {
34
- font-size: 1rem;
39
+ font-size: 1rem;
35
40
  }
36
41
 
37
42
  mark {
38
- background: #FFF8E1;
39
- padding: .25rem .4rem;
40
- border-radius: var(--p-content-border-radius);
41
- font-family: monospace;
43
+ background: #fff8e1;
44
+ padding: 0.25rem 0.4rem;
45
+ border-radius: var(--p-content-border-radius);
46
+ font-family: monospace;
42
47
  }
43
48
 
44
49
  blockquote {
45
- margin: 1rem 0;
46
- padding: 0 2rem;
47
- border-left: 4px solid #90A4AE;
50
+ margin: 1rem 0;
51
+ padding: 0 2rem;
52
+ border-left: 4px solid #90a4ae;
48
53
  }
49
54
 
50
55
  hr {
51
- border-top: solid var(--surface-border);
52
- border-width: 1px 0 0 0;
53
- margin: 1rem 0;
56
+ border-top: solid var(--surface-border);
57
+ border-width: 1px 0 0 0;
58
+ margin: 1rem 0;
54
59
  }
55
60
 
56
61
  p {
57
- margin: 0 0 1rem 0;
58
- line-height: 1.5;
62
+ margin: 0 0 1rem 0;
63
+ line-height: 1.5;
59
64
 
60
- &:last-child {
61
- margin-bottom: 0;
62
- }
65
+ &:last-child {
66
+ margin-bottom: 0;
67
+ }
63
68
  }
@@ -1,20 +1,20 @@
1
1
  .card {
2
- background: var(--surface-card);
3
- border: 1px solid var(--surface-border);
4
- padding: 2rem;
5
- margin-bottom: 2rem;
6
- box-shadow: var(--card-shadow);
7
- border-radius: var(--p-content-border-radius);
2
+ background: var(--surface-card);
3
+ border: 1px solid var(--surface-border);
4
+ padding: 2rem;
5
+ margin-bottom: 2rem;
6
+ box-shadow: var(--card-shadow);
7
+ border-radius: var(--p-content-border-radius);
8
8
 
9
- &:last-child {
10
- margin-bottom: 0;
11
- }
9
+ &:last-child {
10
+ margin-bottom: 0;
11
+ }
12
12
  }
13
13
 
14
14
  .p-toast {
15
- &.p-toast-top-right,
16
- &.p-toast-top-left,
17
- &.p-toast-top-center {
18
- top: 100px;
19
- }
20
- }
15
+ &.p-toast-top-right,
16
+ &.p-toast-top-left,
17
+ &.p-toast-top-center {
18
+ top: 100px;
19
+ }
20
+ }