@dafaz-ui/react 2.2.0 → 2.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
 
2
- > @dafaz-ui/react@2.2.0 build
2
+ > @dafaz-ui/react@2.2.1 build
3
3
  > tsup src/index.tsx --format esm,cjs --dts --external react
4
4
 
5
5
  CLI Building entry: src/index.tsx
@@ -10,9 +10,9 @@
10
10
  CJS Build start
11
11
  ESM dist/index.mjs 9.44 KB
12
12
  ESM ⚡️ Build success in 33ms
13
- CJS dist/index.js 10.88 KB
14
- CJS ⚡️ Build success in 34ms
13
+ CJS dist/index.js 10.87 KB
14
+ CJS ⚡️ Build success in 33ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 2956ms
16
+ DTS ⚡️ Build success in 2981ms
17
17
  DTS dist/index.d.mts 81.10 KB
18
18
  DTS dist/index.d.ts 81.10 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @dafaz-ui/react
2
2
 
3
+ ## 2.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix TextInput shadow
8
+
3
9
  ## 2.2.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.js CHANGED
@@ -400,7 +400,7 @@ var InputContainer = styled("div", {
400
400
  variants: {
401
401
  withShadow: {
402
402
  true: {
403
- boxShadow: "inset 0 2.5rem #444"
403
+ boxShadow: "inset 0 3rem #444"
404
404
  }
405
405
  }
406
406
  },
package/dist/index.mjs CHANGED
@@ -368,7 +368,7 @@ var InputContainer = styled("div", {
368
368
  variants: {
369
369
  withShadow: {
370
370
  true: {
371
- boxShadow: "inset 0 2.5rem #444"
371
+ boxShadow: "inset 0 3rem #444"
372
372
  }
373
373
  }
374
374
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dafaz-ui/react",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -24,7 +24,7 @@ export const InputContainer = styled('div', {
24
24
  variants: {
25
25
  withShadow: {
26
26
  true: {
27
- boxShadow: 'inset 0 2.5rem #444',
27
+ boxShadow: 'inset 0 3rem #444',
28
28
  },
29
29
  },
30
30
  },