module-package-comp 1.4.3 → 1.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "module-package-comp",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -12,7 +12,7 @@ export default function PrimaryBtn({ text, disabled }: props) {
12
12
  type="submit"
13
13
  ref={btn}
14
14
  className={
15
- "rounded-2xl bg-[#0096DC] bg-opacity-85 px-8 py-2 font-bold text-white-shade hover:bg-opacity-100"
15
+ "rounded-2xl bg-[#0096DC] bg-opacity-85 px-8 py-2 font-bold text-white hover:bg-opacity-100"
16
16
  }
17
17
  disabled={disabled}
18
18
  >
@@ -43,7 +43,7 @@ const MultiSelect: React.FC<MultiSelectProps> = ({
43
43
  selectedOptions.map((option) => (
44
44
  <span
45
45
  key={option}
46
- className="mr-1 inline-block rounded-full bg-secondary-blue px-2 py-1 text-sm text-white-shade"
46
+ className="mr-1 inline-block rounded-full bg-secondary-blue px-2 py-1 text-sm"
47
47
  >
48
48
  {option}
49
49
  </span>
@@ -53,7 +53,7 @@ const MultiSelect: React.FC<MultiSelectProps> = ({
53
53
  )}
54
54
  </div>
55
55
  {isOpen && (
56
- <div className="absolute left-0 right-0 z-10 mt-2 rounded-md border border-secondary-gray bg-white-shade">
56
+ <div className="absolute left-0 right-0 z-10 mt-2 rounded-md border border-secondary-gray bg-white">
57
57
  <input
58
58
  type="text"
59
59
  className="w-full border-b border-secondary-gray p-2"