@digital-realty/ix-button 3.5.4-SM-2775.526998.0 → 3.5.4

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.
Files changed (2) hide show
  1. package/dist/IxButton.d.ts +1 -1
  2. package/package.json +6 -12
@@ -60,6 +60,6 @@ export declare class IxButton extends IxButtonBase implements FormSubmitter {
60
60
  constructor();
61
61
  private readonly handleActivationClick;
62
62
  private readonly tags;
63
- protected render(): import("lit-html").TemplateResult;
63
+ protected render(): import("lit").TemplateResult;
64
64
  }
65
65
  export {};
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent ix-button following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "Digital Realty",
6
- "version": "3.5.4-SM-2775.526998.0",
6
+ "version": "3.5.4",
7
7
  "type": "module",
8
8
  "main": "dist/index.js",
9
9
  "module": "dist/index.js",
@@ -23,16 +23,16 @@
23
23
  "scripts": {
24
24
  "analyze": "cem analyze --litelement",
25
25
  "start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
26
- "build": "tsc && npm run analyze -- --exclude dist && rollup -c",
27
- "prepublish": "tsc && npm run analyze -- --exclude dist",
26
+ "build": "tsc && pnpm run analyze --exclude dist && rollup -c",
27
+ "prepublish": "tsc && pnpm run analyze --exclude dist",
28
28
  "lint": "eslint --ext .ts,.html . && prettier \"**/*.ts\" --check --ignore-path .gitignore",
29
29
  "format": "eslint --ext .ts,.html . --fix && prettier \"**/*.ts\" --write --ignore-path .gitignore",
30
30
  "test": "tsc && wtr --coverage",
31
31
  "test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\""
32
32
  },
33
33
  "dependencies": {
34
- "@digital-realty/ix-progress": "^1.4.1",
35
- "@digital-realty/ix-shared-fns": "^1.1.1",
34
+ "@digital-realty/ix-progress": "^1.4.2",
35
+ "@digital-realty/ix-shared-fns": "^1.1.2",
36
36
  "@lit/react": "^1.0.2",
37
37
  "@material/web": "2.4.0",
38
38
  "@open-wc/lit-helpers": "^0.7.0",
@@ -51,7 +51,6 @@
51
51
  "concurrently": "^9.2.1",
52
52
  "eslint": "^9.39.4",
53
53
  "eslint-config-prettier": "^8.3.0",
54
- "husky": "^4.3.8",
55
54
  "lint-staged": "^10.5.4",
56
55
  "prettier": "^2.4.1",
57
56
  "rollup": "^4.29.1",
@@ -89,11 +88,6 @@
89
88
  "singleQuote": true,
90
89
  "arrowParens": "avoid"
91
90
  },
92
- "husky": {
93
- "hooks": {
94
- "pre-commit": "lint-staged"
95
- }
96
- },
97
91
  "lint-staged": {
98
92
  "*.ts": [
99
93
  "eslint --fix",
@@ -107,5 +101,5 @@
107
101
  "README.md",
108
102
  "LICENSE"
109
103
  ],
110
- "gitHead": "d56a76583ebdc8712fad38a4465f9b89e0202069"
104
+ "gitHead": "b84896f387916d401711a106719f040da9484925"
111
105
  }