twenty-client 0.4.2 → 0.4.3
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.
- checksums.yaml +4 -4
- data/build/index.html +13 -0
- data/build/js/main.js +9 -10
- data/build/tasks/edit/index.html +1 -1
- data/build/tasks/new/index.html +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f47d8fa7140c28c001ef023542b604b99f5715521ddacd52f67f1d16af93963b
|
4
|
+
data.tar.gz: 40cdf6155491617ef0836117977e70520aa09d618feb30f34667dfb08036e8c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4dd51328dab44d6a53d96dd3f2fcc5b59b90f65d24e8ac6b69f70dcb6487a0cead3936b255e0123a9c5e49ea2f84e0e94434c8ff781215bdd8c3d88384c8d4a5
|
7
|
+
data.tar.gz: 0dbcae31021f9e7146a27e63e16a85cd241389195f2674272207f1ce9f133677859bc4a87af245daba4f058ec67341d2a57eea2186d574e917161240c9631756
|
data/build/index.html
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>20</title>
|
6
|
+
<link rel="stylesheet" href="/css/main.css"/>
|
7
|
+
<link rel="icon" href="/favicon.svg"/>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<div class="react-tasks w-full wrapper"></div>
|
11
|
+
<script src="/js/main.js"></script>
|
12
|
+
</body>
|
13
|
+
</html>
|
data/build/js/main.js
CHANGED
@@ -34005,23 +34005,22 @@ function Task() {
|
|
34005
34005
|
|
34006
34006
|
(function () {
|
34007
34007
|
const components = {
|
34008
|
-
"react-
|
34008
|
+
"react-task": () => (react.createElement(App, null,
|
34009
34009
|
react.createElement(Task, null))),
|
34010
|
-
"react-
|
34011
|
-
react.createElement(Task, null))),
|
34012
|
-
"react-tasks": (react.createElement(App, null,
|
34010
|
+
"react-tasks": () => (react.createElement(App, null,
|
34013
34011
|
react.createElement(Tasks, null))),
|
34014
|
-
"react-projects": (react.createElement(App, null,
|
34012
|
+
"react-projects": () => (react.createElement(App, null,
|
34015
34013
|
react.createElement(Projects, null)))
|
34016
34014
|
};
|
34017
|
-
Object
|
34018
|
-
|
34019
|
-
|
34015
|
+
const ents = Object.entries(components);
|
34016
|
+
for (let i = 0; i < ents.length; i++) {
|
34017
|
+
const [name, getJSX] = ents[i];
|
34020
34018
|
const root = document.querySelector(`.${name}`);
|
34021
34019
|
if (root) {
|
34022
|
-
client.createRoot(root).render(
|
34020
|
+
client.createRoot(root).render(getJSX());
|
34021
|
+
break;
|
34023
34022
|
}
|
34024
|
-
}
|
34023
|
+
}
|
34025
34024
|
})();
|
34026
34025
|
|
34027
34026
|
})();
|
data/build/tasks/edit/index.html
CHANGED
data/build/tasks/new/index.html
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twenty-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- '0x1eef'
|
@@ -106,6 +106,7 @@ files:
|
|
106
106
|
- build/fonts/noto-sans-mono-regular.ttf
|
107
107
|
- build/fonts/noto-sans-regular.ttf
|
108
108
|
- build/fonts/noto-serif-regular.ttf
|
109
|
+
- build/index.html
|
109
110
|
- build/js/main.js
|
110
111
|
- build/projects/index.html
|
111
112
|
- build/tasks/edit/index.html
|