@exmg/exm-radio 1.0.0 → 1.0.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/index.d.ts CHANGED
@@ -1 +1 @@
1
- export { ExmgRadioItem } from './src/exm-radio-item.js';
1
+ export { ExmRadioItem } from './src/exm-radio-item.js';
package/index.js CHANGED
@@ -1,2 +1,2 @@
1
- export { ExmgRadioItem } from './src/exm-radio-item.js';
1
+ export { ExmRadioItem } from './src/exm-radio-item.js';
2
2
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exmg/exm-radio",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Material style radio element",
5
5
  "contributors": [
6
6
  "Ex Machina"
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "license": "MIT",
34
34
  "dependencies": {
35
- "@material/web": "^1.3.0",
35
+ "@material/web": "^2.2.0",
36
36
  "lit": "3.0.0",
37
37
  "tslib": "^2.6.2"
38
38
  },
@@ -46,5 +46,5 @@
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  },
49
- "gitHead": "0907b55c89325d59902b98a64c352bf6e1fc81ff"
49
+ "gitHead": "274f2fb879258487017192fcfe33c8cd23244dbb"
50
50
  }
@@ -3,7 +3,7 @@ import { Radio } from '@material/web/radio/internal/radio.js';
3
3
  * exm-radio-item
4
4
  * Material 3 radio item
5
5
  */
6
- export declare class ExmgRadioItem extends Radio {
6
+ export declare class ExmRadioItem extends Radio {
7
7
  private readonly maskIdOverride;
8
8
  static styles: import("lit").CSSResult[];
9
9
  radio: boolean;
@@ -11,6 +11,6 @@ export declare class ExmgRadioItem extends Radio {
11
11
  }
12
12
  declare global {
13
13
  interface HTMLElementTagNameMap {
14
- 'exm-radio-item': ExmgRadioItem;
14
+ 'exm-radio-item': ExmRadioItem;
15
15
  }
16
16
  }
@@ -10,7 +10,7 @@ let maskId = 0;
10
10
  * exm-radio-item
11
11
  * Material 3 radio item
12
12
  */
13
- let ExmgRadioItem = class ExmgRadioItem extends Radio {
13
+ let ExmRadioItem = class ExmRadioItem extends Radio {
14
14
  constructor() {
15
15
  super(...arguments);
16
16
  // Unique maskId is required because of a Safari bug that fail to persist
@@ -56,12 +56,12 @@ let ExmgRadioItem = class ExmgRadioItem extends Radio {
56
56
  `;
57
57
  }
58
58
  };
59
- ExmgRadioItem.styles = [styles, radioStyle];
59
+ ExmRadioItem.styles = [styles, radioStyle];
60
60
  __decorate([
61
61
  property({ type: Boolean })
62
- ], ExmgRadioItem.prototype, "radio", void 0);
63
- ExmgRadioItem = __decorate([
62
+ ], ExmRadioItem.prototype, "radio", void 0);
63
+ ExmRadioItem = __decorate([
64
64
  customElement('exm-radio-item')
65
- ], ExmgRadioItem);
66
- export { ExmgRadioItem };
65
+ ], ExmRadioItem);
66
+ export { ExmRadioItem };
67
67
  //# sourceMappingURL=exm-radio-item.js.map