@aurodesignsystem-dev/auro-tail 0.0.0-pr27.0 → 0.0.0-pr27.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
@@ -223,15 +223,15 @@ The `tail` attribute is required.
223
223
 
224
224
  When the `tail` attribute is omitted or an unrecognized tail code is provided, `<auro-tail>` gracefully falls back to a default tail livery graphic rather than showing a broken icon.
225
225
 
226
- - **No `tail` attribute** — the underlying `<auro-icon>` receives no `name` and renders the default tail livery.
227
- - **Invalid tail code** (e.g., `tail="INVALID"`) — the icon cannot resolve the requested graphic and falls back to the default tail livery via the `tailFallback` behavior built into `<auro-icon>`.
226
+ - **No `tail` attribute** — renders the default tail livery.
227
+ - **Invalid tail code** (e.g., `tail="INVALID"`) — falls back to the default tail livery.
228
228
 
229
229
  <div class="exampleWrapper">
230
230
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=../apiExamples/fallback.html) -->
231
231
  <!-- The below content is automatically added from ../apiExamples/fallback.html -->
232
- <!-- No tail attribute: the icon has no name and tailFallback renders the default tail livery -->
232
+ <!-- No tail attribute: renders the default tail livery -->
233
233
  <auro-tail></auro-tail>
234
- <!-- Invalid tail code: the icon cannot find "tail-INVALID" and tailFallback renders the default tail livery -->
234
+ <!-- Invalid tail code: falls back to the default tail livery -->
235
235
  <auro-tail tail="INVALID"></auro-tail>
236
236
  <!-- AURO-GENERATED-CONTENT:END -->
237
237
  </div>
@@ -241,9 +241,9 @@ When the `tail` attribute is omitted or an unrecognized tail code is provided, `
241
241
  <!-- The below code snippet is automatically added from ../apiExamples/fallback.html -->
242
242
 
243
243
  ```html
244
- <!-- No tail attribute: the icon has no name and tailFallback renders the default tail livery -->
244
+ <!-- No tail attribute: renders the default tail livery -->
245
245
  <auro-tail></auro-tail>
246
- <!-- Invalid tail code: the icon cannot find "tail-INVALID" and tailFallback renders the default tail livery -->
246
+ <!-- Invalid tail code: falls back to the default tail livery -->
247
247
  <auro-tail tail="INVALID"></auro-tail>
248
248
  ```
249
249
  <!-- AURO-GENERATED-CONTENT:END -->
@@ -665,7 +665,7 @@ class AuroTail extends i$1 {
665
665
  const tailContent = u$3`
666
666
  <div class="border">
667
667
  <div class="container" part="container" role="img" aria-label=${ariaLabel}>
668
- <${this.iconTag} category="logos" name=${o$2(this.tail ? `tail-${this.tail.toUpperCase()}` : undefined)} tailFallback></${this.iconTag}>
668
+ <${this.iconTag} category="logos" name=${this.tail ? `tail-${this.tail.toUpperCase()}` : 'tail-DEFAULT'}></${this.iconTag}>
669
669
  </div>
670
670
  ${badge?.icon ? u$3`<div class="badge">${badge.icon()}</div>` : null}
671
671
  </div>
@@ -161,7 +161,7 @@ import{unsafeStatic as e,literal as t,html as a}from"lit/static-html.js";import{
161
161
  `;class Oe extends o{static isAuroTail=!0;static get styles(){return[De]}static get properties(){return{badge:{type:String},href:{type:String,attribute:"href"},size:{type:String,reflect:!0},tail:{type:String},variant:{type:String,reflect:!0}}}static register(e="auro-tail"){u.prototype.registerComponent(e,Oe)}#e(){this.size="lg"}constructor(){super(),this.#e(),this._carrierType="oa";const e=new h;this.iconTag=e.generateTag("auro-icon","9.1.1",ye),this.hyperlinkTag=e.generateTag("auro-hyperlink","7.1.0",ue),this.runtimeUtils=new u}get carrierType(){const e={aag:["as","ha"],oa:["oa"]},t=this.tail?.toLowerCase();for(const[a,r]of Object.entries(e))if(r.includes(t))return a;return"oa"}_findParentGroup(){let e=this.parentElement;for(;e;){if(He(e))return e;e=e.parentElement}return null}get isInGroup(){return!!this._findParentGroup()}get isInHorizontalGroup(){const e=this._findParentGroup();return!!e&&"horizontal"===e.getAttribute("layout")}get isInDiagonalGroup(){const e=this._findParentGroup();return!!e&&"diagonal"===e.getAttribute("layout")}get badgeConfig(){return this.badge&&!this.isInGroup&&ke.includes(this.size)?we[this.badge]:void 0}get shouldShowLink(){return!!this.href&&!this.isInGroup&&ze.includes(this.size)}get labelTypeClass(){return{md:"body-xs",lg:"body-sm",xl:"body-default","2xl":"body-lg"}[this.size]||"body-sm"}connectedCallback(){super.connectedCallback()}firstUpdated(){this.runtimeUtils.handleComponentTagRename(this,"auro-tail")}updated(e){e.has("tail")&&(this._carrierType=this.carrierType,this.dataset.carrierType=this.carrierType),super.updated(e)}render(){const e=this.badgeConfig,t=e?function(e,t={}){return e.replace(/\{(\w+)\}/g,(e,a)=>a in t?t[a]:e)}(Be,{badgeAlt:e.alt}):Se,r=a`
162
162
  <div class="border">
163
163
  <div class="container" part="container" role="img" aria-label=${t}>
164
- <${this.iconTag} category="logos" name=${n(this.tail?`tail-${this.tail.toUpperCase()}`:void 0)} tailFallback></${this.iconTag}>
164
+ <${this.iconTag} category="logos" name=${this.tail?`tail-${this.tail.toUpperCase()}`:"tail-DEFAULT"}></${this.iconTag}>
165
165
  </div>
166
166
  ${e?.icon?a`<div class="badge">${e.icon()}</div>`:null}
167
167
  </div>
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- export{A as AuroTail,a as AuroTailGroup}from"./auro-tail-group-D7HcAS9m.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";
1
+ export{A as AuroTail,a as AuroTailGroup}from"./auro-tail-group-BQfA7yu8.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";
@@ -1 +1 @@
1
- import{A as i,a as t}from"./auro-tail-group-D7HcAS9m.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();
1
+ import{A as i,a as t}from"./auro-tail-group-BQfA7yu8.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 CHANGED
@@ -7,7 +7,7 @@
7
7
  "================================================================================"
8
8
  ],
9
9
  "name": "@aurodesignsystem-dev/auro-tail",
10
- "version": "0.0.0-pr27.0",
10
+ "version": "0.0.0-pr27.2",
11
11
  "description": "auro-tail HTML custom element",
12
12
  "repository": {
13
13
  "type": "git",
@@ -24,6 +24,7 @@
24
24
  "lit": "^3.3.2"
25
25
  },
26
26
  "devDependencies": {
27
+ "@alaskaairux/icons": "^5.23.0",
27
28
  "@aurodesignsystem/auro-cli": "^3.6.0",
28
29
  "@aurodesignsystem/auro-config": "^1.3.1",
29
30
  "@aurodesignsystem/auro-hyperlink": "^8.0.2",