{"version":3,"file":"primary-navigation-utility-menu.Bmtf-zhu.js","sources":["../../../../../packages/web-components/src/lib/components/primary-navigation-utility-menu/primary-navigation-utility-menu.ts"],"sourcesContent":["// disable requiredSlot lint until requiredSlot error can be investigated for this component (throws error even if it is populated, may be a lifecycle issue)\n/* eslint-disable @nx/workspace-enforce-required-slot-decorator */\n\nimport { html } from 'lit';\nimport { property } from 'lit/decorators.js';\nimport { pdsCustomElement as customElement } from '../../decorators/pds-custom-element';\nimport { PdsElement } from '../PdsElement';\nimport styles from './primary-navigation-utility-menu.scss?inline';\nimport '../hr/hr';\n\n/**\n * @summary This component is a navigational element (nav) that holds an Un unordered list element (ul)\n *\n * @slot default Required: Contains one or more menu items within the pds-primary-navigation-utility-menu, restricted to pds-primary-navigation-utility-menu-item elements\n */\n@customElement('pds-primary-navigation-utility-menu', {\n category: 'component',\n type: 'component',\n state: 'stable',\n styles,\n})\nexport class PdsPrimaryNavigationUtilityMenu extends PdsElement {\n /**\n * Style variant\n * - **default** renders the default primary-navigation-utility-menu\n * - **inverted** renders the inverted primary-navigation-utility-menu\n */\n @property()\n variant: 'default' | 'inverted' = 'default';\n\n connectedCallback() {\n super.connectedCallback();\n this.initLocalization();\n }\n\n /**\n * @internal\n */\n get classNames() {\n return {\n [this.variant]: !!this.variant,\n };\n }\n\n protected override firstUpdated() {\n super.firstUpdated();\n this.handleSlotValidation();\n }\n\n render() {\n return html`\n \n \n `;\n }\n}\n"],"names":["PdsPrimaryNavigationUtilityMenu","PdsElement","html","__decorateClass","property","customElement","styles"],"mappings":";;;;;;;;;AAqBa,IAAAA,IAAN,cAA8CC,EAAW;AAAA,EAAzD,cAAA;AAAA,UAAA,GAAA,SAAA,GAO6B,KAAA,UAAA;AAAA,EAAA;AAAA,EAElC,oBAAoB;AAClB,UAAM,kBAAkB,GACxB,KAAK,iBAAiB;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA,EAMxB,IAAI,aAAa;AACR,WAAA;AAAA,MACL,CAAC,KAAK,OAAO,GAAG,CAAC,CAAC,KAAK;AAAA,IACzB;AAAA,EAAA;AAAA,EAGiB,eAAe;AAChC,UAAM,aAAa,GACnB,KAAK,qBAAqB;AAAA,EAAA;AAAA,EAG5B,SAAS;AACA,WAAAC;AAAAA;AAAAA;AAAAA;AAAAA,gBAIK,KAAK,SAAU,CAAA;AAAA,qBACV,KAAK,cAAc,cAAc,CAAC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAA;AASvD;AApCEC,EAAA;AAAA,EADCC,EAAS;AAAA,GANCJ,EAOX,WAAA,WAAA,CAAA;AAPWA,IAANG,EAAA;AAAA,EANNE,EAAc,uCAAuC;AAAA,IACpD,UAAU;AAAA,IACV,MAAM;AAAA,IACN,OAAO;AAAA,IACP,QAAAC;AAAA,EACD,CAAA;AAAA,GACYN,CAAA;"}