@aurodesignsystem-dev/auro-alert 0.0.0-pr111.0 → 0.0.0-pr111.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/demo/api.md CHANGED
@@ -17,9 +17,9 @@ The `auro-alert` element is used to provide contextual feedback messages for typ
17
17
 
18
18
  ### Methods
19
19
 
20
- | Name | Parameters | Return | Description |
21
- | -------- | ------------------------------------------------------------------- | ------ | ------------------------------------------------- |
22
- | register | `name` (string) - The name of element that you want to register to. | | This will register this element with the browser. |
20
+ | Name | Parameters | Return | Description |
21
+ | -------- | -------------------------------------------------------------------- | ------ | ------------------------------------------------- |
22
+ | register | `name` (string) - The name of the element that you want to register. | | This will register this element with the browser. |
23
23
 
24
24
  ### Slots
25
25
 
@@ -342,7 +342,7 @@ class AuroAlert extends AuroElement {
342
342
 
343
343
  /**
344
344
  * This will register this element with the browser.
345
- * @param {string} [name="auro-alert"] - The name of element that you want to register to.
345
+ * @param {string} [name="auro-alert"] - The name of the element that you want to register.
346
346
  *
347
347
  * @example
348
348
  * AuroAlert.register("custom-alert") // this will register this element to <custom-alert/>
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "================================================================================"
9
9
  ],
10
10
  "name": "@aurodesignsystem-dev/auro-alert",
11
- "version": "0.0.0-pr111.0",
11
+ "version": "0.0.0-pr111.2",
12
12
  "description": "auro-alert HTML custom element",
13
13
  "repository": {
14
14
  "type": "git",
@@ -66,7 +66,11 @@
66
66
  "./package.json": "./package.json",
67
67
  "./custom-elements.json": "./custom-elements.json",
68
68
  "./readme.md": "./README.md",
69
- ".": "./dist/registered.js",
69
+ ".": {
70
+ "module": "./dist/registered.js",
71
+ "types": "./dist/index.d.ts",
72
+ "default": "./dist/registered.js"
73
+ },
70
74
  "./demo/*.md": "./demo/*.md",
71
75
  "./demo/*.js": "./demo/*.min.js",
72
76
  "./class": {