@outfitter/cli 0.1.0-rc.2 → 0.1.0
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/README.md +21 -32
- package/dist/actions.d.ts +12 -1
- package/dist/actions.js +170 -3
- package/dist/borders/index.d.ts +3 -0
- package/dist/borders/index.js +13 -0
- package/dist/box/index.d.ts +4 -0
- package/dist/box/index.js +13 -0
- package/dist/cli.js +1 -1
- package/dist/colors/index.d.ts +3 -0
- package/dist/colors/index.js +18 -0
- package/dist/command.d.ts +40 -3
- package/dist/command.js +45 -3
- package/dist/demo/index.d.ts +78 -0
- package/dist/demo/index.js +148 -0
- package/dist/demo/registry.d.ts +7 -0
- package/dist/demo/registry.js +28 -0
- package/dist/demo/renderers/borders.d.ts +7 -0
- package/dist/demo/renderers/borders.js +17 -0
- package/dist/demo/renderers/box.d.ts +7 -0
- package/dist/demo/renderers/box.js +18 -0
- package/dist/demo/renderers/colors.d.ts +7 -0
- package/dist/demo/renderers/colors.js +18 -0
- package/dist/demo/renderers/indicators.d.ts +7 -0
- package/dist/demo/renderers/indicators.js +17 -0
- package/dist/demo/renderers/list.d.ts +7 -0
- package/dist/demo/renderers/list.js +19 -0
- package/dist/demo/renderers/markdown.d.ts +7 -0
- package/dist/demo/renderers/markdown.js +18 -0
- package/dist/demo/renderers/progress.d.ts +7 -0
- package/dist/demo/renderers/progress.js +17 -0
- package/dist/demo/renderers/spinner.d.ts +7 -0
- package/dist/demo/renderers/spinner.js +19 -0
- package/dist/demo/renderers/table.d.ts +7 -0
- package/dist/demo/renderers/table.js +19 -0
- package/dist/demo/renderers/text.d.ts +7 -0
- package/dist/demo/renderers/text.js +16 -0
- package/dist/demo/renderers/tree.d.ts +7 -0
- package/dist/demo/renderers/tree.js +18 -0
- package/dist/demo/section.d.ts +5 -0
- package/dist/demo/section.js +23 -0
- package/dist/demo/templates.d.ts +4 -0
- package/dist/demo/templates.js +10 -0
- package/dist/demo/types.d.ts +3 -0
- package/dist/demo/types.js +8 -0
- package/dist/index.d.ts +5 -8
- package/dist/index.js +9 -43
- package/dist/input.d.ts +163 -2
- package/dist/input.js +425 -11
- package/dist/list/index.d.ts +3 -0
- package/dist/list/index.js +9 -0
- package/dist/output.js +1 -1
- package/dist/pagination.d.ts +62 -2
- package/dist/pagination.js +84 -6
- package/dist/preset/full.d.ts +14 -0
- package/dist/preset/full.js +41 -0
- package/dist/preset/standard.d.ts +11 -0
- package/dist/preset/standard.js +30 -0
- package/dist/prompt/confirm.d.ts +4 -0
- package/dist/prompt/confirm.js +9 -0
- package/dist/prompt/group.d.ts +4 -0
- package/dist/prompt/group.js +9 -0
- package/dist/prompt/index.d.ts +7 -0
- package/dist/prompt/index.js +32 -0
- package/dist/prompt/select.d.ts +4 -0
- package/dist/prompt/select.js +11 -0
- package/dist/prompt/text.d.ts +4 -0
- package/dist/prompt/text.js +11 -0
- package/dist/prompt/types.d.ts +3 -0
- package/dist/prompt/types.js +8 -0
- package/dist/prompt/validators.d.ts +2 -0
- package/dist/prompt/validators.js +8 -0
- package/dist/render/borders.d.ts +2 -0
- package/dist/render/borders.js +15 -0
- package/dist/render/box.d.ts +3 -0
- package/dist/render/box.js +23 -0
- package/dist/render/colors.d.ts +1 -1
- package/dist/render/colors.js +6 -3
- package/dist/render/date.js +1 -1
- package/dist/render/format-relative.js +1 -1
- package/dist/render/format.js +1 -1
- package/dist/render/heading.d.ts +3 -0
- package/dist/render/heading.js +14 -0
- package/dist/render/index.d.ts +26 -7
- package/dist/render/index.js +160 -26
- package/dist/render/indicators.d.ts +2 -0
- package/dist/render/indicators.js +14 -0
- package/dist/render/json.js +1 -1
- package/dist/render/layout.d.ts +5 -0
- package/dist/render/layout.js +25 -0
- package/dist/render/list.d.ts +2 -2
- package/dist/render/list.js +2 -2
- package/dist/render/markdown.js +4 -4
- package/dist/render/progress.js +1 -1
- package/dist/render/separator.d.ts +3 -0
- package/dist/render/separator.js +14 -0
- package/dist/render/shapes.js +10 -9
- package/dist/render/spinner.d.ts +2 -0
- package/dist/render/spinner.js +12 -0
- package/dist/render/stack.d.ts +3 -0
- package/dist/render/stack.js +38 -0
- package/dist/render/table.d.ts +2 -1
- package/dist/render/table.js +6 -5
- package/dist/render/text.d.ts +1 -1
- package/dist/render/text.js +7 -4
- package/dist/render/tree.d.ts +2 -2
- package/dist/render/tree.js +5 -3
- package/dist/render/types.d.ts +2 -0
- package/dist/render/types.js +1 -0
- package/dist/shared/@outfitter/cli-0ggcy7fa.js +20 -0
- package/dist/shared/@outfitter/cli-0psys2vm.js +7 -0
- package/dist/shared/@outfitter/cli-1bghjef6.js +352 -0
- package/dist/shared/@outfitter/cli-1kwbnt86.d.ts +45 -0
- package/dist/shared/@outfitter/cli-2g8bx1aq.d.ts +50 -0
- package/dist/shared/@outfitter/cli-34fqr7bp.js +37 -0
- package/dist/shared/@outfitter/cli-3b7ed3rm.d.ts +97 -0
- package/dist/shared/@outfitter/cli-3dxmmy4c.d.ts +20 -0
- package/dist/shared/@outfitter/cli-3f12z5kf.d.ts +83 -0
- package/dist/shared/@outfitter/cli-3t2zaenc.d.ts +59 -0
- package/dist/shared/@outfitter/{cli-dds0qqvm.d.ts → cli-4cb5g831.d.ts} +2 -0
- package/dist/shared/@outfitter/cli-4w2a1rfy.d.ts +23 -0
- package/dist/shared/@outfitter/cli-4x6pqnez.js +20 -0
- package/dist/shared/@outfitter/cli-671sxkhj.js +146 -0
- package/dist/shared/@outfitter/cli-6bztk73z.d.ts +51 -0
- package/dist/shared/@outfitter/cli-6fxffp8k.js +1 -0
- package/dist/shared/@outfitter/cli-6j9qynm8.js +118 -0
- package/dist/shared/@outfitter/cli-6m988kh0.d.ts +61 -0
- package/dist/shared/@outfitter/cli-74ba31gz.js +134 -0
- package/dist/shared/@outfitter/cli-7gnrb8cr.js +214 -0
- package/dist/shared/@outfitter/cli-7nm6edvh.d.ts +17 -0
- package/dist/shared/@outfitter/cli-85fg2vr5.js +123 -0
- package/dist/shared/@outfitter/cli-8a8xrzhy.js +20 -0
- package/dist/shared/@outfitter/cli-8bwaw3pz.js +7 -0
- package/dist/shared/@outfitter/cli-8rx4g3s5.d.ts +41 -0
- package/dist/shared/@outfitter/cli-8xsmsbbd.d.ts +223 -0
- package/dist/shared/@outfitter/cli-96b2p4td.d.ts +56 -0
- package/dist/shared/@outfitter/cli-9khk3cbq.d.ts +190 -0
- package/dist/shared/@outfitter/cli-9mtjjykw.js +67 -0
- package/dist/shared/@outfitter/{cli-ag0w4pk0.js → cli-9nbyj2bt.js} +60 -21
- package/dist/shared/@outfitter/{cli-azzk8a1d.js → cli-afhjqmg3.js} +7 -3
- package/dist/shared/@outfitter/cli-an9j0h80.js +117 -0
- package/dist/shared/@outfitter/cli-ay411nbr.js +122 -0
- package/dist/shared/@outfitter/cli-b0tzqgnf.d.ts +132 -0
- package/dist/shared/@outfitter/cli-b5c2k0d7.js +39 -0
- package/dist/shared/@outfitter/cli-b5epywry.js +1 -0
- package/dist/shared/@outfitter/cli-bcmcaz1b.js +23 -0
- package/dist/shared/@outfitter/cli-bf3vma4q.js +61 -0
- package/dist/shared/@outfitter/cli-cf1xexgn.d.ts +53 -0
- package/dist/shared/@outfitter/cli-cs45xd6q.js +59 -0
- package/dist/shared/@outfitter/cli-d7jpshq5.d.ts +128 -0
- package/dist/shared/@outfitter/{cli-jbj78ac5.js → cli-d9ad0rqj.js} +6 -1
- package/dist/shared/@outfitter/cli-daw296mv.js +61 -0
- package/dist/shared/@outfitter/cli-e5ms1y0x.d.ts +91 -0
- package/dist/shared/@outfitter/cli-e73v3qqy.d.ts +93 -0
- package/dist/shared/@outfitter/cli-en6zn6sj.js +1 -0
- package/dist/shared/@outfitter/cli-ep2cvtk8.js +48 -0
- package/dist/shared/@outfitter/cli-f75h8e94.js +7 -0
- package/dist/shared/@outfitter/cli-fakncnjp.d.ts +106 -0
- package/dist/shared/@outfitter/cli-feb5j90n.js +94 -0
- package/dist/shared/@outfitter/cli-h20jc0bs.d.ts +66 -0
- package/dist/shared/@outfitter/cli-hnpbqmc8.d.ts +328 -0
- package/dist/shared/@outfitter/cli-j4n8gaf3.js +95 -0
- package/dist/shared/@outfitter/cli-jejfypgf.js +85 -0
- package/dist/shared/@outfitter/{cli-wqc652mx.js → cli-jhcdwvpn.js} +8 -8
- package/dist/shared/@outfitter/{cli-v9mjsvjh.js → cli-jjemfdta.js} +13 -46
- package/dist/shared/@outfitter/cli-kc84wmch.js +267 -0
- package/dist/shared/@outfitter/cli-ktqme80d.js +7 -0
- package/dist/shared/@outfitter/cli-mq0jp15z.js +1 -0
- package/dist/shared/@outfitter/cli-mymyavvj.d.ts +26 -0
- package/dist/shared/@outfitter/cli-n17gt1dz.js +19 -0
- package/dist/shared/@outfitter/cli-n9dbh0hp.js +51 -0
- package/dist/shared/@outfitter/cli-nvvc92c8.js +128 -0
- package/dist/shared/@outfitter/cli-p1m5dhrs.js +169 -0
- package/dist/shared/@outfitter/cli-p38sfxyk.js +25 -0
- package/dist/shared/@outfitter/cli-p3dqm1vd.js +22 -0
- package/dist/shared/@outfitter/cli-p9j1phge.js +20 -0
- package/dist/shared/@outfitter/cli-pkxmzavm.js +62 -0
- package/dist/shared/@outfitter/cli-q8r6jarq.d.ts +24 -0
- package/dist/shared/@outfitter/{cli-2y3kxew8.d.ts → cli-qj83y5wj.d.ts} +22 -9
- package/dist/shared/@outfitter/cli-qjfc3j11.d.ts +112 -0
- package/dist/shared/@outfitter/cli-qp4cbhqr.js +70 -0
- package/dist/shared/@outfitter/cli-s0kkx9m1.d.ts +164 -0
- package/dist/shared/@outfitter/cli-snxj55n6.js +43 -0
- package/dist/shared/@outfitter/cli-swwxvjvm.d.ts +24 -0
- package/dist/shared/@outfitter/cli-sx67mmfx.d.ts +98 -0
- package/dist/shared/@outfitter/cli-tarpsa8a.js +30 -0
- package/dist/shared/@outfitter/cli-thvzhjd1.js +126 -0
- package/dist/shared/@outfitter/cli-tqewy503.d.ts +36 -0
- package/dist/shared/@outfitter/cli-tvw1xrdj.js +20 -0
- package/dist/shared/@outfitter/cli-v1tzwxkt.js +32 -0
- package/dist/shared/@outfitter/cli-vd60dj65.js +1 -0
- package/dist/shared/@outfitter/cli-vp88gxev.js +279 -0
- package/dist/shared/@outfitter/cli-vstbkzky.d.ts +74 -0
- package/dist/shared/@outfitter/cli-vtg0sqk2.d.ts +54 -0
- package/dist/shared/@outfitter/cli-w5y3xepp.js +20 -0
- package/dist/shared/@outfitter/cli-x4cavvc0.js +1 -0
- package/dist/shared/@outfitter/cli-xep6v2c0.js +52 -0
- package/dist/shared/@outfitter/cli-xg5y5fhk.js +86 -0
- package/dist/shared/@outfitter/{cli-n51t773m.d.ts → cli-xsaheemc.d.ts} +44 -4
- package/dist/shared/@outfitter/cli-xvqtqjxk.js +82 -0
- package/dist/shared/@outfitter/cli-y25tt8nc.d.ts +48 -0
- package/dist/streaming/ansi.d.ts +2 -0
- package/dist/streaming/ansi.js +8 -0
- package/dist/streaming/index.d.ts +4 -0
- package/dist/streaming/index.js +17 -0
- package/dist/streaming/spinner.d.ts +3 -0
- package/dist/streaming/spinner.js +10 -0
- package/dist/streaming/writer.d.ts +2 -0
- package/dist/streaming/writer.js +9 -0
- package/dist/table/index.d.ts +4 -0
- package/dist/table/index.js +13 -0
- package/dist/terminal/detection.js +5 -2
- package/dist/terminal/index.js +6 -2
- package/dist/theme/context.d.ts +9 -0
- package/dist/theme/context.js +14 -0
- package/dist/theme/create.d.ts +8 -0
- package/dist/theme/create.js +12 -0
- package/dist/theme/index.d.ts +17 -0
- package/dist/theme/index.js +42 -0
- package/dist/theme/presets/bold.d.ts +8 -0
- package/dist/theme/presets/bold.js +12 -0
- package/dist/theme/presets/default.d.ts +8 -0
- package/dist/theme/presets/default.js +11 -0
- package/dist/theme/presets/index.d.ts +12 -0
- package/dist/theme/presets/index.js +24 -0
- package/dist/theme/presets/minimal.d.ts +8 -0
- package/dist/theme/presets/minimal.js +12 -0
- package/dist/theme/presets/rounded.d.ts +8 -0
- package/dist/theme/presets/rounded.js +12 -0
- package/dist/theme/resolve.d.ts +8 -0
- package/dist/theme/resolve.js +11 -0
- package/dist/theme/types.d.ts +7 -0
- package/dist/theme/types.js +1 -0
- package/dist/tree/index.d.ts +3 -0
- package/dist/tree/index.js +11 -0
- package/dist/types.js +1 -1
- package/package.json +168 -54
- package/dist/shared/@outfitter/cli-2vs2gxa8.js +0 -429
- package/dist/shared/@outfitter/cli-2yq94zst.d.ts +0 -39
- package/dist/shared/@outfitter/cli-6xc869x1.js +0 -26
- package/dist/shared/@outfitter/cli-7km1e58p.js +0 -85
- package/dist/shared/@outfitter/cli-8r0bnyyx.js +0 -43
- package/dist/shared/@outfitter/cli-afecwfrn.d.ts +0 -13
- package/dist/shared/@outfitter/cli-bt423m6y.js +0 -4
- package/dist/shared/@outfitter/cli-d4fegbad.d.ts +0 -66
- package/dist/shared/@outfitter/cli-e0ecw3x1.js +0 -64
- package/dist/shared/@outfitter/cli-fheaaa6b.js +0 -25
- package/dist/shared/@outfitter/cli-j361wp3g.d.ts +0 -41
- package/dist/shared/@outfitter/cli-p0m2fc51.js +0 -172
- package/dist/shared/@outfitter/cli-tyajr8qa.d.ts +0 -63
- package/dist/shared/@outfitter/cli-zs6jy1am.d.ts +0 -164
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
renderTreeDemo
|
|
4
|
+
} from "../shared/@outfitter/cli-ay411nbr.js";
|
|
5
|
+
import"../shared/@outfitter/cli-b5c2k0d7.js";
|
|
6
|
+
import {
|
|
7
|
+
renderTextDemo
|
|
8
|
+
} from "../shared/@outfitter/cli-nvvc92c8.js";
|
|
9
|
+
import {
|
|
10
|
+
renderSpinnerDemo
|
|
11
|
+
} from "../shared/@outfitter/cli-9mtjjykw.js";
|
|
12
|
+
import"../shared/@outfitter/cli-n9dbh0hp.js";
|
|
13
|
+
import {
|
|
14
|
+
renderColorsDemo
|
|
15
|
+
} from "../shared/@outfitter/cli-74ba31gz.js";
|
|
16
|
+
import {
|
|
17
|
+
renderListDemo
|
|
18
|
+
} from "../shared/@outfitter/cli-thvzhjd1.js";
|
|
19
|
+
import"../shared/@outfitter/cli-xg5y5fhk.js";
|
|
20
|
+
import {
|
|
21
|
+
renderIndicatorsDemo
|
|
22
|
+
} from "../shared/@outfitter/cli-6j9qynm8.js";
|
|
23
|
+
import"../shared/@outfitter/cli-p1m5dhrs.js";
|
|
24
|
+
import {
|
|
25
|
+
renderProgressDemo
|
|
26
|
+
} from "../shared/@outfitter/cli-daw296mv.js";
|
|
27
|
+
import"../shared/@outfitter/cli-bc17qeh2.js";
|
|
28
|
+
import {
|
|
29
|
+
renderTableDemo
|
|
30
|
+
} from "../shared/@outfitter/cli-feb5j90n.js";
|
|
31
|
+
import"../shared/@outfitter/cli-an9j0h80.js";
|
|
32
|
+
import {
|
|
33
|
+
isPrimitiveId
|
|
34
|
+
} from "../shared/@outfitter/cli-tvw1xrdj.js";
|
|
35
|
+
import {
|
|
36
|
+
renderBordersDemo
|
|
37
|
+
} from "../shared/@outfitter/cli-pkxmzavm.js";
|
|
38
|
+
import {
|
|
39
|
+
renderMarkdownDemo
|
|
40
|
+
} from "../shared/@outfitter/cli-qp4cbhqr.js";
|
|
41
|
+
import"../shared/@outfitter/cli-afhjqmg3.js";
|
|
42
|
+
import {
|
|
43
|
+
renderBoxDemo
|
|
44
|
+
} from "../shared/@outfitter/cli-7gnrb8cr.js";
|
|
45
|
+
import {
|
|
46
|
+
BORDER_STYLE_META,
|
|
47
|
+
LIST_STYLE_META,
|
|
48
|
+
PRIMITIVE_META,
|
|
49
|
+
SPINNER_STYLE_META,
|
|
50
|
+
THEME_METHOD_META,
|
|
51
|
+
getBorderStyles,
|
|
52
|
+
getListStyles,
|
|
53
|
+
getPrimitiveIds,
|
|
54
|
+
getPrimitiveMeta,
|
|
55
|
+
getSpinnerStyles,
|
|
56
|
+
getThemeMethodsByCategory
|
|
57
|
+
} from "../shared/@outfitter/cli-kc84wmch.js";
|
|
58
|
+
import {
|
|
59
|
+
DEFAULT_EXAMPLES,
|
|
60
|
+
getExample
|
|
61
|
+
} from "../shared/@outfitter/cli-xep6v2c0.js";
|
|
62
|
+
import {
|
|
63
|
+
codeBlock,
|
|
64
|
+
demoContent,
|
|
65
|
+
demoSection,
|
|
66
|
+
demoSubsection,
|
|
67
|
+
description
|
|
68
|
+
} from "../shared/@outfitter/cli-34fqr7bp.js";
|
|
69
|
+
import"../shared/@outfitter/cli-xvqtqjxk.js";
|
|
70
|
+
import"../shared/@outfitter/cli-671sxkhj.js";
|
|
71
|
+
import"../shared/@outfitter/cli-vp88gxev.js";
|
|
72
|
+
import"../shared/@outfitter/cli-jjemfdta.js";
|
|
73
|
+
import"../shared/@outfitter/cli-85fg2vr5.js";
|
|
74
|
+
import {
|
|
75
|
+
createTheme,
|
|
76
|
+
init_colors
|
|
77
|
+
} from "../shared/@outfitter/cli-9nbyj2bt.js";
|
|
78
|
+
import"../shared/@outfitter/cli-d9ad0rqj.js";
|
|
79
|
+
import"../shared/@outfitter/cli-v1tzwxkt.js";
|
|
80
|
+
|
|
81
|
+
// packages/cli/src/demo/index.ts
|
|
82
|
+
init_colors();
|
|
83
|
+
var DEMO_RENDERERS = {
|
|
84
|
+
colors: renderColorsDemo,
|
|
85
|
+
borders: renderBordersDemo,
|
|
86
|
+
spinner: renderSpinnerDemo,
|
|
87
|
+
list: renderListDemo,
|
|
88
|
+
box: renderBoxDemo,
|
|
89
|
+
table: renderTableDemo,
|
|
90
|
+
progress: renderProgressDemo,
|
|
91
|
+
tree: renderTreeDemo,
|
|
92
|
+
text: renderTextDemo,
|
|
93
|
+
markdown: renderMarkdownDemo,
|
|
94
|
+
indicators: renderIndicatorsDemo
|
|
95
|
+
};
|
|
96
|
+
function renderDemo(id, config = {}) {
|
|
97
|
+
const renderer = DEMO_RENDERERS[id];
|
|
98
|
+
const theme = createTheme();
|
|
99
|
+
return renderer(config, theme);
|
|
100
|
+
}
|
|
101
|
+
function renderAllDemos(config = {}) {
|
|
102
|
+
const theme = createTheme();
|
|
103
|
+
const outputs = [];
|
|
104
|
+
for (const id of getPrimitiveIds()) {
|
|
105
|
+
const renderer = DEMO_RENDERERS[id];
|
|
106
|
+
outputs.push(renderer(config, theme));
|
|
107
|
+
outputs.push("");
|
|
108
|
+
}
|
|
109
|
+
return outputs.join(`
|
|
110
|
+
`).trimEnd();
|
|
111
|
+
}
|
|
112
|
+
function getPrimitive(id) {
|
|
113
|
+
return getPrimitiveMeta(id);
|
|
114
|
+
}
|
|
115
|
+
function getAllPrimitives() {
|
|
116
|
+
return getPrimitiveIds().map((id) => PRIMITIVE_META[id]);
|
|
117
|
+
}
|
|
118
|
+
function getDemoEntry(id) {
|
|
119
|
+
return {
|
|
120
|
+
meta: getPrimitiveMeta(id),
|
|
121
|
+
render: DEMO_RENDERERS[id]
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
export {
|
|
125
|
+
renderDemo,
|
|
126
|
+
renderAllDemos,
|
|
127
|
+
isPrimitiveId,
|
|
128
|
+
getThemeMethodsByCategory,
|
|
129
|
+
getSpinnerStyles,
|
|
130
|
+
getPrimitiveIds,
|
|
131
|
+
getPrimitive,
|
|
132
|
+
getListStyles,
|
|
133
|
+
getExample,
|
|
134
|
+
getDemoEntry,
|
|
135
|
+
getBorderStyles,
|
|
136
|
+
getAllPrimitives,
|
|
137
|
+
description,
|
|
138
|
+
demoSubsection,
|
|
139
|
+
demoSection,
|
|
140
|
+
demoContent,
|
|
141
|
+
codeBlock,
|
|
142
|
+
THEME_METHOD_META,
|
|
143
|
+
SPINNER_STYLE_META,
|
|
144
|
+
PRIMITIVE_META,
|
|
145
|
+
LIST_STYLE_META,
|
|
146
|
+
DEFAULT_EXAMPLES,
|
|
147
|
+
BORDER_STYLE_META
|
|
148
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BORDER_STYLE_META, LIST_STYLE_META, PRIMITIVE_META, SPINNER_STYLE_META, THEME_METHOD_META, getBorderStyles, getListStyles, getPrimitiveIds, getPrimitiveMeta, getSpinnerStyles, getThemeMethodsByCategory } from "../shared/@outfitter/cli-96b2p4td";
|
|
2
|
+
import "../shared/@outfitter/cli-e5ms1y0x";
|
|
3
|
+
import "../shared/@outfitter/cli-b0tzqgnf";
|
|
4
|
+
import "../shared/@outfitter/cli-fakncnjp";
|
|
5
|
+
import "../shared/@outfitter/cli-qjfc3j11";
|
|
6
|
+
import "../shared/@outfitter/cli-xsaheemc";
|
|
7
|
+
export { getThemeMethodsByCategory, getSpinnerStyles, getPrimitiveMeta, getPrimitiveIds, getListStyles, getBorderStyles, THEME_METHOD_META, SPINNER_STYLE_META, PRIMITIVE_META, LIST_STYLE_META, BORDER_STYLE_META };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
BORDER_STYLE_META,
|
|
4
|
+
LIST_STYLE_META,
|
|
5
|
+
PRIMITIVE_META,
|
|
6
|
+
SPINNER_STYLE_META,
|
|
7
|
+
THEME_METHOD_META,
|
|
8
|
+
getBorderStyles,
|
|
9
|
+
getListStyles,
|
|
10
|
+
getPrimitiveIds,
|
|
11
|
+
getPrimitiveMeta,
|
|
12
|
+
getSpinnerStyles,
|
|
13
|
+
getThemeMethodsByCategory
|
|
14
|
+
} from "../shared/@outfitter/cli-kc84wmch.js";
|
|
15
|
+
import"../shared/@outfitter/cli-v1tzwxkt.js";
|
|
16
|
+
export {
|
|
17
|
+
getThemeMethodsByCategory,
|
|
18
|
+
getSpinnerStyles,
|
|
19
|
+
getPrimitiveMeta,
|
|
20
|
+
getPrimitiveIds,
|
|
21
|
+
getListStyles,
|
|
22
|
+
getBorderStyles,
|
|
23
|
+
THEME_METHOD_META,
|
|
24
|
+
SPINNER_STYLE_META,
|
|
25
|
+
PRIMITIVE_META,
|
|
26
|
+
LIST_STYLE_META,
|
|
27
|
+
BORDER_STYLE_META
|
|
28
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DemoConfig } from "../../shared/@outfitter/cli-qjfc3j11";
|
|
2
|
+
import { Theme } from "../../shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
/**
|
|
4
|
+
* Renders the borders demo section.
|
|
5
|
+
*/
|
|
6
|
+
declare function renderBordersDemo(config: DemoConfig, theme: Theme): string;
|
|
7
|
+
export { renderBordersDemo };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
renderBordersDemo
|
|
4
|
+
} from "../../shared/@outfitter/cli-pkxmzavm.js";
|
|
5
|
+
import"../../shared/@outfitter/cli-kc84wmch.js";
|
|
6
|
+
import"../../shared/@outfitter/cli-34fqr7bp.js";
|
|
7
|
+
import"../../shared/@outfitter/cli-xvqtqjxk.js";
|
|
8
|
+
import"../../shared/@outfitter/cli-671sxkhj.js";
|
|
9
|
+
import"../../shared/@outfitter/cli-vp88gxev.js";
|
|
10
|
+
import"../../shared/@outfitter/cli-jjemfdta.js";
|
|
11
|
+
import"../../shared/@outfitter/cli-85fg2vr5.js";
|
|
12
|
+
import"../../shared/@outfitter/cli-9nbyj2bt.js";
|
|
13
|
+
import"../../shared/@outfitter/cli-d9ad0rqj.js";
|
|
14
|
+
import"../../shared/@outfitter/cli-v1tzwxkt.js";
|
|
15
|
+
export {
|
|
16
|
+
renderBordersDemo
|
|
17
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DemoConfig } from "../../shared/@outfitter/cli-qjfc3j11";
|
|
2
|
+
import { Theme } from "../../shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
/**
|
|
4
|
+
* Renders the box demo section.
|
|
5
|
+
*/
|
|
6
|
+
declare function renderBoxDemo(config: DemoConfig, theme: Theme): string;
|
|
7
|
+
export { renderBoxDemo };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
renderBoxDemo
|
|
4
|
+
} from "../../shared/@outfitter/cli-7gnrb8cr.js";
|
|
5
|
+
import"../../shared/@outfitter/cli-kc84wmch.js";
|
|
6
|
+
import"../../shared/@outfitter/cli-xep6v2c0.js";
|
|
7
|
+
import"../../shared/@outfitter/cli-34fqr7bp.js";
|
|
8
|
+
import"../../shared/@outfitter/cli-xvqtqjxk.js";
|
|
9
|
+
import"../../shared/@outfitter/cli-671sxkhj.js";
|
|
10
|
+
import"../../shared/@outfitter/cli-vp88gxev.js";
|
|
11
|
+
import"../../shared/@outfitter/cli-jjemfdta.js";
|
|
12
|
+
import"../../shared/@outfitter/cli-85fg2vr5.js";
|
|
13
|
+
import"../../shared/@outfitter/cli-9nbyj2bt.js";
|
|
14
|
+
import"../../shared/@outfitter/cli-d9ad0rqj.js";
|
|
15
|
+
import"../../shared/@outfitter/cli-v1tzwxkt.js";
|
|
16
|
+
export {
|
|
17
|
+
renderBoxDemo
|
|
18
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DemoConfig } from "../../shared/@outfitter/cli-qjfc3j11";
|
|
2
|
+
import { Theme } from "../../shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
/**
|
|
4
|
+
* Renders the colors demo section.
|
|
5
|
+
*/
|
|
6
|
+
declare function renderColorsDemo(config: DemoConfig, theme: Theme): string;
|
|
7
|
+
export { renderColorsDemo };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
renderColorsDemo
|
|
4
|
+
} from "../../shared/@outfitter/cli-74ba31gz.js";
|
|
5
|
+
import"../../shared/@outfitter/cli-kc84wmch.js";
|
|
6
|
+
import"../../shared/@outfitter/cli-xep6v2c0.js";
|
|
7
|
+
import"../../shared/@outfitter/cli-34fqr7bp.js";
|
|
8
|
+
import"../../shared/@outfitter/cli-xvqtqjxk.js";
|
|
9
|
+
import"../../shared/@outfitter/cli-671sxkhj.js";
|
|
10
|
+
import"../../shared/@outfitter/cli-vp88gxev.js";
|
|
11
|
+
import"../../shared/@outfitter/cli-jjemfdta.js";
|
|
12
|
+
import"../../shared/@outfitter/cli-85fg2vr5.js";
|
|
13
|
+
import"../../shared/@outfitter/cli-9nbyj2bt.js";
|
|
14
|
+
import"../../shared/@outfitter/cli-d9ad0rqj.js";
|
|
15
|
+
import"../../shared/@outfitter/cli-v1tzwxkt.js";
|
|
16
|
+
export {
|
|
17
|
+
renderColorsDemo
|
|
18
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DemoConfig } from "../../shared/@outfitter/cli-qjfc3j11";
|
|
2
|
+
import { Theme } from "../../shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
/**
|
|
4
|
+
* Renders the indicators demo section.
|
|
5
|
+
*/
|
|
6
|
+
declare function renderIndicatorsDemo(config: DemoConfig, _theme: Theme): string;
|
|
7
|
+
export { renderIndicatorsDemo };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
renderIndicatorsDemo
|
|
4
|
+
} from "../../shared/@outfitter/cli-6j9qynm8.js";
|
|
5
|
+
import"../../shared/@outfitter/cli-p1m5dhrs.js";
|
|
6
|
+
import"../../shared/@outfitter/cli-34fqr7bp.js";
|
|
7
|
+
import"../../shared/@outfitter/cli-xvqtqjxk.js";
|
|
8
|
+
import"../../shared/@outfitter/cli-671sxkhj.js";
|
|
9
|
+
import"../../shared/@outfitter/cli-vp88gxev.js";
|
|
10
|
+
import"../../shared/@outfitter/cli-jjemfdta.js";
|
|
11
|
+
import"../../shared/@outfitter/cli-85fg2vr5.js";
|
|
12
|
+
import"../../shared/@outfitter/cli-9nbyj2bt.js";
|
|
13
|
+
import"../../shared/@outfitter/cli-d9ad0rqj.js";
|
|
14
|
+
import"../../shared/@outfitter/cli-v1tzwxkt.js";
|
|
15
|
+
export {
|
|
16
|
+
renderIndicatorsDemo
|
|
17
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DemoConfig } from "../../shared/@outfitter/cli-qjfc3j11";
|
|
2
|
+
import { Theme } from "../../shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
/**
|
|
4
|
+
* Renders the list demo section.
|
|
5
|
+
*/
|
|
6
|
+
declare function renderListDemo(config: DemoConfig, theme: Theme): string;
|
|
7
|
+
export { renderListDemo };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
renderListDemo
|
|
4
|
+
} from "../../shared/@outfitter/cli-thvzhjd1.js";
|
|
5
|
+
import"../../shared/@outfitter/cli-xg5y5fhk.js";
|
|
6
|
+
import"../../shared/@outfitter/cli-kc84wmch.js";
|
|
7
|
+
import"../../shared/@outfitter/cli-xep6v2c0.js";
|
|
8
|
+
import"../../shared/@outfitter/cli-34fqr7bp.js";
|
|
9
|
+
import"../../shared/@outfitter/cli-xvqtqjxk.js";
|
|
10
|
+
import"../../shared/@outfitter/cli-671sxkhj.js";
|
|
11
|
+
import"../../shared/@outfitter/cli-vp88gxev.js";
|
|
12
|
+
import"../../shared/@outfitter/cli-jjemfdta.js";
|
|
13
|
+
import"../../shared/@outfitter/cli-85fg2vr5.js";
|
|
14
|
+
import"../../shared/@outfitter/cli-9nbyj2bt.js";
|
|
15
|
+
import"../../shared/@outfitter/cli-d9ad0rqj.js";
|
|
16
|
+
import"../../shared/@outfitter/cli-v1tzwxkt.js";
|
|
17
|
+
export {
|
|
18
|
+
renderListDemo
|
|
19
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DemoConfig } from "../../shared/@outfitter/cli-qjfc3j11";
|
|
2
|
+
import { Theme } from "../../shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
/**
|
|
4
|
+
* Renders the markdown demo section.
|
|
5
|
+
*/
|
|
6
|
+
declare function renderMarkdownDemo(config: DemoConfig, theme: Theme): string;
|
|
7
|
+
export { renderMarkdownDemo };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
renderMarkdownDemo
|
|
4
|
+
} from "../../shared/@outfitter/cli-qp4cbhqr.js";
|
|
5
|
+
import"../../shared/@outfitter/cli-afhjqmg3.js";
|
|
6
|
+
import"../../shared/@outfitter/cli-xep6v2c0.js";
|
|
7
|
+
import"../../shared/@outfitter/cli-34fqr7bp.js";
|
|
8
|
+
import"../../shared/@outfitter/cli-xvqtqjxk.js";
|
|
9
|
+
import"../../shared/@outfitter/cli-671sxkhj.js";
|
|
10
|
+
import"../../shared/@outfitter/cli-vp88gxev.js";
|
|
11
|
+
import"../../shared/@outfitter/cli-jjemfdta.js";
|
|
12
|
+
import"../../shared/@outfitter/cli-85fg2vr5.js";
|
|
13
|
+
import"../../shared/@outfitter/cli-9nbyj2bt.js";
|
|
14
|
+
import"../../shared/@outfitter/cli-d9ad0rqj.js";
|
|
15
|
+
import"../../shared/@outfitter/cli-v1tzwxkt.js";
|
|
16
|
+
export {
|
|
17
|
+
renderMarkdownDemo
|
|
18
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DemoConfig } from "../../shared/@outfitter/cli-qjfc3j11";
|
|
2
|
+
import { Theme } from "../../shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
/**
|
|
4
|
+
* Renders the progress demo section.
|
|
5
|
+
*/
|
|
6
|
+
declare function renderProgressDemo(config: DemoConfig, _theme: Theme): string;
|
|
7
|
+
export { renderProgressDemo };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
renderProgressDemo
|
|
4
|
+
} from "../../shared/@outfitter/cli-daw296mv.js";
|
|
5
|
+
import"../../shared/@outfitter/cli-bc17qeh2.js";
|
|
6
|
+
import"../../shared/@outfitter/cli-34fqr7bp.js";
|
|
7
|
+
import"../../shared/@outfitter/cli-xvqtqjxk.js";
|
|
8
|
+
import"../../shared/@outfitter/cli-671sxkhj.js";
|
|
9
|
+
import"../../shared/@outfitter/cli-vp88gxev.js";
|
|
10
|
+
import"../../shared/@outfitter/cli-jjemfdta.js";
|
|
11
|
+
import"../../shared/@outfitter/cli-85fg2vr5.js";
|
|
12
|
+
import"../../shared/@outfitter/cli-9nbyj2bt.js";
|
|
13
|
+
import"../../shared/@outfitter/cli-d9ad0rqj.js";
|
|
14
|
+
import"../../shared/@outfitter/cli-v1tzwxkt.js";
|
|
15
|
+
export {
|
|
16
|
+
renderProgressDemo
|
|
17
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DemoConfig } from "../../shared/@outfitter/cli-qjfc3j11";
|
|
2
|
+
import { Theme } from "../../shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
/**
|
|
4
|
+
* Renders the spinner demo section.
|
|
5
|
+
*/
|
|
6
|
+
declare function renderSpinnerDemo(config: DemoConfig, theme: Theme): string;
|
|
7
|
+
export { renderSpinnerDemo };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
renderSpinnerDemo
|
|
4
|
+
} from "../../shared/@outfitter/cli-9mtjjykw.js";
|
|
5
|
+
import"../../shared/@outfitter/cli-n9dbh0hp.js";
|
|
6
|
+
import"../../shared/@outfitter/cli-kc84wmch.js";
|
|
7
|
+
import"../../shared/@outfitter/cli-xep6v2c0.js";
|
|
8
|
+
import"../../shared/@outfitter/cli-34fqr7bp.js";
|
|
9
|
+
import"../../shared/@outfitter/cli-xvqtqjxk.js";
|
|
10
|
+
import"../../shared/@outfitter/cli-671sxkhj.js";
|
|
11
|
+
import"../../shared/@outfitter/cli-vp88gxev.js";
|
|
12
|
+
import"../../shared/@outfitter/cli-jjemfdta.js";
|
|
13
|
+
import"../../shared/@outfitter/cli-85fg2vr5.js";
|
|
14
|
+
import"../../shared/@outfitter/cli-9nbyj2bt.js";
|
|
15
|
+
import"../../shared/@outfitter/cli-d9ad0rqj.js";
|
|
16
|
+
import"../../shared/@outfitter/cli-v1tzwxkt.js";
|
|
17
|
+
export {
|
|
18
|
+
renderSpinnerDemo
|
|
19
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DemoConfig } from "../../shared/@outfitter/cli-qjfc3j11";
|
|
2
|
+
import { Theme } from "../../shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
/**
|
|
4
|
+
* Renders the table demo section.
|
|
5
|
+
*/
|
|
6
|
+
declare function renderTableDemo(config: DemoConfig, theme: Theme): string;
|
|
7
|
+
export { renderTableDemo };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
renderTableDemo
|
|
4
|
+
} from "../../shared/@outfitter/cli-feb5j90n.js";
|
|
5
|
+
import"../../shared/@outfitter/cli-an9j0h80.js";
|
|
6
|
+
import"../../shared/@outfitter/cli-kc84wmch.js";
|
|
7
|
+
import"../../shared/@outfitter/cli-xep6v2c0.js";
|
|
8
|
+
import"../../shared/@outfitter/cli-34fqr7bp.js";
|
|
9
|
+
import"../../shared/@outfitter/cli-xvqtqjxk.js";
|
|
10
|
+
import"../../shared/@outfitter/cli-671sxkhj.js";
|
|
11
|
+
import"../../shared/@outfitter/cli-vp88gxev.js";
|
|
12
|
+
import"../../shared/@outfitter/cli-jjemfdta.js";
|
|
13
|
+
import"../../shared/@outfitter/cli-85fg2vr5.js";
|
|
14
|
+
import"../../shared/@outfitter/cli-9nbyj2bt.js";
|
|
15
|
+
import"../../shared/@outfitter/cli-d9ad0rqj.js";
|
|
16
|
+
import"../../shared/@outfitter/cli-v1tzwxkt.js";
|
|
17
|
+
export {
|
|
18
|
+
renderTableDemo
|
|
19
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DemoConfig } from "../../shared/@outfitter/cli-qjfc3j11";
|
|
2
|
+
import { Theme } from "../../shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
/**
|
|
4
|
+
* Renders the text utilities demo section.
|
|
5
|
+
*/
|
|
6
|
+
declare function renderTextDemo(config: DemoConfig, theme: Theme): string;
|
|
7
|
+
export { renderTextDemo };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
renderTextDemo
|
|
4
|
+
} from "../../shared/@outfitter/cli-nvvc92c8.js";
|
|
5
|
+
import"../../shared/@outfitter/cli-34fqr7bp.js";
|
|
6
|
+
import"../../shared/@outfitter/cli-xvqtqjxk.js";
|
|
7
|
+
import"../../shared/@outfitter/cli-671sxkhj.js";
|
|
8
|
+
import"../../shared/@outfitter/cli-vp88gxev.js";
|
|
9
|
+
import"../../shared/@outfitter/cli-jjemfdta.js";
|
|
10
|
+
import"../../shared/@outfitter/cli-85fg2vr5.js";
|
|
11
|
+
import"../../shared/@outfitter/cli-9nbyj2bt.js";
|
|
12
|
+
import"../../shared/@outfitter/cli-d9ad0rqj.js";
|
|
13
|
+
import"../../shared/@outfitter/cli-v1tzwxkt.js";
|
|
14
|
+
export {
|
|
15
|
+
renderTextDemo
|
|
16
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DemoConfig } from "../../shared/@outfitter/cli-qjfc3j11";
|
|
2
|
+
import { Theme } from "../../shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
/**
|
|
4
|
+
* Renders the tree demo section.
|
|
5
|
+
*/
|
|
6
|
+
declare function renderTreeDemo(config: DemoConfig, _theme: Theme): string;
|
|
7
|
+
export { renderTreeDemo };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
renderTreeDemo
|
|
4
|
+
} from "../../shared/@outfitter/cli-ay411nbr.js";
|
|
5
|
+
import"../../shared/@outfitter/cli-b5c2k0d7.js";
|
|
6
|
+
import"../../shared/@outfitter/cli-xep6v2c0.js";
|
|
7
|
+
import"../../shared/@outfitter/cli-34fqr7bp.js";
|
|
8
|
+
import"../../shared/@outfitter/cli-xvqtqjxk.js";
|
|
9
|
+
import"../../shared/@outfitter/cli-671sxkhj.js";
|
|
10
|
+
import"../../shared/@outfitter/cli-vp88gxev.js";
|
|
11
|
+
import"../../shared/@outfitter/cli-jjemfdta.js";
|
|
12
|
+
import"../../shared/@outfitter/cli-85fg2vr5.js";
|
|
13
|
+
import"../../shared/@outfitter/cli-9nbyj2bt.js";
|
|
14
|
+
import"../../shared/@outfitter/cli-d9ad0rqj.js";
|
|
15
|
+
import"../../shared/@outfitter/cli-v1tzwxkt.js";
|
|
16
|
+
export {
|
|
17
|
+
renderTreeDemo
|
|
18
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { SectionOptions, SubsectionOptions, codeBlock, demoContent, demoSection, demoSubsection, description } from "../shared/@outfitter/cli-d7jpshq5";
|
|
2
|
+
import "../shared/@outfitter/cli-6bztk73z";
|
|
3
|
+
import "../shared/@outfitter/cli-2g8bx1aq";
|
|
4
|
+
import "../shared/@outfitter/cli-xsaheemc";
|
|
5
|
+
export { description, demoSubsection, demoSection, demoContent, codeBlock, SubsectionOptions, SectionOptions };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
codeBlock,
|
|
4
|
+
demoContent,
|
|
5
|
+
demoSection,
|
|
6
|
+
demoSubsection,
|
|
7
|
+
description
|
|
8
|
+
} from "../shared/@outfitter/cli-34fqr7bp.js";
|
|
9
|
+
import"../shared/@outfitter/cli-xvqtqjxk.js";
|
|
10
|
+
import"../shared/@outfitter/cli-671sxkhj.js";
|
|
11
|
+
import"../shared/@outfitter/cli-vp88gxev.js";
|
|
12
|
+
import"../shared/@outfitter/cli-jjemfdta.js";
|
|
13
|
+
import"../shared/@outfitter/cli-85fg2vr5.js";
|
|
14
|
+
import"../shared/@outfitter/cli-9nbyj2bt.js";
|
|
15
|
+
import"../shared/@outfitter/cli-d9ad0rqj.js";
|
|
16
|
+
import"../shared/@outfitter/cli-v1tzwxkt.js";
|
|
17
|
+
export {
|
|
18
|
+
description,
|
|
19
|
+
demoSubsection,
|
|
20
|
+
demoSection,
|
|
21
|
+
demoContent,
|
|
22
|
+
codeBlock
|
|
23
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { DemoConfig, DemoRegistryEntry, DemoRenderer, ExampleTexts, PrimitiveId, PrimitiveMeta, ThemeMethodCategory, ThemeMethodMeta, VariantMeta, isPrimitiveId } from "../shared/@outfitter/cli-qjfc3j11";
|
|
2
|
+
import "../shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
export { isPrimitiveId, VariantMeta, ThemeMethodMeta, ThemeMethodCategory, PrimitiveMeta, PrimitiveId, ExampleTexts, DemoRenderer, DemoRegistryEntry, DemoConfig };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
import { command } from "./shared/@outfitter/cli-2yq94zst";
|
|
7
|
-
import { CLI, CLIConfig, CancelledError, CollectIdsOptions, CommandAction, CommandBuilder, CommandConfig, CommandFlags, ConfirmDestructiveOptions, CursorOptions, DateRange, ExpandFileOptions, FilterExpression, KeyValuePair, NormalizeIdOptions, NumericRange, OutputMode, OutputOptions, PaginationState, ParseGlobOptions, Range, SortCriteria, ValidationError } from "./shared/@outfitter/cli-ttt7r0j7";
|
|
8
|
-
export { saveCursor, parseSortSpec, parseRange, parseKeyValue, parseGlob, parseFilter, output, normalizeId, loadCursor, expandFileArg, exitWithError, createCLI, confirmDestructive, command, collectIds, clearCursor, buildCliCommands, ValidationError, SortCriteria, Range, ParseGlobOptions, PaginationState, OutputOptions, OutputMode, NumericRange, NormalizeIdOptions, KeyValuePair, FilterExpression, ExpandFileOptions, DateRange, CursorOptions, ConfirmDestructiveOptions, CommandFlags, CommandConfig, CommandBuilder, CommandAction, CollectIdsOptions, CancelledError, CLIConfig, CLI, BuildCliCommandsOptions };
|
|
1
|
+
import "./shared/@outfitter/cli-qz47jk6d";
|
|
2
|
+
import { ANSI, Theme, Tokens, createTheme } from "./shared/@outfitter/cli-xsaheemc";
|
|
3
|
+
import { output } from "./shared/@outfitter/cli-72kg550t";
|
|
4
|
+
import { OutputMode } from "./shared/@outfitter/cli-ttt7r0j7";
|
|
5
|
+
export { output, createTheme, Tokens, Theme, OutputMode, ANSI };
|
package/dist/index.js
CHANGED
|
@@ -1,50 +1,16 @@
|
|
|
1
1
|
// @bun
|
|
2
|
+
import"./shared/@outfitter/cli-0psys2vm.js";
|
|
3
|
+
import {
|
|
4
|
+
ANSI,
|
|
5
|
+
createTheme
|
|
6
|
+
} from "./shared/@outfitter/cli-9nbyj2bt.js";
|
|
7
|
+
import"./shared/@outfitter/cli-d9ad0rqj.js";
|
|
2
8
|
import {
|
|
3
|
-
exitWithError,
|
|
4
9
|
output
|
|
5
10
|
} from "./shared/@outfitter/cli-zact3325.js";
|
|
6
|
-
import
|
|
7
|
-
createCLI
|
|
8
|
-
} from "./shared/@outfitter/cli-efy6jfcj.js";
|
|
9
|
-
import {
|
|
10
|
-
collectIds,
|
|
11
|
-
confirmDestructive,
|
|
12
|
-
expandFileArg,
|
|
13
|
-
normalizeId,
|
|
14
|
-
parseFilter,
|
|
15
|
-
parseGlob,
|
|
16
|
-
parseKeyValue,
|
|
17
|
-
parseRange,
|
|
18
|
-
parseSortSpec
|
|
19
|
-
} from "./shared/@outfitter/cli-2vs2gxa8.js";
|
|
20
|
-
import {
|
|
21
|
-
clearCursor,
|
|
22
|
-
loadCursor,
|
|
23
|
-
saveCursor
|
|
24
|
-
} from "./shared/@outfitter/cli-7km1e58p.js";
|
|
25
|
-
import {
|
|
26
|
-
buildCliCommands
|
|
27
|
-
} from "./shared/@outfitter/cli-p0m2fc51.js";
|
|
28
|
-
import {
|
|
29
|
-
command
|
|
30
|
-
} from "./shared/@outfitter/cli-8r0bnyyx.js";
|
|
31
|
-
import"./shared/@outfitter/cli-bt423m6y.js";
|
|
11
|
+
import"./shared/@outfitter/cli-v1tzwxkt.js";
|
|
32
12
|
export {
|
|
33
|
-
saveCursor,
|
|
34
|
-
parseSortSpec,
|
|
35
|
-
parseRange,
|
|
36
|
-
parseKeyValue,
|
|
37
|
-
parseGlob,
|
|
38
|
-
parseFilter,
|
|
39
13
|
output,
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
expandFileArg,
|
|
43
|
-
exitWithError,
|
|
44
|
-
createCLI,
|
|
45
|
-
confirmDestructive,
|
|
46
|
-
command,
|
|
47
|
-
collectIds,
|
|
48
|
-
clearCursor,
|
|
49
|
-
buildCliCommands
|
|
14
|
+
createTheme,
|
|
15
|
+
ANSI
|
|
50
16
|
};
|