squiffy-compiler 6.0.0-alpha.0 → 6.0.0-alpha.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.
- package/dist/compiler.d.ts +2 -1
- package/dist/compiler.js +11 -9
- package/package.json +7 -17
- package/dist/compiler.test.d.ts +0 -1
- package/dist/compiler.test.js +0 -73
- package/dist/external-files.d.ts +0 -5
- package/dist/external-files.js +0 -21
- package/dist/index.template.html +0 -39
- package/dist/packager.d.ts +0 -1
- package/dist/packager.js +0 -78
- package/dist/server.d.ts +0 -1
- package/dist/server.js +0 -15
- package/dist/squiffy.d.ts +0 -1
- package/dist/squiffy.js +0 -29
- package/dist/squiffy.runtime.d.ts +0 -34
- package/dist/squiffy.template.d.ts +0 -29
- package/dist/squiffy.template.js +0 -598
- package/dist/style.template.css +0 -52
- package/dist/version.d.ts +0 -1
- package/dist/version.js +0 -1
- package/examples/attributes/attributes.squiffy +0 -81
- package/examples/clearscreen/clearscreen.squiffy +0 -15
- package/examples/continue/continue.squiffy +0 -18
- package/examples/helloworld/helloworld.squiffy +0 -1
- package/examples/import/file2.squiffy +0 -8
- package/examples/import/test.js +0 -3
- package/examples/import/test.squiffy +0 -5
- package/examples/input/input.squiffy +0 -22
- package/examples/last/last.squiffy +0 -32
- package/examples/master/master.squiffy +0 -35
- package/examples/replace/replace.squiffy +0 -27
- package/examples/rotate/rotate.squiffy +0 -25
- package/examples/sectiontrack/sectiontrack.squiffy +0 -16
- package/examples/start/start.squiffy +0 -7
- package/examples/test/example.squiffy +0 -52
- package/examples/textprocessor/textprocessor.squiffy +0 -21
- package/examples/transitions/transitions.squiffy +0 -53
- package/examples/turncount/turncount.squiffy +0 -41
- package/examples/warnings/warnings.squiffy +0 -23
- package/examples/warnings/warnings2.squiffy +0 -3
- package/src/__snapshots__/compiler.test.ts.snap +0 -716
- package/src/compiler.test.ts +0 -86
- package/src/compiler.ts +0 -546
- package/src/external-files.ts +0 -22
- package/src/index.template.html +0 -39
- package/src/packager.ts +0 -97
- package/src/server.ts +0 -19
- package/src/squiffy.runtime.ts +0 -670
- package/src/squiffy.ts +0 -36
- package/src/style.template.css +0 -52
- package/src/version.ts +0 -1
- package/tsconfig.json +0 -22
- package/tsconfig.runtime.json +0 -12
package/src/style.template.css
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
a.squiffy-link
|
|
2
|
-
{
|
|
3
|
-
text-decoration: underline;
|
|
4
|
-
color: Blue;
|
|
5
|
-
cursor: pointer;
|
|
6
|
-
}
|
|
7
|
-
a.squiffy-link.disabled
|
|
8
|
-
{
|
|
9
|
-
text-decoration: inherit;
|
|
10
|
-
color: inherit !important;
|
|
11
|
-
cursor: inherit;
|
|
12
|
-
}
|
|
13
|
-
button.squiffy-header-button
|
|
14
|
-
{
|
|
15
|
-
text-decoration: underline;
|
|
16
|
-
color: Blue;
|
|
17
|
-
cursor: pointer;
|
|
18
|
-
background: none;
|
|
19
|
-
border: none;
|
|
20
|
-
font-family: inherit;
|
|
21
|
-
}
|
|
22
|
-
div#squiffy-container
|
|
23
|
-
{
|
|
24
|
-
max-width: 700px;
|
|
25
|
-
margin-left: auto;
|
|
26
|
-
margin-right: auto;
|
|
27
|
-
font-family: Georgia, serif;
|
|
28
|
-
}
|
|
29
|
-
div#squiffy-header
|
|
30
|
-
{
|
|
31
|
-
font-size: 14px;
|
|
32
|
-
text-align: right;
|
|
33
|
-
}
|
|
34
|
-
div#squiffy
|
|
35
|
-
{
|
|
36
|
-
font-size: 18px;
|
|
37
|
-
}
|
|
38
|
-
hr {
|
|
39
|
-
border: 0;
|
|
40
|
-
height: 0;
|
|
41
|
-
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
|
42
|
-
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
|
|
43
|
-
margin-top: 16px; margin-bottom: 16px;
|
|
44
|
-
}
|
|
45
|
-
.fade-out {
|
|
46
|
-
opacity: 0;
|
|
47
|
-
transition: opacity 1000ms;
|
|
48
|
-
}
|
|
49
|
-
.fade-in {
|
|
50
|
-
opacity: 1;
|
|
51
|
-
transition: opacity 1000ms;
|
|
52
|
-
}
|
package/src/version.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const SQUIFFY_VERSION = '6.0.0-alpha.0';
|
package/tsconfig.json
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2020",
|
|
4
|
-
"useDefineForClassFields": true,
|
|
5
|
-
"module": "NodeNext",
|
|
6
|
-
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
7
|
-
"skipLibCheck": true,
|
|
8
|
-
"alwaysStrict": true,
|
|
9
|
-
"outDir": "dist",
|
|
10
|
-
"declaration": true,
|
|
11
|
-
|
|
12
|
-
"moduleResolution": "NodeNext",
|
|
13
|
-
"resolveJsonModule": true,
|
|
14
|
-
"isolatedModules": true,
|
|
15
|
-
|
|
16
|
-
"strict": true,
|
|
17
|
-
"noUnusedLocals": true,
|
|
18
|
-
"noUnusedParameters": true,
|
|
19
|
-
"noFallthroughCasesInSwitch": true
|
|
20
|
-
},
|
|
21
|
-
"include": ["src"]
|
|
22
|
-
}
|
package/tsconfig.runtime.json
DELETED