mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-13 16:00:37 -05:00
* Execute pys-on* events when triggered, not at load Mimicing the behavior of Javascripts 'onLoad' event, we should not be executing the use code at page-load time, only when the event is triggered. * Update examples to new syntax * Fix merge issue * Await running event handler code * Restore pys-on* events with original behavior, deprecation warning * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * xfail toga example * Add missing { (typo) * Adjust callback chandling to make linter happy * Change alpha to latest (#760) * Don't create custom elements in main and fix various small issues on tests (#747) * Create custom elements when the runtime finishes loading * Remove xfails and fix repl integration test * Fix commented ignore * Address Antonio's comments * Fix bad rebase * Make ure to wait for repl to be in attached state before asserting content * Move createCustomeElement up so it runs before we close the loader, xfail flaky d3 test * Fix xfail * [pre-commit.ci] pre-commit autoupdate (#762) updates: - [github.com/pre-commit/mirrors-eslint: v8.23.0 → v8.23.1](https://github.com/pre-commit/mirrors-eslint/compare/v8.23.0...v8.23.1) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * change documentation to point to latest instead of frozen alpha (#764) * Toga example is xpass * Correct 'xpass' to 'xfail' mark Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Peter W <34256109+pww217@users.noreply.github.com> Co-authored-by: Fábio Rosado <fabiorosado@outlook.com>
53 lines
1.4 KiB
HTML
53 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<title>Todo App</title>
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
<link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
|
|
|
|
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
|
|
<py-env>
|
|
- paths:
|
|
- ./utils.py
|
|
</py-env>
|
|
</head>
|
|
|
|
<body class="container">
|
|
<!-- <py-repl id="my-repl" auto-generate="true"> </py-repl> -->
|
|
<py-script src="./todo.py"> </py-script>
|
|
|
|
<main>
|
|
<section>
|
|
|
|
<div class="text-center w-full mb-8">
|
|
<h1 class="text-3xl font-bold text-gray-800 uppercase tracking-tight">To Do List</h1>
|
|
</div>
|
|
<div>
|
|
<input id="new-task-content" class="py-input" type="text">
|
|
<button id="new-task-btn" class="py-button" type="submit" py-onClick="add_task()">
|
|
Add task
|
|
</button>
|
|
</div>
|
|
|
|
<py-list id="myList"></py-list>
|
|
<div id="list-tasks-container" class="flex flex-col-reverse mt-4">
|
|
</div>
|
|
|
|
<template id="task-template">
|
|
<section class="task py-li-element">
|
|
<label for="flex items-center p-2 ">
|
|
<input class="mr-2" type="checkbox">
|
|
<p class="m-0 inline"></p>
|
|
</label>
|
|
</section>
|
|
</template>
|
|
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|