@aurodesignsystem-dev/auro-slideshow 0.0.0-pr65.0 → 0.0.0-pr68.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 +66 -74
- package/demo/api.html +1 -1
- package/demo/api.md +270 -264
- package/demo/auro-slideshow.min.js +16 -12
- package/demo/index.html +3 -3
- package/demo/index.md +16 -81
- package/dist/{auro-slideshow-BG8voTdj.js → auro-slideshow-B2IA2NHn.js} +5 -5
- package/dist/index.d.ts +243 -140
- package/dist/index.js +1 -1
- package/dist/registered.js +1 -1
- package/package.json +18 -11
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{A as AuroSlideshow}from"./auro-slideshow-
|
|
1
|
+
export{A as AuroSlideshow}from"./auro-slideshow-B2IA2NHn.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}from"./auro-slideshow-
|
|
1
|
+
import{A as i}from"./auro-slideshow-B2IA2NHn.js";import"lit";import"lit/static-html.js";import"lit/directives/class-map.js";import"lit/directives/if-defined.js";i.register();
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"================================================================================"
|
|
8
8
|
],
|
|
9
9
|
"name": "@aurodesignsystem-dev/auro-slideshow",
|
|
10
|
-
"version": "0.0.0-
|
|
10
|
+
"version": "0.0.0-pr68.0",
|
|
11
11
|
"description": "auro-slideshow HTML custom element",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
@@ -21,23 +21,23 @@
|
|
|
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-cli": "^3.0
|
|
27
|
+
"@alaskaairux/icons": "^5.14.0",
|
|
28
|
+
"@aurodesignsystem/auro-button": "^12.3.0",
|
|
29
|
+
"@aurodesignsystem/auro-cli": "^3.5.0",
|
|
30
30
|
"@aurodesignsystem/auro-config": "^1.3.1",
|
|
31
|
-
"@aurodesignsystem/auro-icon": "^9.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
|
"embla-carousel": "^8.6.0",
|
|
36
36
|
"embla-carousel-auto-scroll": "^8.6.0",
|
|
37
37
|
"embla-carousel-autoplay": "^8.6.0",
|
|
38
38
|
"embla-carousel-class-names": "^8.6.0",
|
|
39
39
|
"husky": "^9.1.7",
|
|
40
|
-
"sinon": "^21.0.
|
|
40
|
+
"sinon": "^21.0.1"
|
|
41
41
|
},
|
|
42
42
|
"browserslist": [
|
|
43
43
|
"last 2 Chrome versions",
|
|
@@ -70,7 +70,12 @@
|
|
|
70
70
|
},
|
|
71
71
|
"exports": {
|
|
72
72
|
"./readme.md": "./README.md",
|
|
73
|
-
".": "./
|
|
73
|
+
"./custom-elements.json": "./custom-elements.json",
|
|
74
|
+
".": {
|
|
75
|
+
"module": "./dist/registered.js",
|
|
76
|
+
"types": "./dist/index.d.ts",
|
|
77
|
+
"default": "./dist/registered.js"
|
|
78
|
+
},
|
|
74
79
|
"./demo/*.md": "./demo/*.md",
|
|
75
80
|
"./demo/*.js": "./demo/*.min.js",
|
|
76
81
|
"./class": {
|
|
@@ -87,5 +92,7 @@
|
|
|
87
92
|
"README.md",
|
|
88
93
|
"LICENSE",
|
|
89
94
|
"NOTICE"
|
|
90
|
-
]
|
|
95
|
+
],
|
|
96
|
+
"custom-elements": "./custom-elements.json",
|
|
97
|
+
"customElements": "custom-elements.json"
|
|
91
98
|
}
|