@vritti/quantum-ui 0.1.20 → 0.1.22
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/Checkbox.js +1 -1
- package/dist/Form.d.ts +6 -1
- package/dist/Form.js +59 -1
- package/dist/Form.js.map +1 -1
- package/dist/OTPField.js +1 -1
- package/dist/PhoneField.js +2 -2
- package/dist/PhoneField.js.map +1 -1
- package/dist/TextArea.js +1 -1
- package/dist/TextField.js +2 -2
- package/dist/TextField.js.map +1 -1
- package/dist/ThemeToggle.js +15 -3
- package/dist/ThemeToggle.js.map +1 -1
- package/dist/assets/quantum-ui.css +181 -109
- package/dist/components/Form.js +1 -1
- package/dist/field.js +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +1 -1
- package/dist/shadcn/shadcnField.js +1 -1
- package/package.json +8 -8
package/dist/OTPField.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx, jsxs } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import React__default from 'react';
|
|
4
4
|
import { c as cn } from './utils.js';
|
|
5
|
-
import { F as Field,
|
|
5
|
+
import { F as Field, e as FieldLabel, a as FieldContent, b as FieldDescription, c as FieldError } from './field.js';
|
|
6
6
|
import { c as createLucideIcon } from './createLucideIcon.js';
|
|
7
7
|
|
|
8
8
|
/**
|
package/dist/PhoneField.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
2
|
import React__default, { useRef, useCallback, useMemo } from 'react';
|
|
3
|
+
import { F as Field, e as FieldLabel, a as FieldContent, b as FieldDescription, c as FieldError } from './field.js';
|
|
3
4
|
import { c as cn } from './utils.js';
|
|
4
|
-
import { F as Field, a as FieldLabel, h as FieldContent, b as FieldDescription, c as FieldError } from './field.js';
|
|
5
5
|
|
|
6
6
|
// This file is a workaround for a bug in web browsers' "native"
|
|
7
7
|
// ES6 importing system which is uncapable of importing "*.json" files.
|
|
@@ -10379,7 +10379,7 @@ const PhoneField = React__default.forwardRef(
|
|
|
10379
10379
|
className: cn(
|
|
10380
10380
|
"flex h-9 w-full rounded-md border border-input bg-transparent dark:bg-input/30 px-3 py-1 text-sm shadow-xs transition-[color,box-shadow]",
|
|
10381
10381
|
"placeholder:text-muted-foreground",
|
|
10382
|
-
"focus-within:outline-none focus-within:border-ring focus-within:ring-ring/50 focus-within:ring-[
|
|
10382
|
+
"focus-within:outline-none focus-within:border-ring focus-within:ring-ring/50 focus-within:ring-[1px]",
|
|
10383
10383
|
"disabled:cursor-not-allowed disabled:opacity-50",
|
|
10384
10384
|
hasError && "border-destructive focus-within:ring-destructive/20 dark:focus-within:ring-destructive/40",
|
|
10385
10385
|
className
|