@vixoniccom/wifi 0.0.1-dev.7 → 0.0.1-dev.8

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
@@ -2,6 +2,8 @@
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.8](https://github.com/Vixonic/store-wifi/compare/v0.0.1-dev.6...v0.0.1-dev.8) (2026-02-05)
6
+
5
7
  ### [0.0.1-dev.7](https://github.com/Vixonic/store-wifi/compare/v0.0.1-dev.6...v0.0.1-dev.7) (2026-02-05)
6
8
 
7
9
  ### [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)
package/README.md CHANGED
@@ -1,11 +1,29 @@
1
- # Birthdays
2
- ## Changelog
1
+ # README #
3
2
 
4
- ### [0.1.4] - 2017/07/20
5
- #### Fixed
6
- - Fixed weekly + filter past in january.
3
+ This README would normally document whatever steps are necessary to get your application up and running.
7
4
 
8
- ### [0.1.1] - 2017/07/20
9
- #### Changed
10
- - Fixed missing url quotes in background images and fonts.
11
- - Fixed parsing when data file is an XML and not excel file.
5
+ ### What is this repository for? ###
6
+
7
+ * Quick summary
8
+ * Version
9
+ * [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
10
+
11
+ ### How do I get set up? ###
12
+
13
+ * Summary of set up
14
+ * Configuration
15
+ * Dependencies
16
+ * Database configuration
17
+ * How to run tests
18
+ * Deployment instructions
19
+
20
+ ### Contribution guidelines ###
21
+
22
+ * Writing tests
23
+ * Code review
24
+ * Other guidelines
25
+
26
+ ### Who do I talk to? ###
27
+
28
+ * Repo owner or admin
29
+ * Other community or team contact
package/build.zip CHANGED
Binary file
@@ -1,4 +1,4 @@
1
- import { Label, NumberInput, NumberRangeValue, TextInput } from "@vixoniccom/modules";
1
+ import { ColorPicker, Label, NumberInput, NumberRangeValue} from "@vixoniccom/modules";
2
2
 
3
3
  export const generalInputs = [
4
4
  new Label({ label: 'Estilo de contenedor' }),
@@ -16,14 +16,14 @@ export const generalInputs = [
16
16
  range: new NumberRangeValue(0, 50),
17
17
  required: true,
18
18
  }),
19
- new TextInput({
19
+ new ColorPicker({
20
20
  id: 'backgroundColor',
21
21
  required: false,
22
22
  label: 'Color de fondo',
23
23
  description: 'Color de fondo del contenedor.',
24
24
  }),
25
25
  new Label({ label: 'Estilo de icono' }),
26
- new TextInput({
26
+ new ColorPicker({
27
27
  id: 'color',
28
28
  required: false,
29
29
  label: 'Color de icono',
@@ -24,7 +24,7 @@
24
24
  {
25
25
  "id": "backgroundColor",
26
26
  "label": "Color de fondo",
27
- "type": "text-input",
27
+ "type": "color-picker",
28
28
  "description": "Color de fondo del contenedor."
29
29
  },
30
30
  {
@@ -34,7 +34,7 @@
34
34
  {
35
35
  "id": "color",
36
36
  "label": "Color",
37
- "type": "text-input",
37
+ "type": "color-picker",
38
38
  "description": "Color del icono."
39
39
  },
40
40
  {
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "author": {
9
9
  "name": "Belen Rojas"
10
10
  },
11
- "version": "0.0.1-dev.7",
11
+ "version": "0.0.1-dev.8",
12
12
  "scripts": {
13
13
  "prepublish": "vixonic-module-packager --mode=build",
14
14
  "watch": "vixonic-module-packager --mode=watch",
package/tsconfig.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "target": "es6",
4
- "module": "esnext",
5
- "moduleResolution": "node",
4
+ "module": "ESNext",
5
+ "moduleResolution": "bundler",
6
6
  "jsx": "react-jsx",
7
7
  "allowJs": true,
8
8
  "checkJs": true,
package/.eslintrc DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "extends": ["standard", "standard-react"]
3
- }
package/LICENSE.md DELETED
@@ -1,15 +0,0 @@
1
- ISC License
2
-
3
- Copyright 2024 Vixonic
4
-
5
- Permission to use, copy, modify, and/or distribute this software for any
6
- purpose with or without fee is hereby granted, provided that the above
7
- copyright notice and this permission notice appear in all copies.
8
-
9
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15
- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.