@onpe/ui 1.0.21 → 1.0.23

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/dist/lib.js CHANGED
@@ -1,5 +1,3 @@
1
- 'use strict';
2
-
3
1
  /******************************************************************************
4
2
  Copyright (c) Microsoft Corporation.
5
3
 
@@ -174,7 +172,5 @@ var StorageManager = /** @class */ (function () {
174
172
  return StorageManager;
175
173
  }());
176
174
 
177
- exports.APIClient = APIClient;
178
- exports.StorageManager = StorageManager;
179
- exports.apiClient = apiClient;
175
+ export { APIClient, StorageManager, apiClient };
180
176
  //# sourceMappingURL=lib.js.map
package/dist/utils.js CHANGED
@@ -1,5 +1,3 @@
1
- 'use strict';
2
-
3
1
  /**
4
2
  * Formatea una fecha según el formato especificado
5
3
  * @param date - Fecha a formatear
@@ -43,6 +41,5 @@ function validateEmail(email) {
43
41
  return emailRegex.test(email);
44
42
  }
45
43
 
46
- exports.formatDate = formatDate;
47
- exports.validateEmail = validateEmail;
44
+ export { formatDate, validateEmail };
48
45
  //# sourceMappingURL=utils.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onpe/ui",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "type": "module",
5
5
  "description": "Librería completa de UI para ONPE - Componentes, Hooks, Utils y Librerías",
6
6
  "main": "dist/index.js",