@nextelco/common-ui 1.7.102 → 1.7.105

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 (49) hide show
  1. package/dist/bundle.js +1 -1
  2. package/dist/types/components/atoms/Acronym/Acronym.d.ts +3 -1
  3. package/dist/types/components/atoms/IconText/IconText.d.ts +1 -1
  4. package/dist/types/components/organisms/Profile/Profile.d.ts +2 -2
  5. package/dist/types/exports/organisms.d.ts +1 -1
  6. package/dist/types/exports/types.d.ts +5 -2
  7. package/dist/types/types/themes/AcronymThemes.d.ts +3 -0
  8. package/package.json +3 -2
  9. package/src/styles/font/OFL.txt +93 -0
  10. package/src/styles/font/README.txt +81 -0
  11. package/src/styles/font/Urbanist-Italic-VariableFont_wght.ttf +0 -0
  12. package/src/styles/font/Urbanist-VariableFont_wght.ttf +0 -0
  13. package/src/styles/font/roboto/LICENSE.txt +202 -0
  14. package/src/styles/font/roboto/Roboto-Black.ttf +0 -0
  15. package/src/styles/font/roboto/Roboto-BlackItalic.ttf +0 -0
  16. package/src/styles/font/roboto/Roboto-Bold.ttf +0 -0
  17. package/src/styles/font/roboto/Roboto-BoldItalic.ttf +0 -0
  18. package/src/styles/font/roboto/Roboto-Italic.ttf +0 -0
  19. package/src/styles/font/roboto/Roboto-Light.ttf +0 -0
  20. package/src/styles/font/roboto/Roboto-LightItalic.ttf +0 -0
  21. package/src/styles/font/roboto/Roboto-Medium.ttf +0 -0
  22. package/src/styles/font/roboto/Roboto-MediumItalic.ttf +0 -0
  23. package/src/styles/font/roboto/Roboto-Regular.ttf +0 -0
  24. package/src/styles/font/roboto/Roboto-Thin.ttf +0 -0
  25. package/src/styles/font/roboto/Roboto-ThinItalic.ttf +0 -0
  26. package/src/styles/font/static/Urbanist-Black.ttf +0 -0
  27. package/src/styles/font/static/Urbanist-BlackItalic.ttf +0 -0
  28. package/src/styles/font/static/Urbanist-Bold.ttf +0 -0
  29. package/src/styles/font/static/Urbanist-BoldItalic.ttf +0 -0
  30. package/src/styles/font/static/Urbanist-ExtraBold.ttf +0 -0
  31. package/src/styles/font/static/Urbanist-ExtraBoldItalic.ttf +0 -0
  32. package/src/styles/font/static/Urbanist-ExtraLight.ttf +0 -0
  33. package/src/styles/font/static/Urbanist-ExtraLightItalic.ttf +0 -0
  34. package/src/styles/font/static/Urbanist-Italic.ttf +0 -0
  35. package/src/styles/font/static/Urbanist-Light.ttf +0 -0
  36. package/src/styles/font/static/Urbanist-LightItalic.ttf +0 -0
  37. package/src/styles/font/static/Urbanist-Medium.ttf +0 -0
  38. package/src/styles/font/static/Urbanist-MediumItalic.ttf +0 -0
  39. package/src/styles/font/static/Urbanist-Regular.ttf +0 -0
  40. package/src/styles/font/static/Urbanist-SemiBold.ttf +0 -0
  41. package/src/styles/font/static/Urbanist-SemiBoldItalic.ttf +0 -0
  42. package/src/styles/font/static/Urbanist-Thin.ttf +0 -0
  43. package/src/styles/font/static/Urbanist-ThinItalic.ttf +0 -0
  44. package/src/styles/index.scss +50 -0
  45. package/src/styles/themes/ButtonThemes.tsx +30 -0
  46. package/src/styles/utils/reset.scss +64 -0
  47. package/src/styles/utils/scrollbar.scss +34 -0
  48. package/src/styles/utils/variables.scss +39 -0
  49. /package/dist/types/types/themes/{IconTextTheme.d.ts → IconTextThemes.d.ts} +0 -0
