@nextui-org/theme 2.3.0-beta.16 → 2.3.0-beta.17
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/chunk-6CPZ7K75.mjs +444 -0
- package/dist/{chunk-4QKM3RKK.mjs → chunk-LCMN7HGG.mjs} +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +436 -0
- package/dist/components/index.mjs +14 -10
- package/dist/components/input-otp.d.ts +603 -0
- package/dist/components/input-otp.js +518 -0
- package/dist/components/input-otp.mjs +13 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +436 -0
- package/dist/index.mjs +17 -13
- package/dist/plugin.mjs +3 -3
- package/dist/utilities/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/{chunk-KEHIJEFK.mjs → chunk-MA4DKK64.mjs} +0 -0
- package/dist/{chunk-KVYVTKEN.mjs → chunk-XZMJGJQX.mjs} +3 -3
package/dist/index.js
CHANGED
|
@@ -69,6 +69,7 @@ __export(src_exports, {
|
|
|
69
69
|
groupDataFocusVisibleClasses: () => groupDataFocusVisibleClasses,
|
|
70
70
|
image: () => image,
|
|
71
71
|
input: () => input,
|
|
72
|
+
inputOtp: () => inputOtp,
|
|
72
73
|
kbd: () => kbd,
|
|
73
74
|
lightLayout: () => lightLayout,
|
|
74
75
|
link: () => link,
|
|
@@ -3834,6 +3835,440 @@ var circularProgress = tv({
|
|
|
3834
3835
|
]
|
|
3835
3836
|
});
|
|
3836
3837
|
|
|
3838
|
+
// src/components/input-otp.ts
|
|
3839
|
+
var inputOtp = tv({
|
|
3840
|
+
slots: {
|
|
3841
|
+
base: ["relative", "flex", "flex-col", "w-fit"],
|
|
3842
|
+
wrapper: ["group", "flex items-center", "has-[:disabled]:opacity-60"],
|
|
3843
|
+
input: [
|
|
3844
|
+
"absolute",
|
|
3845
|
+
"inset-0",
|
|
3846
|
+
"border-none",
|
|
3847
|
+
"outline-none",
|
|
3848
|
+
"bg-transparent",
|
|
3849
|
+
"text-transparent"
|
|
3850
|
+
],
|
|
3851
|
+
segmentWrapper: ["inline-flex", "gap-x-1", "py-2"],
|
|
3852
|
+
segment: [
|
|
3853
|
+
"h-10",
|
|
3854
|
+
"w-10",
|
|
3855
|
+
"font-semibold",
|
|
3856
|
+
"flex",
|
|
3857
|
+
"justify-center",
|
|
3858
|
+
"items-center",
|
|
3859
|
+
"border-default-200",
|
|
3860
|
+
"data-[active=true]:border-default-400",
|
|
3861
|
+
"data-[active=true]:scale-110",
|
|
3862
|
+
"shadow-sm",
|
|
3863
|
+
"hover:bg-danger",
|
|
3864
|
+
...dataFocusVisibleClasses
|
|
3865
|
+
],
|
|
3866
|
+
passwordChar: ["w-1", "h-1", "bg-default-800", "rounded-full"],
|
|
3867
|
+
caret: [
|
|
3868
|
+
"animate-[appearance-in_1s_infinite]",
|
|
3869
|
+
"font-extralight",
|
|
3870
|
+
"h-full",
|
|
3871
|
+
"w-full",
|
|
3872
|
+
"flex",
|
|
3873
|
+
"justify-center",
|
|
3874
|
+
"items-center",
|
|
3875
|
+
"text-2xl",
|
|
3876
|
+
"h-[50%]",
|
|
3877
|
+
"w-px",
|
|
3878
|
+
"bg-foreground"
|
|
3879
|
+
],
|
|
3880
|
+
helperWrapper: ["text-tiny", "mt-0.5", "font-extralight", ""],
|
|
3881
|
+
errorMessage: ["text-tiny text-danger w-full"],
|
|
3882
|
+
description: ["text-tiny text-foreground-400"]
|
|
3883
|
+
},
|
|
3884
|
+
variants: {
|
|
3885
|
+
variant: {
|
|
3886
|
+
flat: {
|
|
3887
|
+
segment: ["border-transparent", "bg-default-100", "data-[active=true]:bg-default-200"]
|
|
3888
|
+
},
|
|
3889
|
+
faded: {
|
|
3890
|
+
segment: ["bg-default-100", "border-medium"]
|
|
3891
|
+
},
|
|
3892
|
+
bordered: {
|
|
3893
|
+
segment: ["border-medium"]
|
|
3894
|
+
},
|
|
3895
|
+
underlined: {
|
|
3896
|
+
segment: [
|
|
3897
|
+
"shadow-none",
|
|
3898
|
+
"relative",
|
|
3899
|
+
"box-border",
|
|
3900
|
+
"!rounded-none",
|
|
3901
|
+
"border-b-medium",
|
|
3902
|
+
"shadow-[0_1px_0px_0_rgba(0,0,0,0.05)]",
|
|
3903
|
+
"border-default-200",
|
|
3904
|
+
"after:content-['']",
|
|
3905
|
+
"after:w-0",
|
|
3906
|
+
"after:origin-center",
|
|
3907
|
+
"after:bg-default-foreground",
|
|
3908
|
+
"after:absolute",
|
|
3909
|
+
"after:left-1/2",
|
|
3910
|
+
"after:-translate-x-1/2",
|
|
3911
|
+
"after:-bottom-[2px]",
|
|
3912
|
+
"after:h-[2px]",
|
|
3913
|
+
"data-[active=true]:border-default-300",
|
|
3914
|
+
"data-[active=true]:after:w-full",
|
|
3915
|
+
"data-[active=true]:scale-100"
|
|
3916
|
+
]
|
|
3917
|
+
}
|
|
3918
|
+
},
|
|
3919
|
+
isDisabled: {
|
|
3920
|
+
true: {
|
|
3921
|
+
segment: "opacity-disabled pointer-events-none",
|
|
3922
|
+
input: "pointer-events-none"
|
|
3923
|
+
}
|
|
3924
|
+
},
|
|
3925
|
+
isInvalid: {
|
|
3926
|
+
true: {}
|
|
3927
|
+
},
|
|
3928
|
+
isReadOnly: {
|
|
3929
|
+
true: {
|
|
3930
|
+
caret: "bg-transparent",
|
|
3931
|
+
segment: "transition-none data-[active=true]:scale-100"
|
|
3932
|
+
}
|
|
3933
|
+
},
|
|
3934
|
+
fullWidth: {
|
|
3935
|
+
true: {
|
|
3936
|
+
base: "w-full"
|
|
3937
|
+
}
|
|
3938
|
+
},
|
|
3939
|
+
radius: {
|
|
3940
|
+
none: {
|
|
3941
|
+
segment: "rounded-none"
|
|
3942
|
+
},
|
|
3943
|
+
sm: {
|
|
3944
|
+
segment: "rounded-sm"
|
|
3945
|
+
},
|
|
3946
|
+
md: {
|
|
3947
|
+
segment: "rounded-md"
|
|
3948
|
+
},
|
|
3949
|
+
lg: {
|
|
3950
|
+
segment: "rounded-lg"
|
|
3951
|
+
},
|
|
3952
|
+
full: {
|
|
3953
|
+
segment: "rounded-full"
|
|
3954
|
+
}
|
|
3955
|
+
},
|
|
3956
|
+
color: {
|
|
3957
|
+
default: {},
|
|
3958
|
+
primary: {},
|
|
3959
|
+
secondary: {},
|
|
3960
|
+
success: {},
|
|
3961
|
+
warning: {},
|
|
3962
|
+
danger: {}
|
|
3963
|
+
},
|
|
3964
|
+
size: {
|
|
3965
|
+
sm: {
|
|
3966
|
+
segment: "h-8 min-h-8 w-8 min-w-8 text-small"
|
|
3967
|
+
},
|
|
3968
|
+
md: {
|
|
3969
|
+
segment: "h-10 min-h-10 w-10 min-w-10 text-small"
|
|
3970
|
+
},
|
|
3971
|
+
lg: {
|
|
3972
|
+
segment: "h-12 min-h-12 w-12 min-w-12 text-medium"
|
|
3973
|
+
}
|
|
3974
|
+
},
|
|
3975
|
+
disableAnimation: {
|
|
3976
|
+
true: {
|
|
3977
|
+
segment: "transition-none",
|
|
3978
|
+
caret: "animate-none"
|
|
3979
|
+
},
|
|
3980
|
+
false: {
|
|
3981
|
+
segment: "transition duration-150"
|
|
3982
|
+
}
|
|
3983
|
+
}
|
|
3984
|
+
},
|
|
3985
|
+
defaultVariants: {
|
|
3986
|
+
variant: "flat",
|
|
3987
|
+
color: "default",
|
|
3988
|
+
radius: "md",
|
|
3989
|
+
size: "md"
|
|
3990
|
+
},
|
|
3991
|
+
compoundVariants: [
|
|
3992
|
+
{
|
|
3993
|
+
variant: "flat",
|
|
3994
|
+
color: "default",
|
|
3995
|
+
class: {
|
|
3996
|
+
segment: ["bg-default-100", "data-[active=true]:bg-default-200"]
|
|
3997
|
+
}
|
|
3998
|
+
},
|
|
3999
|
+
{
|
|
4000
|
+
variant: "flat",
|
|
4001
|
+
color: "primary",
|
|
4002
|
+
class: {
|
|
4003
|
+
segment: ["bg-primary-100", "data-[active=true]:bg-primary-200", "text-primary"],
|
|
4004
|
+
caret: ["bg-primary"],
|
|
4005
|
+
passwordChar: ["bg-primary"]
|
|
4006
|
+
}
|
|
4007
|
+
},
|
|
4008
|
+
{
|
|
4009
|
+
variant: "flat",
|
|
4010
|
+
color: "secondary",
|
|
4011
|
+
class: {
|
|
4012
|
+
segment: ["bg-secondary-100", "data-[active=true]:bg-secondary-200", "text-secondary"],
|
|
4013
|
+
caret: ["bg-secondary"],
|
|
4014
|
+
passwordChar: ["bg-secondary"]
|
|
4015
|
+
}
|
|
4016
|
+
},
|
|
4017
|
+
{
|
|
4018
|
+
variant: "flat",
|
|
4019
|
+
color: "success",
|
|
4020
|
+
class: {
|
|
4021
|
+
segment: ["bg-success-100", "data-[active=true]:bg-success-200", "text-success"],
|
|
4022
|
+
caret: ["bg-success"],
|
|
4023
|
+
passwordChar: ["bg-success"]
|
|
4024
|
+
}
|
|
4025
|
+
},
|
|
4026
|
+
{
|
|
4027
|
+
variant: "flat",
|
|
4028
|
+
color: "warning",
|
|
4029
|
+
class: {
|
|
4030
|
+
segment: ["bg-warning-100", "data-[active=true]:bg-warning-200", "text-warning"],
|
|
4031
|
+
caret: ["bg-warning"],
|
|
4032
|
+
passwordChar: ["bg-warning"]
|
|
4033
|
+
}
|
|
4034
|
+
},
|
|
4035
|
+
{
|
|
4036
|
+
variant: "flat",
|
|
4037
|
+
color: "danger",
|
|
4038
|
+
class: {
|
|
4039
|
+
segment: ["bg-danger-100", "data-[active=true]:bg-danger-200", "text-danger"],
|
|
4040
|
+
caret: ["bg-danger"],
|
|
4041
|
+
passwordChar: ["bg-danger"]
|
|
4042
|
+
}
|
|
4043
|
+
},
|
|
4044
|
+
{
|
|
4045
|
+
variant: "faded",
|
|
4046
|
+
color: "default",
|
|
4047
|
+
class: {
|
|
4048
|
+
segment: ""
|
|
4049
|
+
}
|
|
4050
|
+
},
|
|
4051
|
+
{
|
|
4052
|
+
variant: "faded",
|
|
4053
|
+
color: "primary",
|
|
4054
|
+
class: {
|
|
4055
|
+
segment: [
|
|
4056
|
+
"bg-primary-100",
|
|
4057
|
+
"text-primary",
|
|
4058
|
+
"border-primary-200",
|
|
4059
|
+
"data-[active=true]:border-primary"
|
|
4060
|
+
],
|
|
4061
|
+
caret: ["bg-primary"],
|
|
4062
|
+
passwordChar: ["bg-primary"]
|
|
4063
|
+
}
|
|
4064
|
+
},
|
|
4065
|
+
{
|
|
4066
|
+
variant: "faded",
|
|
4067
|
+
color: "secondary",
|
|
4068
|
+
class: {
|
|
4069
|
+
segment: [
|
|
4070
|
+
"bg-secondary-100",
|
|
4071
|
+
"text-secondary",
|
|
4072
|
+
"border-secondary-200",
|
|
4073
|
+
"data-[active=true]:border-secondary"
|
|
4074
|
+
],
|
|
4075
|
+
caret: ["bg-secondary"],
|
|
4076
|
+
passwordChar: ["bg-secondary"]
|
|
4077
|
+
}
|
|
4078
|
+
},
|
|
4079
|
+
{
|
|
4080
|
+
variant: "faded",
|
|
4081
|
+
color: "success",
|
|
4082
|
+
class: {
|
|
4083
|
+
segment: [
|
|
4084
|
+
"bg-success-100",
|
|
4085
|
+
"text-success",
|
|
4086
|
+
"border-success-200",
|
|
4087
|
+
"data-[active=true]:border-success"
|
|
4088
|
+
],
|
|
4089
|
+
caret: ["bg-success"],
|
|
4090
|
+
passwordChar: ["bg-success"]
|
|
4091
|
+
}
|
|
4092
|
+
},
|
|
4093
|
+
{
|
|
4094
|
+
variant: "faded",
|
|
4095
|
+
color: "warning",
|
|
4096
|
+
class: {
|
|
4097
|
+
segment: [
|
|
4098
|
+
"bg-warning-100",
|
|
4099
|
+
"text-warning",
|
|
4100
|
+
"border-warning-200",
|
|
4101
|
+
"data-[active=true]:border-warning"
|
|
4102
|
+
],
|
|
4103
|
+
caret: ["bg-warning"],
|
|
4104
|
+
passwordChar: ["bg-warning"]
|
|
4105
|
+
}
|
|
4106
|
+
},
|
|
4107
|
+
{
|
|
4108
|
+
variant: "faded",
|
|
4109
|
+
color: "danger",
|
|
4110
|
+
class: {
|
|
4111
|
+
segment: [
|
|
4112
|
+
"bg-danger-100",
|
|
4113
|
+
"text-danger",
|
|
4114
|
+
"border-danger-200",
|
|
4115
|
+
"data-[active=true]:border-danger"
|
|
4116
|
+
],
|
|
4117
|
+
caret: ["bg-danger"],
|
|
4118
|
+
passwordChar: ["bg-danger"]
|
|
4119
|
+
}
|
|
4120
|
+
},
|
|
4121
|
+
{
|
|
4122
|
+
variant: "bordered",
|
|
4123
|
+
color: "default",
|
|
4124
|
+
class: {
|
|
4125
|
+
segment: "data-[has-value=true]:text-default-foreground data-[active=true]:border-foreground"
|
|
4126
|
+
}
|
|
4127
|
+
},
|
|
4128
|
+
{
|
|
4129
|
+
variant: "bordered",
|
|
4130
|
+
color: "primary",
|
|
4131
|
+
class: {
|
|
4132
|
+
segment: ["border-primary-200", "text-primary", "data-[active=true]:border-primary"],
|
|
4133
|
+
caret: ["bg-primary"],
|
|
4134
|
+
passwordChar: ["bg-primary"]
|
|
4135
|
+
}
|
|
4136
|
+
},
|
|
4137
|
+
{
|
|
4138
|
+
variant: "bordered",
|
|
4139
|
+
color: "secondary",
|
|
4140
|
+
class: {
|
|
4141
|
+
segment: ["border-secondary-200", "text-secondary", "data-[active=true]:border-secondary"],
|
|
4142
|
+
caret: ["bg-secondary"],
|
|
4143
|
+
passwordChar: ["bg-secondary"]
|
|
4144
|
+
}
|
|
4145
|
+
},
|
|
4146
|
+
{
|
|
4147
|
+
variant: "bordered",
|
|
4148
|
+
color: "success",
|
|
4149
|
+
class: {
|
|
4150
|
+
segment: ["border-success-200", "text-success", "data-[active=true]:border-success"],
|
|
4151
|
+
caret: ["bg-success"],
|
|
4152
|
+
passwordChar: ["bg-success"]
|
|
4153
|
+
}
|
|
4154
|
+
},
|
|
4155
|
+
{
|
|
4156
|
+
variant: "bordered",
|
|
4157
|
+
color: "warning",
|
|
4158
|
+
class: {
|
|
4159
|
+
segment: ["border-warning-200", "text-warning", "data-[active=true]:border-warning"],
|
|
4160
|
+
caret: ["bg-warning"],
|
|
4161
|
+
passwordChar: ["bg-warning"]
|
|
4162
|
+
}
|
|
4163
|
+
},
|
|
4164
|
+
{
|
|
4165
|
+
variant: "bordered",
|
|
4166
|
+
color: "danger",
|
|
4167
|
+
class: {
|
|
4168
|
+
segment: ["border-danger-200", "text-danger", "data-[active=true]:border-danger"],
|
|
4169
|
+
caret: ["bg-danger"],
|
|
4170
|
+
passwordChar: ["bg-danger"]
|
|
4171
|
+
}
|
|
4172
|
+
},
|
|
4173
|
+
{
|
|
4174
|
+
variant: "underlined",
|
|
4175
|
+
color: "default",
|
|
4176
|
+
class: {
|
|
4177
|
+
segment: "data-[has-value=true]:text-default-foreground after:bg-foreground"
|
|
4178
|
+
}
|
|
4179
|
+
},
|
|
4180
|
+
{
|
|
4181
|
+
variant: "underlined",
|
|
4182
|
+
color: "primary",
|
|
4183
|
+
class: {
|
|
4184
|
+
segment: ["border-primary-200", "text-primary", "after:bg-primary"],
|
|
4185
|
+
caret: ["bg-primary"],
|
|
4186
|
+
passwordChar: ["bg-primary"]
|
|
4187
|
+
}
|
|
4188
|
+
},
|
|
4189
|
+
{
|
|
4190
|
+
variant: "underlined",
|
|
4191
|
+
color: "secondary",
|
|
4192
|
+
class: {
|
|
4193
|
+
segment: ["border-secondary-200", "text-secondary", "after:bg-secondary"],
|
|
4194
|
+
caret: ["bg-secondary"],
|
|
4195
|
+
passwordChar: ["bg-secondary"]
|
|
4196
|
+
}
|
|
4197
|
+
},
|
|
4198
|
+
{
|
|
4199
|
+
variant: "underlined",
|
|
4200
|
+
color: "success",
|
|
4201
|
+
class: {
|
|
4202
|
+
segment: ["border-success-200", "text-success", "after:bg-success"],
|
|
4203
|
+
caret: ["bg-success"],
|
|
4204
|
+
passwordChar: ["bg-success"]
|
|
4205
|
+
}
|
|
4206
|
+
},
|
|
4207
|
+
{
|
|
4208
|
+
variant: "underlined",
|
|
4209
|
+
color: "warning",
|
|
4210
|
+
class: {
|
|
4211
|
+
segment: ["border-warning-200", "text-warning", "after:bg-warning"],
|
|
4212
|
+
caret: ["bg-warning"],
|
|
4213
|
+
passwordChar: ["bg-warning"]
|
|
4214
|
+
}
|
|
4215
|
+
},
|
|
4216
|
+
{
|
|
4217
|
+
variant: "underlined",
|
|
4218
|
+
color: "danger",
|
|
4219
|
+
class: {
|
|
4220
|
+
segment: ["border-danger-200", "text-danger", "after:bg-danger"],
|
|
4221
|
+
caret: ["bg-danger"],
|
|
4222
|
+
passwordChar: ["bg-danger"]
|
|
4223
|
+
}
|
|
4224
|
+
},
|
|
4225
|
+
{
|
|
4226
|
+
variant: "flat",
|
|
4227
|
+
isInvalid: true,
|
|
4228
|
+
class: {
|
|
4229
|
+
segment: ["bg-danger-50", "data-[active=true]:bg-danger-100", "text-danger"],
|
|
4230
|
+
caret: ["bg-danger"]
|
|
4231
|
+
}
|
|
4232
|
+
},
|
|
4233
|
+
{
|
|
4234
|
+
variant: "faded",
|
|
4235
|
+
isInvalid: true,
|
|
4236
|
+
class: {
|
|
4237
|
+
segment: [
|
|
4238
|
+
"bg-danger-50",
|
|
4239
|
+
"text-danger",
|
|
4240
|
+
"border-danger-200",
|
|
4241
|
+
"data-[active=true]:border-danger-400"
|
|
4242
|
+
],
|
|
4243
|
+
caret: ["bg-danger"]
|
|
4244
|
+
}
|
|
4245
|
+
},
|
|
4246
|
+
{
|
|
4247
|
+
variant: "bordered",
|
|
4248
|
+
isInvalid: true,
|
|
4249
|
+
class: {
|
|
4250
|
+
segment: ["border-danger-200", "text-danger", "data-[active=true]:border-danger-400"],
|
|
4251
|
+
caret: ["bg-danger"]
|
|
4252
|
+
}
|
|
4253
|
+
},
|
|
4254
|
+
{
|
|
4255
|
+
variant: "underlined",
|
|
4256
|
+
isInvalid: true,
|
|
4257
|
+
class: {
|
|
4258
|
+
segment: ["border-danger-200", "text-danger", "data-[active=true]:after:bg-danger-400"],
|
|
4259
|
+
caret: ["bg-danger"]
|
|
4260
|
+
}
|
|
4261
|
+
},
|
|
4262
|
+
{
|
|
4263
|
+
disableAnimation: false,
|
|
4264
|
+
variant: "underlined",
|
|
4265
|
+
class: {
|
|
4266
|
+
segment: "after:transition-width motion-reduce:after:transition-none"
|
|
4267
|
+
}
|
|
4268
|
+
}
|
|
4269
|
+
]
|
|
4270
|
+
});
|
|
4271
|
+
|
|
3837
4272
|
// src/components/input.ts
|
|
3838
4273
|
var input = tv({
|
|
3839
4274
|
slots: {
|
|
@@ -10073,6 +10508,7 @@ var nextui = (config = {}) => {
|
|
|
10073
10508
|
groupDataFocusVisibleClasses,
|
|
10074
10509
|
image,
|
|
10075
10510
|
input,
|
|
10511
|
+
inputOtp,
|
|
10076
10512
|
kbd,
|
|
10077
10513
|
lightLayout,
|
|
10078
10514
|
link,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import "./chunk-
|
|
1
|
+
import "./chunk-MA4DKK64.mjs";
|
|
2
|
+
import {
|
|
3
|
+
spinner
|
|
4
|
+
} from "./chunk-DBPAK7QN.mjs";
|
|
2
5
|
import {
|
|
3
6
|
table
|
|
4
7
|
} from "./chunk-2ODFPLXN.mjs";
|
|
@@ -11,6 +14,10 @@ import {
|
|
|
11
14
|
import {
|
|
12
15
|
user
|
|
13
16
|
} from "./chunk-GMZHMFEU.mjs";
|
|
17
|
+
import {
|
|
18
|
+
circularProgress,
|
|
19
|
+
progress
|
|
20
|
+
} from "./chunk-6KWI4IHE.mjs";
|
|
14
21
|
import {
|
|
15
22
|
radio,
|
|
16
23
|
radioGroup
|
|
@@ -34,8 +41,8 @@ import {
|
|
|
34
41
|
spacer
|
|
35
42
|
} from "./chunk-AKXXHKTO.mjs";
|
|
36
43
|
import {
|
|
37
|
-
|
|
38
|
-
} from "./chunk-
|
|
44
|
+
kbd
|
|
45
|
+
} from "./chunk-VX7HAPUO.mjs";
|
|
39
46
|
import {
|
|
40
47
|
link,
|
|
41
48
|
linkAnchorClasses
|
|
@@ -58,10 +65,6 @@ import {
|
|
|
58
65
|
import {
|
|
59
66
|
popover
|
|
60
67
|
} from "./chunk-HHK47K4W.mjs";
|
|
61
|
-
import {
|
|
62
|
-
circularProgress,
|
|
63
|
-
progress
|
|
64
|
-
} from "./chunk-6KWI4IHE.mjs";
|
|
65
68
|
import {
|
|
66
69
|
divider
|
|
67
70
|
} from "./chunk-AXSF7SRE.mjs";
|
|
@@ -80,12 +83,12 @@ import {
|
|
|
80
83
|
import {
|
|
81
84
|
image
|
|
82
85
|
} from "./chunk-TOQXZATI.mjs";
|
|
86
|
+
import {
|
|
87
|
+
inputOtp
|
|
88
|
+
} from "./chunk-6CPZ7K75.mjs";
|
|
83
89
|
import {
|
|
84
90
|
input
|
|
85
91
|
} from "./chunk-MXL6JCUG.mjs";
|
|
86
|
-
import {
|
|
87
|
-
kbd
|
|
88
|
-
} from "./chunk-VX7HAPUO.mjs";
|
|
89
92
|
import {
|
|
90
93
|
button,
|
|
91
94
|
buttonGroup
|
|
@@ -153,12 +156,12 @@ import {
|
|
|
153
156
|
} from "./chunk-GIXI35A3.mjs";
|
|
154
157
|
import {
|
|
155
158
|
nextui
|
|
156
|
-
} from "./chunk-
|
|
159
|
+
} from "./chunk-LCMN7HGG.mjs";
|
|
157
160
|
import "./chunk-D2XMP2NC.mjs";
|
|
158
|
-
import "./chunk-
|
|
161
|
+
import "./chunk-XZMJGJQX.mjs";
|
|
162
|
+
import "./chunk-WN6AL2BX.mjs";
|
|
159
163
|
import "./chunk-W5UU3F46.mjs";
|
|
160
164
|
import "./chunk-4Z22WXZX.mjs";
|
|
161
|
-
import "./chunk-WN6AL2BX.mjs";
|
|
162
165
|
import {
|
|
163
166
|
absoluteFullClasses,
|
|
164
167
|
baseStyles,
|
|
@@ -240,6 +243,7 @@ export {
|
|
|
240
243
|
groupDataFocusVisibleClasses,
|
|
241
244
|
image,
|
|
242
245
|
input,
|
|
246
|
+
inputOtp,
|
|
243
247
|
kbd,
|
|
244
248
|
lightLayout,
|
|
245
249
|
link,
|
package/dist/plugin.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
nextui
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-LCMN7HGG.mjs";
|
|
4
4
|
import "./chunk-D2XMP2NC.mjs";
|
|
5
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-XZMJGJQX.mjs";
|
|
6
|
+
import "./chunk-WN6AL2BX.mjs";
|
|
6
7
|
import "./chunk-W5UU3F46.mjs";
|
|
7
8
|
import "./chunk-4Z22WXZX.mjs";
|
|
8
|
-
import "./chunk-WN6AL2BX.mjs";
|
|
9
9
|
import "./chunk-XHQUSKIE.mjs";
|
|
10
10
|
import "./chunk-WQEDQHKX.mjs";
|
|
11
11
|
import "./chunk-QZTWGJ72.mjs";
|
package/dist/utilities/index.mjs
CHANGED
package/package.json
CHANGED
|
File without changes
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import {
|
|
2
|
+
transition_default
|
|
3
|
+
} from "./chunk-WN6AL2BX.mjs";
|
|
1
4
|
import {
|
|
2
5
|
custom_default
|
|
3
6
|
} from "./chunk-W5UU3F46.mjs";
|
|
4
7
|
import {
|
|
5
8
|
scrollbar_hide_default
|
|
6
9
|
} from "./chunk-4Z22WXZX.mjs";
|
|
7
|
-
import {
|
|
8
|
-
transition_default
|
|
9
|
-
} from "./chunk-WN6AL2BX.mjs";
|
|
10
10
|
|
|
11
11
|
// src/utilities/index.ts
|
|
12
12
|
var utilities = {
|