@fiscozen/input 1.0.0 → 1.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.
- package/CHANGELOG.md +18 -0
- package/coverage/FzCurrencyInput.vue.html +640 -0
- package/coverage/FzInput.vue.html +709 -0
- package/coverage/base.css +224 -0
- package/coverage/block-navigation.js +87 -0
- package/coverage/clover.xml +494 -0
- package/coverage/coverage-final.json +4 -0
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +146 -0
- package/coverage/prettify.css +1 -0
- package/coverage/prettify.js +2 -0
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +196 -0
- package/coverage/useInputStyle.ts.html +343 -0
- package/dist/input.js +2125 -1772
- package/dist/input.umd.cjs +6 -6
- package/dist/style.css +1 -1
- package/package.json +6 -5
- package/src/FzInput.vue +6 -13
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @fiscozen/input
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 26cd2bf: Use FzAlert to display the error message
|
|
8
|
+
- Updated dependencies [a42b3b4]
|
|
9
|
+
- @fiscozen/alert@1.1.0
|
|
10
|
+
|
|
11
|
+
## 1.0.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 1a2df8c: Move @fiscozen/icons from dependencies to peerDependencies. Consumers now need to install @fiscozen/icons explicitly. This decouples icon updates from component version bumps.
|
|
16
|
+
- Updated dependencies [1a2df8c]
|
|
17
|
+
- @fiscozen/button@1.0.2
|
|
18
|
+
|
|
3
19
|
## 1.0.0
|
|
4
20
|
|
|
5
21
|
### Major Changes
|
|
@@ -9,6 +25,7 @@
|
|
|
9
25
|
### Modifiche dalla versione 0.1.17
|
|
10
26
|
|
|
11
27
|
#### Nuove funzionalità
|
|
28
|
+
|
|
12
29
|
- Floating label con supporto per tutti i tipi di input (email, telefono, URL)
|
|
13
30
|
- Nuovo componente **FzCurrencyInput** con formattazione automatica, supporto per valori negativi, gestione min/max, e step con `forceStep`
|
|
14
31
|
- Secondo pulsante icona a destra (`rightIconLast`) con gestione accessibilità
|
|
@@ -17,6 +34,7 @@
|
|
|
17
34
|
- Slot `left-icon` per FzCurrencyInput
|
|
18
35
|
|
|
19
36
|
#### Miglioramenti
|
|
37
|
+
|
|
20
38
|
- Gestione migliorata degli eventi di tastiera: il tasto Enter ora consente il submit del form
|
|
21
39
|
- Gestione incolla migliorata per FzCurrencyInput con supporto formati italiani
|
|
22
40
|
- Prevenzione delle race condition negli aggiornamenti del model
|