@aurodesignsystem-dev/auro-lockup 0.0.0-pr69.1 → 0.0.0-pr73.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/demo/api.md +1 -1
- package/demo/auro-lockup.min.js +1 -1
- package/package.json +7 -5
package/demo/api.md
CHANGED
|
@@ -15,7 +15,7 @@ The auro-lockup element is a standardized custom element for the use in headers
|
|
|
15
15
|
|
|
16
16
|
| Property | Attribute | Type | Default | Description |
|
|
17
17
|
|--------------|--------------|-----------|-------------|--------------------------------------------------|
|
|
18
|
-
| [appearance](#appearance) | `appearance` | `string` | "'default'" | Defines whether the component
|
|
18
|
+
| [appearance](#appearance) | `appearance` | `string` | "'default'" | Defines whether the component will be on lighter or darker backgrounds. |
|
|
19
19
|
| [oneworld](#oneworld) | `oneworld` | `boolean` | false | (DEPRECATED) Replaces product name and tag line with Oneworld logo. |
|
|
20
20
|
| [path](#path) | `path` | `string` | "/" | URL path for lockup link. |
|
|
21
21
|
| [standard](#standard) | `standard` | `boolean` | false | Uses the standard Alaska logo in place of the official logo, requires use of `oneWorld` attribute. |
|
package/demo/auro-lockup.min.js
CHANGED
|
@@ -159,7 +159,7 @@ class AuroLockup extends i$1 {
|
|
|
159
159
|
// ...super.properties,
|
|
160
160
|
|
|
161
161
|
/**
|
|
162
|
-
* Defines whether the component
|
|
162
|
+
* Defines whether the component will be on lighter or darker backgrounds.
|
|
163
163
|
* @property {'default', 'inverse'}
|
|
164
164
|
* @default 'default'
|
|
165
165
|
*/
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"================================================================================"
|
|
8
8
|
],
|
|
9
9
|
"name": "@aurodesignsystem-dev/auro-lockup",
|
|
10
|
-
"version": "0.0.0-
|
|
10
|
+
"version": "0.0.0-pr73.0",
|
|
11
11
|
"description": "auro-lockup HTML custom element",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"types": "dist/index.d.ts",
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": "
|
|
21
|
+
"node": ">=20"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"lit": "^3.3.0"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@alaskaairux/icons": "^5.5.0",
|
|
28
28
|
"@aurodesignsystem/auro-cli": "^3.0.3",
|
|
29
|
-
"@aurodesignsystem/auro-config": "^1.3.
|
|
29
|
+
"@aurodesignsystem/auro-config": "^1.3.1",
|
|
30
30
|
"@aurodesignsystem/auro-library": "^5.5.3",
|
|
31
31
|
"@aurodesignsystem/design-tokens": "^8.4.4",
|
|
32
32
|
"@aurodesignsystem/webcorestylesheets": "10.0.4",
|
|
@@ -40,7 +40,8 @@
|
|
|
40
40
|
"last 2 Safari major versions"
|
|
41
41
|
],
|
|
42
42
|
"publishConfig": {
|
|
43
|
-
"access": "public"
|
|
43
|
+
"access": "public",
|
|
44
|
+
"provenance": true
|
|
44
45
|
},
|
|
45
46
|
"keywords": [
|
|
46
47
|
"alaska airlines",
|
|
@@ -56,7 +57,8 @@
|
|
|
56
57
|
"lint:fix": "biome check --fix --no-errors-on-unmatched && stylelint \"./src/**/*.scss\" --fix",
|
|
57
58
|
"test": "auro test",
|
|
58
59
|
"test:watch": "auro test --watch",
|
|
59
|
-
"prepare": "husky"
|
|
60
|
+
"prepare": "husky",
|
|
61
|
+
"test:coverage": "auro test --coverage-report --open"
|
|
60
62
|
},
|
|
61
63
|
"exports": {
|
|
62
64
|
"./package.json": "./package.json",
|