@vertexvis/ui-react 1.0.1-canary.7 → 1.0.1-canary.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/README.md CHANGED
@@ -26,7 +26,7 @@ import { defineCustomElements } from '@vertexvis/ui-react';
26
26
 
27
27
  function main() {
28
28
  defineCustomElement(window);
29
- ReactDom.render(<App />, document.querySelector("#app"));
29
+ ReactDom.render(<App />, document.querySelector('#app'));
30
30
  }
31
31
 
32
32
  main();
@@ -39,10 +39,10 @@ import React from 'react';
39
39
  import { VertexButton } from '@vertexvis/ui-react';
40
40
 
41
41
  export function App() {
42
- return (<div>
43
- <VertexButton color="primary">
44
- Button
45
- </VertexButton>
46
- </div>);
42
+ return (
43
+ <div>
44
+ <VertexButton color="primary">Button</VertexButton>
45
+ </div>
46
+ );
47
47
  }
48
48
  ```
@@ -26,7 +26,7 @@ import { defineCustomElements } from '@vertexvis/ui-react';
26
26
 
27
27
  function main() {
28
28
  defineCustomElement(window);
29
- ReactDom.render(<App />, document.querySelector("#app"));
29
+ ReactDom.render(<App />, document.querySelector('#app'));
30
30
  }
31
31
 
32
32
  main();
@@ -39,10 +39,10 @@ import React from 'react';
39
39
  import { VertexButton } from '@vertexvis/ui-react';
40
40
 
41
41
  export function App() {
42
- return (<div>
43
- <VertexButton color="primary">
44
- Button
45
- </VertexButton>
46
- </div>);
42
+ return (
43
+ <div>
44
+ <VertexButton color="primary">Button</VertexButton>
45
+ </div>
46
+ );
47
47
  }
48
48
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertexvis/ui-react",
3
- "version": "1.0.1-canary.7",
3
+ "version": "1.0.1-canary.8",
4
4
  "description": "React bindings for the Vertex component library.",
5
5
  "license": "MIT",
6
6
  "author": "Vertex Developers <support@vertex3d.com> (https://developer.vertex3d.com)",
@@ -36,8 +36,12 @@
36
36
  "clean": "rm -fr ./dist && mkdir ./dist",
37
37
  "prebuild": "yarn clean",
38
38
  "build": "rollup --config ./rollup.config.js",
39
- "format": "yarn lint --fix",
40
- "lint": "eslint --ext .ts,.tsx,.js,.jsx --ignore-path ../../.gitignore .",
39
+ "format:prettier": "prettier --write --list-different .",
40
+ "format:eslint": "yarn lint:eslint --fix --quiet",
41
+ "format": "yarn format:prettier && yarn format:eslint",
42
+ "lint:eslint": "eslint .",
43
+ "lint:prettier": "prettier --check .",
44
+ "lint": "yarn lint:eslint && yarn lint:prettier",
41
45
  "test": "echo 'No unit tests defined'",
42
46
  "test:coverage": "echo 'No unit tests defined'",
43
47
  "generate:docs": "../../scripts/generate_docs.sh"
@@ -45,8 +49,8 @@
45
49
  "devDependencies": {
46
50
  "@types/react": "^19.2.17",
47
51
  "@types/react-dom": "19.2.3",
48
- "@vertexvis/eslint-config-vertexvis-typescript": "^0.5.2",
49
- "@vertexwebui/build": "^1.0.1-canary.7",
52
+ "@vertexvis/eslint-config-vertexvis-typescript": "^0.6.0",
53
+ "@vertexwebui/build": "^1.0.1-canary.8",
50
54
  "eslint": "8.57.1",
51
55
  "react": "^19.2.7",
52
56
  "react-dom": "^19.2.7",
@@ -60,7 +64,7 @@
60
64
  },
61
65
  "dependencies": {
62
66
  "@stencil/react-output-target": "^1.6.0",
63
- "@vertexvis/ui": "^1.0.1-canary.7"
67
+ "@vertexvis/ui": "^1.0.1-canary.8"
64
68
  },
65
- "gitHead": "1dc435dfc8c0a45be2e5895716fbf04f490a756e"
69
+ "gitHead": "a0de9169d3bb2037e8a7c9f21b12e7312d6f44b9"
66
70
  }