This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import {LitElement, html, css} from 'lit'; | |
| import {customElement, property} from 'lit/decorators.js'; | |
| @customElement('accessible-accordion') | |
| export class AccessibleAccordion extends LitElement { | |
| static override styles = css` | |
| .accordion { | |
| border: 1px solid #ccc; | |
| border-radius: 4px; | |
| margin: 0 0 10px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| fetchUtils, | |
| GET_LIST, | |
| GET_ONE, | |
| GET_MANY, | |
| GET_MANY_REFERENCE, | |
| CREATE, | |
| UPDATE, | |
| UPDATE_MANY, | |
| DELETE, |