@neovici/cosmoz-form 1.1.0 → 1.1.2

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.
@@ -54,7 +54,7 @@ export default css `
54
54
  .button-ricon {
55
55
  border: none;
56
56
  border-radius: 50%;
57
- fill: #596679;
57
+ fill: var(--primary-button-icon-fill, #596679);
58
58
  padding: 8px;
59
59
  display: inline-flex;
60
60
  background: transparent;
@@ -65,8 +65,8 @@ export default css `
65
65
  background: rgb(56, 62, 74, 0.15);
66
66
  }
67
67
  .actionButton {
68
- border: solid 1px #a4abae;
69
- background: #fff;
68
+ border: transparent;
69
+ background: var(--cz-action-button-bg, #fff);
70
70
  border-radius: 500px;
71
71
  font-size: 1.08em;
72
72
  letter-spacing: -0.01em;
@@ -80,7 +80,7 @@ export default css `
80
80
  transition: background 0.25s;
81
81
  }
82
82
  .actionButton:hover {
83
- background: #f0f0f0;
83
+ background: var(--cz-action-button-hover-bg, #f0f0f0);
84
84
  }
85
85
  .actionButton span {
86
86
  overflow: hidden;
package/package.json CHANGED
@@ -1,99 +1,101 @@
1
1
  {
2
- "name": "@neovici/cosmoz-form",
3
- "version": "1.1.0",
4
- "description": "A pionjs component",
5
- "keywords": [
6
- "web-components",
7
- "form",
8
- "pion",
9
- "lit-html"
10
- ],
11
- "homepage": "https://github.com/Neovici/cosmoz-form#readme",
12
- "bugs": {
13
- "url": "https://github.com/Neovici/cosmoz-form/issues"
14
- },
15
- "repository": {
16
- "type": "git",
17
- "url": "git+https://github.com/Neovici/cosmoz-form.git"
18
- },
19
- "license": "Apache-2.0",
20
- "author": "",
21
- "main": "dist/index.js",
22
- "type": "module",
23
- "directories": {
24
- "test": "test"
25
- },
26
- "scripts": {
27
- "lint": "tsc && eslint --cache .",
28
- "build": "tsc -p tsconfig.build.json",
29
- "start": "wds",
30
- "test": "wtr --coverage",
31
- "test:watch": "wtr --watch",
32
- "dev": "npm run storybook:start",
33
- "storybook:start": "storybook dev -p 8000",
34
- "storybook:build": "storybook build",
35
- "storybook:deploy": "storybook-to-ghpages",
36
- "storybook:preview": "npm run storybook:build && http-server -d ./storybook-static/",
37
- "prepare": "husky"
38
- },
39
- "release": {
40
- "plugins": [
41
- "@semantic-release/commit-analyzer",
42
- "@semantic-release/release-notes-generator",
43
- "@semantic-release/changelog",
44
- "@semantic-release/github",
45
- "@semantic-release/npm",
46
- "@semantic-release/git"
47
- ],
48
- "branch": "master",
49
- "preset": "conventionalcommits"
50
- },
51
- "publishConfig": {
52
- "access": "public"
53
- },
54
- "files": [
55
- "dist/",
56
- "types"
57
- ],
58
- "exports": {
59
- ".": "./dist/index.js"
60
- },
61
- "dependencies": {
62
- "@lit-labs/virtualizer": "^2.1.1",
63
- "@neovici/cosmoz-autocomplete": "^10.10.4",
64
- "@neovici/cosmoz-dialog-next": "^1.0.0",
65
- "@neovici/cosmoz-i18next": "^3.5.1",
66
- "@neovici/cosmoz-icons": "^1.3.0",
67
- "@neovici/cosmoz-input": "^5.5.0",
68
- "@neovici/cosmoz-spinner": "^1.0.2",
69
- "@neovici/cosmoz-utils": "^6.17.0",
70
- "@pionjs/pion": "^2.5.2",
71
- "date-fns": "^4.1.0",
72
- "lit-html": "^3.3.1"
73
- },
74
- "devDependencies": {
75
- "@commitlint/cli": "^20.0.0",
76
- "@commitlint/config-conventional": "^20.0.0",
77
- "@neovici/cfg": "^2.0.0",
78
- "@neovici/testing": "^2.0.0",
79
- "@open-wc/testing": "^4.0.0",
80
- "@open-wc/testing-helpers": "^3.0.1",
81
- "@semantic-release/changelog": "^6.0.0",
82
- "@semantic-release/git": "^10.0.0",
83
- "@storybook/addon-links": "^10.0.0",
84
- "@storybook/web-components": "^10.0.0",
85
- "@storybook/web-components-vite": "^10.0.0",
86
- "@types/mocha": "^10.0.0",
87
- "@types/node": "^24.0.0",
88
- "esbuild": "^0.27.0",
89
- "http-server": "^14.1.1",
90
- "husky": "^9.0.11",
91
- "semantic-release": "^25.0.0",
92
- "sinon": "^19.0.0",
93
- "storybook": "^10.0.0"
94
- },
95
- "overrides": {
96
- "conventional-changelog-conventionalcommits": ">= 8.0.0",
97
- "@polymer/polymer": "^3.5.2"
98
- }
2
+ "name": "@neovici/cosmoz-form",
3
+ "version": "1.1.2",
4
+ "description": "A pionjs component",
5
+ "keywords": [
6
+ "web-components",
7
+ "form",
8
+ "pion",
9
+ "lit-html"
10
+ ],
11
+ "homepage": "https://github.com/Neovici/cosmoz-form#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/Neovici/cosmoz-form/issues"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/Neovici/cosmoz-form.git"
18
+ },
19
+ "license": "Apache-2.0",
20
+ "author": "",
21
+ "main": "dist/index.js",
22
+ "type": "module",
23
+ "directories": {
24
+ "test": "test"
25
+ },
26
+ "scripts": {
27
+ "lint": "tsc && eslint --cache .",
28
+ "build": "tsc -p tsconfig.build.json",
29
+ "start": "wds",
30
+ "test": "wtr --coverage",
31
+ "test:watch": "wtr --watch",
32
+ "check:duplicates": "check-duplicate-components",
33
+ "dev": "npm run storybook:start",
34
+ "storybook:start": "storybook dev -p 8000",
35
+ "storybook:build": "storybook build",
36
+ "storybook:deploy": "storybook-to-ghpages",
37
+ "storybook:preview": "npm run storybook:build && http-server -d ./storybook-static/",
38
+ "prepare": "husky"
39
+ },
40
+ "release": {
41
+ "plugins": [
42
+ "@semantic-release/commit-analyzer",
43
+ "@semantic-release/release-notes-generator",
44
+ "@semantic-release/changelog",
45
+ "@semantic-release/github",
46
+ "@semantic-release/npm",
47
+ "@semantic-release/git"
48
+ ],
49
+ "branch": "master",
50
+ "preset": "conventionalcommits"
51
+ },
52
+ "publishConfig": {
53
+ "access": "public"
54
+ },
55
+ "files": [
56
+ "dist/",
57
+ "types"
58
+ ],
59
+ "exports": {
60
+ ".": "./dist/index.js"
61
+ },
62
+ "dependencies": {
63
+ "@lit-labs/virtualizer": "^2.1.1",
64
+ "@neovici/cosmoz-autocomplete": "^10.10.4 || ^11.0.0 || ^12.0.0 || ^13.0.0",
65
+ "@neovici/cosmoz-dialog-next": "^1.0.0",
66
+ "@neovici/cosmoz-i18next": "^3.5.1",
67
+ "@neovici/cosmoz-icons": "^1.3.0",
68
+ "@neovici/cosmoz-input": "^5.5.0",
69
+ "@neovici/cosmoz-spinner": "^1.0.2",
70
+ "@neovici/cosmoz-utils": "^6.17.0",
71
+ "@pionjs/pion": "^2.5.2",
72
+ "date-fns": "^4.1.0",
73
+ "lit-html": "^3.3.1"
74
+ },
75
+ "devDependencies": {
76
+ "@commitlint/cli": "^20.0.0",
77
+ "@commitlint/config-conventional": "^20.0.0",
78
+ "@neovici/cfg": "^2.8.0",
79
+ "lint-staged": "^15.4.3",
80
+ "@neovici/testing": "^2.0.0",
81
+ "@open-wc/testing": "^4.0.0",
82
+ "@open-wc/testing-helpers": "^3.0.1",
83
+ "@semantic-release/changelog": "^6.0.0",
84
+ "@semantic-release/git": "^10.0.0",
85
+ "@storybook/addon-links": "^10.0.0",
86
+ "@storybook/web-components": "^10.0.0",
87
+ "@storybook/web-components-vite": "^10.0.0",
88
+ "@types/mocha": "^10.0.0",
89
+ "@types/node": "^24.0.0",
90
+ "esbuild": "^0.27.0",
91
+ "http-server": "^14.1.1",
92
+ "husky": "^9.0.11",
93
+ "semantic-release": "^25.0.0",
94
+ "sinon": "^19.0.0",
95
+ "storybook": "^10.0.0"
96
+ },
97
+ "overrides": {
98
+ "conventional-changelog-conventionalcommits": ">= 8.0.0",
99
+ "@polymer/polymer": "^3.5.2"
100
+ }
99
101
  }