@rubeusteam/rb-angular-components 0.0.1-9.1

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 (27) hide show
  1. package/README.md +119 -0
  2. package/fesm2022/rubeusteam-rb-angular-components.mjs +580 -0
  3. package/fesm2022/rubeusteam-rb-angular-components.mjs.map +1 -0
  4. package/index.d.ts +5 -0
  5. package/lib/components/rb-content-box/rb-content-box.component.d.ts +5 -0
  6. package/lib/components/rb-copy-confirm-dialog/rb-copy-confirm-dialog.component.d.ts +14 -0
  7. package/lib/components/rb-crud/rb-crud.component.d.ts +34 -0
  8. package/lib/components/rb-crud-tool-bar/rb-crud-tool-bar.component.d.ts +19 -0
  9. package/lib/components/rb-dialog/rb-dialog.component.d.ts +10 -0
  10. package/lib/components/rb-filter-dropdown/rb-filter-dropdown.component.d.ts +23 -0
  11. package/lib/components/rb-filter-panel/rb-filter-panel.component.d.ts +12 -0
  12. package/lib/directives/rb-dynamic-button/rb-dynamic-button.directive.d.ts +17 -0
  13. package/lib/i18n/paginator-ptbr-intl/paginator-ptbr-intl.service.d.ts +12 -0
  14. package/lib/interfaces/button.interface.d.ts +15 -0
  15. package/lib/interfaces/rb-crud.interface.d.ts +11 -0
  16. package/lib/interfaces/rb-dialog.interface.d.ts +16 -0
  17. package/lib/interfaces/rb-filter.interface.d.ts +11 -0
  18. package/lib/pipes/rb-custom/rb-custom.pipe.d.ts +20 -0
  19. package/lib/services/filter/client-filter.service.d.ts +10 -0
  20. package/package.json +53 -0
  21. package/public-api.d.ts +13 -0
  22. package/src/lib/styles/README.md +83 -0
  23. package/src/lib/styles/_crud.scss +22 -0
  24. package/src/lib/styles/_dialog.scss +38 -0
  25. package/src/lib/styles/_layout.scss +86 -0
  26. package/src/lib/styles/_typography.scss +62 -0
  27. package/src/lib/styles/index.scss +4 -0
@@ -0,0 +1,86 @@
1
+ /* Display */
2
+ .rb-row {
3
+ display: flex;
4
+ }
5
+
6
+ /* Direction */
7
+ .rb-flex-row {
8
+ flex-direction: row;
9
+ }
10
+
11
+ .rb-flex-row-reverse {
12
+ flex-direction: row-reverse;
13
+ }
14
+
15
+ .rb-flex-column {
16
+ flex-direction: column;
17
+ }
18
+
19
+ .rb-flex-column-reverse {
20
+ flex-direction: column-reverse;
21
+ }
22
+
23
+ /* Align */
24
+
25
+ .rb-align-items-start {
26
+ align-items: flex-start;
27
+ }
28
+
29
+ .rb-align-items-center {
30
+ align-items: center;
31
+ }
32
+
33
+ .rb-align-items-end {
34
+ align-items: flex-end;
35
+ }
36
+
37
+ .rb-align-items-stretch {
38
+ align-items: stretch;
39
+ }
40
+
41
+ .rb-align-items-baseline {
42
+ align-items: baseline;
43
+ }
44
+
45
+
46
+ /* Justify */
47
+
48
+ .rb-justify-content-start {
49
+ justify-content: flex-start;
50
+ }
51
+
52
+ .rb-justify-content-center {
53
+ justify-content: center;
54
+ }
55
+
56
+ .rb-justify-content-end {
57
+ justify-content: flex-end;
58
+ }
59
+
60
+ .rb-justify-content-around {
61
+ justify-content: space-around;
62
+ }
63
+
64
+ .rb-justify-content-between {
65
+ justify-content: space-between;
66
+ }
67
+
68
+ .rb-justify-content-evenly {
69
+ justify-content: space-evenly;
70
+ }
71
+
72
+ /* Wrap */
73
+
74
+ .rb-flex-wrap {
75
+ flex-wrap: wrap;
76
+ }
77
+
78
+ .rb-flex-nowrap {
79
+ flex-wrap: nowrap;
80
+ }
81
+
82
+ .rb-flex-wrap-reverse {
83
+ flex-wrap: wrap-reverse;
84
+ }
85
+
86
+
@@ -0,0 +1,62 @@
1
+ :root {
2
+ --font-plain: 'Roboto', sans-serif;
3
+ --font-heading: 'Poppins', sans-serif;
4
+ }
5
+
6
+ /* Fontes de corpo */
7
+
8
+ .rb-font-body {
9
+ font-family: var(--font-plain);
10
+ font-weight: regular;
11
+ }
12
+
13
+ .rb-large {
14
+ font-size: 1rem; // 16px
15
+ line-height: 1.5rem; // 24px
16
+ letter-spacing: 0.03125rem; // 0.5px
17
+ }
18
+
19
+ .rb-medium {
20
+ font-size: 0.875rem; // 14px
21
+ line-height: 1.25rem; // 20px
22
+ letter-spacing: 0.015625rem; // 0.25px
23
+ }
24
+
25
+ .rb-small {
26
+ font-size: 0.75rem; // 12px
27
+ line-height: 1rem; // 16px
28
+ }
29
+
30
+
31
+ /* Fontes de títulos */
32
+
33
+ .rb-font-heading {
34
+ font-family: var(--font-heading);
35
+ font-weight: bold;
36
+ }
37
+
38
+ .rb-h1 {
39
+ font-size: 2.4375rem; // 39px
40
+ line-height: 4.425rem; // 70.8px
41
+ }
42
+
43
+ .rb-h2 {
44
+ font-size: 1.9375rem; // 31px
45
+ line-height: 3.525rem; // 56.4px
46
+ }
47
+
48
+ .rb-h3 {
49
+ font-size: 1.5625rem; // 25px
50
+ line-height: 2.85rem; // 45.6px
51
+ }
52
+
53
+ .rb-h4 {
54
+ font-size: 1.25rem; // 20px
55
+ line-height: 2.25rem; // 36px
56
+ }
57
+
58
+ .rb-h5 {
59
+ font-size: 1rem; // 16px
60
+ line-height: 1.8rem; // 28.8px
61
+ }
62
+
@@ -0,0 +1,4 @@
1
+ @forward '_crud';
2
+ @forward '_dialog';
3
+ @forward '_layout';
4
+ @forward '_typography';