@vixoniccom/wifi 0.0.1-dev.4 → 0.0.1-dev.6
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 +4 -0
- package/build.zip +0 -0
- package/configuration/general/general.ts +5 -3
- package/configuration.json +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.1-dev.6](https://github.com/Vixonic/store-wifi/compare/v0.0.1-dev.4...v0.0.1-dev.6) (2026-02-04)
|
|
6
|
+
|
|
7
|
+
### [0.0.1-dev.5](https://github.com/Vixonic/store-wifi/compare/v0.0.1-dev.4...v0.0.1-dev.5) (2026-02-04)
|
|
8
|
+
|
|
5
9
|
### [0.0.1-dev.4](https://github.com/Vixonic/store-wifi/compare/v0.0.1-dev.3...v0.0.1-dev.4) (2026-02-04)
|
|
6
10
|
|
|
7
11
|
### 0.0.1-dev.3 (2026-02-04)
|
package/build.zip
CHANGED
|
Binary file
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { NumberInput, NumberRangeValue, TextInput } from "@vixoniccom/modules";
|
|
1
|
+
import { Label, NumberInput, NumberRangeValue, TextInput } from "@vixoniccom/modules";
|
|
2
2
|
|
|
3
3
|
export const generalInputs = [
|
|
4
|
+
new Label({ label: 'Estilo de contenedor' }),
|
|
4
5
|
new NumberInput({
|
|
5
6
|
id: 'sizeContainer',
|
|
6
7
|
label: 'Tamaño del contenedor',
|
|
@@ -21,11 +22,12 @@ export const generalInputs = [
|
|
|
21
22
|
label: 'Color de fondo',
|
|
22
23
|
description: 'Color de fondo del contenedor.',
|
|
23
24
|
}),
|
|
25
|
+
new Label({ label: 'Estilo de icono' }),
|
|
24
26
|
new TextInput({
|
|
25
27
|
id: 'color',
|
|
26
28
|
required: false,
|
|
27
|
-
label: 'Color de icono
|
|
28
|
-
description: 'Color del icono
|
|
29
|
+
label: 'Color de icono',
|
|
30
|
+
description: 'Color del icono.',
|
|
29
31
|
}),
|
|
30
32
|
new NumberInput({
|
|
31
33
|
id: 'sizeIcon',
|
package/configuration.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"items": [
|
|
8
8
|
{
|
|
9
9
|
"type": "label",
|
|
10
|
-
"label": "Estilo
|
|
10
|
+
"label": "Estilo de contenedor"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"id": "sizeContainer",
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
31
|
"type": "label",
|
|
32
|
-
"label": "Estilo
|
|
32
|
+
"label": "Estilo de icono"
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
35
|
"id": "color",
|
|
36
36
|
"label": "Color",
|
|
37
37
|
"type": "text-input",
|
|
38
|
-
"description": "Color del icono
|
|
38
|
+
"description": "Color del icono."
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"id": "sizeIcon",
|