web-component-wrapper 0.0.509 → 0.0.511

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +14 -14
  2. package/type.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-component-wrapper",
3
- "version": "0.0.509",
3
+ "version": "0.0.511",
4
4
  "description": "Generic web-component base class and framework specific wrapper.",
5
5
  "keywords": [
6
6
  "component",
@@ -70,30 +70,30 @@
70
70
  "devDependencies": {
71
71
  "@babel/eslint-parser": "^7.25.9",
72
72
  "@babel/runtime": "^7.26.0",
73
- "@stylistic/eslint-plugin-ts": "^2.11.0",
73
+ "@stylistic/eslint-plugin-ts": "^2.12.1",
74
74
  "@types/ejs": "^3.1.5",
75
75
  "@types/html-minifier": "^4.0.5",
76
76
  "@types/jsdom": "^21.1.7",
77
- "@types/node": "^22.10.1",
78
- "@types/react": "^19.0.1",
79
- "@types/react-dom": "^19.0.1",
77
+ "@types/node": "^22.10.2",
78
+ "@types/react": "^19.0.2",
79
+ "@types/react-dom": "^19.0.2",
80
80
  "@types/webpack-env": "^1.18.5",
81
- "@typescript-eslint/eslint-plugin": "^8.17.0",
82
- "@typescript-eslint/parser": "^8.17.0",
81
+ "@typescript-eslint/eslint-plugin": "^8.18.2",
82
+ "@typescript-eslint/parser": "^8.18.2",
83
83
  "@webcomponents/webcomponentsjs": "^2.8.0",
84
- "clientnode": "^3.0.1249",
85
- "documentation-website": "^1.0.340",
86
- "eslint": "^9.16.0",
84
+ "clientnode": "^3.0.1255",
85
+ "documentation-website": "^1.0.341",
86
+ "eslint": "^9.17.0",
87
87
  "eslint-config-google": "^0.14.0",
88
- "eslint-plugin-jsdoc": "^50.6.0",
88
+ "eslint-plugin-jsdoc": "^50.6.1",
89
89
  "jest": "^29.7.0",
90
90
  "jsdoc": "^4.0.4",
91
91
  "prop-types": "^15.8.1",
92
92
  "react": "^19.0.0",
93
93
  "react-dom": "^19.0.0",
94
- "typescript-eslint": "^8.17.0",
95
- "weboptimizer": "^2.0.1547",
96
- "webpack-dev-server": "^5.1.0"
94
+ "typescript-eslint": "^8.18.2",
95
+ "weboptimizer": "^2.0.1552",
96
+ "webpack-dev-server": "^5.2.0"
97
97
  },
98
98
  "peerDependencies": {
99
99
  "@babel/runtime": "*",
package/type.d.ts CHANGED
@@ -19,7 +19,7 @@ export type EventMapper<E extends Mapping<unknown> = Mapping<unknown>, I extends
19
19
  export type EventToPropertyMapping<E extends Mapping<unknown> = Mapping<unknown>, I extends Mapping<unknown> = Mapping<unknown>, P extends Array<unknown> = Array<unknown>> = Mapping<true | EventMapper<E, I, P>>;
20
20
  export type PropertyType = string | ValueOf<typeof PropertyTypes>;
21
21
  export type PropertyConfiguration = PropertyType;
22
- export type ValidationMapping = ValidationMap<PropertyType>;
22
+ export type ValidationMapping = ValidationMap<ValueOf<typeof PropertyTypes>>;
23
23
  export type PropertiesValidationMap = Mapping<ValueOf<typeof PropertyTypes>>;
24
24
  export type PropertiesConfiguration = Mapping | PropertiesValidationMap;
25
25
  export type NormalizedAttributesReflectionConfiguration = Map<string, PropertyConfiguration>;