twenty-client 0.4.1 → 0.4.2
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/js/{main/task/edit.js → main.js} +14067 -5911
- data/build/projects/index.html +2 -2
- data/build/tasks/edit/index.html +2 -2
- data/build/tasks/index.html +2 -2
- data/build/tasks/new/index.html +2 -2
- metadata +2 -6
- data/build/index.html +0 -13
- data/build/js/main/projects.js +0 -17964
- data/build/js/main/task/new.js +0 -25874
- data/build/js/main/tasks.js +0 -26046
data/build/projects/index.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<link rel="icon" href="/favicon.svg"/>
|
8
8
|
</head>
|
9
9
|
<body>
|
10
|
-
<div class="react-
|
11
|
-
<script src="/js/main
|
10
|
+
<div class="react-projects w-full wrapper"></div>
|
11
|
+
<script src="/js/main.js"></script>
|
12
12
|
</body>
|
13
13
|
</html>
|
data/build/tasks/edit/index.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<link rel="icon" href="/favicon.svg"/>
|
8
8
|
</head>
|
9
9
|
<body>
|
10
|
-
<div class="react-
|
11
|
-
<script src="/js/main
|
10
|
+
<div class="react-edittask w-full wrapper"></div>
|
11
|
+
<script src="/js/main.js"></script>
|
12
12
|
</body>
|
13
13
|
</html>
|
data/build/tasks/index.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<link rel="icon" href="/favicon.svg"/>
|
8
8
|
</head>
|
9
9
|
<body>
|
10
|
-
<div class="react-
|
11
|
-
<script src="/js/main
|
10
|
+
<div class="react-tasks w-full wrapper"></div>
|
11
|
+
<script src="/js/main.js"></script>
|
12
12
|
</body>
|
13
13
|
</html>
|
data/build/tasks/new/index.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<link rel="icon" href="/favicon.svg"/>
|
8
8
|
</head>
|
9
9
|
<body>
|
10
|
-
<div class="react-
|
11
|
-
<script src="/js/main
|
10
|
+
<div class="react-newtask w-full wrapper"></div>
|
11
|
+
<script src="/js/main.js"></script>
|
12
12
|
</body>
|
13
13
|
</html>
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- '0x1eef'
|
@@ -106,11 +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/
|
110
|
-
- build/js/main/projects.js
|
111
|
-
- build/js/main/task/edit.js
|
112
|
-
- build/js/main/task/new.js
|
113
|
-
- build/js/main/tasks.js
|
109
|
+
- build/js/main.js
|
114
110
|
- build/projects/index.html
|
115
111
|
- build/tasks/edit/index.html
|
116
112
|
- build/tasks/index.html
|
data/build/index.html
DELETED
@@ -1,13 +0,0 @@
|
|
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-root w-full wrapper"></div>
|
11
|
-
<script src="/js/main/tasks.js"></script>
|
12
|
-
</body>
|
13
|
-
</html>
|