@dronico/droni-kit 1.24.3 → 1.25.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.25.1](https://github.com/Droni-app/droni-kit/compare/v1.25.0...v1.25.1) (2026-09-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update dephs ([cf2d99c](https://github.com/Droni-app/droni-kit/commit/cf2d99c1c8dc791cd22c7b8abe7e1ff718acd1a7))
7
+
8
+ # [1.25.0](https://github.com/Droni-app/droni-kit/compare/v1.24.3...v1.25.0) (2026-09-16)
9
+
10
+
11
+ ### Features
12
+
13
+ * add DuiForm component with loading state, slots, and Nuxt compatibility ([97416a4](https://github.com/Droni-app/droni-kit/commit/97416a4efc80f8ef2d2765f3e0ab7e2b17366ecb))
14
+
1
15
  ## [1.24.3](https://github.com/Droni-app/droni-kit/compare/v1.24.2...v1.24.3) (2026-08-28)
2
16
 
3
17
 
package/README.md CHANGED
@@ -130,6 +130,29 @@ Selector desplegable con opciones personalizables.
130
130
  />
131
131
  ```
132
132
 
133
+ #### **DuiForm**
134
+ Contenedor de formulario con gestión de estado de carga/deshabilitado, slots para cabecera y acciones, y compatibilidad con Nuxt.
135
+ ```vue
136
+ <DuiForm :loading="isSubmitting" @submit="handleSubmit" @reset="handleReset">
137
+ <template #header>
138
+ <h2>Registro</h2>
139
+ </template>
140
+
141
+ <DuiLabel title="Nombre" required>
142
+ <DuiInput v-model="form.name" name="name" required />
143
+ </DuiLabel>
144
+
145
+ <DuiLabel title="Email" required>
146
+ <DuiInput v-model="form.email" name="email" type="email" required />
147
+ </DuiLabel>
148
+
149
+ <template #footer>
150
+ <DuiButton type="submit" color="primary">Enviar</DuiButton>
151
+ <DuiButton type="reset" variant="outline" color="neutral">Limpiar</DuiButton>
152
+ </template>
153
+ </DuiForm>
154
+ ```
155
+
133
156
  ## 🎨 Sistema de Design
134
157
 
135
158
  ### Variantes