jac-client 0.2.4__py3-none-any.whl → 0.2.5__py3-none-any.whl
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.
- jac_client/examples/all-in-one/src/app.jac +841 -0
- jac_client/examples/all-in-one/src/button.jac +7 -0
- jac_client/examples/all-in-one/src/components/button.jac +7 -0
- jac_client/examples/asset-serving/css-with-image/src/app.jac +88 -0
- jac_client/examples/asset-serving/image-asset/src/app.jac +55 -0
- jac_client/examples/asset-serving/import-alias/src/app.jac +111 -0
- jac_client/examples/basic/src/app.jac +21 -0
- jac_client/examples/basic-auth/src/app.jac +377 -0
- jac_client/examples/basic-auth-with-router/src/app.jac +464 -0
- jac_client/examples/basic-full-stack/src/app.jac +365 -0
- jac_client/examples/css-styling/js-styling/src/app.jac +84 -0
- jac_client/examples/css-styling/material-ui/src/app.jac +122 -0
- jac_client/examples/css-styling/pure-css/src/app.jac +64 -0
- jac_client/examples/css-styling/sass-example/src/app.jac +64 -0
- jac_client/examples/css-styling/styled-components/src/app.jac +71 -0
- jac_client/examples/css-styling/tailwind-example/src/app.jac +63 -0
- jac_client/examples/full-stack-with-auth/src/app.jac +722 -0
- jac_client/examples/little-x/src/app.jac +719 -0
- jac_client/examples/little-x/src/submit-button.jac +16 -0
- jac_client/examples/nested-folders/nested-advance/src/ButtonRoot.jac +11 -0
- jac_client/examples/nested-folders/nested-advance/src/app.jac +35 -0
- jac_client/examples/nested-folders/nested-advance/src/level1/ButtonSecondL.jac +19 -0
- jac_client/examples/nested-folders/nested-advance/src/level1/Card.jac +43 -0
- jac_client/examples/nested-folders/nested-advance/src/level1/level2/ButtonThirdL.jac +25 -0
- jac_client/examples/nested-folders/nested-basic/src/app.jac +13 -0
- jac_client/examples/nested-folders/nested-basic/src/button.jac +7 -0
- jac_client/examples/nested-folders/nested-basic/src/components/button.jac +7 -0
- jac_client/examples/ts-support/src/app.jac +35 -0
- jac_client/examples/with-router/src/app.jac +323 -0
- jac_client/plugin/cli.jac +547 -0
- jac_client/plugin/client.jac +52 -0
- jac_client/plugin/client_runtime.cl.jac +38 -0
- jac_client/plugin/impl/client.impl.jac +134 -0
- jac_client/plugin/impl/client_runtime.impl.jac +177 -0
- jac_client/plugin/impl/vite_client_bundle.impl.jac +72 -0
- jac_client/plugin/plugin_config.jac +195 -0
- jac_client/plugin/src/__init__.jac +20 -0
- jac_client/plugin/src/asset_processor.jac +33 -0
- jac_client/plugin/src/babel_processor.jac +18 -0
- jac_client/plugin/src/compiler.jac +66 -0
- jac_client/plugin/src/config_loader.jac +32 -0
- jac_client/plugin/src/impl/asset_processor.impl.jac +127 -0
- jac_client/plugin/src/impl/babel_processor.impl.jac +84 -0
- jac_client/plugin/src/impl/compiler.impl.jac +251 -0
- jac_client/plugin/src/impl/config_loader.impl.jac +119 -0
- jac_client/plugin/src/impl/import_processor.impl.jac +33 -0
- jac_client/plugin/src/impl/jac_to_js.impl.jac +41 -0
- jac_client/plugin/src/impl/package_installer.impl.jac +105 -0
- jac_client/plugin/src/impl/vite_bundler.impl.jac +513 -0
- jac_client/plugin/src/import_processor.jac +19 -0
- jac_client/plugin/src/jac_to_js.jac +35 -0
- jac_client/plugin/src/package_installer.jac +26 -0
- jac_client/plugin/src/vite_bundler.jac +36 -0
- jac_client/plugin/vite_client_bundle.jac +31 -0
- jac_client/tests/fixtures/basic-app/app.jac +23 -0
- jac_client/tests/fixtures/cl_file/app.cl.jac +48 -0
- jac_client/tests/fixtures/cl_file/app.jac +15 -0
- jac_client/tests/fixtures/client_app_with_antd/app.jac +34 -0
- jac_client/tests/fixtures/js_import/app.jac +34 -0
- jac_client/tests/fixtures/relative_import/app.jac +11 -0
- jac_client/tests/fixtures/relative_import/button.jac +7 -0
- jac_client/tests/fixtures/spawn_test/app.jac +129 -0
- jac_client/tests/fixtures/test_fragments_spread/app.jac +67 -0
- jac_client/tests/fixtures/with-ts/app.jac +35 -0
- {jac_client-0.2.4.dist-info → jac_client-0.2.5.dist-info}/METADATA +2 -2
- jac_client-0.2.5.dist-info/RECORD +74 -0
- jac_client-0.2.4.dist-info/RECORD +0 -10
- {jac_client-0.2.4.dist-info → jac_client-0.2.5.dist-info}/WHEEL +0 -0
- {jac_client-0.2.4.dist-info → jac_client-0.2.5.dist-info}/entry_points.txt +0 -0
- {jac_client-0.2.4.dist-info → jac_client-0.2.5.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import from react { useState }
|
|
2
|
+
|
|
3
|
+
def app() -> any {
|
|
4
|
+
[todos, setTodos] = useState([]);
|
|
5
|
+
[input, setInput] = useState("");
|
|
6
|
+
|
|
7
|
+
# Event Handler
|
|
8
|
+
async def addTodo() -> None {
|
|
9
|
+
if not input.trim() {
|
|
10
|
+
return;
|
|
11
|
+
}
|
|
12
|
+
response = root spawn create_todo(text=input.trim());
|
|
13
|
+
new_todo = response.reports[0][0];
|
|
14
|
+
setTodos(todos.concat([new_todo]));
|
|
15
|
+
setInput("");
|
|
16
|
+
|
|
17
|
+
def foo { }
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
return <div>
|
|
21
|
+
<h2>
|
|
22
|
+
My Todos
|
|
23
|
+
</h2>
|
|
24
|
+
<input
|
|
25
|
+
value={input}
|
|
26
|
+
onChange={lambda e: any -> None{ setInput(e.target.value);} }
|
|
27
|
+
onKeyPress={lambda e: any -> None{ if e.key == "Enter" {
|
|
28
|
+
addTodo();
|
|
29
|
+
}} }
|
|
30
|
+
/>
|
|
31
|
+
<button
|
|
32
|
+
onClick={addTodo}
|
|
33
|
+
>
|
|
34
|
+
Add Todo
|
|
35
|
+
</button>
|
|
36
|
+
<div>
|
|
37
|
+
{todos.map(
|
|
38
|
+
lambda todo: any -> any{ return <div
|
|
39
|
+
key={todo._jac_id}
|
|
40
|
+
>
|
|
41
|
+
<span>
|
|
42
|
+
{todo.text}
|
|
43
|
+
</span>
|
|
44
|
+
</div>; }
|
|
45
|
+
)}
|
|
46
|
+
</div>
|
|
47
|
+
</div>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
'''Test file for .cl file serves the client module.'''
|
|
2
|
+
|
|
3
|
+
node Todo {
|
|
4
|
+
has text: str;
|
|
5
|
+
has done: bool = False;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
walker create_todo {
|
|
9
|
+
has text: str;
|
|
10
|
+
|
|
11
|
+
can create with `root entry {
|
|
12
|
+
new_todo = here ++> Todo(text=self.text);
|
|
13
|
+
report new_todo ;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"""Sample Jac module using Ant Design components."""
|
|
2
|
+
|
|
3
|
+
cl import from antd { Button }
|
|
4
|
+
|
|
5
|
+
cl glob APP_NAME: str = "Ant Design Test";
|
|
6
|
+
|
|
7
|
+
cl def ButtonTest() {
|
|
8
|
+
return <div>
|
|
9
|
+
<h1>
|
|
10
|
+
{APP_NAME}
|
|
11
|
+
</h1>
|
|
12
|
+
<p>
|
|
13
|
+
Testing Ant Design integration
|
|
14
|
+
</p>
|
|
15
|
+
<Button>
|
|
16
|
+
Click Me
|
|
17
|
+
</Button>
|
|
18
|
+
</div>;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
cl def CardTest() {
|
|
22
|
+
return <div class="card-wrapper">
|
|
23
|
+
<h2>
|
|
24
|
+
Card Component
|
|
25
|
+
</h2>
|
|
26
|
+
</div>;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
cl def app() {
|
|
30
|
+
return <div>
|
|
31
|
+
<ButtonTest />
|
|
32
|
+
<CardTest />
|
|
33
|
+
</div>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"""Test module that imports JavaScript functions."""
|
|
2
|
+
|
|
3
|
+
cl import from .utils { formatMessage, calculateSum, JS_CONSTANT, MessageFormatter }
|
|
4
|
+
|
|
5
|
+
cl glob JS_IMPORT_LABEL: str = "JavaScript Import Test";
|
|
6
|
+
|
|
7
|
+
cl def JsImportTest() -> any {
|
|
8
|
+
greeting = formatMessage("Jac");
|
|
9
|
+
sum = calculateSum(5, 3);
|
|
10
|
+
formatter = MessageFormatter("JS");
|
|
11
|
+
formatted = formatter.format("Hello from JS class");
|
|
12
|
+
|
|
13
|
+
return <div class="js-import-test">
|
|
14
|
+
<h1>
|
|
15
|
+
{JS_IMPORT_LABEL}
|
|
16
|
+
</h1>
|
|
17
|
+
<p>
|
|
18
|
+
Greeting: {greeting}
|
|
19
|
+
</p>
|
|
20
|
+
<p>
|
|
21
|
+
Sum (5 + 3): {sum}
|
|
22
|
+
</p>
|
|
23
|
+
<p>
|
|
24
|
+
Constant: {JS_CONSTANT}
|
|
25
|
+
</p>
|
|
26
|
+
<p>
|
|
27
|
+
Formatted: {formatted}
|
|
28
|
+
</p>
|
|
29
|
+
</div>;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
cl def app() -> any {
|
|
33
|
+
return <JsImportTest />;
|
|
34
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
"""Test module for spawn operator in both standard and reverse order."""
|
|
2
|
+
|
|
3
|
+
# Server-side node and walker definitions
|
|
4
|
+
node TestNode {
|
|
5
|
+
has value: int = 0;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
walker test_walker {
|
|
9
|
+
has message: str = "Hello from walker";
|
|
10
|
+
|
|
11
|
+
can execute with `root entry {
|
|
12
|
+
report {"result": self.message} ;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
walker parameterized_walker {
|
|
17
|
+
has value: int;
|
|
18
|
+
|
|
19
|
+
can execute with `root entry {
|
|
20
|
+
report {"computed": self.value * 2} ;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
walker positional_walker {
|
|
25
|
+
has label: str;
|
|
26
|
+
has count: int;
|
|
27
|
+
has metadata: dict = {};
|
|
28
|
+
|
|
29
|
+
can execute with `root entry {
|
|
30
|
+
report {"label": self.label, "count": self.count, "meta": self.metadata} ;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
# Client-side code testing both spawn orderings
|
|
35
|
+
cl import from react {
|
|
36
|
+
useState,
|
|
37
|
+
useEffect
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
cl {
|
|
41
|
+
def app() -> any {
|
|
42
|
+
[standardResult, setStandardResult] = useState(None);
|
|
43
|
+
[standardComputed, setStandardComputed] = useState(None);
|
|
44
|
+
[reverseResult, setReverseResult] = useState(None);
|
|
45
|
+
[uuidResult, setUuidResult] = useState(None);
|
|
46
|
+
[reverseUuidResult, setReverseUuidResult] = useState(None);
|
|
47
|
+
[positionalResult, setPositionalResult] = useState(None);
|
|
48
|
+
[spreadResult, setSpreadResult] = useState(None);
|
|
49
|
+
|
|
50
|
+
async def loadData() -> None {
|
|
51
|
+
# Test standard spawn order: node spawn walker()
|
|
52
|
+
data1 = root spawn test_walker();
|
|
53
|
+
setStandardResult(data1);
|
|
54
|
+
|
|
55
|
+
data2 = root spawn parameterized_walker(value=42);
|
|
56
|
+
setStandardComputed(data2);
|
|
57
|
+
|
|
58
|
+
# Test reverse spawn order: walker() spawn node
|
|
59
|
+
data3 = test_walker(message="Reverse spawn!") spawn root;
|
|
60
|
+
setReverseResult(data3);
|
|
61
|
+
|
|
62
|
+
# Test spawn with UUID string: uuid_string spawn walker()
|
|
63
|
+
node_id = "550e8400-e29b-41d4-a716-446655440000";
|
|
64
|
+
data4 = node_id spawn test_walker();
|
|
65
|
+
setUuidResult(data4);
|
|
66
|
+
|
|
67
|
+
# Test reverse spawn with UUID string: walker() spawn uuid_string
|
|
68
|
+
another_node_id = "6ba7b810-9dad-11d1-80b4-00c04fd430c8";
|
|
69
|
+
data5 = parameterized_walker(value=100) spawn another_node_id;
|
|
70
|
+
setReverseUuidResult(data5);
|
|
71
|
+
|
|
72
|
+
# Test positional walker arguments inferred from has fields
|
|
73
|
+
data6 = node_id spawn positional_walker("Node positional", 2);
|
|
74
|
+
setPositionalResult(data6);
|
|
75
|
+
|
|
76
|
+
# Test **kwargs via spread when walker is on left-hand side
|
|
77
|
+
extra_fields = {"metadata": {"source": "client-side"}};
|
|
78
|
+
data7 = positional_walker("Spread order", 5, **extra_fields) spawn root;
|
|
79
|
+
setSpreadResult(data7);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
useEffect(lambda -> None{ loadData();} , []);
|
|
83
|
+
|
|
84
|
+
return <div>
|
|
85
|
+
<h1>
|
|
86
|
+
Spawn Operator Test
|
|
87
|
+
</h1>
|
|
88
|
+
<h2>
|
|
89
|
+
Standard Order (node spawn walker)
|
|
90
|
+
</h2>
|
|
91
|
+
<div>
|
|
92
|
+
Result: {JSON.stringify(standardResult)}
|
|
93
|
+
</div>
|
|
94
|
+
<div>
|
|
95
|
+
Computed: {JSON.stringify(standardComputed)}
|
|
96
|
+
</div>
|
|
97
|
+
<h2>
|
|
98
|
+
Reverse Order (walker spawn node)
|
|
99
|
+
</h2>
|
|
100
|
+
<div>
|
|
101
|
+
Result: {JSON.stringify(reverseResult)}
|
|
102
|
+
</div>
|
|
103
|
+
<h2>
|
|
104
|
+
UUID Spawn (uuid spawn walker)
|
|
105
|
+
</h2>
|
|
106
|
+
<div>
|
|
107
|
+
Result: {JSON.stringify(uuidResult)}
|
|
108
|
+
</div>
|
|
109
|
+
<h2>
|
|
110
|
+
Reverse UUID Spawn (walker spawn uuid)
|
|
111
|
+
</h2>
|
|
112
|
+
<div>
|
|
113
|
+
Result: {JSON.stringify(reverseUuidResult)}
|
|
114
|
+
</div>
|
|
115
|
+
<h2>
|
|
116
|
+
Positional Walker Arguments
|
|
117
|
+
</h2>
|
|
118
|
+
<div>
|
|
119
|
+
Result: {JSON.stringify(positionalResult)}
|
|
120
|
+
</div>
|
|
121
|
+
<h2>
|
|
122
|
+
Spread Walker Arguments
|
|
123
|
+
</h2>
|
|
124
|
+
<div>
|
|
125
|
+
Result: {JSON.stringify(spreadResult)}
|
|
126
|
+
</div>
|
|
127
|
+
</div>;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"""Test fixture for JSX fragments and spread props functionality."""
|
|
2
|
+
|
|
3
|
+
cl def FragmentTest() {
|
|
4
|
+
# Test that fragments work
|
|
5
|
+
return <>
|
|
6
|
+
<h1>
|
|
7
|
+
{"Fragment Title"}
|
|
8
|
+
</h1>
|
|
9
|
+
<p>
|
|
10
|
+
{"Fragment content"}
|
|
11
|
+
</p>
|
|
12
|
+
</>;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
cl def SpreadPropsTest() {
|
|
16
|
+
# Test spread props
|
|
17
|
+
unwrapped = {"id": "my-div", "class": "container", "data-role": "main"};
|
|
18
|
+
|
|
19
|
+
return <div
|
|
20
|
+
{...unwrapped}
|
|
21
|
+
>
|
|
22
|
+
<span>
|
|
23
|
+
{"Spread props work!"}
|
|
24
|
+
</span>
|
|
25
|
+
</div>;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
cl def MixedTest() {
|
|
29
|
+
# Test mixing spread props with regular props
|
|
30
|
+
baseStyle = {"id": "base-id", "color": "blue"};
|
|
31
|
+
|
|
32
|
+
return <>
|
|
33
|
+
<div
|
|
34
|
+
{...baseStyle}
|
|
35
|
+
class="override"
|
|
36
|
+
>
|
|
37
|
+
{"Mixed test"}
|
|
38
|
+
</div>
|
|
39
|
+
<div class="normal">
|
|
40
|
+
{"No spread"}
|
|
41
|
+
</div>
|
|
42
|
+
</>;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
cl def NestedFragments() {
|
|
46
|
+
return <div class="wrapper">
|
|
47
|
+
<>
|
|
48
|
+
<h2>
|
|
49
|
+
{"Nested Fragment 1"}
|
|
50
|
+
</h2>
|
|
51
|
+
</>
|
|
52
|
+
<>
|
|
53
|
+
<p>
|
|
54
|
+
{"Nested Fragment 2"}
|
|
55
|
+
</p>
|
|
56
|
+
</>
|
|
57
|
+
</div>;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
cl def app() {
|
|
61
|
+
return <div>
|
|
62
|
+
<FragmentTest />
|
|
63
|
+
<SpreadPropsTest />
|
|
64
|
+
<MixedTest />
|
|
65
|
+
<NestedFragments />
|
|
66
|
+
</div>;
|
|
67
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
|
|
2
|
+
# Pages
|
|
3
|
+
cl import from react { useState, useEffect }
|
|
4
|
+
cl import from ".components/Button.tsx" { Button }
|
|
5
|
+
|
|
6
|
+
cl {
|
|
7
|
+
def app() -> any {
|
|
8
|
+
[count, setCount] = useState(0);
|
|
9
|
+
useEffect(lambda -> None{ console.log("Count: ", count);} , [count]);
|
|
10
|
+
return <div
|
|
11
|
+
style={{padding: "2rem", fontFamily: "Arial, sans-serif"}}
|
|
12
|
+
>
|
|
13
|
+
<h1>
|
|
14
|
+
Hello, World!
|
|
15
|
+
</h1>
|
|
16
|
+
<p>
|
|
17
|
+
Count: {count}
|
|
18
|
+
</p>
|
|
19
|
+
<div
|
|
20
|
+
style={{display: "flex", gap: "1rem", marginTop: "1rem"}}
|
|
21
|
+
>
|
|
22
|
+
<Button
|
|
23
|
+
label="Increment"
|
|
24
|
+
onClick={lambda -> None{ setCount(count + 1);} }
|
|
25
|
+
variant="primary"
|
|
26
|
+
/>
|
|
27
|
+
<Button
|
|
28
|
+
label="Reset"
|
|
29
|
+
onClick={lambda -> None{ setCount(0);} }
|
|
30
|
+
variant="secondary"
|
|
31
|
+
/>
|
|
32
|
+
</div>
|
|
33
|
+
</div>;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jac-client
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: Build full-stack web applications with Jac - one language for frontend and backend.
|
|
5
5
|
Author-email: Jason Mars <jason@mars.ninja>
|
|
6
6
|
Maintainer-email: Jason Mars <jason@mars.ninja>
|
|
@@ -11,7 +11,7 @@ Project-URL: Documentation, https://jac-lang.org
|
|
|
11
11
|
Keywords: jac,jaclang,jaseci,frontend,full-stack,web-development
|
|
12
12
|
Requires-Python: >=3.12
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
|
-
Requires-Dist: jaclang==0.9.
|
|
14
|
+
Requires-Dist: jaclang==0.9.5
|
|
15
15
|
Provides-Extra: dev
|
|
16
16
|
Requires-Dist: python-dotenv==1.0.1; extra == "dev"
|
|
17
17
|
Requires-Dist: pytest==8.3.5; extra == "dev"
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
jac_client/examples/all-in-one/assets/workers/worker.py,sha256=erXICb1WvDKYlReUIzgZf9v0Pey6pmWDbvAm9vtGQmg,131
|
|
2
|
+
jac_client/examples/all-in-one/src/app.jac,sha256=jLUT-1wYcMMoLthAh5x9qM6p5tXyjXst3ys0FMt4PG0,26924
|
|
3
|
+
jac_client/examples/all-in-one/src/button.jac,sha256=YS_Ae3dyNAvnGh8iP_uUg1VyuzaxleEkLFEx4u959tw,126
|
|
4
|
+
jac_client/examples/all-in-one/src/components/button.jac,sha256=AoWR2fUXS2UEAUk1CLoRgI-u9ecA0D_SUPKvQGEORIg,124
|
|
5
|
+
jac_client/examples/asset-serving/css-with-image/src/app.jac,sha256=Fx2wnAmtdfmbB0tyNyczvrrONpMs8lOl94TFsnJLBpc,2830
|
|
6
|
+
jac_client/examples/asset-serving/image-asset/src/app.jac,sha256=UP_UhE9pQn5zYr-wxDzOIRMzsjLZEZv_hSlreFAyyBQ,1665
|
|
7
|
+
jac_client/examples/asset-serving/import-alias/src/app.jac,sha256=zdUcpIBD5OlzxXORG5X1pNvqgI08LeNJx3-B1qg_q78,3524
|
|
8
|
+
jac_client/examples/basic/src/app.jac,sha256=fz7e4TRxKgooBUDoKczXQLqUOjNRYXXw_wcbV0ID_zs,534
|
|
9
|
+
jac_client/examples/basic-auth/src/app.jac,sha256=ebJsTZNB6DFQ079vkN74yxTseiHKhccUFCulpl3HHSc,14294
|
|
10
|
+
jac_client/examples/basic-auth-with-router/src/app.jac,sha256=V5gqPiU-rffgv3y958rhlTlzQx0UnITJm_mcYdpbbdM,15017
|
|
11
|
+
jac_client/examples/basic-full-stack/src/app.jac,sha256=qo_TeN2XQf_IOUR5iyZjbmoWTl0_-AL77y4M6xj_9CM,13240
|
|
12
|
+
jac_client/examples/css-styling/js-styling/src/app.jac,sha256=Gz2aN-PI_NvrwaPE8it3ql6-7ySqUjZt0Trb4XzeCnA,2490
|
|
13
|
+
jac_client/examples/css-styling/material-ui/src/app.jac,sha256=VVR-ET-QiOw4vsBvh9LCRq0RZ4bg1t7waMUApusyzoc,4770
|
|
14
|
+
jac_client/examples/css-styling/pure-css/src/app.jac,sha256=yYhZHLzvwcc4hl8PEArGsxDLkF_lrwszptcD62_HG9c,2074
|
|
15
|
+
jac_client/examples/css-styling/sass-example/src/app.jac,sha256=BdOFoYPzypL6DHIORlB6mAtKz9QOa31-XDWAdkRxfqU,2075
|
|
16
|
+
jac_client/examples/css-styling/styled-components/src/app.jac,sha256=hTinnvJR0vkL4G-0cgueO0LI6PBgS3QWBz-BFLrQe0c,1959
|
|
17
|
+
jac_client/examples/css-styling/tailwind-example/src/app.jac,sha256=ud0eFQB63PmXp6_tXY5vE4wEYZkAJhC0x78hVlWjzm0,3005
|
|
18
|
+
jac_client/examples/full-stack-with-auth/src/app.jac,sha256=X03dTafwWfixTM3lrmGaApYnoFu-CXL4igh-aqe8mPc,22068
|
|
19
|
+
jac_client/examples/little-x/src/app.jac,sha256=_hvNGuDjmIW3ddyNB7xOpA90sowz5XcBeLgMDVMiPq0,19151
|
|
20
|
+
jac_client/examples/little-x/src/submit-button.jac,sha256=zxaD7xRdpH8iDU-8lrNQaoMU_cYr-rC_ZxaVhZqTsmc,370
|
|
21
|
+
jac_client/examples/nested-folders/nested-advance/src/ButtonRoot.jac,sha256=cflz34exdyamxZaoK4zZOpOCZIIGkhOQw3P6iZ9myi4,195
|
|
22
|
+
jac_client/examples/nested-folders/nested-advance/src/app.jac,sha256=XO8_sjUv4KHQ4sXBiLFUPIrgMhrbj0t7SLkAnpmERMM,800
|
|
23
|
+
jac_client/examples/nested-folders/nested-advance/src/level1/ButtonSecondL.jac,sha256=smbct7iMQ_3W17v_5juphv0iw7kojFErgJxXekm7KAE,425
|
|
24
|
+
jac_client/examples/nested-folders/nested-advance/src/level1/Card.jac,sha256=4Ky5cxs8M0pBz7Ju2wTAI3H0z9qaw4LLDk4oYCKimVg,994
|
|
25
|
+
jac_client/examples/nested-folders/nested-advance/src/level1/level2/ButtonThirdL.jac,sha256=Y0PwJDrzp8x64Ks9IhXcsRBgjUnko-Ch10ZmRqIO4CI,603
|
|
26
|
+
jac_client/examples/nested-folders/nested-basic/src/app.jac,sha256=moz3YDZ3S9MFftcBrJHmFKYe6mpj_Hdb2kxcoX2R7GM,270
|
|
27
|
+
jac_client/examples/nested-folders/nested-basic/src/button.jac,sha256=WlV2pcssnGGsO-25hrcyA4PRw5o4Y5UpsUmCfBF-LrE,123
|
|
28
|
+
jac_client/examples/nested-folders/nested-basic/src/components/button.jac,sha256=_ErhjGJud5G32XiFL7p3N8wca-NSknvz2eNUt1fHKkE,119
|
|
29
|
+
jac_client/examples/ts-support/src/app.jac,sha256=wTZiS_228BqhTRsfnl9cgF4XwO2ntpXj1EOcY4iAiXo,1005
|
|
30
|
+
jac_client/examples/with-router/src/app.jac,sha256=ry09e3zdoTT9nu-JRMO8gh_6E7oR0RnE0692qXheKZI,8654
|
|
31
|
+
jac_client/plugin/cli.jac,sha256=9YZb7Gm_7FKt5gXJGEU6VEzOSyg9oVDE1352i-kRUcs,16445
|
|
32
|
+
jac_client/plugin/client.jac,sha256=Q-olwbc68WOdHvA4ODI2gLFkEbOzFWoz8rIWOXZwTGg,1618
|
|
33
|
+
jac_client/plugin/client_runtime.cl.jac,sha256=8jjdmdJr_fQn5Pwe0SI8WFrPN_elAJH-X4LVUwVZlVY,1503
|
|
34
|
+
jac_client/plugin/plugin_config.jac,sha256=rqm-wSlimUiIHgouqoGdCngxu0KVzgs3tzOPv1hYkCY,6538
|
|
35
|
+
jac_client/plugin/vite_client_bundle.jac,sha256=l8EY8O2sdsqhtO8I32Of01dgShRQBfMBNWXyl-y-vtY,1016
|
|
36
|
+
jac_client/plugin/impl/client.impl.jac,sha256=JKkvTn8b30ZGTOBne8pU9oQCaMH3Dw_TzjJagBEywBc,5517
|
|
37
|
+
jac_client/plugin/impl/client_runtime.impl.jac,sha256=zEdckBdvxMluclFctKI6YZ8SG2fS8b121ZFI_quwSaA,4907
|
|
38
|
+
jac_client/plugin/impl/vite_client_bundle.impl.jac,sha256=KXFqXSZaa08Z6CrEqebfdjo7TvdakTNJHVnGOhj4e0s,2620
|
|
39
|
+
jac_client/plugin/src/__init__.jac,sha256=ZyA9pRNofbdVMKKzKwMgWpqNHVF4gCq4fxVykEnU_6c,823
|
|
40
|
+
jac_client/plugin/src/asset_processor.jac,sha256=Qpm1a174PPJl32nH_eDZYR-6vx59V2NEWfj0knUMwXY,961
|
|
41
|
+
jac_client/plugin/src/babel_processor.jac,sha256=e6wgeGA4Wd1vu4di9PRik7M_Hbt6nhwq5pZaHCs5OMQ,612
|
|
42
|
+
jac_client/plugin/src/compiler.jac,sha256=h28nREagFOo_nFQP-DH-9YPWqNzjA852ZIi4k7QJFaU,2295
|
|
43
|
+
jac_client/plugin/src/config_loader.jac,sha256=VZxdsjelhvnW1dcG6yCD5uJH9PCMYR5x_l6fZdAgALs,1240
|
|
44
|
+
jac_client/plugin/src/import_processor.jac,sha256=wYg8bD5qHxpvFyXkQxNpqUIV3ei5aMoevA2bWyq9VG8,589
|
|
45
|
+
jac_client/plugin/src/jac_to_js.jac,sha256=U2_v95tdsbw1oMPGPY0HOhDcAsHg3uQIcGWzLmFdWyc,1115
|
|
46
|
+
jac_client/plugin/src/package_installer.jac,sha256=jOrg5mVEmZm2M-C5qNPfvA6_ePdjI-eTkMrTA45Sk50,848
|
|
47
|
+
jac_client/plugin/src/vite_bundler.jac,sha256=uddB5gQ5GLi-aG1gbGT1AagSbacGkSXjMfuU2V3qpfw,1422
|
|
48
|
+
jac_client/plugin/src/impl/asset_processor.impl.jac,sha256=-ljWYzKLKyAdfJybr8sjJlYSK57KzueeNvTo_WjAFAY,4256
|
|
49
|
+
jac_client/plugin/src/impl/babel_processor.impl.jac,sha256=kF-sf0HWJuckgxQKFfh5Hmg0yczEC4v_hUBwx2cTZ0I,3528
|
|
50
|
+
jac_client/plugin/src/impl/compiler.impl.jac,sha256=sNMAuRizsScvsVW7mEbsg2-dW543bUMmUrz3yYFmTjg,9984
|
|
51
|
+
jac_client/plugin/src/impl/config_loader.impl.jac,sha256=OcWxGho7pJ-VFZgc_PhtxyuawENwDZhMv26nuNpkIMI,4095
|
|
52
|
+
jac_client/plugin/src/impl/import_processor.impl.jac,sha256=BMkkZXlF-6jbC-r3tuFj8PDFvDZrbfzuhnaw8qraWIQ,1214
|
|
53
|
+
jac_client/plugin/src/impl/jac_to_js.impl.jac,sha256=YWu5U4Vx1fUnopln8wNPvAd17PcQTTfCUYALZerlZfo,1547
|
|
54
|
+
jac_client/plugin/src/impl/package_installer.impl.jac,sha256=Jb3sq9zK8HBm_GINz-9ohhhgMgD-omVjCso40UdnCo8,3887
|
|
55
|
+
jac_client/plugin/src/impl/vite_bundler.impl.jac,sha256=ZqWNXS6Zy0VauIy25ix0esBbrjrtCu97u91nSanswsg,20815
|
|
56
|
+
jac_client/tests/__init__.py,sha256=HSr78dvKyvNmP7bLmAssfYItAn4puFwAe1oWnV8l7pA,36
|
|
57
|
+
jac_client/tests/conftest.py,sha256=LOOgGU3td4W-bF6K2-SdAI9V6oXcxkk4BufphBhiIPY,8713
|
|
58
|
+
jac_client/tests/test_cli.py,sha256=2BNkjVfGcP5pseHE5V3yREksxiwjUowRi3IohFQWJxg,25902
|
|
59
|
+
jac_client/tests/test_it.py,sha256=80Mp-dcgL2iDSFAvWgwAM00YgbPfLqsaYUYIgryb164,29114
|
|
60
|
+
jac_client/tests/fixtures/basic-app/app.jac,sha256=sDup4PmtUm93oVOxIz874SSZfMimPv4Qn683iXm43TI,489
|
|
61
|
+
jac_client/tests/fixtures/cl_file/app.cl.jac,sha256=fHJvjKWLhX5uVdZl12mPwcNRgMVFrCz8oY3oMoCWeuM,1157
|
|
62
|
+
jac_client/tests/fixtures/cl_file/app.jac,sha256=GmuOisnyOGfDnQ_-6juBumliLDUt1t9HQtfRpJ8xuqk,277
|
|
63
|
+
jac_client/tests/fixtures/client_app_with_antd/app.jac,sha256=a8cNThrEuaBq6Lv7aa-K8hAzBIDHkiBHwqON1_Gq4D8,575
|
|
64
|
+
jac_client/tests/fixtures/js_import/app.jac,sha256=CAmAJ299KsbJ6BIdGYykBrTDAh-Df_fhOENwNxxAEbw,796
|
|
65
|
+
jac_client/tests/fixtures/relative_import/app.jac,sha256=Su4UVwZeXV32wnKWvrESaLPR30C-kqyKDUrZPyaw5gQ,188
|
|
66
|
+
jac_client/tests/fixtures/relative_import/button.jac,sha256=kCDNaHEcxMEFdezfnecyVc56cnZU_ZnqdBDOB4kCFeE,118
|
|
67
|
+
jac_client/tests/fixtures/spawn_test/app.jac,sha256=DwAgesIOPkmZlNgQ0QmrgwOwL2O1YeiNNI6QKgv3ToI,3971
|
|
68
|
+
jac_client/tests/fixtures/test_fragments_spread/app.jac,sha256=CMzAz4Ydx_5eAV82-io8sJdy8_xy-mR7YOVc7FcozlU,1277
|
|
69
|
+
jac_client/tests/fixtures/with-ts/app.jac,sha256=jCeOXCrUSYp4l8COnl60oIFTORS-qgWbufj6l2-67PU,1004
|
|
70
|
+
jac_client-0.2.5.dist-info/METADATA,sha256=KLdX8SmwHRFOk2O4pSBgHFHfw6OM3cqZNZcBVXtiXts,4863
|
|
71
|
+
jac_client-0.2.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
72
|
+
jac_client-0.2.5.dist-info/entry_points.txt,sha256=fVrlaJKcSa2DK2hcfR6bNaQDB9mszMpZeEa6pitMdt4,154
|
|
73
|
+
jac_client-0.2.5.dist-info/top_level.txt,sha256=u1VEBfiqwRrZEopKraIh-Ym55qSnDZR3Q5xdw2HinhU,11
|
|
74
|
+
jac_client-0.2.5.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
jac_client/examples/all-in-one/assets/workers/worker.py,sha256=erXICb1WvDKYlReUIzgZf9v0Pey6pmWDbvAm9vtGQmg,131
|
|
2
|
-
jac_client/tests/__init__.py,sha256=HSr78dvKyvNmP7bLmAssfYItAn4puFwAe1oWnV8l7pA,36
|
|
3
|
-
jac_client/tests/conftest.py,sha256=LOOgGU3td4W-bF6K2-SdAI9V6oXcxkk4BufphBhiIPY,8713
|
|
4
|
-
jac_client/tests/test_cli.py,sha256=2BNkjVfGcP5pseHE5V3yREksxiwjUowRi3IohFQWJxg,25902
|
|
5
|
-
jac_client/tests/test_it.py,sha256=80Mp-dcgL2iDSFAvWgwAM00YgbPfLqsaYUYIgryb164,29114
|
|
6
|
-
jac_client-0.2.4.dist-info/METADATA,sha256=dzwz6VztHY9yHW6MFczWnaeTeLZFKZn0FgaQh02Jt_4,4863
|
|
7
|
-
jac_client-0.2.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
8
|
-
jac_client-0.2.4.dist-info/entry_points.txt,sha256=fVrlaJKcSa2DK2hcfR6bNaQDB9mszMpZeEa6pitMdt4,154
|
|
9
|
-
jac_client-0.2.4.dist-info/top_level.txt,sha256=u1VEBfiqwRrZEopKraIh-Ym55qSnDZR3Q5xdw2HinhU,11
|
|
10
|
-
jac_client-0.2.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|