{"version":3,"file":"linelength-container.C1Wq39K3.js","sources":["../../../../../packages/web-components/src/lib/components/linelength-container/linelength-container.ts"],"sourcesContent":["// disable requiredSlot lint until requiredSlot error can be investigated for this component (causes box button to error)\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 './linelength-container.scss?inline';\n\n/**\n * @summary A container element meant to wrap page content, capping width at about 80 characters per line\n *\n * @slot default Required: Holds the elements within the layout\n */\n@customElement('pds-linelength-container', {\n category: 'layout',\n type: 'component',\n styles,\n})\nexport class PdsLinelengthContainer extends PdsElement {\n /**\n * - **default** linelength container that caps the width at about 80 characters per line\n * - **sm** linelength container that caps the width at about 60 characters per line\n */\n @property()\n size: 'sm' | 'default' = 'default';\n\n /**\n * @internal\n */\n get classNames() {\n return {\n sm: this.size === 'sm',\n };\n }\n\n render() {\n return html`