@testgorilla/tgo-ui 0.0.18 → 0.0.21

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 (34) hide show
  1. package/.github/README.md +66 -0
  2. package/README.md +0 -48
  3. package/components/progress-bar/progress-bar.component.d.ts +36 -0
  4. package/components/progress-bar/progress-bar.component.module.d.ts +9 -0
  5. package/components/table/table.component.d.ts +2 -6
  6. package/components/table/table.component.module.d.ts +2 -3
  7. package/components/table/table.model.d.ts +20 -13
  8. package/esm2020/components/banner/banner.component.mjs +4 -4
  9. package/esm2020/components/banner-action/banner-action.component.mjs +4 -4
  10. package/esm2020/components/create-account/create-account.component.mjs +4 -4
  11. package/esm2020/components/create-password/create-password.component.mjs +4 -4
  12. package/esm2020/components/forgot-password/forgot-password.component.mjs +4 -4
  13. package/esm2020/components/login/login.component.mjs +4 -4
  14. package/esm2020/components/navbar/navbar.component.mjs +4 -4
  15. package/esm2020/components/navigation/navigation.component.mjs +4 -4
  16. package/esm2020/components/paginator/paginator.component.mjs +4 -4
  17. package/esm2020/components/progress-bar/progress-bar.component.mjs +22 -0
  18. package/esm2020/components/progress-bar/progress-bar.component.module.mjs +20 -0
  19. package/esm2020/components/status/status.component.mjs +4 -4
  20. package/esm2020/components/table/table.component.mjs +9 -14
  21. package/esm2020/components/table/table.component.module.mjs +4 -5
  22. package/esm2020/components/table/table.model.mjs +16 -13
  23. package/esm2020/public-api.mjs +4 -1
  24. package/fesm2015/testgorilla-tgo-ui.mjs +82 -50
  25. package/fesm2015/testgorilla-tgo-ui.mjs.map +1 -1
  26. package/fesm2020/testgorilla-tgo-ui.mjs +82 -50
  27. package/fesm2020/testgorilla-tgo-ui.mjs.map +1 -1
  28. package/package.json +1 -3
  29. package/public-api.d.ts +2 -0
  30. package/src/assets/images/check.svg +3 -0
  31. package/src/theme/_core.scss +20 -0
  32. package/src/theme/_typography.scss +58 -0
  33. package/src/theme/_variables.scss +3 -1
  34. package/src/theme/{base.scss → theme.scss} +4 -32
@@ -0,0 +1,58 @@
1
+ // Headings
2
+ h1,
3
+ h2,
4
+ h3,
5
+ h4,
6
+ h5,
7
+ h6,
8
+ .h1,
9
+ .h2,
10
+ .h3,
11
+ .h4,
12
+ .h5,
13
+ .h6 {
14
+ font-weight: 700;
15
+ }
16
+
17
+ h1,
18
+ .h1 {
19
+ font-size: 24px;
20
+ }
21
+
22
+ h2,
23
+ .h2 {
24
+ font-size: 20px;
25
+ margin: 40px 0px 40px 0px;
26
+ }
27
+
28
+ h3,
29
+ .h3 {
30
+ font-size: 16px;
31
+ margin: 0px 0px 20px 0px;
32
+ }
33
+
34
+ h4,
35
+ .h4 {
36
+ font-size: 15px;
37
+ }
38
+
39
+ h5,
40
+ .h5 {
41
+ font-size: 13px;
42
+ }
43
+
44
+ h6,
45
+ .h6 {
46
+ font-size: 12px;
47
+ }
48
+
49
+ p {
50
+ line-height: 24px;
51
+ margin-top: 16px;
52
+ margin-bottom: 16px;
53
+ }
54
+
55
+ .mat-form-field-label {
56
+ font-size: 16px !important;
57
+ color: #888888;
58
+ }
@@ -1,2 +1,4 @@
1
1
  /* global */
2
- $background: #ffffff;
2
+ $background-color: #f6f6f6;
3
+ $font-family: "Open Sans", sans-serif;
4
+ $font-size: 14px;
@@ -1,43 +1,15 @@
1
1
  @use "palette.scss" as *;
2
+ @use "core.scss" as *;
2
3
  @use "variables.scss" as *;
4
+ @use "typography.scss" as *;
3
5
  @import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
4
6
  @import url("https://fonts.googleapis.com/icon?family=Material+Icons");
5
7
 
6
- body {
7
- margin: 0;
8
- background: $background;
9
- font-size: 14px;
10
- color: #888888;
11
- font-family: 'Open Sans';
12
-
13
- h1,
14
- h2,
15
- h3,
16
- h4,
17
- h5,
18
- h6,
19
- button {
20
- margin-top: 16px;
21
- margin-bottom: 16px;
22
- }
23
-
24
- p {
25
- line-height: 24px;
26
- margin-top: 16px;
27
- margin-bottom: 16px;
28
- }
29
-
30
- .mat-form-field-label {
31
- font-size: 16px !important;
32
- color: #888888;
33
- }
34
- }
35
-
8
+ //TODO: MOVE TO THE CORRESPONDING COMPONENTS OR PARTIAL
36
9
  .hidden {
37
10
  visibility: hidden;
38
11
  }
39
12
 
40
- //TODO: MOVE TO THE CORRESPONDING COMPONENTS
41
13
  //custom scss for the angular material components
42
14
  .mat-card {
43
15
  border-radius: 8px !important;
@@ -119,4 +91,4 @@ mat-password-strength-info {
119
91
  margin-right: 8px;
120
92
  color: #000;
121
93
  }
122
- }
94
+ }