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.
- package/README.md +6 -1
- package/fesm2022/spiderly.mjs +2603 -2325
- package/fesm2022/spiderly.mjs.map +1 -1
- package/lib/components/auth/partials/auth.component.d.ts +3 -3
- package/lib/components/base-form/base-form copy.d.ts +130 -9
- package/lib/components/layout/topbar/topbar.component.d.ts +3 -3
- package/lib/components/spiderly-buttons/google-button/google-button.component.d.ts +1 -1
- package/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.d.ts +1 -1
- package/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.d.ts +2 -2
- package/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.d.ts +2 -2
- package/lib/components/spiderly-data-table/spiderly-data-table.component.d.ts +6 -6
- package/lib/components/spiderly-data-view/spiderly-data-view.component.d.ts +1 -1
- package/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.d.ts +1 -1
- package/lib/components/spiderly-form-control/spiderly-form-control.d.ts +8 -2
- package/lib/controls/spiderly-file/spiderly-file.component.d.ts +16 -4
- package/lib/entities/codebook.d.ts +1 -1
- package/lib/entities/filter-rule.d.ts +1 -1
- package/lib/entities/filter.d.ts +3 -3
- package/lib/entities/image-dimensions-validation-result.d.ts +4 -0
- package/lib/entities/init-company-auth-dialog-details.d.ts +1 -1
- package/lib/entities/init-top-bar-data.d.ts +2 -2
- package/lib/entities/is-authorized-for-save-event.d.ts +1 -1
- package/lib/entities/last-menu-icon-index-clicked.d.ts +1 -1
- package/lib/entities/lazy-load-selected-ids-result.d.ts +1 -1
- package/lib/entities/namebook.d.ts +1 -1
- package/lib/entities/primeng-option.d.ts +1 -1
- package/lib/entities/security-entities.d.ts +12 -12
- package/lib/entities/simple-save-result.d.ts +1 -1
- package/lib/interceptors/http-loading.interceptor.d.ts +1 -1
- package/lib/services/base-form.service.d.ts +2 -4
- package/lib/services/config.service.base.d.ts +1 -1
- package/lib/services/helper-functions.d.ts +13 -9
- package/lib/services/validator-abstract.service.d.ts +8 -3
- package/package.json +1 -1
- package/public-api.d.ts +26 -27
- package/styles/components/info-card/info-card.component.scss +7 -7
- package/styles/components/layout/profile-avatar/profile-avatar.component.scss +5 -5
- package/styles/components/layout/topbar/topbar.component.scss +8 -8
- package/styles/components/spiderly-data-table/spiderly-data-table.component.scss +39 -39
- package/styles/components/spiderly-data-view/spiderly-data-view.component.scss +45 -47
- package/styles/components/spiderly-panels/panel-body/panel-body.component.scss +6 -6
- package/styles/components/spiderly-panels/panel-footer/panel-footer.component.scss +15 -15
- package/styles/components/spiderly-panels/spiderly-panel/spiderly-panel.component.scss +59 -59
- package/styles/controls/base-controls.scss +12 -12
- package/styles/controls/spiderly-checkbox/spiderly-checkbox.component.scss +18 -18
- package/styles/styles/layout/_content.scss +8 -8
- package/styles/styles/layout/_footer.scss +8 -8
- package/styles/styles/layout/_main.scss +18 -18
- package/styles/styles/layout/_menu.scss +116 -109
- package/styles/styles/layout/_mixins.scss +8 -8
- package/styles/styles/layout/_preloading.scss +38 -37
- package/styles/styles/layout/_responsive.scss +78 -78
- package/styles/styles/layout/_spiderly-controls.scss +1 -1
- package/styles/styles/layout/_topbar.scss +211 -206
- package/styles/styles/layout/_typography.scss +35 -30
- package/styles/styles/layout/_utils.scss +15 -15
- package/styles/styles/layout/_variables.scss +796 -705
- package/styles/styles/layout/layout.scss +2 -2
- package/styles/styles/styles.scss +1 -1
- package/lib/entities/mime-type.d.ts +0 -11
- package/lib/services/translate-labels-abstract.service.d.ts +0 -7
|
@@ -1,63 +1,68 @@
|
|
|
1
|
-
h1,
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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
|
-
|
|
9
|
-
|
|
10
|
-
|
|
13
|
+
&:first-child {
|
|
14
|
+
margin-top: 0;
|
|
15
|
+
}
|
|
11
16
|
}
|
|
12
17
|
|
|
13
18
|
h1 {
|
|
14
|
-
|
|
19
|
+
font-size: 2.5rem;
|
|
15
20
|
}
|
|
16
21
|
|
|
17
22
|
h2 {
|
|
18
|
-
|
|
23
|
+
font-size: 2rem;
|
|
19
24
|
}
|
|
20
25
|
|
|
21
26
|
h3 {
|
|
22
|
-
|
|
27
|
+
font-size: 1.75rem;
|
|
23
28
|
}
|
|
24
29
|
|
|
25
30
|
h4 {
|
|
26
|
-
|
|
31
|
+
font-size: 1.5rem;
|
|
27
32
|
}
|
|
28
33
|
|
|
29
34
|
h5 {
|
|
30
|
-
|
|
35
|
+
font-size: 1.25rem;
|
|
31
36
|
}
|
|
32
37
|
|
|
33
38
|
h6 {
|
|
34
|
-
|
|
39
|
+
font-size: 1rem;
|
|
35
40
|
}
|
|
36
41
|
|
|
37
42
|
mark {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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
|
-
|
|
46
|
-
|
|
47
|
-
|
|
50
|
+
margin: 1rem 0;
|
|
51
|
+
padding: 0 2rem;
|
|
52
|
+
border-left: 4px solid #90a4ae;
|
|
48
53
|
}
|
|
49
54
|
|
|
50
55
|
hr {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
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
|
-
|
|
58
|
-
|
|
62
|
+
margin: 0 0 1rem 0;
|
|
63
|
+
line-height: 1.5;
|
|
59
64
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
65
|
+
&:last-child {
|
|
66
|
+
margin-bottom: 0;
|
|
67
|
+
}
|
|
63
68
|
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
.card {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
&:last-child {
|
|
10
|
+
margin-bottom: 0;
|
|
11
|
+
}
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
.p-toast {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
15
|
+
&.p-toast-top-right,
|
|
16
|
+
&.p-toast-top-left,
|
|
17
|
+
&.p-toast-top-center {
|
|
18
|
+
top: 100px;
|
|
19
|
+
}
|
|
20
|
+
}
|