@codeplex-sac/ui 0.0.15 → 0.0.17
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/index.cjs +80 -147
- package/index.d.ts +5 -12
- package/index.js +11090 -30076
- package/lib/alerta/alerta.d.ts +4 -4
- package/lib/anuncio/anuncio.d.ts +6 -5
- package/lib/ayuda-entrada/ayuda-entrada.d.ts +9 -3
- package/lib/boton/boton.d.ts +2 -1
- package/lib/cargador-archivos/cargador-archivos.d.ts +23 -0
- package/lib/encabezado-principal/encabezado-principal.d.ts +5 -4
- package/lib/esqueleto/esqueleto.d.ts +4 -3
- package/lib/etiqueta/etiqueta-inteligente.d.ts +4 -3
- package/lib/etiqueta/popup-requisitos.d.ts +2 -3
- package/lib/selector-color/selector-color.d.ts +14 -0
- package/lib/tarjeta-estadistica/tarjeta-estadistica.d.ts +13 -0
- package/package.json +1 -1
- package/lib/autocompletado/autocompletado.d.ts +0 -23
- package/lib/campo-numero/campo-numero.d.ts +0 -21
- package/lib/campo-texto/campo-texto.d.ts +0 -26
- package/lib/casilla/casilla.d.ts +0 -23
- package/lib/deslizador/deslizador.d.ts +0 -23
- package/lib/dialogo/dialogo.d.ts +0 -17
- package/lib/grupo-radio/grupo-radio.d.ts +0 -26
- package/lib/interruptor/interruptor.d.ts +0 -19
- package/lib/lista-transferencia/lista-transferencia.d.ts +0 -17
- package/lib/mensaje-emergente/mensaje-emergente.d.ts +0 -16
- package/lib/notificacion/notificacion.d.ts +0 -24
- package/lib/selector/selector.d.ts +0 -25
package/index.d.ts
CHANGED
|
@@ -10,21 +10,14 @@ export * from './lib/tarjeta/tarjeta';
|
|
|
10
10
|
export * from './lib/encabezado-principal/encabezado-principal';
|
|
11
11
|
export * from './lib/anuncio/anuncio';
|
|
12
12
|
export * from './lib/alerta/alerta';
|
|
13
|
-
export * from './lib/mensaje-emergente/mensaje-emergente';
|
|
14
|
-
export * from './lib/notificacion/notificacion';
|
|
15
13
|
export * from './lib/progreso/progreso';
|
|
16
14
|
export * from './lib/valoracion/valoracion';
|
|
17
15
|
export * from './lib/ayuda-entrada/ayuda-entrada';
|
|
18
16
|
export * from './lib/esqueleto/esqueleto';
|
|
19
|
-
export * from './lib/autocompletado/autocompletado';
|
|
20
17
|
export * from './lib/grupo-botones/grupo-botones';
|
|
21
|
-
export * from './lib/casilla/casilla';
|
|
22
|
-
export * from './lib/campo-numero/campo-numero';
|
|
23
|
-
export * from './lib/grupo-radio/grupo-radio';
|
|
24
|
-
export * from './lib/selector/selector';
|
|
25
|
-
export * from './lib/deslizador/deslizador';
|
|
26
|
-
export * from './lib/interruptor/interruptor';
|
|
27
|
-
export * from './lib/campo-texto/campo-texto';
|
|
28
|
-
export * from './lib/lista-transferencia/lista-transferencia';
|
|
29
|
-
export * from './lib/dialogo/dialogo';
|
|
30
18
|
export * from './lib/tour/tour';
|
|
19
|
+
export * from './lib/cargador-archivos/cargador-archivos';
|
|
20
|
+
export * from './lib/selector-color/selector-color';
|
|
21
|
+
export * from './lib/tarjeta-estadistica/tarjeta-estadistica';
|
|
22
|
+
export * from '../../inputs/src/index.ts';
|
|
23
|
+
export { CodeplexDialogo, type CodeplexDialogoProps, CodeplexDialogoTitulo, type CodeplexDialogoTituloProps, CodeplexDialogoContenido, type CodeplexDialogoContenidoProps, CodeplexDialogoTexto, type CodeplexDialogoTextoProps, CodeplexDialogoAcciones, type CodeplexDialogoAccionesProps, CodeplexNotificacion, CodeplexTostada, CodeplexToast, type CodeplexNotificacionProps, type CodeplexNotificacionVariante, type CodeplexNotificacionEstilo, type CodeplexNotificacionAnimacion, type CodeplexNotificacionPosicion, CodeplexMensajeEmergente, CodeplexTooltip, type CodeplexMensajeEmergenteProps, type CodeplexTooltipLado, type CodeplexTooltipColor, type CodeplexTooltipAnimacion, } from '../../feedback/src/index.ts';
|