web-component-wrapper 0.0.348 → 0.0.349

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 +1 -1
  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.348",
3
+ "version": "0.0.349",
4
4
  "description": "Generic web-component base class and framework specific wrapper.",
5
5
  "keywords": [
6
6
  "component",
package/type.d.ts CHANGED
@@ -20,7 +20,7 @@ export declare type EventToPropertyMapping<E extends Mapping<unknown> = Mapping<
20
20
  export declare type PropertyConfiguration = string | ValueOf<typeof PropertyTypes>;
21
21
  export declare type PropertiesConfiguration = Mapping<PropertyConfiguration>;
22
22
  export declare type NormalizedAttributesReflectionConfiguration = Map<string, PropertyConfiguration>;
23
- export declare type AttributesReflectionConfiguration = (Array<string> | PropertiesConfiguration | NormalizedAttributesReflectionConfiguration);
23
+ export declare type AttributesReflectionConfiguration = (string | Array<string> | PropertiesConfiguration | NormalizedAttributesReflectionConfiguration);
24
24
  export declare type ScopeDeclaration = Array<string> | Mapping<unknown>;
25
25
  export declare type PreCompiledItem = {
26
26
  originalScopeNames: Array<string>;