{"version":3,"sources":["src/components/common/atomic-layout-section/atomic-layout-section.tsx"],"names":["AtomicLayoutSection"],"mappings":"0CAUaA,EAAmB","sourcesContent":["import {Component, Prop} from '@stencil/core';\nimport {Section} from './sections';\n\n/**\n * The `atomic-layout-section` lets you identify various sections for the related `atomic-layout` component.\n */\n@Component({\n tag: 'atomic-layout-section',\n shadow: false,\n})\nexport class AtomicLayoutSection {\n /**\n * The name of the layout section.\n */\n @Prop({reflect: true}) public section!: Section;\n /**\n * For column sections, the minimum horizontal space it should take.\n * E.g. '300px'\n */\n @Prop({reflect: true}) public minWidth?: string;\n /**\n * For column sections, the maximum horizontal space it should take.\n * E.g. '300px'\n */\n @Prop({reflect: true}) public maxWidth?: string;\n}\n"]}