@ncino/web-components 8.0.0-preview.23 → 8.0.0-preview.25

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.
Files changed (34) hide show
  1. package/dist/components/accordion/gator/group/accordion-group.gator.js +1 -1
  2. package/dist/components/badge/gator/badge.gator.js +2 -2
  3. package/dist/components/banner/gator/banner.gator.js +1 -1
  4. package/dist/components/breadcrumbs/gator/breadcrumb/breadcrumb.gator.js +2 -2
  5. package/dist/components/button-card/gator/button-card.gator.js +3 -3
  6. package/dist/components/checkbox/checkbox.gator.js +2 -2
  7. package/dist/components/display-card/gator/display-card.gator.js +2 -2
  8. package/dist/components/fab/gator/fab.gator.js +4 -4
  9. package/dist/components/guided-nav/gator/guided-nav/guided-nav.gator.js +5 -3
  10. package/dist/components/guided-nav/gator/guided-nav-step/guided-nav-step.gator.js +23 -14
  11. package/dist/components/guided-nav/gator/guided-nav-substep/guided-nav-substep.gator.js +9 -7
  12. package/dist/components/illustration/gator/illustration.gator.js +1 -1
  13. package/dist/components/list/gator/list/list.gator.js +5 -5
  14. package/dist/components/list/gator/list-item/list-item.gator.js +19 -19
  15. package/dist/components/progress-stepper/stepper-item/stepper-item.gator.js +37 -0
  16. package/dist/components/radio/radio.gator.js +2 -2
  17. package/dist/components/radio-group/radio-group.gator.js +2 -2
  18. package/dist/components/tooltip/tooltip.js +1 -1
  19. package/dist/packages/web-components/src/components/guided-nav/gator/guided-nav-step/guided-nav-step.gator.scss.js +1 -1
  20. package/dist/packages/web-components/src/components/guided-nav/gator/guided-nav-substep/guided-nav-substep.gator.scss.js +1 -1
  21. package/dist/packages/web-components/src/components/progress-stepper/stepper-item/stepper-item.gator.scss.js +1 -0
  22. package/dist/types/components/guided-nav/gator/guided-nav-step/guided-nav-step.gator.d.ts +9 -4
  23. package/dist/types/components/guided-nav/gator/guided-nav-substep/guided-nav-substep.gator.d.ts +5 -3
  24. package/dist/types/components/list/gator/list/list.gator.d.ts +2 -1
  25. package/dist/types/components/list/gator/list-item/list-item.gator.d.ts +5 -1
  26. package/dist/types/components/progress-stepper/stepper-item/stepper-item.gator.d.ts +27 -0
  27. package/dist/types/components/progress-stepper/stepper-item/stepper-item.gator.test.d.ts +0 -0
  28. package/dist/types/utils/components/slot-placeholder/slot-placeholder.d.ts +2 -0
  29. package/dist/types/utils/mixins/attribute-deletion.d.ts +0 -9
  30. package/dist/utils/components/ngc-component.js +1 -1
  31. package/dist/utils/components/slot-placeholder/slot-placeholder.js +15 -6
  32. package/dist/utils/mixins/attribute-deletion.js +1 -1
  33. package/package.json +1 -1
  34. package/web-types.json +125 -160
@@ -1,15 +1,17 @@
1
- import { NgcListItem } from '../../../list/gator/list-item/list-item.gator.ts';
2
1
  import { NJC_GUIDED_NAV_STEP_STATE, NjcGuidedNavSubstep } from '../../guided-nav.ts';
