module-package-comp 1.0.0 → 1.0.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.
@@ -2,6 +2,6 @@ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { useRef } from "react";
3
3
  export default function PrimaryBtn({ text, clickFn, className, disabled, }) {
4
4
  const btn = useRef(null);
5
- return (_jsx("button", { type: "submit", ref: btn, onClick: clickFn, className: "rounded-2xl bg-secondary-blue bg-opacity-85 px-8 py-2 font-bold text-white-shade hover:bg-opacity-100", disabled: disabled, children: text }));
5
+ return (_jsx("button", { type: "submit", ref: btn, onClick: clickFn, className: "rounded-2xl bg-[#0096DC] bg-opacity-85 px-8 py-2 font-bold text-white-shade hover:bg-opacity-100", disabled: disabled, children: text }));
6
6
  }
7
7
  //# sourceMappingURL=PrimaryBtn.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"PrimaryBtn.js","sourceRoot":"","sources":["../../src/component/PrimaryBtn.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAS/B,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EACjC,IAAI,EACJ,OAAO,EACP,SAAS,EACT,QAAQ,GACF;IACN,MAAM,GAAG,GAAG,MAAM,CAAoB,IAAI,CAAC,CAAC;IAC5C,OAAO,CACL,iBACE,IAAI,EAAC,QAAQ,EACb,GAAG,EAAE,GAAG,EACR,OAAO,EAAE,OAAO,EAChB,SAAS,EACP,uGAAuG,EAEzG,QAAQ,EAAE,QAAQ,YAEjB,IAAI,GACE,CACV,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"PrimaryBtn.js","sourceRoot":"","sources":["../../src/component/PrimaryBtn.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAS/B,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EACjC,IAAI,EACJ,OAAO,EACP,SAAS,EACT,QAAQ,GACF;IACN,MAAM,GAAG,GAAG,MAAM,CAAoB,IAAI,CAAC,CAAC;IAC5C,OAAO,CACL,iBACE,IAAI,EAAC,QAAQ,EACb,GAAG,EAAE,GAAG,EACR,OAAO,EAAE,OAAO,EAChB,SAAS,EACP,kGAAkG,EAEpG,QAAQ,EAAE,QAAQ,YAEjB,IAAI,GACE,CACV,CAAC;AACJ,CAAC"}
package/dist/index.css CHANGED
@@ -623,14 +623,14 @@ video {
623
623
  max-height: 15rem;
624
624
  }
625
625
 
626
- .w-full {
627
- width: 100%;
628
- }
629
-
630
626
  .w-64 {
631
627
  width: 16rem;
632
628
  }
633
629
 
630
+ .w-full {
631
+ width: 100%;
632
+ }
633
+
634
634
  .min-w-72 {
635
635
  min-width: 18rem;
636
636
  }
@@ -686,6 +686,11 @@ video {
686
686
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
687
687
  }
688
688
 
689
+ .bg-\[\#0096DC\] {
690
+ --tw-bg-opacity: 1;
691
+ background-color: rgb(0 150 220 / var(--tw-bg-opacity));
692
+ }
693
+
689
694
  .bg-white {
690
695
  --tw-bg-opacity: 1;
691
696
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "module-package-comp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,7 +20,7 @@ export default function PrimaryBtn({
20
20
  ref={btn}
21
21
  onClick={clickFn}
22
22
  className={
23
- "rounded-2xl bg-secondary-blue bg-opacity-85 px-8 py-2 font-bold text-white-shade hover:bg-opacity-100"
23
+ "rounded-2xl bg-[#0096DC] bg-opacity-85 px-8 py-2 font-bold text-white-shade hover:bg-opacity-100"
24
24
  }
25
25
  disabled={disabled}
26
26
  >