@aurodesignsystem-dev/auro-tail 0.0.0-pr6.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/LICENSE +201 -0
- package/NOTICE +2 -0
- package/README.md +172 -0
- package/custom-elements.json +1331 -0
- package/demo/api.html +56 -0
- package/demo/api.js +1 -0
- package/demo/api.md +702 -0
- package/demo/api.min.js +4 -0
- package/demo/auro-tail-group.min.js +923 -0
- package/demo/index.html +56 -0
- package/demo/index.js +6 -0
- package/demo/index.md +103 -0
- package/demo/index.min.js +6 -0
- package/dist/auro-tail-group-Dy3qOCFd.js +184 -0
- package/dist/index.d.ts +192 -0
- package/dist/index.js +1 -0
- package/dist/registered.js +1 -0
- package/package.json +88 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{A as AuroTail,a as AuroTailGroup}from"./auro-tail-group-Dy3qOCFd.js";import"lit/static-html.js";import"lit";import"lit/directives/if-defined.js";import"lit/directives/class-map.js";import"lit/directives/ref.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{A as i,a as t}from"./auro-tail-group-Dy3qOCFd.js";import"lit/static-html.js";import"lit";import"lit/directives/if-defined.js";import"lit/directives/class-map.js";import"lit/directives/ref.js";i.register(),t.register();
|
package/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"//": [
|
|
3
|
+
"================================================================================",
|
|
4
|
+
"# To work within the development environment, run the following tasks",
|
|
5
|
+
" 1. $ npm run dev",
|
|
6
|
+
" 2. Go to http://localhost:8000",
|
|
7
|
+
"================================================================================"
|
|
8
|
+
],
|
|
9
|
+
"name": "@aurodesignsystem-dev/auro-tail",
|
|
10
|
+
"version": "0.0.0-pr6.0",
|
|
11
|
+
"description": "auro-tail HTML custom element",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/AlaskaAirlines/auro-tail"
|
|
15
|
+
},
|
|
16
|
+
"type": "module",
|
|
17
|
+
"main": "dist/registered.js",
|
|
18
|
+
"types": "dist/index.d.ts",
|
|
19
|
+
"license": "Apache-2.0",
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=20"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"lit": "^3.3.0"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@aurodesignsystem/auro-cli": "^3.1.1",
|
|
28
|
+
"@aurodesignsystem/auro-config": "^1.3.1",
|
|
29
|
+
"@aurodesignsystem/auro-hyperlink": "^7.0.0",
|
|
30
|
+
"@aurodesignsystem/auro-icon": "^9.1.1",
|
|
31
|
+
"@aurodesignsystem/auro-library": "^5.5.3",
|
|
32
|
+
"@aurodesignsystem/design-tokens": "^8.4.4",
|
|
33
|
+
"@aurodesignsystem/webcorestylesheets": "10.0.4",
|
|
34
|
+
"husky": "^9.1.7"
|
|
35
|
+
},
|
|
36
|
+
"browserslist": [
|
|
37
|
+
"last 2 Chrome versions",
|
|
38
|
+
"last 2 iOS major versions",
|
|
39
|
+
"last 2 Firefox versions",
|
|
40
|
+
"last 2 Edge versions",
|
|
41
|
+
"last 2 Safari major versions"
|
|
42
|
+
],
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public",
|
|
45
|
+
"provenance": true
|
|
46
|
+
},
|
|
47
|
+
"keywords": [
|
|
48
|
+
"alaska airlines",
|
|
49
|
+
"auro",
|
|
50
|
+
"design system",
|
|
51
|
+
"web components"
|
|
52
|
+
],
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "auro build",
|
|
55
|
+
"build:version": "node ./scripts/version.mjs",
|
|
56
|
+
"dev": "auro dev -w -s",
|
|
57
|
+
"dev:open": "auro dev -w -s --open",
|
|
58
|
+
"lint": "biome check --no-errors-on-unmatched && stylelint \"./src/**/*.scss\"",
|
|
59
|
+
"lint:fix": "biome check --fix --no-errors-on-unmatched && stylelint \"./src/**/*.scss\" --fix",
|
|
60
|
+
"test": "auro test",
|
|
61
|
+
"test:watch": "auro test --watch",
|
|
62
|
+
"test:coverage": "auro test --coverage-report --open",
|
|
63
|
+
"prepare": "husky"
|
|
64
|
+
},
|
|
65
|
+
"exports": {
|
|
66
|
+
"./package.json": "./package.json",
|
|
67
|
+
"./custom-elements.json": "./custom-elements.json",
|
|
68
|
+
"./readme.md": "./README.md",
|
|
69
|
+
".": "./dist/registered.js",
|
|
70
|
+
"./demo/*.md": "./demo/*.md",
|
|
71
|
+
"./demo/*.js": "./demo/*.min.js",
|
|
72
|
+
"./class": {
|
|
73
|
+
"module": "./dist/index.js",
|
|
74
|
+
"types": "./dist/index.d.ts",
|
|
75
|
+
"default": "./dist/index.js"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"files": [
|
|
79
|
+
"custom-elements.json",
|
|
80
|
+
"dist/**/*",
|
|
81
|
+
"demo/**/*",
|
|
82
|
+
"CHANGELOG.md",
|
|
83
|
+
"README.md",
|
|
84
|
+
"LICENSE",
|
|
85
|
+
"NOTICE"
|
|
86
|
+
],
|
|
87
|
+
"customElements": "custom-elements.json"
|
|
88
|
+
}
|