@@ -0,0 +1,64 @@
1
+ *,
2
+ *::before,
3
+ *::after {
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ * {
8
+ margin: 0;
9
+ padding: 0;
10
+ }
11
+
12
+ ul[role='list'],
13
+ ol[role='list'] {
14
+ list-style: none;
15
+ }
16
+
17
+ html:focus-within {
18
+ scroll-behavior: smooth;
19
+ }
20
+
21
+ a:not([class]) {
22
+ text-decoration-skip-ink: auto;
23
+ }
24
+
25
+ img,
26
+ picture,
27
+ svg,
28
+ video,
29
+ canvas {
30
+ max-width: 100%;
31
+ height: auto;
32
+ vertical-align: middle;
33
+ font-style: italic;
34
+ background-repeat: no-repeat;
35
+ background-size: cover;
36
+ }
37
+
38
+ input,
39
+ button,
40
+ textarea,
41
+ select {
42
+ font: inherit;
43
+ }
44
+
45
+ @media (prefers-reduced-motion: reduce) {
46
+ html:focus-within {
47
+ scroll-behavior: auto;
48
+ }
49
+ *,
50
+ *::before,
51
+ *::after {
52
+ animation-duration: 0.01ms !important;
53
+ animation-iteration-count: 1 !important;
54
+ transition-duration: 0.01ms !important;
55
+ scroll-behavior: auto !important;
56
+ transition: none;
57
+ }
58
+ }
59
+
60
+ body,
61
+ html {
62
+ height: 100%;
63
+ scroll-behavior: smooth;
64
+ }
@@ -0,0 +1,34 @@
1
+ ::-webkit-scrollbar {
2
+ width: 10px;
3
+ height: 10px;
4
+ }
5
+
6
+ ::-webkit-scrollbar-track {
7
+ background: #f1f1f1;
8
+ border-radius: 15px;
9
+ }
10
+
11
+ ::-webkit-scrollbar-thumb {
12
+ background: #888;
13
+ border-radius: 15px;
14
+ }
15
+
16
+ ::-webkit-scrollbar-thumb:hover {
17
+ background: var(--dark-blue);
18
+ border-radius: 15px;
19
+ }
20
+
21
+ .scroll-bar::-webkit-scrollbar {
22
+ width: 10px;
23
+ height: 5px;
24
+ }
25
+
26
+ .scroll-bar::-webkit-scrollbar-track {
27
+ background: var(--light-gray-01);
28
+ border-radius: 15px;
29
+ }
30
+
31
+ .scroll-bar::-webkit-scrollbar-thumb {
32
+ border-radius: 15px;
33
+ background: var(--dark-blue);
34
+ }
@@ -0,0 +1,39 @@
1
+ :root {
2
+ /* Primary */
3
+ --bright-blue: #006fff;
4
+ --bright-green: #17daa4;
5
+ --dark-blue: #010060;
6
+ --light-gray-01: #dddddd;
7
+ --light-blue: #e2eaff;
8
+ --almost-white: #f8f8f8;
9
+ --almost-black: #1f1f1f;
10
+
11
+ /* Secundary */
12
+ --medium-blue: #87a9ff;
13
+ --medium-green: #b0ebdb;
14
+ --medium-dark-blue: #7d7dab;
15
+ --medium-gray-01: #c2c2c2;
16
+ --light-gray-02: #ededed;
17
+ --light-blue: #cedcff;
18
+ --dark-gray: #6c6c6c;
19
+
20
+ /* Tertiary */
21
+ --warm-yellow: #ebc25a;
22
+ --warm-orange: #eb745a;
23
+ --light-yellow: #ffedbf;
24
+ --dark-yellow: #cfa948;
25
+ --bright-purple: #801de2;
26
+
27
+ /* Alert */
28
+ --rejected: #de4321;
29
+ --approved: #1dc88a;
30
+ --stand-by: #ffcc4a;
31
+
32
+ /* Notifications */
33
+ --bg-light-yellow: #ffedbf;
34
+ --dark-yellow: #856404;
35
+ --bg-light-red: #ffbdae;
36
+ --dark-red: #842029;
37
+ --bg-success: #8ef8d2;
38
+ --dark-green: #0f5132;
39
+ }