@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.
- package/dist/styles/button.js +4 -4
- package/package.json +99 -97
package/dist/styles/button.js
CHANGED
|
@@ -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:
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
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
|
}
|