tccd-ui 0.0.98 → 0.0.99
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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +50 -50
package/dist/index.js
CHANGED
|
@@ -511,7 +511,7 @@ function DatePicker({
|
|
|
511
511
|
type: "button",
|
|
512
512
|
onClick: () => !disabled && setIsOpen(!isOpen),
|
|
513
513
|
disabled,
|
|
514
|
-
className: `w-full border-
|
|
514
|
+
className: `w-full border-gray-400 rounded-full px-3 sm:px-4 md:px-5 py-1.5 sm:py-2 border outline-none text-left text-xs sm:text-sm ${error ? dark ? "border-red-700 focus:border-red-600" : "border-red-300 focus:border-red-500 focus:ring-red-500/30" : dark ? "focus:border-primary border-gray-700" : "focus:border-primary"} ${disabled ? dark ? "bg-gray-700 cursor-not-allowed opacity-60" : "bg-gray-100 cursor-not-allowed opacity-60" : dark ? "bg-gray-900 cursor-pointer text-white" : "bg-white cursor-pointer"} transition-all duration-300 ease-in-out pr-8 sm:pr-10`,
|
|
515
515
|
children: getDisplayValue()
|
|
516
516
|
}
|
|
517
517
|
),
|
|
@@ -873,7 +873,7 @@ function DropDownMenu({
|
|
|
873
873
|
htmlFor: id,
|
|
874
874
|
className: (0, import_tailwind_merge3.twMerge)(
|
|
875
875
|
"text-[14px] md:text-[15px] lg:text-[16px] mb-2 font-semibold items-center",
|
|
876
|
-
dark ? "text-gray-200" : "text-
|
|
876
|
+
dark ? "text-gray-200" : "text-contrast",
|
|
877
877
|
labelClassName
|
|
878
878
|
),
|
|
879
879
|
children: label
|