@utrecht/web-component-library-stencil
Version:
Stencil component library bundle for the Municipality of Utrecht based on the NL Design System architecture
50 lines (49 loc) • 1.33 kB
JavaScript
/**
* @license EUPL-1.2
* Copyright (c) 2020-2024 Frameless B.V.
* Copyright (c) 2021-2024 Gemeente Utrecht
*/
import { h } from "@stencil/core";
export class ColumnLayout {
constructor() {
this.rule = false;
}
render() {
return h("slot", { key: '563688d8babe895046cc3acbdc1876814af54d2c' });
}
static get is() { return "utrecht-column-layout"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["column-layout.scss"]
};
}
static get styleUrls() {
return {
"$": ["column-layout.css"]
};
}
static get properties() {
return {
"rule": {
"type": "boolean",
"mutable": false,
"complexType": {
"original": "boolean",
"resolved": "boolean",
"references": {}
},
"required": false,
"optional": false,
"docs": {
"tags": [],
"text": ""
},
"attribute": "rule",
"reflect": true,
"defaultValue": "false"
}
};
}
}
//# sourceMappingURL=column-layout.js.map