3
- export declare class NgcGuidedNavSubstep extends NgcListItem {
2
+ import { NgcComponent } from '../../../../utils/components/ngc-component.ts';
3
+ export declare class NgcGuidedNavSubstep extends NgcComponent {
4
4
  static styles: import('lit').CSSResult[];
5
5
  substep: NjcGuidedNavSubstep;
6
6
  selected: boolean;
7
7
  state: NJC_GUIDED_NAV_STEP_STATE;
8
+ isHidden: boolean;
8
9
  badgeContent: string | undefined;
9
- onSubstepSelected: (event: Event, step: NjcGuidedNavSubstep) => void;
10
+ onSubstepSelected: (event: Event, substep: NjcGuidedNavSubstep, parentStepId: string) => void;
10
11
  render(): import('lit').TemplateResult<1>;
11
12
  private get _substepClasses();
12
13
  private get _substepListItemClasses();
14
+ private get _substepParentStepId();
13
15
  }
14
16
  declare global {
15
17
  interface HTMLElementTagNameMap {
@@ -53,13 +53,14 @@ export declare class NgcList extends NgcComponent {
53
53
  fauxFocus: boolean;
54
54
  hideCheckmarks: boolean;
55
55
  ariaLabel: string | null;
56
+ role: 'list' | 'listbox' | 'group' | null;
56
57
  _selectedListItem: string | null;
57
58
  _activeIndex: number;
58
59
  _totalListItems: number;
59
60
  private _listItemsWithEventListeners;
60
61
  updated(changedProperties: Map<string, unknown>): void;
61
62
  render(): import('lit').TemplateResult<1>;
62
- get listRole(): string;
63
+ get listRole(): 'listbox' | 'list' | 'group';
63
64
  handleSlotChanged(): void;
64
65
  updateSlottedItems(): void;
65
66
  setFalseFocusToValue(value: string | number | File | File[] | Date): NgcListItem | undefined;
@@ -76,6 +76,8 @@ export declare class NgcListItem extends NgcComponent {
76
76
  * @property {string} tabIndex The tab index of the list item
77
77
  */
78
78
  tabindex: number | undefined;
79
+ ariaExpanded: string | null;
80
+ ariaCurrent: string | null;
79
81
  falseFocusing: boolean;
80
82
  listItemRef: Ref<HTMLLIElement>;
81
83
  connectedCallback(): void;
@@ -96,13 +98,15 @@ export declare class NgcListItem extends NgcComponent {
96
98
  get leftIconContent(): import('lit').TemplateResult<1> | null;
97
99
  get endMarkup(): import('lit').TemplateResult<1> | null;
98
100
  click(): void;
99
- handleListItemClicked(): void;
101
+ handleListItemClicked(e?: Event, interactionType?: 'click' | 'keyboard'): void;
100
102
  private handleItemKeyUp;
101
103
  selectItem(): void;
102
104
  falseFocus(): void;
103
105
  removeFalseFocus(): void;
104
106
  setAriaSelected(): void;
107
+ setAriaExpanded(): void;
105
108
  setRole(): void;
109
+ setAriaCurrent(): void;
106
110
  }
107
111
  declare global {
108
112
  interface HTMLElementTagNameMap {
@@ -0,0 +1,27 @@
1
+ import { PropertyValues } from 'lit';
2
+ import { NgcComponent } from '../../../utils/components/ngc-component';
3
+ export declare class NgcStepperItem extends NgcComponent {
4
+ variant: 'incomplete' | 'current' | 'success' | 'warning' | 'error' | 'ai';
5
+ vertical: boolean;
6
+ disabled: boolean;
7
+ skeleton: boolean;
8
+ active: boolean;
9
+ stepTitle: string | undefined;
10
+ stepSubtitle: string | undefined;
11
+ iconName: string | undefined;
12
+ static styles: import('lit').CSSResult[];
13
+ _orientation: string;
14
+ protected updated(_changedProperties: PropertyValues): void;
15
+ render(): import('lit').TemplateResult<1>;
16
+ get labelMarkup(): import('lit').TemplateResult<1>;
17
+ get titleTabIndex(): 0 | undefined;
18
+ get skeletonMarkup(): import('lit').TemplateResult<1>;
19
+ get classes(): {
20
+ [x: string]: boolean;
21
+ 'gator-stepper-item': boolean;
22
+ 'gator-stepper-item_disabled': boolean;
23
+ 'gator-stepper-item_skeleton': boolean;
24
+ 'gator-stepper-item_active': boolean;
25
+ };
26
+ get icon(): string;
27
+ }
@@ -1,7 +1,9 @@
1
1
  import { LitElement } from 'lit';
2
2
  export declare class SlotPlaceholder extends LitElement {
3
3
  slotName: string;
4
+ small: boolean;
4
5
  static styles: import('lit').CSSResult[];
5
6
  render(): import('lit').TemplateResult<1>;
6
7
  get namedSlotMarkup(): import('lit').TemplateResult<1>;
8
+ get smallSlotMarkup(): import('lit').TemplateResult<1>;
7
9
  }
@@ -1,14 +1,5 @@
1
1
  import { LitElement } from 'lit';
2
2
  type Constructor<T = {}> = new (...args: any[]) => T;
3
- /**
4
- * A mixin that extends a LitElement-based class to handle the deletion and restoration
5
- * of specific attributes (e.g., ARIA attributes) from the host element. This is useful
6
- * for managing accessibility-related attributes dynamically based on the component's state.
7
- *
8
- * @template T - The base class to extend, typically a LitElement.
9
- * @param superClass - The base class to extend.
10
- * @returns A class that extends the base class with attribute deletion functionality.
11
- */
12
3
  export declare const AttributeDeletionMixin: <T extends Constructor<LitElement>>(superClass: T) => T;
13
4
  /**
14
5
  * Determines whether a given attribute should be removed from the host element.
@@ -1 +1 @@
1
- import l from"../../packages/web-components/src/tokens/primitive.tokens.scss.js";import n from"../../packages/web-components/src/tokens/semantic.tokens.scss.js";import c from"../../packages/web-components/src/styles/_gator-utils.scss.js";import"../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/reactive-element.js";import"../../node_modules/.pnpm/lit-html@3.3.1/node_modules/lit-html/lit-html.js";import"../../node_modules/.pnpm/lit-element@4.2.1/node_modules/lit-element/lit-element.js";import{TestableLitElement as u}from"./testable-lit-element/testable-lit-element.js";import{AttributeDeletionMixin as v}from"../mixins/attribute-deletion.js";import{property as f}from"../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/decorators/property.js";import{unsafeCSS as r}from"../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/css-tag.js";var S=Object.defineProperty,y=(m,i,p,d)=>{for(var e=void 0,s=m.length-1,a;s>=0;s--)(a=m[s])&&(e=a(i,p,e)||e);return e&&S(i,p,e),e},t;const o=(t=class extends v(u){constructor(){super(...arguments),this.delegatesARIA=!0,this.skeleton=!1}},t.primitiveStyles=r(l),t.semanticStyles=r(n),t.primitiveAndSemanticStyleFilter=i=>i!==t.primitiveStyles&&i!==t.semanticStyles,t.styles=[r(l),r(n),r(c)],t);y([f({type:Boolean})],o.prototype,"delegatesARIA");y([f({type:Boolean})],o.prototype,"skeleton");let T=o;export{T as NgcComponent};
1
+ import l from"../../packages/web-components/src/tokens/primitive.tokens.scss.js";import n from"../../packages/web-components/src/tokens/semantic.tokens.scss.js";import c from"../../packages/web-components/src/styles/_gator-utils.scss.js";import S from"../../packages/web-components/public/styles/gator/gator-global-styles.css.js";import"../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/reactive-element.js";import"../../node_modules/.pnpm/lit-html@3.3.1/node_modules/lit-html/lit-html.js";import"../../node_modules/.pnpm/lit-element@4.2.1/node_modules/lit-element/lit-element.js";import{TestableLitElement as u}from"./testable-lit-element/testable-lit-element.js";import{AttributeDeletionMixin as v}from"../mixins/attribute-deletion.js";import{property as f}from"../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/decorators/property.js";import{unsafeCSS as i}from"../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/css-tag.js";var d=Object.defineProperty,y=(m,r,p,h)=>{for(var e=void 0,s=m.length-1,a;s>=0;s--)(a=m[s])&&(e=a(r,p,e)||e);return e&&d(r,p,e),e},t;const o=(t=class extends v(u){constructor(){super(...arguments),this.delegatesARIA=!0,this.skeleton=!1}},t.primitiveStyles=i(l),t.semanticStyles=i(n),t.primitiveAndSemanticStyleFilter=r=>r!==t.primitiveStyles&&r!==t.semanticStyles,t.styles=[i(l),i(n),i(c),i(S)],t);y([f({type:Boolean})],o.prototype,"delegatesARIA");y([f({type:Boolean})],o.prototype,"skeleton");let C=o;export{C as NgcComponent};
@@ -1,17 +1,26 @@
1
- import"../../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/reactive-element.js";import{html as i}from"../../../node_modules/.pnpm/lit-html@3.3.1/node_modules/lit-html/lit-html.js";import{LitElement as d}from"../../../node_modules/.pnpm/lit-element@4.2.1/node_modules/lit-element/lit-element.js";import{customElement as n}from"../../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/decorators/custom-element.js";import{property as c}from"../../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/decorators/property.js";import{css as f}from"../../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/css-tag.js";var v=Object.defineProperty,u=Object.getOwnPropertyDescriptor,p=(m,t,s,r)=>{for(var e=r>1?void 0:r?u(t,s):t,l=m.length-1,a;l>=0;l--)(a=m[l])&&(e=(r?a(t,s,e):a(e))||e);return r&&e&&v(t,s,e),e};let o=class extends d{constructor(){super(...arguments),this.slotName=""}render(){return i`
2
- <div class="slot-placeholder">
3
- ${this.namedSlotMarkup}
1
+ import"../../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/reactive-element.js";import{html as o}from"../../../node_modules/.pnpm/lit-html@3.3.1/node_modules/lit-html/lit-html.js";import{LitElement as n}from"../../../node_modules/.pnpm/lit-element@4.2.1/node_modules/lit-element/lit-element.js";import{customElement as c}from"../../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/decorators/custom-element.js";import{property as d}from"../../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/decorators/property.js";import{css as h}from"../../../node_modules/.pnpm/@lit_reactive-element@2.1.1/node_modules/@lit/reactive-element/css-tag.js";var u=Object.defineProperty,f=Object.getOwnPropertyDescriptor,m=(p,l,s,r)=>{for(var t=r>1?void 0:r?f(l,s):l,a=p.length-1,i;a>=0;a--)(i=p[a])&&(t=(r?i(l,s,t):i(t))||t);return r&&t&&u(l,s,t),t};let e=class extends n{constructor(){super(...arguments),this.slotName="",this.small=!1}render(){return o`
2
+ <div class="slot-placeholder slot-placeholder-${this.small?"small":"default"}">
3
+ ${this.small?this.smallSlotMarkup:this.namedSlotMarkup}
4
4
  </div>
5
- `}get namedSlotMarkup(){return this.slotName?i`<div>Slot Name: ${this.slotName}</div>`:i`<div>Default slot</div>`}};o.styles=[f`
5
+ `}get namedSlotMarkup(){return this.slotName?o`<div>Slot Name: ${this.slotName}</div>`:o`<div><slot>Default slot</slot></div>`}get smallSlotMarkup(){return o`<ngc-icon name="picture"></ngc-icon>`}};e.styles=[h`
6
6
  .slot-placeholder {
7
7
  display: var(--slot-placeholder-display, block);
8
8
  background: #D8C3F3;
9
9
  border: 1px dashed #9747FF;
10
10
  border-radius: 0.5rem;
11
- padding: 1rem;
12
11
  font-family: var(--text-family-body, 'Open Sans', sans-serif);
13
12
  font-size: var(--text-size-body-2, 0.9375rem);
14
13
  color: #6F1FC3;
15
14
  text-align: center;
15
+ box-sizing: border-box;
16
+ height: 100%;
17
+ }
18
+
19
+ .slot-placeholder-default {
20
+ padding: 1rem;
21
+ }
22
+
23
+ .slot-placeholder-small {
24
+ padding: 0;
16
25
  }
17
- `];p([c({attribute:"slot-name"})],o.prototype,"slotName",2);o=p([n("slot-placeholder")],o);export{o as SlotPlaceholder};
26
+ `];m([d({attribute:"slot-name"})],e.prototype,"slotName",2);m([d({type:Boolean,attribute:"small"})],e.prototype,"small",2);e=m([c("slot-placeholder")],e);export{e as SlotPlaceholder};
@@ -1 +1 @@
1
- const b=s=>{class i extends s{constructor(){super(...arguments),this.attributesRemovedFromHost=new Map}attributeChangedCallback(t,e,r){if(!this.shouldApplyAttributeDeletion||!a(t)){super.attributeChangedCallback(t,e,r);return}this.removeAttributesFromHost(t,e,r)}get shouldApplyAttributeDeletion(){return this.delegatesARIA??!1}updated(t){super.updated(t),t.has("delegatesARIA")&&(this.delegatesARIA||this.restoreAttributesToHost())}removeAttributesFromHost(t,e,r){this.attributesRemovedFromHost.has(t)||this.attributesRemovedFromHost.set(t,e),this.removeAttribute(t);const o=u(t);r===null?delete this.dataset[o]:this.dataset[o]=r,this.requestUpdate(o,e)}restoreAttributesToHost(){this.attributesRemovedFromHost.forEach((t,e)=>{t!==null&&this.setAttribute(e,t)}),this.attributesRemovedFromHost.clear()}}return i};function a(s){return["aria-label","aria-labelledby","title","id","role","aria-haspopup"].includes(s)}function u(s){return s.replace(/-\w/g,i=>i[1].toUpperCase())}export{b as AttributeDeletionMixin,a as isAttributeToRemove};
1
+ const a=["aria-label","aria-labelledby","title","id","role","aria-haspopup","aria-expanded","aria-current"],d=r=>{class i extends r{constructor(){super(...arguments),this.attributesRemovedFromHost=new Map}attributeChangedCallback(t,e,s){if(!this.shouldApplyAttributeDeletion||!u(t)){super.attributeChangedCallback(t,e,s);return}this.removeAttributesFromHost(t,e,s)}get shouldApplyAttributeDeletion(){return this.delegatesARIA??!1}updated(t){super.updated(t),t.has("delegatesARIA")&&(this.delegatesARIA||this.restoreAttributesToHost())}removeAttributesFromHost(t,e,s){this.attributesRemovedFromHost.has(t)||this.attributesRemovedFromHost.set(t,e),this.removeAttribute(t);const o=l(t);s===null?delete this.dataset[o]:this.dataset[o]=s,this.requestUpdate(o,e)}restoreAttributesToHost(){this.attributesRemovedFromHost.forEach((t,e)=>{t!==null&&this.setAttribute(e,t)}),this.attributesRemovedFromHost.clear()}}return i};function u(r){return a.includes(r)}function l(r){return r.replace(/-\w/g,i=>i[1].toUpperCase())}export{d as AttributeDeletionMixin,u as isAttributeToRemove};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ncino/web-components",
3
3
  "author": "nCino",
4
- "version": "8.0.0-preview.23",
4
+ "version": "8.0.0-preview.25",
5
5
  "license": "(c) Copyright 2023 nCino, Inc., all rights reserved",
6
6
  "publishConfig": {
7
7
  "registry": "https://registry.npmjs.org/"
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "name": "@ncino/web-components",
4
- "version": "8.0.0-preview.22",
4
+ "version": "8.0.0-preview.24",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -2031,6 +2031,14 @@
2031
2031
  "value": { "type": "string | null", "default": "null" }
2032
2032
  },
2033
2033
  { "name": "tabindex", "value": { "type": "number | undefined" } },
2034
+ {
2035
+ "name": "aria-expanded",
2036
+ "value": { "type": "string | null", "default": "null" }
2037
+ },
2038
+ {
2039
+ "name": "aria-current",
2040
+ "value": { "type": "string | null", "default": "null" }
2041
+ },
2034
2042
  {
2035
2043
  "name": "delegatesARIA",
2036
2044
  "description": "A boolean property that determines whether ARIA-related attributes\n(e.g., `aria-label`, `aria-labelledby`, `role`, etc.) are managed\nby the host element or delegated to the component.\n\n- When `true` (default), ARIA attributes are removed from the host\n and managed internally by the component.\n- When `false`, previously removed ARIA attributes are restored\n to the host element.",
@@ -2064,6 +2072,8 @@
2064
2072
  { "name": "hideCheckmark", "type": "boolean" },
2065
2073
  { "name": "role", "type": "string | null" },
2066
2074
  { "name": "tabindex", "type": "number | undefined" },
2075
+ { "name": "ariaExpanded", "type": "string | null" },
2076
+ { "name": "ariaCurrent", "type": "string | null" },
2067
2077
  { "name": "falseFocusing", "type": "boolean" },
2068
2078
  { "name": "listItemRef", "type": "Ref<HTMLLIElement>" },
2069
2079
  { "name": "classes" },
@@ -2951,6 +2961,13 @@
2951
2961
  "name": "aria-label",
2952
2962
  "value": { "type": "string | null", "default": "null" }
2953
2963
  },
2964
+ {
2965
+ "name": "role",
2966
+ "value": {
2967
+ "type": "'list' | 'listbox' | 'group' | null",
2968
+ "default": "null"
2969
+ }
2970
+ },
2954
2971
  {
2955
2972
  "name": "delegatesARIA",
2956
2973
  "description": "A boolean property that determines whether ARIA-related attributes\n(e.g., `aria-label`, `aria-labelledby`, `role`, etc.) are managed\nby the host element or delegated to the component.\n\n- When `true` (default), ARIA attributes are removed from the host\n and managed internally by the component.\n- When `false`, previously removed ARIA attributes are restored\n to the host element.",
@@ -2989,10 +3006,11 @@
2989
3006
  { "name": "fauxFocus", "type": "boolean" },
2990
3007
  { "name": "hideCheckmarks", "type": "boolean" },
2991
3008
  { "name": "ariaLabel", "type": "string | null" },
3009
+ { "name": "role", "type": "'list' | 'listbox' | 'group' | null" },
2992
3010
  { "name": "_selectedListItem", "type": "string | null" },
2993
3011
  { "name": "_activeIndex", "type": "number" },
2994
3012
  { "name": "_totalListItems", "type": "number" },
2995
- { "name": "listRole", "type": "string" },
3013
+ { "name": "listRole", "type": "'listbox' | 'list' | 'group'" },
2996
3014
  { "name": "nodes" },
2997
3015
  { "name": "listItems", "type": "NgcListItem[] | undefined" },
2998
3016
  {
@@ -3016,7 +3034,7 @@
3016
3034
  },
3017
3035
  {
3018
3036
  "name": "ngc-guided-nav-step",
3019
- "description": "\n---\n\n\n### **Events:**\n - **selected**\n\n### **Methods:**\n - **removeAttributesFromHost(name: _string_, oldValue: _string_, newValue: _string_)** - Removes an attribute from the host element and stores its original value in the map.\nAlso updates the corresponding `dataset` property for the attribute.\n- **restoreAttributesToHost()** - Restores all previously removed attributes to the host element.\nClears the map of removed attributes after restoration.",
3037
+ "description": "\n---\n\n\n### **Methods:**\n - **removeAttributesFromHost(name: _string_, oldValue: _string_, newValue: _string_)** - Removes an attribute from the host element and stores its original value in the map.\nAlso updates the corresponding `dataset` property for the attribute.\n- **restoreAttributesToHost()** - Restores all previously removed attributes to the host element.\nClears the map of removed attributes after restoration.",
3020
3038
  "doc-url": "",
3021
3039
  "attributes": [
3022
3040
  {
@@ -3049,65 +3067,13 @@
3049
3067
  {
3050
3068
  "name": "onSubstepSelected",
3051
3069
  "value": {
3052
- "type": "(event: Event, step: NjcGuidedNavSubstep) => void"
3070
+ "type": "(event: Event, substep: NjcGuidedNavSubstep, parentStepId: string) => void"
3053
3071
  }
3054
3072
  },
3055
3073
  {
3056
3074
  "name": "badgeContent",
3057
3075
  "value": { "type": "string | null", "default": "null" }
3058
3076
  },
3059
- { "name": "id", "value": { "type": "string", "default": "''" } },
3060
- { "name": "text", "value": { "type": "string", "default": "''" } },
3061
- { "name": "value", "value": { "type": "string", "default": "''" } },
3062
- {
3063
- "name": "subtitle",
3064
- "value": { "type": "string | null", "default": "null" }
3065
- },
3066
- {
3067
- "name": "density",
3068
- "value": { "type": "string", "default": "'default'" }
3069
- },
3070
- {
3071
- "name": "selectable",
3072
- "value": { "type": "boolean", "default": "false" }
3073
- },
3074
- {
3075
- "name": "selected",
3076
- "value": { "type": "boolean", "default": "false" }
3077
- },
3078
- {
3079
- "name": "multiselect",
3080
- "value": { "type": "boolean", "default": "false" }
3081
- },
3082
- {
3083
- "name": "end-icon",
3084
- "value": { "type": "string | null", "default": "null" }
3085
- },
3086
- {
3087
- "name": "start-icon",
3088
- "value": { "type": "string | null", "default": "null" }
3089
- },
3090
- {
3091
- "name": "current-list-item",
3092
- "value": { "type": "boolean", "default": "false" }
3093
- },
3094
- {
3095
- "name": "faux-focus",
3096
- "value": { "type": "boolean", "default": "false" }
3097
- },
3098
- {
3099
- "name": "icon-only",
3100
- "value": { "type": "boolean", "default": "false" }
3101
- },
3102
- {
3103
- "name": "hide-checkmark",
3104
- "value": { "type": "boolean", "default": "false" }
3105
- },
3106
- {
3107
- "name": "role",
3108
- "value": { "type": "string | null", "default": "null" }
3109
- },
3110
- { "name": "tabindex", "value": { "type": "number | undefined" } },
3111
3077
  {
3112
3078
  "name": "delegatesARIA",
3113
3079
  "description": "A boolean property that determines whether ARIA-related attributes\n(e.g., `aria-label`, `aria-labelledby`, `role`, etc.) are managed\nby the host element or delegated to the component.\n\n- When `true` (default), ARIA attributes are removed from the host\n and managed internally by the component.\n- When `false`, previously removed ARIA attributes are restored\n to the host element.",
@@ -3122,7 +3088,7 @@
3122
3088
  "value": { "type": "string | undefined", "default": "undefined" }
3123
3089
  }
3124
3090
  ],
3125
- "events": [{ "name": "selected", "type": "CustomEvent" }],
3091
+ "events": [],
3126
3092
  "js": {
3127
3093
  "properties": [
3128
3094
  { "name": "step", "type": "NjcGuidedNavStep" },
@@ -3137,33 +3103,10 @@
3137
3103
  },
3138
3104
  {
3139
3105
  "name": "onSubstepSelected",
3140
- "type": "(event: Event, step: NjcGuidedNavSubstep) => void"
3106
+ "type": "(event: Event, substep: NjcGuidedNavSubstep, parentStepId: string) => void"
3141
3107
  },
3142
3108
  { "name": "badgeContent", "type": "string | null" },
3143
- { "name": "id", "type": "string" },
3144
- { "name": "text", "type": "string" },
3145
- { "name": "value", "type": "string" },
3146
- { "name": "subtitle", "type": "string | null" },
3147
- { "name": "density", "type": "string" },
3148
- { "name": "selectable", "type": "boolean" },
3149
- { "name": "selected", "type": "boolean" },
3150
- { "name": "multiselect", "type": "boolean" },
3151
- { "name": "endIcon", "type": "string | null" },
3152
- { "name": "startIcon", "type": "string | null" },
3153
- { "name": "currentListItem", "type": "boolean" },
3154
- { "name": "fauxFocus", "type": "boolean" },
3155
- { "name": "iconOnly", "type": "boolean" },
3156
- { "name": "hideCheckmark", "type": "boolean" },
3157
- { "name": "role", "type": "string | null" },
3158
- { "name": "tabindex", "type": "number | undefined" },
3159
- { "name": "falseFocusing", "type": "boolean" },
3160
- { "name": "listItemRef", "type": "Ref<HTMLLIElement>" },
3161
- { "name": "classes" },
3162
- { "name": "replacedStringId" },
3163
- { "name": "subtitleSpacerElement" },
3164
- { "name": "interactionIconContent" },
3165
- { "name": "leftIconContent" },
3166
- { "name": "endMarkup" },
3109
+ { "name": "_substepsExpanded", "type": "boolean" },
3167
3110
  {
3168
3111
  "name": "shouldApplyAttributeDeletion",
3169
3112
  "description": "Determines whether attribute deletion should be applied.\nThis is controlled by the `delegatesARIA` property.",
@@ -3180,12 +3123,12 @@
3180
3123
  { "name": "helpTextDataTestid" },
3181
3124
  { "name": "errorMessageDataTestid" }
3182
3125
  ],
3183
- "events": [{ "name": "selected", "type": "CustomEvent" }]
3126
+ "events": []
3184
3127
  }
3185
3128
  },
3186
3129
  {
3187
3130
  "name": "ngc-guided-nav-substep",
3188
- "description": "\n---\n\n\n### **Events:**\n - **selected**\n\n### **Methods:**\n - **removeAttributesFromHost(name: _string_, oldValue: _string_, newValue: _string_)** - Removes an attribute from the host element and stores its original value in the map.\nAlso updates the corresponding `dataset` property for the attribute.\n- **restoreAttributesToHost()** - Restores all previously removed attributes to the host element.\nClears the map of removed attributes after restoration.",
3131
+ "description": "\n---\n\n\n### **Methods:**\n - **removeAttributesFromHost(name: _string_, oldValue: _string_, newValue: _string_)** - Removes an attribute from the host element and stores its original value in the map.\nAlso updates the corresponding `dataset` property for the attribute.\n- **restoreAttributesToHost()** - Restores all previously removed attributes to the host element.\nClears the map of removed attributes after restoration.",
3189
3132
  "doc-url": "",
3190
3133
  "attributes": [
3191
3134
  {
@@ -3206,6 +3149,10 @@
3206
3149
  "default": "'complete'"
3207
3150
  }
3208
3151
  },
3152
+ {
3153
+ "name": "isHidden",
3154
+ "value": { "type": "boolean", "default": "false" }
3155
+ },
3209
3156
  {
3210
3157
  "name": "badgeContent",
3211
3158
  "value": { "type": "string | undefined" }
@@ -3213,57 +3160,9 @@
3213
3160
  {
3214
3161
  "name": "onSubstepSelected",
3215
3162
  "value": {
3216
- "type": "(event: Event, step: NjcGuidedNavSubstep) => void"
3163
+ "type": "(event: Event, substep: NjcGuidedNavSubstep, parentStepId: string) => void"
3217
3164
  }
3218
3165
  },
3219
- { "name": "id", "value": { "type": "string", "default": "''" } },
3220
- { "name": "text", "value": { "type": "string", "default": "''" } },
3221
- { "name": "value", "value": { "type": "string", "default": "''" } },
3222
- {
3223
- "name": "subtitle",
3224
- "value": { "type": "string | null", "default": "null" }
3225
- },
3226
- {
3227
- "name": "density",
3228
- "value": { "type": "string", "default": "'default'" }
3229
- },
3230
- {
3231
- "name": "selectable",
3232
- "value": { "type": "boolean", "default": "false" }
3233
- },
3234
- {
3235
- "name": "multiselect",
3236
- "value": { "type": "boolean", "default": "false" }
3237
- },
3238
- {
3239
- "name": "end-icon",
3240
- "value": { "type": "string | null", "default": "null" }
3241
- },
3242
- {
3243
- "name": "start-icon",
3244
- "value": { "type": "string | null", "default": "null" }
3245
- },
3246
- {
3247
- "name": "current-list-item",
3248
- "value": { "type": "boolean", "default": "false" }
3249
- },
3250
- {
3251
- "name": "faux-focus",
3252
- "value": { "type": "boolean", "default": "false" }
3253
- },
3254
- {
3255
- "name": "icon-only",
3256
- "value": { "type": "boolean", "default": "false" }
3257
- },
3258
- {
3259
- "name": "hide-checkmark",
3260
- "value": { "type": "boolean", "default": "false" }
3261
- },
3262
- {
3263
- "name": "role",
3264
- "value": { "type": "string | null", "default": "null" }
3265
- },
3266
- { "name": "tabindex", "value": { "type": "number | undefined" } },
3267
3166
  {
3268
3167
  "name": "delegatesARIA",
3269
3168
  "description": "A boolean property that determines whether ARIA-related attributes\n(e.g., `aria-label`, `aria-labelledby`, `role`, etc.) are managed\nby the host element or delegated to the component.\n\n- When `true` (default), ARIA attributes are removed from the host\n and managed internally by the component.\n- When `false`, previously removed ARIA attributes are restored\n to the host element.",
@@ -3278,7 +3177,7 @@
3278
3177
  "value": { "type": "string | undefined", "default": "undefined" }
3279
3178
  }
3280
3179
  ],
3281
- "events": [{ "name": "selected", "type": "CustomEvent" }],
3180
+ "events": [],
3282
3181
  "js": {
3283
3182
  "properties": [
3284
3183
  { "name": "substep", "type": "NjcGuidedNavSubstep" },
@@ -3287,34 +3186,12 @@
3287
3186
  "name": "state",
3288
3187
  "type": "'complete' | 'current' | 'incomplete'"
3289
3188
  },
3189
+ { "name": "isHidden", "type": "boolean" },
3290
3190
  { "name": "badgeContent", "type": "string | undefined" },
3291
3191
  {
3292
3192
  "name": "onSubstepSelected",
3293
- "type": "(event: Event, step: NjcGuidedNavSubstep) => void"
3193
+ "type": "(event: Event, substep: NjcGuidedNavSubstep, parentStepId: string) => void"
3294
3194
  },
3295
- { "name": "id", "type": "string" },
3296
- { "name": "text", "type": "string" },
3297
- { "name": "value", "type": "string" },
3298
- { "name": "subtitle", "type": "string | null" },
3299
- { "name": "density", "type": "string" },
3300
- { "name": "selectable", "type": "boolean" },
3301
- { "name": "multiselect", "type": "boolean" },
3302
- { "name": "endIcon", "type": "string | null" },
3303
- { "name": "startIcon", "type": "string | null" },
3304
- { "name": "currentListItem", "type": "boolean" },
3305
- { "name": "fauxFocus", "type": "boolean" },
3306
- { "name": "iconOnly", "type": "boolean" },
3307
- { "name": "hideCheckmark", "type": "boolean" },
3308
- { "name": "role", "type": "string | null" },
3309
- { "name": "tabindex", "type": "number | undefined" },
3310
- { "name": "falseFocusing", "type": "boolean" },
3311
- { "name": "listItemRef", "type": "Ref<HTMLLIElement>" },
3312
- { "name": "classes" },
3313
- { "name": "replacedStringId" },
3314
- { "name": "subtitleSpacerElement" },
3315
- { "name": "interactionIconContent" },
3316
- { "name": "leftIconContent" },
3317
- { "name": "endMarkup" },
3318
3195
  {
3319
3196
  "name": "shouldApplyAttributeDeletion",
3320
3197
  "description": "Determines whether attribute deletion should be applied.\nThis is controlled by the `delegatesARIA` property.",
@@ -3331,7 +3208,7 @@
3331
3208
  { "name": "helpTextDataTestid" },
3332
3209
  { "name": "errorMessageDataTestid" }
3333
3210
  ],
3334
- "events": [{ "name": "selected", "type": "CustomEvent" }]
3211
+ "events": []
3335
3212
  }
3336
3213
  },
3337
3214
  {
@@ -7689,6 +7566,88 @@
7689
7566
  "events": [],
7690
7567
  "js": { "properties": [], "events": [] }
7691
7568
  },
7569
+ {
7570
+ "name": "ngc-stepper-item",
7571
+ "description": "\n---\n\n\n### **Methods:**\n - **removeAttributesFromHost(name: _string_, oldValue: _string_, newValue: _string_)** - Removes an attribute from the host element and stores its original value in the map.\nAlso updates the corresponding `dataset` property for the attribute.\n- **restoreAttributesToHost()** - Restores all previously removed attributes to the host element.\nClears the map of removed attributes after restoration.",
7572
+ "doc-url": "",
7573
+ "attributes": [
7574
+ {
7575
+ "name": "variant",
7576
+ "value": {
7577
+ "type": "'incomplete' | 'current' | 'success' | 'warning' | 'error' | 'ai'",
7578
+ "default": "'incomplete'"
7579
+ }
7580
+ },
7581
+ {
7582
+ "name": "vertical",
7583
+ "value": { "type": "boolean", "default": "false" }
7584
+ },
7585
+ {
7586
+ "name": "disabled",
7587
+ "value": { "type": "boolean", "default": "false" }
7588
+ },
7589
+ {
7590
+ "name": "skeleton",
7591
+ "value": { "type": "boolean", "default": "false" }
7592
+ },
7593
+ {
7594
+ "name": "active",
7595
+ "value": { "type": "boolean", "default": "false" }
7596
+ },
7597
+ { "name": "step-title", "value": { "type": "string | undefined" } },
7598
+ {
7599
+ "name": "step-subtitle",
7600
+ "value": { "type": "string | undefined" }
7601
+ },
7602
+ { "name": "icon-name", "value": { "type": "string | undefined" } },
7603
+ {
7604
+ "name": "delegatesARIA",
7605
+ "description": "A boolean property that determines whether ARIA-related attributes\n(e.g., `aria-label`, `aria-labelledby`, `role`, etc.) are managed\nby the host element or delegated to the component.\n\n- When `true` (default), ARIA attributes are removed from the host\n and managed internally by the component.\n- When `false`, previously removed ARIA attributes are restored\n to the host element.",
7606
+ "value": { "type": "boolean", "default": "true" }
7607
+ },
7608
+ {
7609
+ "name": "data-testid",
7610
+ "value": { "type": "string | undefined", "default": "undefined" }
7611
+ }
7612
+ ],
7613
+ "events": [],
7614
+ "js": {
7615
+ "properties": [
7616
+ {
7617
+ "name": "variant",
7618
+ "type": "'incomplete' | 'current' | 'success' | 'warning' | 'error' | 'ai'"
7619
+ },
7620
+ { "name": "vertical", "type": "boolean" },
7621
+ { "name": "disabled", "type": "boolean" },
7622
+ { "name": "skeleton", "type": "boolean" },
7623
+ { "name": "active", "type": "boolean" },
7624
+ { "name": "stepTitle", "type": "string | undefined" },
7625
+ { "name": "stepSubtitle", "type": "string | undefined" },
7626
+ { "name": "iconName", "type": "string | undefined" },
7627
+ { "name": "_orientation" },
7628
+ { "name": "labelMarkup" },
7629
+ { "name": "titleTabIndex" },
7630
+ { "name": "skeletonMarkup" },
7631
+ { "name": "classes" },
7632
+ { "name": "icon" },
7633
+ {
7634
+ "name": "shouldApplyAttributeDeletion",
7635
+ "description": "Determines whether attribute deletion should be applied.\nThis is controlled by the `delegatesARIA` property.",
7636
+ "type": "boolean"
7637
+ },
7638
+ {
7639
+ "name": "delegatesARIA",
7640
+ "description": "A boolean property that determines whether ARIA-related attributes\n(e.g., `aria-label`, `aria-labelledby`, `role`, etc.) are managed\nby the host element or delegated to the component.\n\n- When `true` (default), ARIA attributes are removed from the host\n and managed internally by the component.\n- When `false`, previously removed ARIA attributes are restored\n to the host element.",
7641
+ "type": "boolean"
7642
+ },
7643
+ { "name": "dataTestid", "type": "string | undefined" },
7644
+ { "name": "labelDataTestid" },
7645
+ { "name": "helpTextDataTestid" },
7646
+ { "name": "errorMessageDataTestid" }
7647
+ ],
7648
+ "events": []
7649
+ }
7650
+ },
7692
7651
  {
7693
7652
  "name": "ngc-illustration-list",
7694
7653
  "description": "An element that renders all of the illustrations in the illustration registry.\nThis component is not distributed as part of the library, but is useful for\ndevelopment and testing.\n---\n",
@@ -7705,13 +7664,19 @@
7705
7664
  {
7706
7665
  "name": "slot-name",
7707
7666
  "value": { "type": "string", "default": "''" }
7667
+ },
7668
+ {
7669
+ "name": "small",
7670
+ "value": { "type": "boolean", "default": "false" }
7708
7671
  }
7709
7672
  ],
7710
7673
  "events": [],
7711
7674
  "js": {
7712
7675
  "properties": [
7713
7676
  { "name": "slotName", "type": "string" },
7714
- { "name": "namedSlotMarkup" }
7677
+ { "name": "small", "type": "boolean" },
7678
+ { "name": "namedSlotMarkup" },
7679
+ { "name": "smallSlotMarkup" }
7715
7680
  ],
7716
7681
  "events": []
7717
7682
  }