Remove with Text
Remove GetEngineeringSpcReview Better error message EnforceCodeStyleInBuild NginxFileSystem Remove Reactors and Working Directory AppSettings Delete self contained Thunder Tests Back to .net8.0 api/v4/InfinityQS ApiExplorerSettings Wafer Counter
This commit is contained in:
@ -0,0 +1,5 @@
|
||||
.dropdown-separator {
|
||||
height: 1px;
|
||||
background-color: #EEEDED;
|
||||
margin: 8px 16px;
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
// dropdown-separator.tsx
|
||||
import { h } from "@stencil/core";
|
||||
export class DropdownSeparator {
|
||||
render() {
|
||||
return (h("div", { class: 'dropdown-separator' }));
|
||||
}
|
||||
static get is() { return "ifx-dropdown-separator"; }
|
||||
static get encapsulation() { return "shadow"; }
|
||||
static get originalStyleUrls() {
|
||||
return {
|
||||
"$": ["dropdown-separator.scss"]
|
||||
};
|
||||
}
|
||||
static get styleUrls() {
|
||||
return {
|
||||
"$": ["dropdown-separator.css"]
|
||||
};
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=dropdown-separator.js.map
|
@ -0,0 +1 @@
|
||||
{"version":3,"file":"dropdown-separator.js","sourceRoot":"","sources":["../../../../src/components/dropdown/dropdown-seperator/dropdown-separator.tsx"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,OAAO,EAAE,SAAS,EAAE,CAAC,EAAE,MAAM,eAAe,CAAC;AAQ7C,MAAM,OAAO,iBAAiB;EAC5B,MAAM;IACJ,OAAO,CACL,WAAK,KAAK,EAAC,oBAAoB,GAAO,CACvC,CAAA;EACH,CAAC;;;;;;;;;CACF","sourcesContent":["// dropdown-separator.tsx\nimport { Component, h } from \"@stencil/core\";\n\n@Component({\n tag: 'ifx-dropdown-separator',\n styleUrl: 'dropdown-separator.scss',\n shadow: true\n})\n\nexport class DropdownSeparator {\n render() {\n return (\n <div class='dropdown-separator'></div>\n )\n }\n}"]}
|
Reference in New Issue
Block a user