ngx-vector-components 6.5.0 → 6.6.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 (34) hide show
  1. package/CHANGELOG.md +3053 -3047
  2. package/README.md +35 -35
  3. package/assets/icons/chevron_down_icon.svg +3 -3
  4. package/assets/icons/home_menu_icon.svg +3 -3
  5. package/assets/icons/logout_icon.svg +9 -9
  6. package/assets/icons/menu_footer_icon.svg +3 -3
  7. package/assets/icons/menu_hamburguer_icon.svg +3 -3
  8. package/assets/icons/terms_of_use_icon.svg +9 -9
  9. package/assets/icons/vector_admin_icon.svg +4 -4
  10. package/assets/icons/vector_fintech_icon.svg +3 -3
  11. package/assets/icons/vector_logtech_icon.svg +6 -6
  12. package/assets/icons/vector_marketplace_icon.svg +3 -3
  13. package/assets/images/bunge_logo.svg +23 -23
  14. package/assets/images/cofco_logo.svg +117 -117
  15. package/assets/images/emote_bad.svg +6 -6
  16. package/assets/images/emote_cool.svg +5 -5
  17. package/assets/images/emote_nice.svg +5 -5
  18. package/assets/images/success_sign.svg +4 -4
  19. package/assets/images/vector-logo-horizontal-inverse-color.svg +13 -13
  20. package/assets/images/vector_logo_horizontal.svg +13 -13
  21. package/assets/images/warn_sign.svg +4 -4
  22. package/assets/styles/_fonts.scss +114 -114
  23. package/assets/styles/_mixins.scss +7 -7
  24. package/assets/styles/_primeng-custom-theme.scss +1861 -1861
  25. package/assets/styles/_spinner.scss +36 -36
  26. package/assets/styles/_styles.scss +134 -134
  27. package/assets/styles/_variables.scss +62 -61
  28. package/fesm2022/ngx-vector-components.mjs +115 -70
  29. package/fesm2022/ngx-vector-components.mjs.map +1 -1
  30. package/lib/components/index.d.ts +1 -0
  31. package/lib/components/snackbar/index.d.ts +2 -0
  32. package/lib/components/snackbar/snackbar.component.d.ts +25 -0
  33. package/lib/components/snackbar/snackbar.module.d.ts +9 -0
  34. package/package.json +1 -1
