create-asciitorium 0.1.30 → 0.1.32
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.
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"preview": "vite preview",
|
|
10
10
|
"cli": "tsx src/main.tsx",
|
|
11
11
|
"figlet": "node scripts/gen-figlet-art.js",
|
|
12
|
-
"figlet:fonts": "node -e 'require(\"figlet\").fonts((_, f) => console.log(f.join(\"\\n\")))
|
|
12
|
+
"figlet:fonts": "node -e 'require(\"figlet\").fonts((_, f) => console.log(f.join(\"\\n\")))\"",
|
|
13
|
+
"maze-builder": "node scripts/maze-builder.js"
|
|
13
14
|
},
|
|
14
15
|
"devDependencies": {
|
|
15
16
|
"typescript": "^5.6.0",
|
|
@@ -17,6 +17,7 @@ import {
|
|
|
17
17
|
TabsExample,
|
|
18
18
|
ArtExample,
|
|
19
19
|
SlidersExample,
|
|
20
|
+
ScrollableTextExample,
|
|
20
21
|
MazeExample,
|
|
21
22
|
} from 'asciitorium/examples';
|
|
22
23
|
|
|
@@ -32,6 +33,7 @@ const componentList = [
|
|
|
32
33
|
'Maze',
|
|
33
34
|
'MultiSelect',
|
|
34
35
|
'LayoutSizing',
|
|
36
|
+
'ScrollableText',
|
|
35
37
|
'Sliders',
|
|
36
38
|
'Tabs',
|
|
37
39
|
];
|
|
@@ -45,6 +47,7 @@ const examples = {
|
|
|
45
47
|
Maze: MazeExample,
|
|
46
48
|
MultiSelect: MultiSelectExample,
|
|
47
49
|
LayoutSizing: LayoutSizingExample,
|
|
50
|
+
ScrollableText: ScrollableTextExample,
|
|
48
51
|
Sliders: SlidersExample,
|
|
49
52
|
Tabs: TabsExample,
|
|
50
53
|
};
|
|
@@ -57,7 +60,7 @@ const app = (
|
|
|
57
60
|
/>
|
|
58
61
|
<Row style={{ height: 'fill' }}>
|
|
59
62
|
<Select
|
|
60
|
-
label="Components
|
|
63
|
+
label="Components"
|
|
61
64
|
style={{
|
|
62
65
|
width: '30%',
|
|
63
66
|
height: 'fill',
|