@aurodesignsystem-dev/auro-toast 0.0.0-pr102.1 → 0.0.0-pr106.0
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/README.md +54 -77
- package/demo/api.js +12 -4
- package/demo/api.md +216 -113
- package/demo/api.min.js +64 -3
- package/demo/{auro-toaster.min.js → basic.min.js} +55 -20
- package/demo/index.js +1 -8
- package/demo/index.md +22 -266
- package/demo/index.min.js +3 -104
- package/dist/{auro-toaster-iuKVlBCD.js → auro-toaster-Ce-Gohhk.js} +2 -2
- package/dist/index.d.ts +201 -111
- package/dist/index.js +1 -1
- package/dist/registered.js +1 -1
- package/package.json +17 -10
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{A as AuroToast,a as AuroToaster}from"./auro-toaster-
|
|
1
|
+
export{A as AuroToast,a as AuroToaster}from"./auro-toaster-Ce-Gohhk.js";import"lit";import"lit/static-html.js";import"lit/directives/class-map.js";import"lit/directives/if-defined.js";
|
package/dist/registered.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{A as i,a as t}from"./auro-toaster-
|
|
1
|
+
import{A as i,a as t}from"./auro-toaster-Ce-Gohhk.js";import"lit";import"lit/static-html.js";import"lit/directives/class-map.js";import"lit/directives/if-defined.js";i.register(),t.register();
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"================================================================================"
|
|
8
8
|
],
|
|
9
9
|
"name": "@aurodesignsystem-dev/auro-toast",
|
|
10
|
-
"version": "0.0.0-
|
|
10
|
+
"version": "0.0.0-pr106.0",
|
|
11
11
|
"description": "auro-toast HTML custom element",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"node": ">=20"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"lit": "^3.3.
|
|
24
|
+
"lit": "^3.3.2"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@alaskaairux/icons": "^5.
|
|
28
|
-
"@aurodesignsystem/auro-button": "^12.
|
|
29
|
-
"@aurodesignsystem/auro-
|
|
30
|
-
"@aurodesignsystem/auro-cli": "^3.0.4",
|
|
27
|
+
"@alaskaairux/icons": "^5.14.0",
|
|
28
|
+
"@aurodesignsystem/auro-button": "^12.3.0",
|
|
29
|
+
"@aurodesignsystem/auro-cli": "^3.5.0",
|
|
31
30
|
"@aurodesignsystem/auro-config": "^1.3.1",
|
|
31
|
+
"@aurodesignsystem/auro-icon": "^9.1.1",
|
|
32
32
|
"@aurodesignsystem/auro-library": "^5.5.4",
|
|
33
|
-
"@aurodesignsystem/design-tokens": "^8.
|
|
34
|
-
"@aurodesignsystem/webcorestylesheets": "^10.1.
|
|
33
|
+
"@aurodesignsystem/design-tokens": "^8.7.0",
|
|
34
|
+
"@aurodesignsystem/webcorestylesheets": "^10.1.4",
|
|
35
35
|
"husky": "^9.1.7"
|
|
36
36
|
},
|
|
37
37
|
"browserslist": [
|
|
@@ -66,7 +66,12 @@
|
|
|
66
66
|
"exports": {
|
|
67
67
|
"./package.json": "./package.json",
|
|
68
68
|
"./readme.md": "./README.md",
|
|
69
|
-
".": "./
|
|
69
|
+
"./custom-elements.json": "./custom-elements.json",
|
|
70
|
+
".": {
|
|
71
|
+
"module": "./dist/registered.js",
|
|
72
|
+
"types": "./dist/index.d.ts",
|
|
73
|
+
"default": "./dist/registered.js"
|
|
74
|
+
},
|
|
70
75
|
"./demo/*.md": "./demo/*.md",
|
|
71
76
|
"./demo/*.js": "./demo/*.min.js",
|
|
72
77
|
"./class": {
|
|
@@ -82,5 +87,7 @@
|
|
|
82
87
|
"README.md",
|
|
83
88
|
"LICENSE",
|
|
84
89
|
"NOTICE"
|
|
85
|
-
]
|
|
90
|
+
],
|
|
91
|
+
"custom-elements": "./custom-elements.json",
|
|
92
|
+
"customElements": "custom-elements.json"
|
|
86
93
|
}
|