@@ -1,114 +1,114 @@
1
- @font-face {
2
- font-family: Poppins;
3
- font-weight: 100;
4
- src: url(../fonts/Poppins-Thin.ttf) format('OpenType');
5
- }
6
-
7
- @font-face {
8
- font-family: Poppins;
9
- font-weight: 100;
10
- font-style: italic;
11
- src: url(../fonts/Poppins-ThinItalic.ttf) format('OpenType');
12
- }
13
-
14
- @font-face {
15
- font-family: Poppins;
16
- font-weight: 200;
17
- src: url(../fonts/Poppins-ExtraLight.ttf) format('OpenType');
18
- }
19
-
20
- @font-face {
21
- font-family: Poppins;
22
- font-weight: 200;
23
- font-style: italic;
24
- src: url(../fonts/Poppins-ExtraLightItalic.ttf) format('OpenType');
25
- }
26
-
27
- @font-face {
28
- font-family: Poppins;
29
- font-weight: 300;
30
- src: url(../fonts/Poppins-Light.ttf) format('OpenType');
31
- }
32
-
33
- @font-face {
34
- font-family: Poppins;
35
- font-weight: 300;
36
- font-style: italic;
37
- src: url(../fonts/Poppins-LightItalic.ttf) format('OpenType');
38
- }
39
-
40
- @font-face {
41
- font-family: Poppins;
42
- src: url(../fonts/Poppins-Regular.ttf) format('OpenType');
43
- }
44
-
45
- @font-face {
46
- font-family: Poppins;
47
- font-style: italic;
48
- src: url(../fonts/Poppins-Italic.ttf) format('OpenType');
49
- }
50
-
51
- @font-face {
52
- font-family: Poppins;
53
- font-weight: 500;
54
- src: url(../fonts/Poppins-Medium.ttf) format('OpenType');
55
- }
56
-
57
- @font-face {
58
- font-family: Poppins;
59
- font-weight: 500;
60
- font-style: italic;
61
- src: url(../fonts/Poppins-MediumItalic.ttf) format('OpenType');
62
- }
63
-
64
- @font-face {
65
- font-family: Poppins;
66
- font-weight: 600;
67
- src: url(../fonts/Poppins-SemiBold.ttf) format('OpenType');
68
- }
69
-
70
- @font-face {
71
- font-family: Poppins;
72
- font-weight: 600;
73
- font-style: italic;
74
- src: url(../fonts/Poppins-SemiBoldItalic.ttf) format('OpenType');
75
- }
76
-
77
- @font-face {
78
- font-family: Poppins;
79
- font-weight: 700;
80
- src: url(../fonts/Poppins-Bold.ttf) format('OpenType');
81
- }
82
-
83
- @font-face {
84
- font-family: Poppins;
85
- font-weight: 700;
86
- font-style: italic;
87
- src: url(../fonts/Poppins-BoldItalic.ttf) format('OpenType');
88
- }
89
-
90
- @font-face {
91
- font-family: Poppins;
92
- font-weight: 800;
93
- src: url(../fonts/Poppins-ExtraBold.ttf) format('OpenType');
94
- }
95
-
96
- @font-face {
97
- font-family: Poppins;
98
- font-weight: 800;
99
- font-style: italic;
100
- src: url(../fonts/Poppins-ExtraBoldItalic.ttf) format('OpenType');
101
- }
102
-
103
- @font-face {
104
- font-family: Poppins;
105
- font-weight: 900;
106
- src: url(../fonts/Poppins-Black.ttf) format('OpenType');
107
- }
108
-
109
- @font-face {
110
- font-family: Poppins;
111
- font-weight: 900;
112
- font-style: italic;
113
- src: url(../fonts/Poppins-BlackItalic.ttf) format('OpenType');
114
- }
1
+ @font-face {
2
+ font-family: Poppins;
3
+ font-weight: 100;
4
+ src: url(../fonts/Poppins-Thin.ttf) format('OpenType');
5
+ }
6
+
7
+ @font-face {
8
+ font-family: Poppins;
9
+ font-weight: 100;
10
+ font-style: italic;
11
+ src: url(../fonts/Poppins-ThinItalic.ttf) format('OpenType');
12
+ }
13
+
14
+ @font-face {
15
+ font-family: Poppins;
16
+ font-weight: 200;
17
+ src: url(../fonts/Poppins-ExtraLight.ttf) format('OpenType');
18
+ }
19
+
20
+ @font-face {
21
+ font-family: Poppins;
22
+ font-weight: 200;
23
+ font-style: italic;
24
+ src: url(../fonts/Poppins-ExtraLightItalic.ttf) format('OpenType');
25
+ }
26
+
27
+ @font-face {
28
+ font-family: Poppins;
29
+ font-weight: 300;
30
+ src: url(../fonts/Poppins-Light.ttf) format('OpenType');
31
+ }
32
+
33
+ @font-face {
34
+ font-family: Poppins;
35
+ font-weight: 300;
36
+ font-style: italic;
37
+ src: url(../fonts/Poppins-LightItalic.ttf) format('OpenType');
38
+ }
39
+
40
+ @font-face {
41
+ font-family: Poppins;
42
+ src: url(../fonts/Poppins-Regular.ttf) format('OpenType');
43
+ }
44
+
45
+ @font-face {
46
+ font-family: Poppins;
47
+ font-style: italic;
48
+ src: url(../fonts/Poppins-Italic.ttf) format('OpenType');
49
+ }
50
+
51
+ @font-face {
52
+ font-family: Poppins;
53
+ font-weight: 500;
54
+ src: url(../fonts/Poppins-Medium.ttf) format('OpenType');
55
+ }
56
+
57
+ @font-face {
58
+ font-family: Poppins;
59
+ font-weight: 500;
60
+ font-style: italic;
61
+ src: url(../fonts/Poppins-MediumItalic.ttf) format('OpenType');
62
+ }
63
+
64
+ @font-face {
65
+ font-family: Poppins;
66
+ font-weight: 600;
67
+ src: url(../fonts/Poppins-SemiBold.ttf) format('OpenType');
68
+ }
69
+
70
+ @font-face {
71
+ font-family: Poppins;
72
+ font-weight: 600;
73
+ font-style: italic;
74
+ src: url(../fonts/Poppins-SemiBoldItalic.ttf) format('OpenType');
75
+ }
76
+
77
+ @font-face {
78
+ font-family: Poppins;
79
+ font-weight: 700;
80
+ src: url(../fonts/Poppins-Bold.ttf) format('OpenType');
81
+ }
82
+
83
+ @font-face {
84
+ font-family: Poppins;
85
+ font-weight: 700;
86
+ font-style: italic;
87
+ src: url(../fonts/Poppins-BoldItalic.ttf) format('OpenType');
88
+ }
89
+
90
+ @font-face {
91
+ font-family: Poppins;
92
+ font-weight: 800;
93
+ src: url(../fonts/Poppins-ExtraBold.ttf) format('OpenType');
94
+ }
95
+
96
+ @font-face {
97
+ font-family: Poppins;
98
+ font-weight: 800;
99
+ font-style: italic;
100
+ src: url(../fonts/Poppins-ExtraBoldItalic.ttf) format('OpenType');
101
+ }
102
+
103
+ @font-face {
104
+ font-family: Poppins;
105
+ font-weight: 900;
106
+ src: url(../fonts/Poppins-Black.ttf) format('OpenType');
107
+ }
108
+
109
+ @font-face {
110
+ font-family: Poppins;
111
+ font-weight: 900;
112
+ font-style: italic;
113
+ src: url(../fonts/Poppins-BlackItalic.ttf) format('OpenType');
114
+ }
@@ -1,7 +1,7 @@
1
- // crossplataform mixin
2
- @mixin crossBrowser($prop, $css) {
3
- -webkit-#{$prop}: $css;
4
- -moz-#{$prop}: $css;
5
- -o-#{prop}: $css;
6
- $prop: $css;
7
- }
1
+ // crossplataform mixin
2
+ @mixin crossBrowser($prop, $css) {
3
+ -webkit-#{$prop}: $css;
4
+ -moz-#{$prop}: $css;
5
+ -o-#{prop}: $css;
6
+ $prop: $css;
7
+ }