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.
@@ -577,7 +577,7 @@ const HDSColors = {
577
577
  "stroke-red-800": "stroke-red-800"
578
578
  };
579
579
 
580
- export default function HDSColor(color = 'bg-blue-600') {
580
+ export default function HDSColor(color = '') {
581
581
  if (!HDSColors[color]) {
582
582
  HDSColors[color] = color;
583
583
  console.log(color);
@@ -6,7 +6,6 @@ import { Icon } from '../../components/common-components/Icon';
6
6
 
7
7
  export default function TextCard(props) {
8
8
  const titleColor = HDSColor(props.title_color);
9
- console.log(props.descriptions);
10
9
  return (
11
10
  <>
12
11
  {
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
  }