lowlander 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/README.md +43 -67
  2. package/build/client/client.d.ts +8 -1
  3. package/build/client/client.js +39 -22
  4. package/build/client/client.js.map +1 -1
  5. package/build/dashboard/client/crud.d.ts +16 -0
  6. package/build/dashboard/client/crud.js +525 -0
  7. package/build/dashboard/client/crud.js.map +1 -0
  8. package/build/dashboard/client/main.js +238 -246
  9. package/build/dashboard/client/main.js.map +1 -1
  10. package/build/dashboard/dashboard.html +8 -8
  11. package/build/dashboard/server.d.ts +20 -9
  12. package/build/dashboard/server.d.ts.map +1 -1
  13. package/build/dashboard/server.js +139 -3
  14. package/build/dashboard/server.js.map +1 -1
  15. package/build/examples/helloworld/.edinburgh/commit_worker.log +1765 -0
  16. package/build/examples/helloworld/.edinburgh/data.mdb +0 -0
  17. package/build/examples/helloworld/.edinburgh/lock.mdb +0 -0
  18. package/build/examples/helloworld/client/assets/style.css +0 -45
  19. package/build/examples/helloworld/client/index.html +2 -13
  20. package/build/examples/helloworld/client/js/base.d.ts +1 -4
  21. package/build/examples/helloworld/client/js/base.js +8 -217
  22. package/build/examples/helloworld/client/js/base.js.map +1 -1
  23. package/build/examples/helloworld/server/api.d.ts +4 -0
  24. package/build/examples/helloworld/server/api.d.ts.map +1 -1
  25. package/build/examples/helloworld/server/api.js +10 -0
  26. package/build/examples/helloworld/server/api.js.map +1 -1
  27. package/build/server/server.d.ts +3 -3
  28. package/build/server/server.d.ts.map +1 -1
  29. package/build/server/server.js +44 -5
  30. package/build/server/server.js.map +1 -1
  31. package/build/tsconfig.client.tsbuildinfo +1 -1
  32. package/build/tsconfig.server.tsbuildinfo +1 -1
  33. package/client/client.ts +41 -23
  34. package/dashboard/build-bundle.ts +8 -2
  35. package/dashboard/client/crud.ts +634 -0
  36. package/dashboard/client/main.ts +234 -246
  37. package/dashboard/server.ts +149 -5
  38. package/package.json +9 -5
  39. package/server/server.ts +43 -8
  40. package/skill/SKILL.md +30 -47
  41. package/skill/Connection_pruneCommitIds.md +0 -8
@@ -1,45 +0,0 @@
1
- html,
2
- body {
3
- box-sizing: border-box;
4
- }
5
- body {
6
- background-color: #0a0f0a;
7
- background-image:
8
- linear-gradient(rgba(0, 120, 0, 0.1) 1px, transparent 1px),
9
- linear-gradient(90deg, rgba(0, 120, 0, 0.1) 1px, transparent 1px);
10
- background-size: 20px 20px;
11
- color: #00ff00;
12
- font-family: 'Courier New', Courier, monospace;
13
- min-height: 100vh;
14
- padding: 20px;
15
- }
16
- h2 {
17
- border-bottom: 1px solid rgba(0, 255, 0, 0.3);
18
- padding-bottom: 5px;
19
- margin-top: 25px;
20
- }
21
- ul {
22
- list-style-type: none;
23
- padding-left: 20px;
24
- }
25
- input, button {
26
- border: 1px solid #00ff00;
27
- padding: 8px 12px;
28
- color: #00ff00;
29
- font-family: inherit;
30
- background-color: rgba(0, 255, 0, 0.1);
31
- }
32
- input:focus, button:hover {
33
- outline: none;
34
- }
35
- button {
36
- cursor: pointer;
37
- background-color: green;
38
- color: white;
39
- }
40
-
41
- .busy {
42
- cursor: default;
43
- pointer-events: none;
44
- opacity: 0.6;
45
- }
@@ -1,22 +1,11 @@
1
1
  <!doctype html>
2
- <html lang="en" dir="ltr" class="mdui-theme-dark">
2
+ <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
5
6
  <title>Lowlander Hello World Example</title>
6
- <meta
7
- name="viewport"
8
- content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
9
- />
10
- <meta name="format-detection" content="telephone=no" />
11
- <meta name="msapplication-tap-highlight" content="no" />
12
- <meta name="theme-color" content="#31d53d" />
13
- <link
14
- href="https://fonts.googleapis.com/icon?family=Material+Icons"
15
- rel="stylesheet"
16
- />
17
7
  </head>
18
8
  <body>
19
9
  <script src="./js/base.js" type="module"></script>
20
10
  </body>
21
-
22
11
  </html>
@@ -1,4 +1 @@
1
- import 'mdui/mdui.css';
2
- import 'mdui/components/button.js';
3
- import 'mdui/components/fab.js';
4
- import 'mdui/components/text-field.js';
1
+ export {};