hds-web 1.0.2 → 1.0.4
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.
- package/dist/index.css +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +4 -4
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/src/HDS/components/Avatars/profileAvatar.js +2 -2
- package/src/HDS/components/BadgesCaption/badges.js +10 -10
- package/src/HDS/components/Cards/Misc/talkCard.js +22 -18
- package/src/HDS/components/Hero/h1.js +0 -1
- package/src/HDS/components/Hero/h2.js +3 -3
- package/src/HDS/components/Tables/tableB.js +201 -42
- package/src/HDS/components/Tabs/import React, { useState, useRef } from .js +61 -0
- package/src/HDS/components/Tabs/tab.js +59 -45
- package/src/HDS/components/common-components/Icon/IconMap.js +1 -6
- package/src/HDS/components/index.js +2 -1
- package/src/HDS/foundation/ColorPalette/color.js +1 -1
- package/src/HDS/modules/TextCard/textCard.js +0 -1
- package/src/index.css +32 -0
- package/src/styles/tailwind.css +238 -198
- package/tailwind.config.js +3 -0
@@ -577,7 +577,7 @@ const HDSColors = {
|
|
577
577
|
"stroke-red-800": "stroke-red-800"
|
578
578
|
};
|
579
579
|
|
580
|
-
export default function HDSColor(color = '
|
580
|
+
export default function HDSColor(color = '') {
|
581
581
|
if (!HDSColors[color]) {
|
582
582
|
HDSColors[color] = color;
|
583
583
|
console.log(color);
|
package/src/index.css
CHANGED
@@ -3,6 +3,38 @@
|
|
3
3
|
@tailwind utilities;
|
4
4
|
/* Typography classes */
|
5
5
|
|
6
|
+
|
7
|
+
@keyframes pill-move-left {
|
8
|
+
0% {
|
9
|
+
left: 0;
|
10
|
+
width: 0%;
|
11
|
+
}
|
12
|
+
50% {
|
13
|
+
left: 0;
|
14
|
+
width: 100%;
|
15
|
+
}
|
16
|
+
100% {
|
17
|
+
left: 0;
|
18
|
+
width: 0%;
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
@keyframes pill-move-right {
|
23
|
+
0% {
|
24
|
+
left: 0;
|
25
|
+
width: 0%;
|
26
|
+
}
|
27
|
+
50% {
|
28
|
+
left: 100%;
|
29
|
+
width: 0%;
|
30
|
+
}
|
31
|
+
100% {
|
32
|
+
left: 0;
|
33
|
+
width: 0%;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
|
6
38
|
.card-animation-wrapper {
|
7
39
|
position: relative;
|
8
40
|
}
|