@neovici/cosmoz-input 5.7.1 → 5.8.1

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
@@ -1,10 +1,9 @@
1
- cosmoz-input
2
- ==================
1
+ # cosmoz-input
3
2
 
4
3
  [![Build Status](https://github.com/Neovici/cosmoz-input/workflows/CI/badge.svg)](https://github.com/Neovici/cosmoz-input/actions?workflow=CI)
5
4
  [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/Neovici/cosmoz-input)
6
5
  [![Depfu](https://badges.depfu.com/badges/c887733c2e1b6c70285860279a80fa03/overview.svg)](https://depfu.com/github/Neovici/cosmoz-input?project_id=9639)
7
- [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
6
+ [![Changesets](https://img.shields.io/badge/Changesets-🦋%20changesets-268ADA.svg)](https://github.com/changesets/changesets)
8
7
  [![Maintainability](https://api.codeclimate.com/v1/badges/56671dc0a46898d2f539/maintainability)](https://codeclimate.com/github/Neovici/cosmoz-input/maintainability)
9
8
  [![Test Coverage](https://api.codeclimate.com/v1/badges/56671dc0a46898d2f539/test_coverage)](https://codeclimate.com/github/Neovici/cosmoz-input/test_coverage)
10
9
 
@@ -17,12 +16,13 @@ cosmoz-input
17
16
  ### Installing
18
17
 
19
18
  Using npm:
19
+
20
20
  ```bash
21
21
  npm install --save @neovici/cosmoz-input
22
22
  ```
23
23
 
24
24
  ### Usage
25
25
 
26
- ``` javascript
27
- html`<cosmoz-input .value=${"value"} />`;
26
+ ```javascript
27
+ html`<cosmoz-input .value=${'value'} />`;
28
28
  ```
package/dist/styles.js CHANGED
@@ -118,6 +118,7 @@ export const styles = css `
118
118
  top: 0;
119
119
  left: 0;
120
120
  width: var(--cosmoz-input-label-width, 100%);
121
+ pointer-events: none;
121
122
  transition:
122
123
  transform 0.25s,
123
124
  width 0.25s;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neovici/cosmoz-input",
3
- "version": "5.7.1",
3
+ "version": "5.8.1",
4
4
  "description": "A input web component",
5
5
  "keywords": [
6
6
  "lit-html",
@@ -32,19 +32,8 @@
32
32
  "storybook:start": "storybook dev -p 8000",
33
33
  "storybook:build": "storybook build",
34
34
  "storybook:deploy": "storybook-to-ghpages",
35
- "storybook:preview": "npm run storybook:build && http-server ./storybook-static/ --silent"
36
- },
37
- "release": {
38
- "plugins": [
39
- "@semantic-release/commit-analyzer",
40
- "@semantic-release/release-notes-generator",
41
- "@semantic-release/changelog",
42
- "@semantic-release/github",
43
- "@semantic-release/npm",
44
- "@semantic-release/git"
45
- ],
46
- "branch": "master",
47
- "preset": "conventionalcommits"
35
+ "storybook:preview": "npm run storybook:build && http-server ./storybook-static/ --silent",
36
+ "changeset": "changeset"
48
37
  },
49
38
  "publishConfig": {
50
39
  "access": "public"
@@ -74,27 +63,26 @@
74
63
  "lit-html": "^2.0.0 || ^3.0.0"
75
64
  },
76
65
  "devDependencies": {
77
- "@commitlint/cli": "^20.0.0",
78
- "@commitlint/config-conventional": "^20.0.0",
66
+ "@commitlint/cli": "^21.0.0",
67
+ "@commitlint/config-conventional": "^21.0.1",
79
68
  "@neovici/cfg": "^2.8.0",
80
69
  "@neovici/testing": "^2.3.0",
81
- "@playwright/test": "^1.58.1",
82
- "@semantic-release/changelog": "^6.0.0",
83
- "@semantic-release/git": "^10.0.0",
70
+ "@playwright/test": "1.62.1",
84
71
  "@storybook/addon-docs": "^10.0.0",
85
72
  "@storybook/addon-vitest": "^10.2.4",
86
73
  "@storybook/web-components-vite": "^10.2.4",
87
- "@types/node": "^25.2.3",
74
+ "@types/node": "^26.1.2",
88
75
  "@vitest/browser": "^4.0.18",
89
76
  "@vitest/browser-playwright": "^4.0.18",
90
77
  "http-server": "^14.1.1",
91
78
  "husky": "^9.1.7",
92
- "jsdom": "^29.0.0",
93
- "lint-staged": "^16.2.7",
94
- "semantic-release": "^25.0.2",
79
+ "jsdom": "^30.0.1",
80
+ "lint-staged": "^17.0.7",
81
+ "@changesets/cli": "^3.0.0",
95
82
  "shadow-dom-testing-library": "^1.13.1",
96
- "sinon": "^21.0.0",
83
+ "sinon": "^22.0.0",
97
84
  "storybook": "^10.1.9",
98
85
  "vitest": "^4.0.18"
99
- }
86
+ },
87
+ "overrides": {}
100
88
  }