@sikka/hawa 0.10.13-next → 0.10.15-next

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/README.md CHANGED
@@ -45,10 +45,10 @@
45
45
 
46
46
  ### Tools used
47
47
 
48
- - Tailwind
49
- - Radix-UI
50
- - React Icons
51
- - @tanstack/react-table
48
+ - [Tailwind](https://tailwindcss.com/)
49
+ - [Radix-UI](https://www.radix-ui.com/)
50
+ - [react-hook-form](https://react-hook-form.com/)
51
+ - [@tanstack/react-table](https://tanstack.com/table/v8)
52
52
 
53
53
  ## Install
54
54
 
package/dist/index.js CHANGED
@@ -4961,7 +4961,7 @@ var Input = function(_param) {
4961
4961
  auto: ""
4962
4962
  };
4963
4963
  var defaultStyle = "hawa-flex hawa-max-h-fit hawa-relative hawa-flex-col hawa-justify-center hawa-gap-0";
4964
- var defaultInputStyle = "hawa-block hawa-w-full hawa-rounded hawa-border hawa-transition-all hawa-bg-background hawa-p-2 hawa-text-sm ";
4964
+ var defaultInputStyle = "hawa-block hawa-w-full hawa-rounded hawa-border hawa-transition-all hawa-bg-background hawa-p-3 hawa-text-sm ";
4965
4965
  return /* @__PURE__ */ import_react24.default.createElement("div", {
4966
4966
  className: cn(defaultStyle, marginStyles[margin], widthStyles[width], props.containerClassName, "hawa-w-full hawa-gap-2")
4967
4967
  }, props.label && /* @__PURE__ */ import_react24.default.createElement(Label2, {
@@ -6046,7 +6046,7 @@ var Combobox = function(_param) {
6046
6046
  }), /* @__PURE__ */ React47.createElement("button", {
6047
6047
  role: "combobox",
6048
6048
  "aria-expanded": open,
6049
- className: cn("hawa-bg-none hawa-inline-flex hawa-items-center hawa-transition-all hawa-select-none hawa-rounded-md hawa-text-sm hawa-font-medium hawa-ring-offset-background focus-visible:hawa-outline-none focus-visible:hawa-ring-2 focus-visible:hawa-ring-ring focus-visible:hawa-ring-offset-2 disabled:hawa-pointer-events-none disabled:hawa-opacity-50", "hawa-text-primary hawa-border hawa-h-10 hawa-py-2", "hawa-justify-between hawa-w-full hawa-font-normal", props.preview ? "hawa-px-0 hawa-rounded-none hawa-border-transparent hawa-cursor-default" : "hawa-px-4")
6049
+ className: cn("hawa-text-primary hawa-border hawa-h-10 hawa-py-2 hawa-justify-between hawa-w-full hawa-font-normal hawa-inline-flex hawa-items-center hawa-transition-all hawa-select-none hawa-rounded-md hawa-text-sm hawa-ring-offset-background focus-visible:hawa-outline-none focus-visible:hawa-ring-2 focus-visible:hawa-ring-ring focus-visible:hawa-ring-offset-2 disabled:hawa-pointer-events-none disabled:hawa-opacity-50", props.preview ? "hawa-px-0 hawa-rounded-none hawa-border-transparent hawa-cursor-default" : "hawa-px-3 hawa-bg-background ")
6050
6050
  }, value ? getProperty(data.find(function(item) {
6051
6051
  return item[valueKey] === value;
6052
6052
  }) || {}, labelKey) : props.placeholder || "...", !props.preview && /* @__PURE__ */ React47.createElement("svg", {
package/dist/index.mjs CHANGED
@@ -4573,7 +4573,7 @@ var Input = ({
4573
4573
  auto: ""
4574
4574
  };
4575
4575
  let defaultStyle = "hawa-flex hawa-max-h-fit hawa-relative hawa-flex-col hawa-justify-center hawa-gap-0";
4576
- let defaultInputStyle = "hawa-block hawa-w-full hawa-rounded hawa-border hawa-transition-all hawa-bg-background hawa-p-2 hawa-text-sm ";
4576
+ let defaultInputStyle = "hawa-block hawa-w-full hawa-rounded hawa-border hawa-transition-all hawa-bg-background hawa-p-3 hawa-text-sm ";
4577
4577
  return /* @__PURE__ */ React36.createElement(
4578
4578
  "div",
4579
4579
  {
@@ -5728,10 +5728,8 @@ var Combobox = ({
5728
5728
  role: "combobox",
5729
5729
  "aria-expanded": open,
5730
5730
  className: cn(
5731
- "hawa-bg-none hawa-inline-flex hawa-items-center hawa-transition-all hawa-select-none hawa-rounded-md hawa-text-sm hawa-font-medium hawa-ring-offset-background focus-visible:hawa-outline-none focus-visible:hawa-ring-2 focus-visible:hawa-ring-ring focus-visible:hawa-ring-offset-2 disabled:hawa-pointer-events-none disabled:hawa-opacity-50",
5732
- "hawa-text-primary hawa-border hawa-h-10 hawa-py-2",
5733
- "hawa-justify-between hawa-w-full hawa-font-normal",
5734
- props.preview ? "hawa-px-0 hawa-rounded-none hawa-border-transparent hawa-cursor-default" : "hawa-px-4"
5731
+ "hawa-text-primary hawa-border hawa-h-10 hawa-py-2 hawa-justify-between hawa-w-full hawa-font-normal hawa-inline-flex hawa-items-center hawa-transition-all hawa-select-none hawa-rounded-md hawa-text-sm hawa-ring-offset-background focus-visible:hawa-outline-none focus-visible:hawa-ring-2 focus-visible:hawa-ring-ring focus-visible:hawa-ring-offset-2 disabled:hawa-pointer-events-none disabled:hawa-opacity-50",
5732
+ props.preview ? "hawa-px-0 hawa-rounded-none hawa-border-transparent hawa-cursor-default" : "hawa-px-3 hawa-bg-background "
5735
5733
  )
5736
5734
  },
5737
5735
  value ? getProperty(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sikka/hawa",
3
- "version": "0.10.13-next",
3
+ "version": "0.10.15-next",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "exports": {