decentraland-ui2 0.31.1-18562883522.commit-8311e68 → 0.32.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 (60) hide show
  1. package/dist/components/Icon/Chains/ChainsIcons.stories.d.ts +15 -0
  2. package/dist/components/Icon/Chains/ChainsIcons.stories.js +46 -0
  3. package/dist/components/Icon/Chains/ChainsIcons.stories.js.map +1 -0
  4. package/dist/components/Icon/Emotes/EmotesIcons.stories.d.ts +12 -0
  5. package/dist/components/Icon/Emotes/EmotesIcons.stories.js +37 -0
  6. package/dist/components/Icon/Emotes/EmotesIcons.stories.js.map +1 -0
  7. package/dist/components/Icon/Icons.stories.d.ts +18 -0
  8. package/dist/components/Icon/Icons.stories.js +58 -0
  9. package/dist/components/Icon/Icons.stories.js.map +1 -0
  10. package/dist/components/Icon/Icons.stories.styled.d.ts +5 -0
  11. package/dist/components/Icon/Icons.stories.styled.js +10 -0
  12. package/dist/components/Icon/Icons.stories.styled.js.map +1 -0
  13. package/dist/components/Icon/Notifications/NotificationsIcons.stories.d.ts +41 -0
  14. package/dist/components/Icon/Notifications/NotificationsIcons.stories.js +150 -0
  15. package/dist/components/Icon/Notifications/NotificationsIcons.stories.js.map +1 -0
  16. package/dist/components/Icon/Social/SocialIcons.stories.js +3 -2
  17. package/dist/components/Icon/Social/SocialIcons.stories.js.map +1 -1
  18. package/dist/components/Icon/Wearables/WearablesIcons.stories.d.ts +30 -0
  19. package/dist/components/Icon/Wearables/WearablesIcons.stories.js +109 -0
  20. package/dist/components/Icon/Wearables/WearablesIcons.stories.js.map +1 -0
  21. package/dist/components/Notifications/NotificationsFeedTabs.styled.js +2 -2
  22. package/dist/components/Notifications/NotificationsFeedTabs.styled.js.map +1 -1
  23. package/dist/components/Profile/Profile.styled.js +3 -1
  24. package/dist/components/Profile/Profile.styled.js.map +1 -1
  25. package/dist/components/RarityBadge/RarityBadge.d.ts +4 -0
  26. package/dist/components/RarityBadge/RarityBadge.i18n.d.ts +3 -0
  27. package/dist/components/RarityBadge/RarityBadge.i18n.js +25 -0
  28. package/dist/components/RarityBadge/RarityBadge.i18n.js.map +1 -0
  29. package/dist/components/RarityBadge/RarityBadge.js +12 -0
  30. package/dist/components/RarityBadge/RarityBadge.js.map +1 -0
  31. package/dist/components/RarityBadge/RarityBadge.stories.d.ts +20 -0
  32. package/dist/components/RarityBadge/RarityBadge.stories.js +144 -0
  33. package/dist/components/RarityBadge/RarityBadge.stories.js.map +1 -0
  34. package/dist/components/RarityBadge/RarityBadge.stories.styled.d.ts +6 -0
  35. package/dist/components/RarityBadge/RarityBadge.stories.styled.js +9 -0
  36. package/dist/components/RarityBadge/RarityBadge.stories.styled.js.map +1 -0
  37. package/dist/components/RarityBadge/RarityBadge.styled.d.ts +7 -0
  38. package/dist/components/RarityBadge/RarityBadge.styled.js +34 -0
  39. package/dist/components/RarityBadge/RarityBadge.styled.js.map +1 -0
  40. package/dist/components/RarityBadge/RarityBadge.types.d.ts +12 -0
  41. package/dist/components/RarityBadge/RarityBadge.types.js +2 -0
  42. package/dist/components/RarityBadge/RarityBadge.types.js.map +1 -0
  43. package/dist/components/RarityBadge/index.d.ts +2 -0
  44. package/dist/components/RarityBadge/index.js +3 -0
  45. package/dist/components/RarityBadge/index.js.map +1 -0
  46. package/dist/index.d.ts +1 -0
  47. package/dist/index.js +1 -0
  48. package/dist/index.js.map +1 -1
  49. package/dist/theme/colorSchemes.js +42 -1
  50. package/dist/theme/colorSchemes.js.map +1 -1
  51. package/dist/theme/colors.d.ts +12 -16
  52. package/dist/theme/colors.js +15 -1
  53. package/dist/theme/colors.js.map +1 -1
  54. package/dist/utils/colors.d.ts +5 -0
  55. package/dist/utils/colors.js +22 -0
  56. package/dist/utils/colors.js.map +1 -0
  57. package/dist/utils/colors.spec.d.ts +1 -0
  58. package/dist/utils/colors.spec.js +139 -0
  59. package/dist/utils/colors.spec.js.map +1 -0
  60. package/package.json +2 -2
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Converts an hexadecimal color into a RGBA string.
3
+ * @param hex - A color represented as a 7 character hexadecimal color (including #).
4
+ */
5
+ export const hexToRgba = (hex, alpha = 1) => {
6
+ const isShortHex = /^#[0-9A-Fa-f]{3}$/.test(hex);
7
+ const isLongHex = /^#[0-9A-Fa-f]{6}$/.test(hex);
8
+ if (!isShortHex && !isLongHex) {
9
+ throw new Error("Invalid hexadecimal color");
10
+ }
11
+ if (alpha < 0 || alpha > 1) {
12
+ throw new Error("Invalid alpha value");
13
+ }
14
+ const normalizedHex = isShortHex
15
+ ? `#${hex[1]}${hex[1]}${hex[2]}${hex[2]}${hex[3]}${hex[3]}`
16
+ : hex;
17
+ const r = parseInt(normalizedHex.slice(1, 3), 16);
18
+ const g = parseInt(normalizedHex.slice(3, 5), 16);
19
+ const b = parseInt(normalizedHex.slice(5, 7), 16);
20
+ return `rgba(${r}, ${g}, ${b}, ${alpha})`;
21
+ };
22
+ //# sourceMappingURL=colors.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"colors.js","sourceRoot":"","sources":["../../src/utils/colors.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG,CAAC,GAAW,EAAE,QAAgB,CAAC,EAAE,EAAE;IAC1D,MAAM,UAAU,GAAG,mBAAmB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;IAChD,MAAM,SAAS,GAAG,mBAAmB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;IAE/C,IAAI,CAAC,UAAU,IAAI,CAAC,SAAS,EAAE,CAAC;QAC9B,MAAM,IAAI,KAAK,CAAC,2BAA2B,CAAC,CAAA;IAC9C,CAAC;IAED,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,GAAG,CAAC,EAAE,CAAC;QAC3B,MAAM,IAAI,KAAK,CAAC,qBAAqB,CAAC,CAAA;IACxC,CAAC;IAED,MAAM,aAAa,GAAG,UAAU;QAC9B,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,EAAE;QAC3D,CAAC,CAAC,GAAG,CAAA;IAEP,MAAM,CAAC,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAA;IACjD,MAAM,CAAC,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAA;IACjD,MAAM,CAAC,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAA;IACjD,OAAO,QAAQ,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,KAAK,GAAG,CAAA;AAC3C,CAAC,CAAA"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,139 @@
1
+ import { hexToRgba } from "./colors";
2
+ describe("when converting hexadecimal colors to RGB", () => {
3
+ describe("and the hex color is valid", () => {
4
+ let validHex;
5
+ let result;
6
+ beforeEach(() => {
7
+ validHex = "#FF0000";
8
+ });
9
+ describe("and no alpha is provided", () => {
10
+ beforeEach(() => {
11
+ result = hexToRgba(validHex);
12
+ });
13
+ it("should return RGB string with default alpha of 1", () => {
14
+ expect(result).toBe("rgba(255, 0, 0, 1)");
15
+ });
16
+ });
17
+ describe("and alpha is provided", () => {
18
+ let alpha;
19
+ beforeEach(() => {
20
+ alpha = 0.5;
21
+ result = hexToRgba(validHex, alpha);
22
+ });
23
+ it("should return RGB string with provided alpha", () => {
24
+ expect(result).toBe("rgba(255, 0, 0, 0.5)");
25
+ });
26
+ });
27
+ describe("and testing different color values", () => {
28
+ it("should convert black color correctly", () => {
29
+ const result = hexToRgba("#000000");
30
+ expect(result).toBe("rgba(0, 0, 0, 1)");
31
+ });
32
+ it("should convert white color correctly", () => {
33
+ const result = hexToRgba("#FFFFFF");
34
+ expect(result).toBe("rgba(255, 255, 255, 1)");
35
+ });
36
+ it("should convert green color correctly", () => {
37
+ const result = hexToRgba("#00FF00");
38
+ expect(result).toBe("rgba(0, 255, 0, 1)");
39
+ });
40
+ it("should convert blue color correctly", () => {
41
+ const result = hexToRgba("#0000FF");
42
+ expect(result).toBe("rgba(0, 0, 255, 1)");
43
+ });
44
+ it("should convert mixed color values correctly", () => {
45
+ const result = hexToRgba("#1A2B3C");
46
+ expect(result).toBe("rgba(26, 43, 60, 1)");
47
+ });
48
+ it("should convert lowercase hex values correctly", () => {
49
+ const result = hexToRgba("#ff0000");
50
+ expect(result).toBe("rgba(255, 0, 0, 1)");
51
+ });
52
+ it("should convert mixed case hex values correctly", () => {
53
+ const result = hexToRgba("#Ff0000");
54
+ expect(result).toBe("rgba(255, 0, 0, 1)");
55
+ });
56
+ it("should convert short hex values correctly", () => {
57
+ const result = hexToRgba("#0F0");
58
+ expect(result).toBe("rgba(0, 255, 0, 1)");
59
+ });
60
+ it("should convert lowercase short hex values correctly", () => {
61
+ const result = hexToRgba("#abc");
62
+ expect(result).toBe("rgba(170, 187, 204, 1)");
63
+ });
64
+ it("should convert mixed case short hex values correctly", () => {
65
+ const result = hexToRgba("#FfF");
66
+ expect(result).toBe("rgba(255, 255, 255, 1)");
67
+ });
68
+ });
69
+ describe("and alpha is at boundary values", () => {
70
+ it("should accept alpha value of 0", () => {
71
+ const result = hexToRgba("#FF0000", 0);
72
+ expect(result).toBe("rgba(255, 0, 0, 0)");
73
+ });
74
+ it("should accept alpha value of 1", () => {
75
+ const result = hexToRgba("#FF0000", 1);
76
+ expect(result).toBe("rgba(255, 0, 0, 1)");
77
+ });
78
+ });
79
+ });
80
+ describe("and the hex color is invalid", () => {
81
+ describe("and hex length is too short", () => {
82
+ it("should throw error for 4 character hex", () => {
83
+ expect(() => hexToRgba("#FF00")).toThrow("Invalid hexadecimal color");
84
+ });
85
+ it("should throw error for 5 character hex", () => {
86
+ expect(() => hexToRgba("#FF000")).toThrow("Invalid hexadecimal color");
87
+ });
88
+ it("should throw error for 6 character hex", () => {
89
+ expect(() => hexToRgba("#FF000")).toThrow("Invalid hexadecimal color");
90
+ });
91
+ });
92
+ describe("and hex length is too long", () => {
93
+ it("should throw error for 8 character hex", () => {
94
+ expect(() => hexToRgba("#FF000000")).toThrow("Invalid hexadecimal color");
95
+ });
96
+ it("should throw error for 9 character hex", () => {
97
+ expect(() => hexToRgba("#FF0000000")).toThrow("Invalid hexadecimal color");
98
+ });
99
+ });
100
+ describe("and hex is missing hash symbol", () => {
101
+ it("should throw error for hex without hash", () => {
102
+ expect(() => hexToRgba("FF0000")).toThrow("Invalid hexadecimal color");
103
+ });
104
+ });
105
+ describe("and hex contains invalid characters", () => {
106
+ it("should throw error for hex with invalid characters", () => {
107
+ expect(() => hexToRgba("#GG0000")).toThrow("Invalid hexadecimal color");
108
+ });
109
+ it("should throw error for hex with special characters", () => {
110
+ expect(() => hexToRgba("#FF@000")).toThrow("Invalid hexadecimal color");
111
+ });
112
+ it("should throw error for hex with lowercase invalid characters", () => {
113
+ expect(() => hexToRgba("#gg0000")).toThrow("Invalid hexadecimal color");
114
+ });
115
+ it("should throw error for hex with mixed case invalid characters", () => {
116
+ expect(() => hexToRgba("#Gg0000")).toThrow("Invalid hexadecimal color");
117
+ });
118
+ });
119
+ });
120
+ describe("and the alpha value is invalid", () => {
121
+ describe("and alpha is negative", () => {
122
+ it("should throw error for negative alpha", () => {
123
+ expect(() => hexToRgba("#FF0000", -0.1)).toThrow("Invalid alpha value");
124
+ });
125
+ it("should throw error for alpha less than 0", () => {
126
+ expect(() => hexToRgba("#FF0000", -1)).toThrow("Invalid alpha value");
127
+ });
128
+ });
129
+ describe("and alpha is greater than 1", () => {
130
+ it("should throw error for alpha greater than 1", () => {
131
+ expect(() => hexToRgba("#FF0000", 1.1)).toThrow("Invalid alpha value");
132
+ });
133
+ it("should throw error for alpha much greater than 1", () => {
134
+ expect(() => hexToRgba("#FF0000", 2)).toThrow("Invalid alpha value");
135
+ });
136
+ });
137
+ });
138
+ });
139
+ //# sourceMappingURL=colors.spec.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"colors.spec.js","sourceRoot":"","sources":["../../src/utils/colors.spec.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "decentraland-ui2",
3
- "version": "0.31.1-18562883522.commit-8311e68",
3
+ "version": "0.32.1",
4
4
  "description": "Decentraland's UI components and styles",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -98,5 +98,5 @@
98
98
  "files": [
99
99
  "dist"
100
100
  ],
101
- "commit": "8311e6817cfaeeb9ed5c58e09ad77ced76d30b5b"
101
+ "commit": "1a0cc7b8f61fcb0f1d292e3dd7f8e14cb7118764"
102
102
  }