@sikka/hawa 0.45.1-next → 0.46.1-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 +19 -13
- package/dist/blocks/auth/index.mjs +17 -17
- package/dist/blocks/feedback/index.js +6 -0
- package/dist/blocks/feedback/index.mjs +5 -5
- package/dist/blocks/index.js +19 -13
- package/dist/blocks/index.mjs +2 -2
- package/dist/blocks/misc/index.js +6 -0
- package/dist/blocks/misc/index.mjs +5 -5
- package/dist/blocks/pricing/index.js +6 -0
- package/dist/blocks/pricing/index.mjs +4 -4
- package/dist/{chunk-6LI35F6L.mjs → chunk-6UOJKVIA.mjs} +6 -0
- package/dist/{chunk-D3B3MKLS.mjs → chunk-7O555VJR.mjs} +1 -1
- package/dist/{chunk-XC6FSDW7.mjs → chunk-CIMTNOLA.mjs} +1 -1
- package/dist/{chunk-FIUKVRL5.mjs → chunk-EHJXQQDP.mjs} +1 -1
- package/dist/{chunk-JKZQWCAQ.mjs → chunk-FTETN5UE.mjs} +1 -1
- package/dist/{chunk-3B7UZCET.mjs → chunk-HJVL6X7I.mjs} +6 -0
- package/dist/{chunk-QOVVJCFE.mjs → chunk-QUC5EXTF.mjs} +14 -14
- package/dist/{chunk-YABFWOF3.mjs → chunk-R37QEYSB.mjs} +1 -1
- package/dist/{chunk-FUYMZP4J.mjs → chunk-U72MOMEK.mjs} +1 -1
- package/dist/{chunk-JDCQLGWW.mjs → chunk-YXUHXKKK.mjs} +1 -1
- package/dist/colorPicker/index.js +6 -0
- package/dist/colorPicker/index.js.map +1 -1
- package/dist/colorPicker/index.mjs +6 -0
- package/dist/colorPicker/index.mjs.map +1 -1
- package/dist/combobox/index.js +7 -0
- package/dist/combobox/index.js.map +1 -1
- package/dist/combobox/index.mjs +7 -0
- package/dist/combobox/index.mjs.map +1 -1
- package/dist/command/index.js +1 -0
- package/dist/command/index.js.map +1 -1
- package/dist/command/index.mjs +1 -0
- package/dist/command/index.mjs.map +1 -1
- package/dist/dataTable/index.js +6 -0
- package/dist/dataTable/index.js.map +1 -1
- package/dist/dataTable/index.mjs +6 -0
- package/dist/dataTable/index.mjs.map +1 -1
- package/dist/elements/index.d.mts +2 -1
- package/dist/elements/index.d.ts +2 -1
- package/dist/elements/index.js +20 -13
- package/dist/elements/index.mjs +4 -3
- package/dist/index.css +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +20 -13
- package/dist/index.mjs +20 -13
- package/dist/input/index.js +6 -0
- package/dist/input/index.js.map +1 -1
- package/dist/input/index.mjs +6 -0
- package/dist/input/index.mjs.map +1 -1
- package/dist/layout/index.js +6 -0
- package/dist/layout/index.mjs +2 -2
- package/dist/passwordInput/index.js +6 -0
- package/dist/passwordInput/index.js.map +1 -1
- package/dist/passwordInput/index.mjs +6 -0
- package/dist/passwordInput/index.mjs.map +1 -1
- package/dist/phoneInput/index.js +6 -0
- package/dist/phoneInput/index.js.map +1 -1
- package/dist/phoneInput/index.mjs +6 -0
- package/dist/phoneInput/index.mjs.map +1 -1
- package/dist/pinInput/index.js +13 -13
- package/dist/pinInput/index.js.map +1 -1
- package/dist/pinInput/index.mjs +13 -13
- package/dist/pinInput/index.mjs.map +1 -1
- package/dist/select/index.js +6 -0
- package/dist/select/index.js.map +1 -1
- package/dist/select/index.mjs +6 -0
- package/dist/select/index.mjs.map +1 -1
- package/dist/simpleTable/index.js +6 -0
- package/dist/simpleTable/index.js.map +1 -1
- package/dist/simpleTable/index.mjs +6 -0
- package/dist/simpleTable/index.mjs.map +1 -1
- package/dist/skeleton/index.d.mts +2 -1
- package/dist/skeleton/index.d.ts +2 -1
- package/dist/skeleton/index.js +6 -0
- package/dist/skeleton/index.js.map +1 -1
- package/dist/skeleton/index.mjs +6 -0
- package/dist/skeleton/index.mjs.map +1 -1
- package/dist/stats/index.js +6 -0
- package/dist/stats/index.js.map +1 -1
- package/dist/stats/index.mjs +6 -0
- package/dist/stats/index.mjs.map +1 -1
- package/dist/textarea/index.js +6 -0
- package/dist/textarea/index.js.map +1 -1
- package/dist/textarea/index.mjs +6 -0
- package/dist/textarea/index.mjs.map +1 -1
- package/package.json +6 -6
@@ -1386,6 +1386,7 @@ function Skeleton({
|
|
1386
1386
|
content,
|
1387
1387
|
animation = "pulse",
|
1388
1388
|
fade,
|
1389
|
+
as = "div",
|
1389
1390
|
...props
|
1390
1391
|
}) {
|
1391
1392
|
const animationStyles = {
|
@@ -1399,6 +1400,10 @@ function Skeleton({
|
|
1399
1400
|
right: "hawa-mask-fade-right",
|
1400
1401
|
left: "hawa-mask-fade-left "
|
1401
1402
|
};
|
1403
|
+
const styledAs = {
|
1404
|
+
div: "",
|
1405
|
+
input: "!h-[38px] !w-full"
|
1406
|
+
};
|
1402
1407
|
return /* @__PURE__ */ import_react7.default.createElement(
|
1403
1408
|
"div",
|
1404
1409
|
{
|
@@ -1406,6 +1411,7 @@ function Skeleton({
|
|
1406
1411
|
animationStyles[animation],
|
1407
1412
|
content && "hawa-flex hawa-flex-col hawa-items-center hawa-justify-center",
|
1408
1413
|
fade && fadeStyle[fade],
|
1414
|
+
styledAs[as],
|
1409
1415
|
className
|
1410
1416
|
),
|
1411
1417
|
...props
|
@@ -4674,19 +4680,19 @@ var z5 = __toESM(require("zod"));
|
|
4674
4680
|
var React25 = __toESM(require("react"));
|
4675
4681
|
var import_input_otp = require("input-otp");
|
4676
4682
|
|
4677
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4683
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
|
4678
4684
|
var import_react23 = require("react");
|
4679
4685
|
|
4680
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4686
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/shared/src/utils.js
|
4681
4687
|
var toKebabCase = (string6) => string6.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
4682
4688
|
var mergeClasses = (...classes) => classes.filter((className, index, array) => {
|
4683
4689
|
return Boolean(className) && array.indexOf(className) === index;
|
4684
4690
|
}).join(" ");
|
4685
4691
|
|
4686
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4692
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/Icon.js
|
4687
4693
|
var import_react22 = require("react");
|
4688
4694
|
|
4689
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4695
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/defaultAttributes.js
|
4690
4696
|
var defaultAttributes = {
|
4691
4697
|
xmlns: "http://www.w3.org/2000/svg",
|
4692
4698
|
width: 24,
|
@@ -4699,7 +4705,7 @@ var defaultAttributes = {
|
|
4699
4705
|
strokeLinejoin: "round"
|
4700
4706
|
};
|
4701
4707
|
|
4702
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4708
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/Icon.js
|
4703
4709
|
var Icon = (0, import_react22.forwardRef)(
|
4704
4710
|
({
|
4705
4711
|
color = "currentColor",
|
@@ -4731,7 +4737,7 @@ var Icon = (0, import_react22.forwardRef)(
|
|
4731
4737
|
}
|
4732
4738
|
);
|
4733
4739
|
|
4734
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4740
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
|
4735
4741
|
var createLucideIcon = (iconName, iconNode) => {
|
4736
4742
|
const Component = (0, import_react23.forwardRef)(
|
4737
4743
|
({ className, ...props }, ref) => (0, import_react23.createElement)(Icon, {
|
@@ -4745,7 +4751,7 @@ var createLucideIcon = (iconName, iconNode) => {
|
|
4745
4751
|
return Component;
|
4746
4752
|
};
|
4747
4753
|
|
4748
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4754
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/dot.js
|
4749
4755
|
var Dot = createLucideIcon("Dot", [
|
4750
4756
|
["circle", { cx: "12.1", cy: "12.1", r: "1", key: "18d7e5" }]
|
4751
4757
|
]);
|
@@ -4944,7 +4950,7 @@ var CodeConfirmation = ({
|
|
4944
4950
|
|
4945
4951
|
lucide-react/dist/esm/shared/src/utils.js:
|
4946
4952
|
(**
|
4947
|
-
* @license lucide-react v0.
|
4953
|
+
* @license lucide-react v0.427.0 - ISC
|
4948
4954
|
*
|
4949
4955
|
* This source code is licensed under the ISC license.
|
4950
4956
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -4952,7 +4958,7 @@ lucide-react/dist/esm/shared/src/utils.js:
|
|
4952
4958
|
|
4953
4959
|
lucide-react/dist/esm/defaultAttributes.js:
|
4954
4960
|
(**
|
4955
|
-
* @license lucide-react v0.
|
4961
|
+
* @license lucide-react v0.427.0 - ISC
|
4956
4962
|
*
|
4957
4963
|
* This source code is licensed under the ISC license.
|
4958
4964
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -4960,7 +4966,7 @@ lucide-react/dist/esm/defaultAttributes.js:
|
|
4960
4966
|
|
4961
4967
|
lucide-react/dist/esm/Icon.js:
|
4962
4968
|
(**
|
4963
|
-
* @license lucide-react v0.
|
4969
|
+
* @license lucide-react v0.427.0 - ISC
|
4964
4970
|
*
|
4965
4971
|
* This source code is licensed under the ISC license.
|
4966
4972
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -4968,7 +4974,7 @@ lucide-react/dist/esm/Icon.js:
|
|
4968
4974
|
|
4969
4975
|
lucide-react/dist/esm/createLucideIcon.js:
|
4970
4976
|
(**
|
4971
|
-
* @license lucide-react v0.
|
4977
|
+
* @license lucide-react v0.427.0 - ISC
|
4972
4978
|
*
|
4973
4979
|
* This source code is licensed under the ISC license.
|
4974
4980
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -4976,7 +4982,7 @@ lucide-react/dist/esm/createLucideIcon.js:
|
|
4976
4982
|
|
4977
4983
|
lucide-react/dist/esm/icons/dot.js:
|
4978
4984
|
(**
|
4979
|
-
* @license lucide-react v0.
|
4985
|
+
* @license lucide-react v0.427.0 - ISC
|
4980
4986
|
*
|
4981
4987
|
* This source code is licensed under the ISC license.
|
4982
4988
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -4984,7 +4990,7 @@ lucide-react/dist/esm/icons/dot.js:
|
|
4984
4990
|
|
4985
4991
|
lucide-react/dist/esm/lucide-react.js:
|
4986
4992
|
(**
|
4987
|
-
* @license lucide-react v0.
|
4993
|
+
* @license lucide-react v0.427.0 - ISC
|
4988
4994
|
*
|
4989
4995
|
* This source code is licensed under the ISC license.
|
4990
4996
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -1,17 +1,17 @@
|
|
1
1
|
"use client";
|
2
2
|
import {
|
3
3
|
Input
|
4
|
-
} from "../../chunk-
|
4
|
+
} from "../../chunk-FTETN5UE.mjs";
|
5
5
|
import {
|
6
6
|
StopPropagationWrapper
|
7
7
|
} from "../../chunk-47APBDKK.mjs";
|
8
8
|
import {
|
9
9
|
Select
|
10
|
-
} from "../../chunk-
|
10
|
+
} from "../../chunk-7O555VJR.mjs";
|
11
11
|
import {
|
12
12
|
EyeIcon,
|
13
13
|
HiddenEyeIcon
|
14
|
-
} from "../../chunk-
|
14
|
+
} from "../../chunk-YXUHXKKK.mjs";
|
15
15
|
import {
|
16
16
|
Button,
|
17
17
|
Card,
|
@@ -24,7 +24,7 @@ import {
|
|
24
24
|
Label,
|
25
25
|
Loading,
|
26
26
|
cn
|
27
|
-
} from "../../chunk-
|
27
|
+
} from "../../chunk-6UOJKVIA.mjs";
|
28
28
|
|
29
29
|
// blocks/auth/AuthButtons.tsx
|
30
30
|
import React2 from "react";
|
@@ -3682,19 +3682,19 @@ import * as z5 from "zod";
|
|
3682
3682
|
import * as React12 from "react";
|
3683
3683
|
import { OTPInput, OTPInputContext } from "input-otp";
|
3684
3684
|
|
3685
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
3685
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
|
3686
3686
|
import { forwardRef as forwardRef3, createElement as createElement3 } from "react";
|
3687
3687
|
|
3688
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
3688
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/shared/src/utils.js
|
3689
3689
|
var toKebabCase = (string6) => string6.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
3690
3690
|
var mergeClasses = (...classes) => classes.filter((className, index, array) => {
|
3691
3691
|
return Boolean(className) && array.indexOf(className) === index;
|
3692
3692
|
}).join(" ");
|
3693
3693
|
|
3694
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
3694
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/Icon.js
|
3695
3695
|
import { forwardRef as forwardRef2, createElement as createElement2 } from "react";
|
3696
3696
|
|
3697
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
3697
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/defaultAttributes.js
|
3698
3698
|
var defaultAttributes = {
|
3699
3699
|
xmlns: "http://www.w3.org/2000/svg",
|
3700
3700
|
width: 24,
|
@@ -3707,7 +3707,7 @@ var defaultAttributes = {
|
|
3707
3707
|
strokeLinejoin: "round"
|
3708
3708
|
};
|
3709
3709
|
|
3710
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
3710
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/Icon.js
|
3711
3711
|
var Icon = forwardRef2(
|
3712
3712
|
({
|
3713
3713
|
color = "currentColor",
|
@@ -3739,7 +3739,7 @@ var Icon = forwardRef2(
|
|
3739
3739
|
}
|
3740
3740
|
);
|
3741
3741
|
|
3742
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
3742
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
|
3743
3743
|
var createLucideIcon = (iconName, iconNode) => {
|
3744
3744
|
const Component = forwardRef3(
|
3745
3745
|
({ className, ...props }, ref) => createElement3(Icon, {
|
@@ -3753,7 +3753,7 @@ var createLucideIcon = (iconName, iconNode) => {
|
|
3753
3753
|
return Component;
|
3754
3754
|
};
|
3755
3755
|
|
3756
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
3756
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/dot.js
|
3757
3757
|
var Dot = createLucideIcon("Dot", [
|
3758
3758
|
["circle", { cx: "12.1", cy: "12.1", r: "1", key: "18d7e5" }]
|
3759
3759
|
]);
|
@@ -3951,7 +3951,7 @@ export {
|
|
3951
3951
|
|
3952
3952
|
lucide-react/dist/esm/shared/src/utils.js:
|
3953
3953
|
(**
|
3954
|
-
* @license lucide-react v0.
|
3954
|
+
* @license lucide-react v0.427.0 - ISC
|
3955
3955
|
*
|
3956
3956
|
* This source code is licensed under the ISC license.
|
3957
3957
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -3959,7 +3959,7 @@ lucide-react/dist/esm/shared/src/utils.js:
|
|
3959
3959
|
|
3960
3960
|
lucide-react/dist/esm/defaultAttributes.js:
|
3961
3961
|
(**
|
3962
|
-
* @license lucide-react v0.
|
3962
|
+
* @license lucide-react v0.427.0 - ISC
|
3963
3963
|
*
|
3964
3964
|
* This source code is licensed under the ISC license.
|
3965
3965
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -3967,7 +3967,7 @@ lucide-react/dist/esm/defaultAttributes.js:
|
|
3967
3967
|
|
3968
3968
|
lucide-react/dist/esm/Icon.js:
|
3969
3969
|
(**
|
3970
|
-
* @license lucide-react v0.
|
3970
|
+
* @license lucide-react v0.427.0 - ISC
|
3971
3971
|
*
|
3972
3972
|
* This source code is licensed under the ISC license.
|
3973
3973
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -3975,7 +3975,7 @@ lucide-react/dist/esm/Icon.js:
|
|
3975
3975
|
|
3976
3976
|
lucide-react/dist/esm/createLucideIcon.js:
|
3977
3977
|
(**
|
3978
|
-
* @license lucide-react v0.
|
3978
|
+
* @license lucide-react v0.427.0 - ISC
|
3979
3979
|
*
|
3980
3980
|
* This source code is licensed under the ISC license.
|
3981
3981
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -3983,7 +3983,7 @@ lucide-react/dist/esm/createLucideIcon.js:
|
|
3983
3983
|
|
3984
3984
|
lucide-react/dist/esm/icons/dot.js:
|
3985
3985
|
(**
|
3986
|
-
* @license lucide-react v0.
|
3986
|
+
* @license lucide-react v0.427.0 - ISC
|
3987
3987
|
*
|
3988
3988
|
* This source code is licensed under the ISC license.
|
3989
3989
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -3991,7 +3991,7 @@ lucide-react/dist/esm/icons/dot.js:
|
|
3991
3991
|
|
3992
3992
|
lucide-react/dist/esm/lucide-react.js:
|
3993
3993
|
(**
|
3994
|
-
* @license lucide-react v0.
|
3994
|
+
* @license lucide-react v0.427.0 - ISC
|
3995
3995
|
*
|
3996
3996
|
* This source code is licensed under the ISC license.
|
3997
3997
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -948,6 +948,7 @@ function Skeleton({
|
|
948
948
|
content,
|
949
949
|
animation = "pulse",
|
950
950
|
fade,
|
951
|
+
as = "div",
|
951
952
|
...props
|
952
953
|
}) {
|
953
954
|
const animationStyles = {
|
@@ -961,6 +962,10 @@ function Skeleton({
|
|
961
962
|
right: "hawa-mask-fade-right",
|
962
963
|
left: "hawa-mask-fade-left "
|
963
964
|
};
|
965
|
+
const styledAs = {
|
966
|
+
div: "",
|
967
|
+
input: "!h-[38px] !w-full"
|
968
|
+
};
|
964
969
|
return /* @__PURE__ */ import_react5.default.createElement(
|
965
970
|
"div",
|
966
971
|
{
|
@@ -968,6 +973,7 @@ function Skeleton({
|
|
968
973
|
animationStyles[animation],
|
969
974
|
content && "hawa-flex hawa-flex-col hawa-items-center hawa-justify-center",
|
970
975
|
fade && fadeStyle[fade],
|
976
|
+
styledAs[as],
|
971
977
|
className
|
972
978
|
),
|
973
979
|
...props
|
@@ -1,26 +1,26 @@
|
|
1
1
|
"use client";
|
2
2
|
import {
|
3
3
|
Textarea
|
4
|
-
} from "../../chunk-
|
4
|
+
} from "../../chunk-EHJXQQDP.mjs";
|
5
5
|
import {
|
6
6
|
Select
|
7
|
-
} from "../../chunk-
|
7
|
+
} from "../../chunk-7O555VJR.mjs";
|
8
8
|
import {
|
9
9
|
Popover,
|
10
10
|
Radio
|
11
|
-
} from "../../chunk-
|
11
|
+
} from "../../chunk-R37QEYSB.mjs";
|
12
12
|
import {
|
13
13
|
BadEmoji,
|
14
14
|
GoodEmoji,
|
15
15
|
VeryBadEmoji,
|
16
16
|
VeryGoodEmoji
|
17
|
-
} from "../../chunk-
|
17
|
+
} from "../../chunk-YXUHXKKK.mjs";
|
18
18
|
import {
|
19
19
|
Button,
|
20
20
|
Card,
|
21
21
|
CardContent,
|
22
22
|
cn
|
23
|
-
} from "../../chunk-
|
23
|
+
} from "../../chunk-6UOJKVIA.mjs";
|
24
24
|
|
25
25
|
// blocks/feedback/UserReferralSource.tsx
|
26
26
|
import React, { useRef, useState } from "react";
|
package/dist/blocks/index.js
CHANGED
@@ -1407,6 +1407,7 @@ function Skeleton({
|
|
1407
1407
|
content,
|
1408
1408
|
animation = "pulse",
|
1409
1409
|
fade,
|
1410
|
+
as = "div",
|
1410
1411
|
...props
|
1411
1412
|
}) {
|
1412
1413
|
const animationStyles = {
|
@@ -1420,6 +1421,10 @@ function Skeleton({
|
|
1420
1421
|
right: "hawa-mask-fade-right",
|
1421
1422
|
left: "hawa-mask-fade-left "
|
1422
1423
|
};
|
1424
|
+
const styledAs = {
|
1425
|
+
div: "",
|
1426
|
+
input: "!h-[38px] !w-full"
|
1427
|
+
};
|
1423
1428
|
return /* @__PURE__ */ import_react7.default.createElement(
|
1424
1429
|
"div",
|
1425
1430
|
{
|
@@ -1427,6 +1432,7 @@ function Skeleton({
|
|
1427
1432
|
animationStyles[animation],
|
1428
1433
|
content && "hawa-flex hawa-flex-col hawa-items-center hawa-justify-center",
|
1429
1434
|
fade && fadeStyle[fade],
|
1435
|
+
styledAs[as],
|
1430
1436
|
className
|
1431
1437
|
),
|
1432
1438
|
...props
|
@@ -4831,19 +4837,19 @@ var z5 = __toESM(require("zod"));
|
|
4831
4837
|
var React25 = __toESM(require("react"));
|
4832
4838
|
var import_input_otp = require("input-otp");
|
4833
4839
|
|
4834
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4840
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
|
4835
4841
|
var import_react23 = require("react");
|
4836
4842
|
|
4837
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4843
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/shared/src/utils.js
|
4838
4844
|
var toKebabCase = (string9) => string9.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
4839
4845
|
var mergeClasses = (...classes) => classes.filter((className, index, array) => {
|
4840
4846
|
return Boolean(className) && array.indexOf(className) === index;
|
4841
4847
|
}).join(" ");
|
4842
4848
|
|
4843
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4849
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/Icon.js
|
4844
4850
|
var import_react22 = require("react");
|
4845
4851
|
|
4846
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4852
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/defaultAttributes.js
|
4847
4853
|
var defaultAttributes = {
|
4848
4854
|
xmlns: "http://www.w3.org/2000/svg",
|
4849
4855
|
width: 24,
|
@@ -4856,7 +4862,7 @@ var defaultAttributes = {
|
|
4856
4862
|
strokeLinejoin: "round"
|
4857
4863
|
};
|
4858
4864
|
|
4859
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4865
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/Icon.js
|
4860
4866
|
var Icon = (0, import_react22.forwardRef)(
|
4861
4867
|
({
|
4862
4868
|
color = "currentColor",
|
@@ -4888,7 +4894,7 @@ var Icon = (0, import_react22.forwardRef)(
|
|
4888
4894
|
}
|
4889
4895
|
);
|
4890
4896
|
|
4891
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4897
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
|
4892
4898
|
var createLucideIcon = (iconName, iconNode) => {
|
4893
4899
|
const Component = (0, import_react23.forwardRef)(
|
4894
4900
|
({ className, ...props }, ref) => (0, import_react23.createElement)(Icon, {
|
@@ -4902,7 +4908,7 @@ var createLucideIcon = (iconName, iconNode) => {
|
|
4902
4908
|
return Component;
|
4903
4909
|
};
|
4904
4910
|
|
4905
|
-
// ../../node_modules/.pnpm/lucide-react@0.
|
4911
|
+
// ../../node_modules/.pnpm/lucide-react@0.427.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/dot.js
|
4906
4912
|
var Dot = createLucideIcon("Dot", [
|
4907
4913
|
["circle", { cx: "12.1", cy: "12.1", r: "1", key: "18d7e5" }]
|
4908
4914
|
]);
|
@@ -8056,7 +8062,7 @@ var Usage = (props) => {
|
|
8056
8062
|
|
8057
8063
|
lucide-react/dist/esm/shared/src/utils.js:
|
8058
8064
|
(**
|
8059
|
-
* @license lucide-react v0.
|
8065
|
+
* @license lucide-react v0.427.0 - ISC
|
8060
8066
|
*
|
8061
8067
|
* This source code is licensed under the ISC license.
|
8062
8068
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -8064,7 +8070,7 @@ lucide-react/dist/esm/shared/src/utils.js:
|
|
8064
8070
|
|
8065
8071
|
lucide-react/dist/esm/defaultAttributes.js:
|
8066
8072
|
(**
|
8067
|
-
* @license lucide-react v0.
|
8073
|
+
* @license lucide-react v0.427.0 - ISC
|
8068
8074
|
*
|
8069
8075
|
* This source code is licensed under the ISC license.
|
8070
8076
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -8072,7 +8078,7 @@ lucide-react/dist/esm/defaultAttributes.js:
|
|
8072
8078
|
|
8073
8079
|
lucide-react/dist/esm/Icon.js:
|
8074
8080
|
(**
|
8075
|
-
* @license lucide-react v0.
|
8081
|
+
* @license lucide-react v0.427.0 - ISC
|
8076
8082
|
*
|
8077
8083
|
* This source code is licensed under the ISC license.
|
8078
8084
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -8080,7 +8086,7 @@ lucide-react/dist/esm/Icon.js:
|
|
8080
8086
|
|
8081
8087
|
lucide-react/dist/esm/createLucideIcon.js:
|
8082
8088
|
(**
|
8083
|
-
* @license lucide-react v0.
|
8089
|
+
* @license lucide-react v0.427.0 - ISC
|
8084
8090
|
*
|
8085
8091
|
* This source code is licensed under the ISC license.
|
8086
8092
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -8088,7 +8094,7 @@ lucide-react/dist/esm/createLucideIcon.js:
|
|
8088
8094
|
|
8089
8095
|
lucide-react/dist/esm/icons/dot.js:
|
8090
8096
|
(**
|
8091
|
-
* @license lucide-react v0.
|
8097
|
+
* @license lucide-react v0.427.0 - ISC
|
8092
8098
|
*
|
8093
8099
|
* This source code is licensed under the ISC license.
|
8094
8100
|
* See the LICENSE file in the root directory of this source tree.
|
@@ -8096,7 +8102,7 @@ lucide-react/dist/esm/icons/dot.js:
|
|
8096
8102
|
|
8097
8103
|
lucide-react/dist/esm/lucide-react.js:
|
8098
8104
|
(**
|
8099
|
-
* @license lucide-react v0.
|
8105
|
+
* @license lucide-react v0.427.0 - ISC
|
8100
8106
|
*
|
8101
8107
|
* This source code is licensed under the ISC license.
|
8102
8108
|
* See the LICENSE file in the root directory of this source tree.
|
package/dist/blocks/index.mjs
CHANGED
@@ -17,7 +17,7 @@ import {
|
|
17
17
|
TabsList,
|
18
18
|
TabsTrigger,
|
19
19
|
Textarea
|
20
|
-
} from "../chunk-
|
20
|
+
} from "../chunk-QUC5EXTF.mjs";
|
21
21
|
import {
|
22
22
|
getHotkeyHandler
|
23
23
|
} from "../chunk-WL7C2A5D.mjs";
|
@@ -44,7 +44,7 @@ import {
|
|
44
44
|
VeryBadEmoji,
|
45
45
|
VeryGoodEmoji,
|
46
46
|
cn
|
47
|
-
} from "../chunk-
|
47
|
+
} from "../chunk-HJVL6X7I.mjs";
|
48
48
|
import "../chunk-2LUXOXAL.mjs";
|
49
49
|
|
50
50
|
// blocks/auth/AuthButtons.tsx
|
@@ -1195,6 +1195,7 @@ function Skeleton({
|
|
1195
1195
|
content,
|
1196
1196
|
animation = "pulse",
|
1197
1197
|
fade,
|
1198
|
+
as = "div",
|
1198
1199
|
...props
|
1199
1200
|
}) {
|
1200
1201
|
const animationStyles = {
|
@@ -1208,6 +1209,10 @@ function Skeleton({
|
|
1208
1209
|
right: "hawa-mask-fade-right",
|
1209
1210
|
left: "hawa-mask-fade-left "
|
1210
1211
|
};
|
1212
|
+
const styledAs = {
|
1213
|
+
div: "",
|
1214
|
+
input: "!h-[38px] !w-full"
|
1215
|
+
};
|
1211
1216
|
return /* @__PURE__ */ import_react27.default.createElement(
|
1212
1217
|
"div",
|
1213
1218
|
{
|
@@ -1215,6 +1220,7 @@ function Skeleton({
|
|
1215
1220
|
animationStyles[animation],
|
1216
1221
|
content && "hawa-flex hawa-flex-col hawa-items-center hawa-justify-center",
|
1217
1222
|
fade && fadeStyle[fade],
|
1223
|
+
styledAs[as],
|
1218
1224
|
className
|
1219
1225
|
),
|
1220
1226
|
...props
|
@@ -1,17 +1,17 @@
|
|
1
1
|
"use client";
|
2
2
|
import {
|
3
3
|
Input
|
4
|
-
} from "../../chunk-
|
4
|
+
} from "../../chunk-FTETN5UE.mjs";
|
5
5
|
import {
|
6
6
|
Chip,
|
7
7
|
ScrollArea
|
8
|
-
} from "../../chunk-
|
8
|
+
} from "../../chunk-U72MOMEK.mjs";
|
9
9
|
import {
|
10
10
|
Textarea
|
11
|
-
} from "../../chunk-
|
11
|
+
} from "../../chunk-EHJXQQDP.mjs";
|
12
12
|
import {
|
13
13
|
Select
|
14
|
-
} from "../../chunk-
|
14
|
+
} from "../../chunk-7O555VJR.mjs";
|
15
15
|
import {
|
16
16
|
Button,
|
17
17
|
Card,
|
@@ -21,7 +21,7 @@ import {
|
|
21
21
|
CardHeader,
|
22
22
|
CardTitle,
|
23
23
|
cn
|
24
|
-
} from "../../chunk-
|
24
|
+
} from "../../chunk-6UOJKVIA.mjs";
|
25
25
|
|
26
26
|
// blocks/misc/LegalTexts.tsx
|
27
27
|
import React10 from "react";
|
@@ -622,6 +622,7 @@ function Skeleton({
|
|
622
622
|
content,
|
623
623
|
animation = "pulse",
|
624
624
|
fade,
|
625
|
+
as = "div",
|
625
626
|
...props
|
626
627
|
}) {
|
627
628
|
const animationStyles = {
|
@@ -635,6 +636,10 @@ function Skeleton({
|
|
635
636
|
right: "hawa-mask-fade-right",
|
636
637
|
left: "hawa-mask-fade-left "
|
637
638
|
};
|
639
|
+
const styledAs = {
|
640
|
+
div: "",
|
641
|
+
input: "!h-[38px] !w-full"
|
642
|
+
};
|
638
643
|
return /* @__PURE__ */ import_react6.default.createElement(
|
639
644
|
"div",
|
640
645
|
{
|
@@ -642,6 +647,7 @@ function Skeleton({
|
|
642
647
|
animationStyles[animation],
|
643
648
|
content && "hawa-flex hawa-flex-col hawa-items-center hawa-justify-center",
|
644
649
|
fade && fadeStyle[fade],
|
650
|
+
styledAs[as],
|
645
651
|
className
|
646
652
|
),
|
647
653
|
...props
|
@@ -2,22 +2,22 @@
|
|
2
2
|
import {
|
3
3
|
Chip,
|
4
4
|
ScrollArea
|
5
|
-
} from "../../chunk-
|
5
|
+
} from "../../chunk-U72MOMEK.mjs";
|
6
6
|
import "../../chunk-47APBDKK.mjs";
|
7
7
|
import {
|
8
8
|
Radio
|
9
|
-
} from "../../chunk-
|
9
|
+
} from "../../chunk-R37QEYSB.mjs";
|
10
10
|
import {
|
11
11
|
CheckMark,
|
12
12
|
UncheckMark
|
13
|
-
} from "../../chunk-
|
13
|
+
} from "../../chunk-YXUHXKKK.mjs";
|
14
14
|
import {
|
15
15
|
Button,
|
16
16
|
Card,
|
17
17
|
Skeleton,
|
18
18
|
Tooltip,
|
19
19
|
cn
|
20
|
-
} from "../../chunk-
|
20
|
+
} from "../../chunk-6UOJKVIA.mjs";
|
21
21
|
|
22
22
|
// blocks/pricing/PricingPlans.tsx
|
23
23
|
import React8 from "react";
|
@@ -553,6 +553,7 @@ function Skeleton({
|
|
553
553
|
content,
|
554
554
|
animation = "pulse",
|
555
555
|
fade,
|
556
|
+
as = "div",
|
556
557
|
...props
|
557
558
|
}) {
|
558
559
|
const animationStyles = {
|
@@ -566,6 +567,10 @@ function Skeleton({
|
|
566
567
|
right: "hawa-mask-fade-right",
|
567
568
|
left: "hawa-mask-fade-left "
|
568
569
|
};
|
570
|
+
const styledAs = {
|
571
|
+
div: "",
|
572
|
+
input: "!h-[38px] !w-full"
|
573
|
+
};
|
569
574
|
return /* @__PURE__ */ React7.createElement(
|
570
575
|
"div",
|
571
576
|
{
|
@@ -573,6 +578,7 @@ function Skeleton({
|
|
573
578
|
animationStyles[animation],
|
574
579
|
content && "hawa-flex hawa-flex-col hawa-items-center hawa-justify-center",
|
575
580
|
fade && fadeStyle[fade],
|
581
|
+
styledAs[as],
|
576
582
|
className
|
577
583
|
),
|
578
584
|
...props
|