@onpe/ui 1.0.49 → 1.0.51
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/cli.esm.js +45 -61
- package/dist/cli.js +45 -61
- package/dist/icons/Actions/IconCheck/IconCheck.d.ts +0 -1
- package/dist/icons/Actions/IconCheck/index.d.ts +0 -1
- package/dist/icons/Actions/IconClose/IconClose.d.ts +0 -1
- package/dist/icons/Actions/IconClose/index.d.ts +0 -1
- package/dist/icons/Actions/IconHome/IconHome.d.ts +0 -1
- package/dist/icons/Actions/IconHome/index.d.ts +1 -2
- package/dist/icons/Actions/IconSpinnerDesktop/IconSpinnerDesktop.d.ts +0 -1
- package/dist/icons/Actions/IconSpinnerDesktop/index.d.ts +0 -1
- package/dist/icons/Actions/IconSpinnerMobile/IconSpinnerMobile.d.ts +0 -1
- package/dist/icons/Actions/IconSpinnerMobile/index.d.ts +0 -1
- package/dist/icons/Actions/IconWarning/IconWarning.d.ts +0 -1
- package/dist/icons/Actions/IconWarning/index.d.ts +0 -1
- package/dist/icons/Browsers/IconChrome/IconChrome.d.ts +0 -1
- package/dist/icons/Browsers/IconChromeColor/IconChromeColor.d.ts +0 -1
- package/dist/icons/Browsers/IconChromeColor/index.d.ts +0 -1
- package/dist/icons/Browsers/IconEdge/IconEdge.d.ts +0 -1
- package/dist/icons/Browsers/IconEdgeColor/IconEdgeColor.d.ts +0 -1
- package/dist/icons/Browsers/IconEdgeColor/index.d.ts +0 -1
- package/dist/icons/Browsers/IconMozilla/IconMozilla.d.ts +0 -1
- package/dist/icons/Browsers/IconMozillaColor/IconMozillaColor.d.ts +0 -1
- package/dist/icons/Browsers/IconMozillaColor/index.d.ts +0 -1
- package/dist/icons/Browsers/IconSafari/IconSafari.d.ts +0 -1
- package/dist/icons/Browsers/IconSafariColor/IconSafariColor.d.ts +0 -1
- package/dist/icons/Browsers/IconSafariColor/index.d.ts +0 -1
- package/dist/icons/ONPE/ElectionsIcon/ElectionsIcon.d.ts +0 -1
- package/dist/icons/ONPE/IconElectionsGeneral/IconElectionsGeneral.d.ts +0 -1
- package/dist/icons/ONPE/IconVotoDigital/IconVotoDigital.d.ts +0 -1
- package/dist/icons/OperatingSystems/IconAndroid/IconAndroid.d.ts +0 -1
- package/dist/icons/OperatingSystems/IconAndroid/index.d.ts +0 -1
- package/dist/icons/OperatingSystems/IconApple/IconApple.d.ts +0 -1
- package/dist/icons/OperatingSystems/IconApple/index.d.ts +0 -1
- package/dist/icons/OperatingSystems/IconWindow/IconWindow.d.ts +0 -1
- package/dist/icons/OperatingSystems/IconWindow/index.d.ts +0 -1
- package/package.json +1 -1
package/dist/cli.esm.js
CHANGED
|
@@ -5865,19 +5865,23 @@ var COMPONENTS_URL = "https://raw.githubusercontent.com/ricardosv46/onpe-ui/main
|
|
|
5865
5865
|
var ICONS_URL = "https://raw.githubusercontent.com/ricardosv46/onpe-ui/main/src/icons";
|
|
5866
5866
|
function addComponent(componentName) {
|
|
5867
5867
|
return __awaiter(this, void 0, void 0, function () {
|
|
5868
|
-
var isIcon, componentPath, componentDependencies, availableComponents, availableIcons, componentFile, availableItems, dependencies, _i, dependencies_1, dependency, depError_1, downloadUrl, response, componentCode, personalizedCode, fileName, filePath, componentNamePascal, importPath,
|
|
5868
|
+
var isIcon, isModal, componentPath, componentDependencies, availableComponents, availableIcons, componentFile, availableItems, dependencies, _i, dependencies_1, dependency, depError_1, downloadUrl, response, componentCode, personalizedCode, fileName, filePath, componentNamePascal, importPath, dependencies, error_1;
|
|
5869
5869
|
return __generator(this, function (_a) {
|
|
5870
5870
|
switch (_a.label) {
|
|
5871
5871
|
case 0:
|
|
5872
5872
|
isIcon = componentName.toLowerCase().startsWith("icon-");
|
|
5873
|
-
componentName.toLowerCase().startsWith("modal");
|
|
5873
|
+
isModal = componentName.toLowerCase().startsWith("modal");
|
|
5874
5874
|
if (isIcon) {
|
|
5875
|
-
// Los iconos van en src/icons/
|
|
5876
|
-
componentPath = require$$1.join(process.cwd(), "src", "icons");
|
|
5875
|
+
// Los iconos van en src/components/onpe-icons/
|
|
5876
|
+
componentPath = require$$1.join(process.cwd(), "src", "components", "onpe-icons");
|
|
5877
|
+
}
|
|
5878
|
+
else if (isModal) {
|
|
5879
|
+
// Los modales van en src/components/onpe-modals/
|
|
5880
|
+
componentPath = require$$1.join(process.cwd(), "src", "components", "onpe-modals");
|
|
5877
5881
|
}
|
|
5878
5882
|
else {
|
|
5879
|
-
// Los componentes van en src/components/
|
|
5880
|
-
componentPath = require$$1.join(process.cwd(), "src", "components");
|
|
5883
|
+
// Los componentes básicos van en src/components/onpe-ui/
|
|
5884
|
+
componentPath = require$$1.join(process.cwd(), "src", "components", "onpe-ui");
|
|
5881
5885
|
}
|
|
5882
5886
|
// Crear directorio si no existe
|
|
5883
5887
|
return [4 /*yield*/, lib.ensureDir(componentPath)];
|
|
@@ -5979,23 +5983,16 @@ function addComponent(componentName) {
|
|
|
5979
5983
|
componentNamePascal = convertToPascalCase(componentName);
|
|
5980
5984
|
importPath = void 0;
|
|
5981
5985
|
if (isIcon) {
|
|
5982
|
-
|
|
5983
|
-
|
|
5984
|
-
: componentName.toLowerCase().includes("android") || componentName.toLowerCase().includes("apple") || componentName.toLowerCase().includes("window")
|
|
5985
|
-
? "OperatingSystems"
|
|
5986
|
-
: "Actions";
|
|
5987
|
-
importPath = "./icons/".concat(iconType, "/").concat(componentNamePascal);
|
|
5986
|
+
// Los iconos van en onpe-icons
|
|
5987
|
+
importPath = "../onpe-icons/".concat(componentNamePascal);
|
|
5988
5988
|
}
|
|
5989
5989
|
else {
|
|
5990
|
-
//
|
|
5991
|
-
if (componentName.toLowerCase().includes("modal
|
|
5992
|
-
importPath = "
|
|
5993
|
-
}
|
|
5994
|
-
else if (componentName.toLowerCase().includes("modal-browser") || componentName.toLowerCase().includes("modal-system")) {
|
|
5995
|
-
importPath = "./components/ErrorHandling/".concat(componentNamePascal);
|
|
5990
|
+
// Los componentes van en onpe-modals o onpe-ui
|
|
5991
|
+
if (componentName.toLowerCase().includes("modal")) {
|
|
5992
|
+
importPath = "../onpe-modals/".concat(componentNamePascal);
|
|
5996
5993
|
}
|
|
5997
5994
|
else {
|
|
5998
|
-
importPath = "
|
|
5995
|
+
importPath = "../onpe-ui/".concat(componentNamePascal);
|
|
5999
5996
|
}
|
|
6000
5997
|
}
|
|
6001
5998
|
console.log(" import { ".concat(componentNamePascal, " } from '").concat(importPath, "'"));
|
|
@@ -6007,26 +6004,13 @@ function addComponent(componentName) {
|
|
|
6007
6004
|
var depPascal = convertToPascalCase(dep);
|
|
6008
6005
|
var depPath;
|
|
6009
6006
|
if (dep.startsWith("icon-")) {
|
|
6010
|
-
|
|
6011
|
-
? "Browsers"
|
|
6012
|
-
: dep.includes("android") || dep.includes("apple") || dep.includes("window")
|
|
6013
|
-
? "OperatingSystems"
|
|
6014
|
-
: "Actions";
|
|
6015
|
-
depPath = "./icons/".concat(iconType, "/").concat(depPascal);
|
|
6007
|
+
depPath = "../onpe-icons/".concat(depPascal);
|
|
6016
6008
|
}
|
|
6017
6009
|
else if (dep.startsWith("modal")) {
|
|
6018
|
-
|
|
6019
|
-
depPath = "./components/Feedback/".concat(depPascal);
|
|
6020
|
-
}
|
|
6021
|
-
else if (dep.includes("browser") || dep.includes("system")) {
|
|
6022
|
-
depPath = "./components/ErrorHandling/".concat(depPascal);
|
|
6023
|
-
}
|
|
6024
|
-
else {
|
|
6025
|
-
depPath = "./components/".concat(depPascal);
|
|
6026
|
-
}
|
|
6010
|
+
depPath = "../onpe-modals/".concat(depPascal);
|
|
6027
6011
|
}
|
|
6028
6012
|
else {
|
|
6029
|
-
depPath = "
|
|
6013
|
+
depPath = "../onpe-ui/".concat(depPascal);
|
|
6030
6014
|
}
|
|
6031
6015
|
console.log(" import { ".concat(depPascal, " } from '").concat(depPath, "'"));
|
|
6032
6016
|
});
|
|
@@ -6058,34 +6042,34 @@ function personalizeComponent(code, componentName) {
|
|
|
6058
6042
|
// Mapeo de componentes y sus ubicaciones reales
|
|
6059
6043
|
var componentPaths = {
|
|
6060
6044
|
// Componentes básicos
|
|
6061
|
-
Button: "
|
|
6062
|
-
Overlay: "
|
|
6063
|
-
Portal: "
|
|
6064
|
-
Show: "
|
|
6045
|
+
Button: "../onpe-ui/Button",
|
|
6046
|
+
Overlay: "../onpe-ui/Overlay",
|
|
6047
|
+
Portal: "../onpe-ui/Portal",
|
|
6048
|
+
Show: "../onpe-ui/Show",
|
|
6065
6049
|
// Modales
|
|
6066
|
-
Modal: "
|
|
6067
|
-
ModalConfirm: "
|
|
6068
|
-
ModalLoading: "
|
|
6069
|
-
ModalBrowserIncompatible: "
|
|
6070
|
-
ModalSystemIncompatible: "
|
|
6050
|
+
Modal: "../onpe-modals/Modal",
|
|
6051
|
+
ModalConfirm: "../onpe-modals/ModalConfirm",
|
|
6052
|
+
ModalLoading: "../onpe-modals/ModalLoading",
|
|
6053
|
+
ModalBrowserIncompatible: "../onpe-modals/ModalBrowserIncompatible",
|
|
6054
|
+
ModalSystemIncompatible: "../onpe-modals/ModalSystemIncompatible",
|
|
6071
6055
|
// Iconos
|
|
6072
|
-
IconCheck: "
|
|
6073
|
-
IconClose: "
|
|
6074
|
-
IconWarning: "
|
|
6075
|
-
IconSpinnerDesktop: "
|
|
6076
|
-
IconSpinnerMobile: "
|
|
6077
|
-
IconHome: "
|
|
6078
|
-
IconChrome: "
|
|
6079
|
-
IconChromeColor: "
|
|
6080
|
-
IconEdge: "
|
|
6081
|
-
IconEdgeColor: "
|
|
6082
|
-
IconMozilla: "
|
|
6083
|
-
IconMozillaColor: "
|
|
6084
|
-
IconSafari: "
|
|
6085
|
-
IconSafariColor: "
|
|
6086
|
-
IconAndroid: "
|
|
6087
|
-
IconApple: "
|
|
6088
|
-
IconWindow: "
|
|
6056
|
+
IconCheck: "../onpe-icons/IconCheck",
|
|
6057
|
+
IconClose: "../onpe-icons/IconClose",
|
|
6058
|
+
IconWarning: "../onpe-icons/IconWarning",
|
|
6059
|
+
IconSpinnerDesktop: "../onpe-icons/IconSpinnerDesktop",
|
|
6060
|
+
IconSpinnerMobile: "../onpe-icons/IconSpinnerMobile",
|
|
6061
|
+
IconHome: "../onpe-icons/IconHome",
|
|
6062
|
+
IconChrome: "../onpe-icons/IconChrome",
|
|
6063
|
+
IconChromeColor: "../onpe-icons/IconChromeColor",
|
|
6064
|
+
IconEdge: "../onpe-icons/IconEdge",
|
|
6065
|
+
IconEdgeColor: "../onpe-icons/IconEdgeColor",
|
|
6066
|
+
IconMozilla: "../onpe-icons/IconMozilla",
|
|
6067
|
+
IconMozillaColor: "../onpe-icons/IconMozillaColor",
|
|
6068
|
+
IconSafari: "../onpe-icons/IconSafari",
|
|
6069
|
+
IconSafariColor: "../onpe-icons/IconSafariColor",
|
|
6070
|
+
IconAndroid: "../onpe-icons/IconAndroid",
|
|
6071
|
+
IconApple: "../onpe-icons/IconApple",
|
|
6072
|
+
IconWindow: "../onpe-icons/IconWindow",
|
|
6089
6073
|
};
|
|
6090
6074
|
// Reemplazar las rutas de importación
|
|
6091
6075
|
var personalizedCode = code;
|
package/dist/cli.js
CHANGED
|
@@ -5865,19 +5865,23 @@ var COMPONENTS_URL = "https://raw.githubusercontent.com/ricardosv46/onpe-ui/main
|
|
|
5865
5865
|
var ICONS_URL = "https://raw.githubusercontent.com/ricardosv46/onpe-ui/main/src/icons";
|
|
5866
5866
|
function addComponent(componentName) {
|
|
5867
5867
|
return __awaiter(this, void 0, void 0, function () {
|
|
5868
|
-
var isIcon, componentPath, componentDependencies, availableComponents, availableIcons, componentFile, availableItems, dependencies, _i, dependencies_1, dependency, depError_1, downloadUrl, response, componentCode, personalizedCode, fileName, filePath, componentNamePascal, importPath,
|
|
5868
|
+
var isIcon, isModal, componentPath, componentDependencies, availableComponents, availableIcons, componentFile, availableItems, dependencies, _i, dependencies_1, dependency, depError_1, downloadUrl, response, componentCode, personalizedCode, fileName, filePath, componentNamePascal, importPath, dependencies, error_1;
|
|
5869
5869
|
return __generator(this, function (_a) {
|
|
5870
5870
|
switch (_a.label) {
|
|
5871
5871
|
case 0:
|
|
5872
5872
|
isIcon = componentName.toLowerCase().startsWith("icon-");
|
|
5873
|
-
componentName.toLowerCase().startsWith("modal");
|
|
5873
|
+
isModal = componentName.toLowerCase().startsWith("modal");
|
|
5874
5874
|
if (isIcon) {
|
|
5875
|
-
// Los iconos van en src/icons/
|
|
5876
|
-
componentPath = require$$1.join(process.cwd(), "src", "icons");
|
|
5875
|
+
// Los iconos van en src/components/onpe-icons/
|
|
5876
|
+
componentPath = require$$1.join(process.cwd(), "src", "components", "onpe-icons");
|
|
5877
|
+
}
|
|
5878
|
+
else if (isModal) {
|
|
5879
|
+
// Los modales van en src/components/onpe-modals/
|
|
5880
|
+
componentPath = require$$1.join(process.cwd(), "src", "components", "onpe-modals");
|
|
5877
5881
|
}
|
|
5878
5882
|
else {
|
|
5879
|
-
// Los componentes van en src/components/
|
|
5880
|
-
componentPath = require$$1.join(process.cwd(), "src", "components");
|
|
5883
|
+
// Los componentes básicos van en src/components/onpe-ui/
|
|
5884
|
+
componentPath = require$$1.join(process.cwd(), "src", "components", "onpe-ui");
|
|
5881
5885
|
}
|
|
5882
5886
|
// Crear directorio si no existe
|
|
5883
5887
|
return [4 /*yield*/, lib.ensureDir(componentPath)];
|
|
@@ -5979,23 +5983,16 @@ function addComponent(componentName) {
|
|
|
5979
5983
|
componentNamePascal = convertToPascalCase(componentName);
|
|
5980
5984
|
importPath = void 0;
|
|
5981
5985
|
if (isIcon) {
|
|
5982
|
-
|
|
5983
|
-
|
|
5984
|
-
: componentName.toLowerCase().includes("android") || componentName.toLowerCase().includes("apple") || componentName.toLowerCase().includes("window")
|
|
5985
|
-
? "OperatingSystems"
|
|
5986
|
-
: "Actions";
|
|
5987
|
-
importPath = "./icons/".concat(iconType, "/").concat(componentNamePascal);
|
|
5986
|
+
// Los iconos van en onpe-icons
|
|
5987
|
+
importPath = "../onpe-icons/".concat(componentNamePascal);
|
|
5988
5988
|
}
|
|
5989
5989
|
else {
|
|
5990
|
-
//
|
|
5991
|
-
if (componentName.toLowerCase().includes("modal
|
|
5992
|
-
importPath = "
|
|
5993
|
-
}
|
|
5994
|
-
else if (componentName.toLowerCase().includes("modal-browser") || componentName.toLowerCase().includes("modal-system")) {
|
|
5995
|
-
importPath = "./components/ErrorHandling/".concat(componentNamePascal);
|
|
5990
|
+
// Los componentes van en onpe-modals o onpe-ui
|
|
5991
|
+
if (componentName.toLowerCase().includes("modal")) {
|
|
5992
|
+
importPath = "../onpe-modals/".concat(componentNamePascal);
|
|
5996
5993
|
}
|
|
5997
5994
|
else {
|
|
5998
|
-
importPath = "
|
|
5995
|
+
importPath = "../onpe-ui/".concat(componentNamePascal);
|
|
5999
5996
|
}
|
|
6000
5997
|
}
|
|
6001
5998
|
console.log(" import { ".concat(componentNamePascal, " } from '").concat(importPath, "'"));
|
|
@@ -6007,26 +6004,13 @@ function addComponent(componentName) {
|
|
|
6007
6004
|
var depPascal = convertToPascalCase(dep);
|
|
6008
6005
|
var depPath;
|
|
6009
6006
|
if (dep.startsWith("icon-")) {
|
|
6010
|
-
|
|
6011
|
-
? "Browsers"
|
|
6012
|
-
: dep.includes("android") || dep.includes("apple") || dep.includes("window")
|
|
6013
|
-
? "OperatingSystems"
|
|
6014
|
-
: "Actions";
|
|
6015
|
-
depPath = "./icons/".concat(iconType, "/").concat(depPascal);
|
|
6007
|
+
depPath = "../onpe-icons/".concat(depPascal);
|
|
6016
6008
|
}
|
|
6017
6009
|
else if (dep.startsWith("modal")) {
|
|
6018
|
-
|
|
6019
|
-
depPath = "./components/Feedback/".concat(depPascal);
|
|
6020
|
-
}
|
|
6021
|
-
else if (dep.includes("browser") || dep.includes("system")) {
|
|
6022
|
-
depPath = "./components/ErrorHandling/".concat(depPascal);
|
|
6023
|
-
}
|
|
6024
|
-
else {
|
|
6025
|
-
depPath = "./components/".concat(depPascal);
|
|
6026
|
-
}
|
|
6010
|
+
depPath = "../onpe-modals/".concat(depPascal);
|
|
6027
6011
|
}
|
|
6028
6012
|
else {
|
|
6029
|
-
depPath = "
|
|
6013
|
+
depPath = "../onpe-ui/".concat(depPascal);
|
|
6030
6014
|
}
|
|
6031
6015
|
console.log(" import { ".concat(depPascal, " } from '").concat(depPath, "'"));
|
|
6032
6016
|
});
|
|
@@ -6058,34 +6042,34 @@ function personalizeComponent(code, componentName) {
|
|
|
6058
6042
|
// Mapeo de componentes y sus ubicaciones reales
|
|
6059
6043
|
var componentPaths = {
|
|
6060
6044
|
// Componentes básicos
|
|
6061
|
-
Button: "
|
|
6062
|
-
Overlay: "
|
|
6063
|
-
Portal: "
|
|
6064
|
-
Show: "
|
|
6045
|
+
Button: "../onpe-ui/Button",
|
|
6046
|
+
Overlay: "../onpe-ui/Overlay",
|
|
6047
|
+
Portal: "../onpe-ui/Portal",
|
|
6048
|
+
Show: "../onpe-ui/Show",
|
|
6065
6049
|
// Modales
|
|
6066
|
-
Modal: "
|
|
6067
|
-
ModalConfirm: "
|
|
6068
|
-
ModalLoading: "
|
|
6069
|
-
ModalBrowserIncompatible: "
|
|
6070
|
-
ModalSystemIncompatible: "
|
|
6050
|
+
Modal: "../onpe-modals/Modal",
|
|
6051
|
+
ModalConfirm: "../onpe-modals/ModalConfirm",
|
|
6052
|
+
ModalLoading: "../onpe-modals/ModalLoading",
|
|
6053
|
+
ModalBrowserIncompatible: "../onpe-modals/ModalBrowserIncompatible",
|
|
6054
|
+
ModalSystemIncompatible: "../onpe-modals/ModalSystemIncompatible",
|
|
6071
6055
|
// Iconos
|
|
6072
|
-
IconCheck: "
|
|
6073
|
-
IconClose: "
|
|
6074
|
-
IconWarning: "
|
|
6075
|
-
IconSpinnerDesktop: "
|
|
6076
|
-
IconSpinnerMobile: "
|
|
6077
|
-
IconHome: "
|
|
6078
|
-
IconChrome: "
|
|
6079
|
-
IconChromeColor: "
|
|
6080
|
-
IconEdge: "
|
|
6081
|
-
IconEdgeColor: "
|
|
6082
|
-
IconMozilla: "
|
|
6083
|
-
IconMozillaColor: "
|
|
6084
|
-
IconSafari: "
|
|
6085
|
-
IconSafariColor: "
|
|
6086
|
-
IconAndroid: "
|
|
6087
|
-
IconApple: "
|
|
6088
|
-
IconWindow: "
|
|
6056
|
+
IconCheck: "../onpe-icons/IconCheck",
|
|
6057
|
+
IconClose: "../onpe-icons/IconClose",
|
|
6058
|
+
IconWarning: "../onpe-icons/IconWarning",
|
|
6059
|
+
IconSpinnerDesktop: "../onpe-icons/IconSpinnerDesktop",
|
|
6060
|
+
IconSpinnerMobile: "../onpe-icons/IconSpinnerMobile",
|
|
6061
|
+
IconHome: "../onpe-icons/IconHome",
|
|
6062
|
+
IconChrome: "../onpe-icons/IconChrome",
|
|
6063
|
+
IconChromeColor: "../onpe-icons/IconChromeColor",
|
|
6064
|
+
IconEdge: "../onpe-icons/IconEdge",
|
|
6065
|
+
IconEdgeColor: "../onpe-icons/IconEdgeColor",
|
|
6066
|
+
IconMozilla: "../onpe-icons/IconMozilla",
|
|
6067
|
+
IconMozillaColor: "../onpe-icons/IconMozillaColor",
|
|
6068
|
+
IconSafari: "../onpe-icons/IconSafari",
|
|
6069
|
+
IconSafariColor: "../onpe-icons/IconSafariColor",
|
|
6070
|
+
IconAndroid: "../onpe-icons/IconAndroid",
|
|
6071
|
+
IconApple: "../onpe-icons/IconApple",
|
|
6072
|
+
IconWindow: "../onpe-icons/IconWindow",
|
|
6089
6073
|
};
|
|
6090
6074
|
// Reemplazar las rutas de importación
|
|
6091
6075
|
var personalizedCode = code;
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconCheckProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconCheck: (props: IconCheckProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconCheck;
|
|
6
5
|
//# sourceMappingURL=IconCheck.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconCloseProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconClose: (props: IconCloseProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconClose;
|
|
6
5
|
//# sourceMappingURL=IconClose.d.ts.map
|
|
@@ -3,5 +3,4 @@ export interface IconHomeProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3
3
|
size?: number | string;
|
|
4
4
|
}
|
|
5
5
|
export declare const IconHome: ({ size, ...props }: IconHomeProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
export default IconHome;
|
|
7
6
|
//# sourceMappingURL=IconHome.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconSpinnerDesktopProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconSpinnerDesktop: (props: IconSpinnerDesktopProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconSpinnerDesktop;
|
|
6
5
|
//# sourceMappingURL=IconSpinnerDesktop.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconSpinnerMobileProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconSpinnerMobile: (props: IconSpinnerMobileProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconSpinnerMobile;
|
|
6
5
|
//# sourceMappingURL=IconSpinnerMobile.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconWarningProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconWarning: (props: IconWarningProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconWarning;
|
|
6
5
|
//# sourceMappingURL=IconWarning.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconChromeProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconChrome: (props: IconChromeProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconChrome;
|
|
6
5
|
//# sourceMappingURL=IconChrome.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconChromeColorProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconChromeColor: (props: IconChromeColorProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconChromeColor;
|
|
6
5
|
//# sourceMappingURL=IconChromeColor.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconEdgeColorProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconEdgeColor: (props: IconEdgeColorProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconEdgeColor;
|
|
6
5
|
//# sourceMappingURL=IconEdgeColor.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconMozillaProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconMozilla: (props: IconMozillaProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconMozilla;
|
|
6
5
|
//# sourceMappingURL=IconMozilla.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconMozillaColorProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconMozillaColor: (props: IconMozillaColorProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconMozillaColor;
|
|
6
5
|
//# sourceMappingURL=IconMozillaColor.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconSafariProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconSafari: (props: IconSafariProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconSafari;
|
|
6
5
|
//# sourceMappingURL=IconSafari.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconSafariColorProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconSafariColor: (props: IconSafariColorProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconSafariColor;
|
|
6
5
|
//# sourceMappingURL=IconSafariColor.d.ts.map
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { SVGProps } from "react";
|
|
2
2
|
export type ElectionsIconProps = SVGProps<SVGSVGElement>;
|
|
3
3
|
export declare const ElectionsIcon: (props: ElectionsIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
export default ElectionsIcon;
|
|
5
4
|
//# sourceMappingURL=ElectionsIcon.d.ts.map
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { SVGProps } from "react";
|
|
2
2
|
export type IconElectionsGeneralProps = SVGProps<SVGSVGElement>;
|
|
3
3
|
export declare const IconElectionsGeneral: (props: IconElectionsGeneralProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
export default IconElectionsGeneral;
|
|
5
4
|
//# sourceMappingURL=IconElectionsGeneral.d.ts.map
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { SVGProps } from "react";
|
|
2
2
|
export type IconVotoDigitalProps = SVGProps<SVGSVGElement>;
|
|
3
3
|
export declare const IconVotoDigital: (props: IconVotoDigitalProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
export default IconVotoDigital;
|
|
5
4
|
//# sourceMappingURL=IconVotoDigital.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconAndroidProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconAndroid: (props: IconAndroidProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconAndroid;
|
|
6
5
|
//# sourceMappingURL=IconAndroid.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconAppleProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconApple: (props: IconAppleProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconApple;
|
|
6
5
|
//# sourceMappingURL=IconApple.d.ts.map
|
|
@@ -2,5 +2,4 @@ import { SVGProps } from "react";
|
|
|
2
2
|
export interface IconWindowProps extends SVGProps<SVGSVGElement> {
|
|
3
3
|
}
|
|
4
4
|
export declare const IconWindow: (props: IconWindowProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export default IconWindow;
|
|
6
5
|
//# sourceMappingURL=IconWindow.d.ts.map
|