Shows what happens when default value is set before custom element is upgraded
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
| *.iml | |
| node_modules/ |
eye test.n3 files.n3 rules.n3
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
| # Get response from a GET request | |
| [ | |
| http:absolutePath "/things" ; | |
| http:method http-methods:GET ; | |
| http:header ( "accept" "text/turtle" ) ; | |
| ] http:resp ?res . | |
| # Check OK response and | |
| { | |
| ?res http:status http:OK ; |
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
Show hidden characters
| { | |
| "extends": [ | |
| "@open-wc/eslint-config", | |
| "@tpluscode" | |
| ], | |
| "env": { | |
| "browser": true | |
| }, | |
| "parserOptions": { | |
| "project": "./tsconfig.json" |
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
| { | |
| "@vocab": "urn:cas:", | |
| "element": { | |
| "@id": "element", | |
| "@container": "@set", | |
| "@type": "@id" | |
| }, | |
| "__Entity": { | |
| "@id": "urn:cas:entity", | |
| "@type": "@id" |
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
| <book/a-macska-es-a-puding> | |
| a schema:Book ; | |
| schema:title "A Macska és a puding" ; | |
| schema:author [ schema:givenName "Biljana" ; schema:familyName "Nikolic" ] ; | |
| schema:associatedMedia [ | |
| schema:contentUrl <book/a-macska-es-a-puding.pdf> ; | |
| ] ; | |
| schema:image [ | |
| a schema:ImageObject ; | |
| schema:contentUrl <large-cover> ; |
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
| node_modules |
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 { css, html, LitElement, unsafeCSS } from 'lit' | |
| import { customElement, property } from 'lit/decorators.js' | |
| import Editor from '@toast-ui/editor' | |
| import styles from '@toast-ui/editor/dist/toastui-editor.css' | |
| @customElement('tui-markdown') | |
| export class TuiMarkdown extends LitElement { | |
| @property({ type: String }) | |
| public value: string | undefined = '' |
NewerOlder