@sikka/hawa 0.24.14-next → 0.24.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/dist/blocks/auth/index.js +26 -15
- package/dist/blocks/auth/index.mjs +4 -4
- package/dist/blocks/feedback/index.js +25 -14
- package/dist/blocks/feedback/index.mjs +5 -5
- package/dist/blocks/index.js +26 -15
- package/dist/blocks/index.mjs +1 -1
- package/dist/blocks/misc/index.js +25 -14
- package/dist/blocks/misc/index.mjs +4 -4
- package/dist/blocks/pricing/index.js +25 -14
- package/dist/blocks/pricing/index.mjs +4 -4
- package/dist/{chunk-N26RJDIG.mjs → chunk-2UQWMSFQ.mjs} +1 -1
- package/dist/{chunk-7NCNPRCL.mjs → chunk-53XBVEMK.mjs} +25 -14
- package/dist/{chunk-C2UYTGUD.mjs → chunk-ABS2VEET.mjs} +25 -14
- package/dist/{chunk-D75D7LGZ.mjs → chunk-ATUSR6VI.mjs} +1 -1
- package/dist/{chunk-677VOLD4.mjs → chunk-FYH74ZRQ.mjs} +25 -14
- package/dist/{chunk-A25EXELT.mjs → chunk-OD5WIQGQ.mjs} +1 -1
- package/dist/{chunk-7XRVH6O7.mjs → chunk-OE23TTPS.mjs} +1 -1
- package/dist/{chunk-F6TKEDDP.mjs → chunk-PKLR7UF6.mjs} +1 -1
- package/dist/{chunk-LRLLDOQZ.mjs → chunk-S36W2LDN.mjs} +25 -14
- package/dist/{chunk-UTGVG66T.mjs → chunk-TTKRRN7S.mjs} +1 -1
- package/dist/{chunk-XOEHA3H6.mjs → chunk-XE3FLWLT.mjs} +25 -14
- package/dist/codeBlock/index.js +25 -14
- package/dist/codeBlock/index.mjs +1 -1
- package/dist/colorPicker/index.js +25 -14
- package/dist/colorPicker/index.mjs +1 -1
- package/dist/combobox/index.js +25 -14
- package/dist/combobox/index.mjs +25 -14
- package/dist/dataTable/index.js +25 -14
- package/dist/dataTable/index.mjs +25 -14
- package/dist/elements/index.js +25 -14
- package/dist/elements/index.mjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +25 -14
- package/dist/index.mjs +25 -14
- package/dist/input/index.js +25 -14
- package/dist/input/index.mjs +1 -1
- package/dist/interfaceSettings/index.js +25 -14
- package/dist/interfaceSettings/index.mjs +1 -1
- package/dist/label/index.js +25 -14
- package/dist/label/index.mjs +1 -1
- package/dist/passwordInput/index.js +25 -14
- package/dist/passwordInput/index.mjs +1 -1
- package/dist/phoneInput/index.js +27 -16
- package/dist/phoneInput/index.mjs +1 -1
- package/dist/radio/index.js +25 -14
- package/dist/radio/index.mjs +25 -14
- package/dist/select/index.js +25 -14
- package/dist/select/index.mjs +25 -14
- package/dist/textarea/index.js +25 -14
- package/dist/textarea/index.mjs +25 -14
- package/package.json +26 -26
package/dist/label/index.js
CHANGED
@@ -108,22 +108,33 @@ var Label = React2.forwardRef(({ className, hint, hintSide, required, children,
|
|
108
108
|
},
|
109
109
|
children,
|
110
110
|
required && /* @__PURE__ */ React2.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
111
|
-
), hint && /* @__PURE__ */ React2.createElement(
|
112
|
-
|
111
|
+
), hint && /* @__PURE__ */ React2.createElement(
|
112
|
+
Tooltip,
|
113
113
|
{
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
strokeLinecap: "round",
|
121
|
-
strokeLinejoin: "round"
|
114
|
+
content: hint,
|
115
|
+
side: hintSide,
|
116
|
+
triggerProps: {
|
117
|
+
tabIndex: -1,
|
118
|
+
onClick: (event) => event.preventDefault()
|
119
|
+
}
|
122
120
|
},
|
123
|
-
/* @__PURE__ */ React2.createElement("
|
124
|
-
|
125
|
-
|
126
|
-
|
121
|
+
/* @__PURE__ */ React2.createElement("div", null, /* @__PURE__ */ React2.createElement(
|
122
|
+
"svg",
|
123
|
+
{
|
124
|
+
xmlns: "http://www.w3.org/2000/svg",
|
125
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
126
|
+
viewBox: "0 0 24 24",
|
127
|
+
fill: "none",
|
128
|
+
stroke: "currentColor",
|
129
|
+
strokeWidth: "2",
|
130
|
+
strokeLinecap: "round",
|
131
|
+
strokeLinejoin: "round"
|
132
|
+
},
|
133
|
+
/* @__PURE__ */ React2.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
134
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
135
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M12 17h.01" })
|
136
|
+
))
|
137
|
+
)));
|
127
138
|
Label.displayName = "Label";
|
128
139
|
// Annotate the CommonJS export names for ESM import in node:
|
129
140
|
0 && (module.exports = {
|
package/dist/label/index.mjs
CHANGED
@@ -202,22 +202,33 @@ var Label = React5.forwardRef(({ className, hint, hintSide, required, children,
|
|
202
202
|
},
|
203
203
|
children,
|
204
204
|
required && /* @__PURE__ */ React5.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
205
|
-
), hint && /* @__PURE__ */ React5.createElement(
|
206
|
-
|
205
|
+
), hint && /* @__PURE__ */ React5.createElement(
|
206
|
+
Tooltip,
|
207
207
|
{
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
strokeLinecap: "round",
|
215
|
-
strokeLinejoin: "round"
|
208
|
+
content: hint,
|
209
|
+
side: hintSide,
|
210
|
+
triggerProps: {
|
211
|
+
tabIndex: -1,
|
212
|
+
onClick: (event) => event.preventDefault()
|
213
|
+
}
|
216
214
|
},
|
217
|
-
/* @__PURE__ */ React5.createElement("
|
218
|
-
|
219
|
-
|
220
|
-
|
215
|
+
/* @__PURE__ */ React5.createElement("div", null, /* @__PURE__ */ React5.createElement(
|
216
|
+
"svg",
|
217
|
+
{
|
218
|
+
xmlns: "http://www.w3.org/2000/svg",
|
219
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
220
|
+
viewBox: "0 0 24 24",
|
221
|
+
fill: "none",
|
222
|
+
stroke: "currentColor",
|
223
|
+
strokeWidth: "2",
|
224
|
+
strokeLinecap: "round",
|
225
|
+
strokeLinejoin: "round"
|
226
|
+
},
|
227
|
+
/* @__PURE__ */ React5.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
228
|
+
/* @__PURE__ */ React5.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
229
|
+
/* @__PURE__ */ React5.createElement("path", { d: "M12 17h.01" })
|
230
|
+
))
|
231
|
+
)));
|
221
232
|
Label.displayName = "Label";
|
222
233
|
|
223
234
|
// components/elements/skeleton/Skeleton.tsx
|
package/dist/phoneInput/index.js
CHANGED
@@ -1804,22 +1804,33 @@ var Label = React2.forwardRef(({ className, hint, hintSide, required, children,
|
|
1804
1804
|
},
|
1805
1805
|
children,
|
1806
1806
|
required && /* @__PURE__ */ React2.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
1807
|
-
), hint && /* @__PURE__ */ React2.createElement(
|
1808
|
-
|
1809
|
-
{
|
1810
|
-
|
1811
|
-
|
1812
|
-
|
1813
|
-
|
1814
|
-
|
1815
|
-
|
1816
|
-
|
1817
|
-
|
1818
|
-
|
1819
|
-
|
1820
|
-
|
1821
|
-
|
1822
|
-
|
1807
|
+
), hint && /* @__PURE__ */ React2.createElement(
|
1808
|
+
Tooltip,
|
1809
|
+
{
|
1810
|
+
content: hint,
|
1811
|
+
side: hintSide,
|
1812
|
+
triggerProps: {
|
1813
|
+
tabIndex: -1,
|
1814
|
+
onClick: (event) => event.preventDefault()
|
1815
|
+
}
|
1816
|
+
},
|
1817
|
+
/* @__PURE__ */ React2.createElement("div", null, /* @__PURE__ */ React2.createElement(
|
1818
|
+
"svg",
|
1819
|
+
{
|
1820
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1821
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
1822
|
+
viewBox: "0 0 24 24",
|
1823
|
+
fill: "none",
|
1824
|
+
stroke: "currentColor",
|
1825
|
+
strokeWidth: "2",
|
1826
|
+
strokeLinecap: "round",
|
1827
|
+
strokeLinejoin: "round"
|
1828
|
+
},
|
1829
|
+
/* @__PURE__ */ React2.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
1830
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
1831
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M12 17h.01" })
|
1832
|
+
))
|
1833
|
+
)));
|
1823
1834
|
Label.displayName = "Label";
|
1824
1835
|
|
1825
1836
|
// components/elements/select/Select.tsx
|
package/dist/radio/index.js
CHANGED
@@ -111,22 +111,33 @@ var Label = React2.forwardRef(({ className, hint, hintSide, required, children,
|
|
111
111
|
},
|
112
112
|
children,
|
113
113
|
required && /* @__PURE__ */ React2.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
114
|
-
), hint && /* @__PURE__ */ React2.createElement(
|
115
|
-
|
114
|
+
), hint && /* @__PURE__ */ React2.createElement(
|
115
|
+
Tooltip,
|
116
116
|
{
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
strokeLinecap: "round",
|
124
|
-
strokeLinejoin: "round"
|
117
|
+
content: hint,
|
118
|
+
side: hintSide,
|
119
|
+
triggerProps: {
|
120
|
+
tabIndex: -1,
|
121
|
+
onClick: (event) => event.preventDefault()
|
122
|
+
}
|
125
123
|
},
|
126
|
-
/* @__PURE__ */ React2.createElement("
|
127
|
-
|
128
|
-
|
129
|
-
|
124
|
+
/* @__PURE__ */ React2.createElement("div", null, /* @__PURE__ */ React2.createElement(
|
125
|
+
"svg",
|
126
|
+
{
|
127
|
+
xmlns: "http://www.w3.org/2000/svg",
|
128
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
129
|
+
viewBox: "0 0 24 24",
|
130
|
+
fill: "none",
|
131
|
+
stroke: "currentColor",
|
132
|
+
strokeWidth: "2",
|
133
|
+
strokeLinecap: "round",
|
134
|
+
strokeLinejoin: "round"
|
135
|
+
},
|
136
|
+
/* @__PURE__ */ React2.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
137
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
138
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M12 17h.01" })
|
139
|
+
))
|
140
|
+
)));
|
130
141
|
Label.displayName = "Label";
|
131
142
|
|
132
143
|
// components/elements/radio/Radio.tsx
|
package/dist/radio/index.mjs
CHANGED
@@ -72,22 +72,33 @@ var Label = React2.forwardRef(({ className, hint, hintSide, required, children,
|
|
72
72
|
},
|
73
73
|
children,
|
74
74
|
required && /* @__PURE__ */ React2.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
75
|
-
), hint && /* @__PURE__ */ React2.createElement(
|
76
|
-
|
75
|
+
), hint && /* @__PURE__ */ React2.createElement(
|
76
|
+
Tooltip,
|
77
77
|
{
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
strokeLinecap: "round",
|
85
|
-
strokeLinejoin: "round"
|
78
|
+
content: hint,
|
79
|
+
side: hintSide,
|
80
|
+
triggerProps: {
|
81
|
+
tabIndex: -1,
|
82
|
+
onClick: (event) => event.preventDefault()
|
83
|
+
}
|
86
84
|
},
|
87
|
-
/* @__PURE__ */ React2.createElement("
|
88
|
-
|
89
|
-
|
90
|
-
|
85
|
+
/* @__PURE__ */ React2.createElement("div", null, /* @__PURE__ */ React2.createElement(
|
86
|
+
"svg",
|
87
|
+
{
|
88
|
+
xmlns: "http://www.w3.org/2000/svg",
|
89
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
90
|
+
viewBox: "0 0 24 24",
|
91
|
+
fill: "none",
|
92
|
+
stroke: "currentColor",
|
93
|
+
strokeWidth: "2",
|
94
|
+
strokeLinecap: "round",
|
95
|
+
strokeLinejoin: "round"
|
96
|
+
},
|
97
|
+
/* @__PURE__ */ React2.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
98
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
99
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M12 17h.01" })
|
100
|
+
))
|
101
|
+
)));
|
91
102
|
Label.displayName = "Label";
|
92
103
|
|
93
104
|
// components/elements/radio/Radio.tsx
|
package/dist/select/index.js
CHANGED
@@ -114,22 +114,33 @@ var Label = React2.forwardRef(({ className, hint, hintSide, required, children,
|
|
114
114
|
},
|
115
115
|
children,
|
116
116
|
required && /* @__PURE__ */ React2.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
117
|
-
), hint && /* @__PURE__ */ React2.createElement(
|
118
|
-
|
117
|
+
), hint && /* @__PURE__ */ React2.createElement(
|
118
|
+
Tooltip,
|
119
119
|
{
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
strokeLinecap: "round",
|
127
|
-
strokeLinejoin: "round"
|
120
|
+
content: hint,
|
121
|
+
side: hintSide,
|
122
|
+
triggerProps: {
|
123
|
+
tabIndex: -1,
|
124
|
+
onClick: (event) => event.preventDefault()
|
125
|
+
}
|
128
126
|
},
|
129
|
-
/* @__PURE__ */ React2.createElement("
|
130
|
-
|
131
|
-
|
132
|
-
|
127
|
+
/* @__PURE__ */ React2.createElement("div", null, /* @__PURE__ */ React2.createElement(
|
128
|
+
"svg",
|
129
|
+
{
|
130
|
+
xmlns: "http://www.w3.org/2000/svg",
|
131
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
132
|
+
viewBox: "0 0 24 24",
|
133
|
+
fill: "none",
|
134
|
+
stroke: "currentColor",
|
135
|
+
strokeWidth: "2",
|
136
|
+
strokeLinecap: "round",
|
137
|
+
strokeLinejoin: "round"
|
138
|
+
},
|
139
|
+
/* @__PURE__ */ React2.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
140
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
141
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M12 17h.01" })
|
142
|
+
))
|
143
|
+
)));
|
133
144
|
Label.displayName = "Label";
|
134
145
|
|
135
146
|
// components/elements/skeleton/Skeleton.tsx
|
package/dist/select/index.mjs
CHANGED
@@ -75,22 +75,33 @@ var Label = React2.forwardRef(({ className, hint, hintSide, required, children,
|
|
75
75
|
},
|
76
76
|
children,
|
77
77
|
required && /* @__PURE__ */ React2.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
78
|
-
), hint && /* @__PURE__ */ React2.createElement(
|
79
|
-
|
78
|
+
), hint && /* @__PURE__ */ React2.createElement(
|
79
|
+
Tooltip,
|
80
80
|
{
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
strokeLinecap: "round",
|
88
|
-
strokeLinejoin: "round"
|
81
|
+
content: hint,
|
82
|
+
side: hintSide,
|
83
|
+
triggerProps: {
|
84
|
+
tabIndex: -1,
|
85
|
+
onClick: (event) => event.preventDefault()
|
86
|
+
}
|
89
87
|
},
|
90
|
-
/* @__PURE__ */ React2.createElement("
|
91
|
-
|
92
|
-
|
93
|
-
|
88
|
+
/* @__PURE__ */ React2.createElement("div", null, /* @__PURE__ */ React2.createElement(
|
89
|
+
"svg",
|
90
|
+
{
|
91
|
+
xmlns: "http://www.w3.org/2000/svg",
|
92
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
93
|
+
viewBox: "0 0 24 24",
|
94
|
+
fill: "none",
|
95
|
+
stroke: "currentColor",
|
96
|
+
strokeWidth: "2",
|
97
|
+
strokeLinecap: "round",
|
98
|
+
strokeLinejoin: "round"
|
99
|
+
},
|
100
|
+
/* @__PURE__ */ React2.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
101
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
102
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M12 17h.01" })
|
103
|
+
))
|
104
|
+
)));
|
94
105
|
Label.displayName = "Label";
|
95
106
|
|
96
107
|
// components/elements/skeleton/Skeleton.tsx
|
package/dist/textarea/index.js
CHANGED
@@ -111,22 +111,33 @@ var Label = React2.forwardRef(({ className, hint, hintSide, required, children,
|
|
111
111
|
},
|
112
112
|
children,
|
113
113
|
required && /* @__PURE__ */ React2.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
114
|
-
), hint && /* @__PURE__ */ React2.createElement(
|
115
|
-
|
114
|
+
), hint && /* @__PURE__ */ React2.createElement(
|
115
|
+
Tooltip,
|
116
116
|
{
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
strokeLinecap: "round",
|
124
|
-
strokeLinejoin: "round"
|
117
|
+
content: hint,
|
118
|
+
side: hintSide,
|
119
|
+
triggerProps: {
|
120
|
+
tabIndex: -1,
|
121
|
+
onClick: (event) => event.preventDefault()
|
122
|
+
}
|
125
123
|
},
|
126
|
-
/* @__PURE__ */ React2.createElement("
|
127
|
-
|
128
|
-
|
129
|
-
|
124
|
+
/* @__PURE__ */ React2.createElement("div", null, /* @__PURE__ */ React2.createElement(
|
125
|
+
"svg",
|
126
|
+
{
|
127
|
+
xmlns: "http://www.w3.org/2000/svg",
|
128
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
129
|
+
viewBox: "0 0 24 24",
|
130
|
+
fill: "none",
|
131
|
+
stroke: "currentColor",
|
132
|
+
strokeWidth: "2",
|
133
|
+
strokeLinecap: "round",
|
134
|
+
strokeLinejoin: "round"
|
135
|
+
},
|
136
|
+
/* @__PURE__ */ React2.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
137
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
138
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M12 17h.01" })
|
139
|
+
))
|
140
|
+
)));
|
130
141
|
Label.displayName = "Label";
|
131
142
|
|
132
143
|
// components/elements/textarea/Textarea.tsx
|
package/dist/textarea/index.mjs
CHANGED
@@ -72,22 +72,33 @@ var Label = React2.forwardRef(({ className, hint, hintSide, required, children,
|
|
72
72
|
},
|
73
73
|
children,
|
74
74
|
required && /* @__PURE__ */ React2.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
75
|
-
), hint && /* @__PURE__ */ React2.createElement(
|
76
|
-
|
75
|
+
), hint && /* @__PURE__ */ React2.createElement(
|
76
|
+
Tooltip,
|
77
77
|
{
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
strokeLinecap: "round",
|
85
|
-
strokeLinejoin: "round"
|
78
|
+
content: hint,
|
79
|
+
side: hintSide,
|
80
|
+
triggerProps: {
|
81
|
+
tabIndex: -1,
|
82
|
+
onClick: (event) => event.preventDefault()
|
83
|
+
}
|
86
84
|
},
|
87
|
-
/* @__PURE__ */ React2.createElement("
|
88
|
-
|
89
|
-
|
90
|
-
|
85
|
+
/* @__PURE__ */ React2.createElement("div", null, /* @__PURE__ */ React2.createElement(
|
86
|
+
"svg",
|
87
|
+
{
|
88
|
+
xmlns: "http://www.w3.org/2000/svg",
|
89
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
90
|
+
viewBox: "0 0 24 24",
|
91
|
+
fill: "none",
|
92
|
+
stroke: "currentColor",
|
93
|
+
strokeWidth: "2",
|
94
|
+
strokeLinecap: "round",
|
95
|
+
strokeLinejoin: "round"
|
96
|
+
},
|
97
|
+
/* @__PURE__ */ React2.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
98
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
99
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M12 17h.01" })
|
100
|
+
))
|
101
|
+
)));
|
91
102
|
Label.displayName = "Label";
|
92
103
|
|
93
104
|
// components/elements/textarea/Textarea.tsx
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@sikka/hawa",
|
3
|
-
"version": "0.24.
|
3
|
+
"version": "0.24.15-next",
|
4
4
|
"description": "Modern UI Kit made with Tailwind",
|
5
5
|
"author": {
|
6
6
|
"name": "Sikka Software",
|
@@ -78,43 +78,43 @@
|
|
78
78
|
"@radix-ui/react-tabs": "^1.0.4",
|
79
79
|
"@radix-ui/react-toast": "^1.1.5",
|
80
80
|
"@radix-ui/react-tooltip": "^1.0.7",
|
81
|
-
"@tanstack/react-table": "^8.
|
82
|
-
"@types/node": "^20.10.
|
83
|
-
"@types/react": "^18.2.
|
84
|
-
"@types/react-dom": "^18.2.
|
81
|
+
"@tanstack/react-table": "^8.11.0",
|
82
|
+
"@types/node": "^20.10.5",
|
83
|
+
"@types/react": "^18.2.45",
|
84
|
+
"@types/react-dom": "^18.2.18",
|
85
85
|
"class-variance-authority": "^0.7.0",
|
86
86
|
"clsx": "^2.0.0",
|
87
87
|
"cmdk": "^0.2.0",
|
88
|
-
"embla-carousel-auto-height": "^8.0.0-
|
89
|
-
"embla-carousel-react": "^8.0.0-
|
90
|
-
"eslint": "^8.
|
88
|
+
"embla-carousel-auto-height": "^8.0.0-rc15",
|
89
|
+
"embla-carousel-react": "^8.0.0-rc15",
|
90
|
+
"eslint": "^8.56.0",
|
91
91
|
"eslint-config-next": "^14.0.4",
|
92
|
-
"libphonenumber-js": "^1.10.
|
92
|
+
"libphonenumber-js": "^1.10.52",
|
93
93
|
"next": "^14.0.4",
|
94
94
|
"next-themes": "^0.2.1",
|
95
|
-
"prism-react-renderer": "^2.3.
|
95
|
+
"prism-react-renderer": "^2.3.1",
|
96
96
|
"react": "18.2.0",
|
97
97
|
"react-dom": "18.2.0",
|
98
98
|
"react-dropzone": "^14.2.3",
|
99
99
|
"react-headless-pagination": "^1.1.4",
|
100
|
-
"react-hook-form": "^7.
|
100
|
+
"react-hook-form": "^7.49.2",
|
101
101
|
"react-select": "^5.8.0",
|
102
102
|
"tailwind-merge": "^2.1.0",
|
103
|
-
"zod": "^3.22.
|
103
|
+
"zod": "^3.22.4"
|
104
104
|
},
|
105
105
|
"devDependencies": {
|
106
106
|
"@babel/preset-react": "^7.23.3",
|
107
107
|
"@sikka/alam": "^0.0.4",
|
108
|
-
"@storybook/addon-essentials": "^7.6.
|
109
|
-
"@storybook/addon-interactions": "^7.6.
|
110
|
-
"@storybook/addon-links": "^7.6.
|
111
|
-
"@storybook/addon-mdx-gfm": "^7.6.
|
112
|
-
"@storybook/blocks": "^7.6.
|
113
|
-
"@storybook/manager-api": "^7.6.
|
114
|
-
"@storybook/nextjs": "^7.6.
|
115
|
-
"@storybook/react": "^7.6.
|
108
|
+
"@storybook/addon-essentials": "^7.6.5",
|
109
|
+
"@storybook/addon-interactions": "^7.6.5",
|
110
|
+
"@storybook/addon-links": "^7.6.5",
|
111
|
+
"@storybook/addon-mdx-gfm": "^7.6.5",
|
112
|
+
"@storybook/blocks": "^7.6.5",
|
113
|
+
"@storybook/manager-api": "^7.6.5",
|
114
|
+
"@storybook/nextjs": "^7.6.5",
|
115
|
+
"@storybook/react": "^7.6.5",
|
116
116
|
"@storybook/testing-library": "^0.2.2",
|
117
|
-
"@storybook/theming": "^7.6.
|
117
|
+
"@storybook/theming": "^7.6.5",
|
118
118
|
"@testing-library/jest-dom": "^6.1.5",
|
119
119
|
"@testing-library/react": "^14.1.2",
|
120
120
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
@@ -123,16 +123,16 @@
|
|
123
123
|
"eslint-plugin-storybook": "^0.6.15",
|
124
124
|
"jest": "^29.7.0",
|
125
125
|
"jest-environment-jsdom": "^29.7.0",
|
126
|
-
"lucide-react": "^0.
|
126
|
+
"lucide-react": "^0.298.0",
|
127
127
|
"postcss": "^8.4.32",
|
128
128
|
"postcss-cli": "^11.0.0",
|
129
129
|
"postcss-import": "^15.1.0",
|
130
|
-
"prettier": "^3.1.
|
130
|
+
"prettier": "^3.1.1",
|
131
131
|
"prettier-plugin-tailwindcss": "^0.5.9",
|
132
132
|
"recharts": "^2.10.3",
|
133
|
-
"storybook": "^7.6.
|
134
|
-
"storybook-dark-mode": "^3.0.
|
135
|
-
"tailwindcss": "^3.3.
|
133
|
+
"storybook": "^7.6.5",
|
134
|
+
"storybook-dark-mode": "^3.0.3",
|
135
|
+
"tailwindcss": "^3.3.7",
|
136
136
|
"tailwindcss-animate": "^1.0.7",
|
137
137
|
"tsconfig-paths-webpack-plugin": "^4.1.0",
|
138
138
|
"tsup": "^8.0.1",
|