@versini/ui-textinput 6.3.1 → 6.4.1

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -15
  2. package/package.json +3 -4
package/dist/index.js CHANGED
@@ -1,35 +1,27 @@
1
1
  /*!
2
- @versini/ui-textinput v6.3.1
3
- © 2025 gizmette.com
2
+ @versini/ui-textinput v6.4.1
3
+ © 2026 gizmette.com
4
4
  */
5
5
 
6
6
  import { Fragment, jsx, jsxs } from "react/jsx-runtime";
7
7
  import { useResizeObserver } from "@versini/ui-hooks/use-resize-observer";
8
8
  import { useUniqueId } from "@versini/ui-hooks/use-unique-id";
9
9
  import { LiveRegion } from "@versini/ui-liveregion";
10
- import react, { useEffect, useLayoutEffect, useRef, useState } from "react";
10
+ import react , { useEffect, useLayoutEffect, useRef, useState } from "react";
11
11
  import clsx from "clsx";
12
12
  import { useMergeRefs } from "@versini/ui-hooks/use-merge-refs";
13
13
 
14
- ;// CONCATENATED MODULE: ./src/common/constants.ts
15
14
  const TEXT_INPUT_CLASSNAME = "av-text-input";
16
15
  const TEXT_INPUT_SIMPLE_CLASSNAME = "av-text-input-simple";
17
16
  const TEXT_INPUT_WRAPPER_CLASSNAME = "av-text-input-wrapper";
18
17
  const TEXT_INPUT_HELPER_TEXT_CLASSNAME = "av-text-input-helper-text";
19
18
 
20
- ;// CONCATENATED MODULE: external "react/jsx-runtime"
21
19
 
22
- ;// CONCATENATED MODULE: external "@versini/ui-hooks/use-resize-observer"
23
20
 
24
- ;// CONCATENATED MODULE: external "@versini/ui-hooks/use-unique-id"
25
21
 
26
- ;// CONCATENATED MODULE: external "@versini/ui-liveregion"
27
22
 
28
- ;// CONCATENATED MODULE: external "react"
29
23
 
30
- ;// CONCATENATED MODULE: external "clsx"
31
24
 
32
- ;// CONCATENATED MODULE: ./src/components/TextInput/utilities.ts
33
25
 
34
26
 
35
27
  const getTextInputColorClasses = ({ mode })=>{
@@ -158,7 +150,6 @@ const getTextInputClasses = ({ className, inputClassName, raw, disabled, noBorde
158
150
  };
159
151
  };
160
152
 
161
- ;// CONCATENATED MODULE: ./src/components/TextInput/TextInput.tsx
162
153
 
163
154
 
164
155
 
@@ -290,9 +281,7 @@ function TextInput({ id, name, label, error = false, raw = false, className, inp
290
281
  });
291
282
  }
292
283
 
293
- ;// CONCATENATED MODULE: external "@versini/ui-hooks/use-merge-refs"
294
284
 
295
- ;// CONCATENATED MODULE: ./src/components/TextInput/TextInputMask.tsx
296
285
 
297
286
 
298
287
 
@@ -428,7 +417,6 @@ function TextInputMask({ name, disabled, label, labelHidden, onMaskChange, onCha
428
417
  });
429
418
  }
430
419
 
431
- ;// CONCATENATED MODULE: ./src/components/index.ts
432
420
 
433
421
 
434
422
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versini/ui-textinput",
3
- "version": "6.3.1",
3
+ "version": "6.4.1",
4
4
  "license": "MIT",
5
5
  "author": "Arno Versini",
6
6
  "publishConfig": {
@@ -41,14 +41,13 @@
41
41
  "@versini/ui-types": "8.3.0"
42
42
  },
43
43
  "dependencies": {
44
- "@tailwindcss/typography": "0.5.19",
45
44
  "@versini/ui-hooks": "6.1.1",
46
- "@versini/ui-liveregion": "3.2.3",
45
+ "@versini/ui-liveregion": "3.2.4",
47
46
  "clsx": "2.1.1",
48
47
  "tailwindcss": "4.1.18"
49
48
  },
50
49
  "sideEffects": [
51
50
  "**/*.css"
52
51
  ],
53
- "gitHead": "fae53f4bd56440f7a72ed63b1a2a02b0c3b5a7e6"
52
+ "gitHead": "a7e1c5706d488dd4c81926c01c17552d60eb1b31"
54
53
  }