mirror of https://github.com/sveltejs/svelte
parent
206a3d0131
commit
e6ed8ef49f
@ -1,7 +1,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
import List from './List.html';
|
import List from './List.svelte';
|
||||||
import Item from './Item.html';
|
import Item from './Item.svelte';
|
||||||
|
|
||||||
let item;
|
let item;
|
||||||
let page;
|
let page;
|
@ -1,5 +1,5 @@
|
|||||||
<script>
|
<script>
|
||||||
import Foo from './Foo.html';
|
import Foo from './Foo.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
@ -1,8 +1,8 @@
|
|||||||
<svelte:options immutable/>
|
<svelte:options immutable/>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ImmutableTodo from './ImmutableTodo.html';
|
import ImmutableTodo from './ImmutableTodo.svelte';
|
||||||
import MutableTodo from './MutableTodo.html';
|
import MutableTodo from './MutableTodo.svelte';
|
||||||
|
|
||||||
export let todos;
|
export let todos;
|
||||||
|
|
@ -1,5 +1,5 @@
|
|||||||
<script>
|
<script>
|
||||||
import Modal from './Modal.html';
|
import Modal from './Modal.svelte';
|
||||||
|
|
||||||
export let showModal;
|
export let showModal;
|
||||||
</script>
|
</script>
|
@ -1,5 +1,5 @@
|
|||||||
<script>
|
<script>
|
||||||
import Nested from './Nested.html';
|
import Nested from './Nested.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<p>This is a top-level element.</p>
|
<p>This is a top-level element.</p>
|
@ -1,5 +1,5 @@
|
|||||||
<script>
|
<script>
|
||||||
import Scatterplot from './Scatterplot.html';
|
import Scatterplot from './Scatterplot.svelte';
|
||||||
|
|
||||||
export let a;
|
export let a;
|
||||||
export let b;
|
export let b;
|
Before Width: | Height: | Size: 828 B After Width: | Height: | Size: 828 B |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
@ -1,7 +1,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
import Icon from './Icon.html';
|
import Icon from './Icon.svelte';
|
||||||
import Logo from './Logo.html';
|
import Logo from './Logo.svelte';
|
||||||
|
|
||||||
export let segment;
|
export let segment;
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import InlineSvg from '../components/InlineSvg.html';
|
import InlineSvg from '../components/InlineSvg.svelte';
|
||||||
import Nav from '../components/TopNav.html';
|
import Nav from '../components/TopNav.svelte';
|
||||||
|
|
||||||
export let child;
|
export let child;
|
||||||
export let path;
|
export let path;
|
@ -1,6 +1,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import { onMount, afterUpdate } from 'svelte';
|
import { onMount, afterUpdate } from 'svelte';
|
||||||
import Icon from '../../components/Icon.html';
|
import Icon from '../../components/Icon.svelte';
|
||||||
|
|
||||||
export let sections = [];
|
export let sections = [];
|
||||||
export let active_section = null;
|
export let active_section = null;
|
@ -1,6 +1,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import Icon from '../components/Icon.html';
|
import Icon from '../components/Icon.svelte';
|
||||||
import Logo from '../components/Logo.html';
|
import Logo from '../components/Logo.svelte';
|
||||||
import contributors from './_contributors.js';
|
import contributors from './_contributors.js';
|
||||||
|
|
||||||
let sy = 0;
|
let sy = 0;
|
@ -1,5 +1,5 @@
|
|||||||
<script>
|
<script>
|
||||||
import CodeMirror from '../CodeMirror.html';
|
import CodeMirror from '../CodeMirror.svelte';
|
||||||
|
|
||||||
export let component;
|
export let component;
|
||||||
export let error;
|
export let error;
|
@ -1,6 +1,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import ComponentSelector from './ComponentSelector.html';
|
import ComponentSelector from './ComponentSelector.svelte';
|
||||||
import ModuleEditor from './ModuleEditor.html';
|
import ModuleEditor from './ModuleEditor.svelte';
|
||||||
|
|
||||||
export let component_store;
|
export let component_store;
|
||||||
export let selected_store;
|
export let selected_store;
|
@ -1,7 +1,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { createEventDispatcher } from 'svelte';
|
import { createEventDispatcher } from 'svelte';
|
||||||
import * as fleece from 'golden-fleece';
|
import * as fleece from 'golden-fleece';
|
||||||
import CodeMirror from '../CodeMirror.html';
|
import CodeMirror from '../CodeMirror.svelte';
|
||||||
|
|
||||||
const dispatch = createEventDispatcher();
|
const dispatch = createEventDispatcher();
|
||||||
|
|
@ -1,9 +1,9 @@
|
|||||||
<script>
|
<script>
|
||||||
import SplitPane from '../SplitPane.html';
|
import SplitPane from '../SplitPane.svelte';
|
||||||
import Viewer from './Viewer.html';
|
import Viewer from './Viewer.svelte';
|
||||||
import CompilerOptions from './CompilerOptions.html';
|
import CompilerOptions from './CompilerOptions.svelte';
|
||||||
import PropEditor from './PropEditor.html';
|
import PropEditor from './PropEditor.svelte';
|
||||||
import CodeMirror from '../CodeMirror.html';
|
import CodeMirror from '../CodeMirror.svelte';
|
||||||
|
|
||||||
export let bundle;
|
export let bundle;
|
||||||
export let js;
|
export let js;
|
Loading…
Reference in new issue