@dafaz-ui/react 4.0.1 → 4.0.2

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @dafaz-ui/react@4.0.1 build
2
+ > @dafaz-ui/react@4.0.2 build
3
3
  > tsup src/index.tsx --format esm,cjs --dts --external react
4
4
 
5
5
  CLI Building entry: src/index.tsx
@@ -9,10 +9,10 @@
9
9
  ESM Build start
10
10
  CJS Build start
11
11
  ESM dist/index.mjs 19.39 KB
12
- ESM ⚡️ Build success in 42ms
12
+ ESM ⚡️ Build success in 38ms
13
13
  CJS dist/index.js 21.90 KB
14
- CJS ⚡️ Build success in 43ms
14
+ CJS ⚡️ Build success in 38ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 4470ms
17
- DTS dist/index.d.mts 103.69 KB
18
- DTS dist/index.d.ts 103.69 KB
16
+ DTS ⚡️ Build success in 4507ms
17
+ DTS dist/index.d.mts 103.71 KB
18
+ DTS dist/index.d.ts 103.71 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @dafaz-ui/react
2
2
 
3
+ ## 4.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - fix id InputText
8
+
3
9
  ## 4.0.1
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -1962,6 +1962,7 @@ interface TextInputProps extends ComponentProps<typeof InputUI> {
1962
1962
  withShadow?: boolean;
1963
1963
  placeholder?: string;
1964
1964
  type?: string;
1965
+ id: string;
1965
1966
  }
1966
1967
  declare const TextInput: react.ForwardRefExoticComponent<Omit<TextInputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
1967
1968
 
package/dist/index.d.ts CHANGED
@@ -1962,6 +1962,7 @@ interface TextInputProps extends ComponentProps<typeof InputUI> {
1962
1962
  withShadow?: boolean;
1963
1963
  placeholder?: string;
1964
1964
  type?: string;
1965
+ id: string;
1965
1966
  }
1966
1967
  declare const TextInput: react.ForwardRefExoticComponent<Omit<TextInputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
1967
1968
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dafaz-ui/react",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -13,6 +13,7 @@ export interface TextInputProps extends ComponentProps<typeof InputUI> {
13
13
  withShadow?: boolean
14
14
  placeholder?: string
15
15
  type?: string
16
+ id: string
16
17
  }
17
18
 
18
19
  export const TextInput = forwardRef<ElementRef<typeof InputUI>, TextInputProps>(