@nmakarov/cli-toolkit 0.5.0 → 0.6.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/dist/index.cjs +26 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +15 -1
- package/dist/index.js.map +1 -1
- package/dist/screen.cjs +24 -2
- package/dist/screen.cjs.map +1 -1
- package/dist/screen.js +15 -1
- package/dist/screen.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -734,6 +734,10 @@ var Params = class {
|
|
|
734
734
|
var paramsInstance = null;
|
|
735
735
|
var getParamsInstance = () => paramsInstance;
|
|
736
736
|
|
|
737
|
+
// src/screen/index.ts
|
|
738
|
+
import React5, { useState as useState3, useEffect as useEffect3, useRef as useRef3, useMemo, useCallback, createElement as createElement2 } from "react";
|
|
739
|
+
import { Box as Box5, Text as Text5, useInput as useInput2 } from "ink";
|
|
740
|
+
|
|
737
741
|
// src/screen/screens.ts
|
|
738
742
|
import { useState as useState2, createElement as h3 } from "react";
|
|
739
743
|
import { render, useInput, Text as Text3 } from "ink";
|
|
@@ -3180,6 +3184,7 @@ function setupContext(opts = {}) {
|
|
|
3180
3184
|
}
|
|
3181
3185
|
export {
|
|
3182
3186
|
Args,
|
|
3187
|
+
Box5 as Box,
|
|
3183
3188
|
Db,
|
|
3184
3189
|
Divider,
|
|
3185
3190
|
FileDatabase,
|
|
@@ -3192,12 +3197,14 @@ export {
|
|
|
3192
3197
|
MultiColumnListComponent,
|
|
3193
3198
|
MultiColumnListWithPreviewComponent,
|
|
3194
3199
|
Params,
|
|
3200
|
+
React5 as React,
|
|
3195
3201
|
ScreenBody,
|
|
3196
3202
|
ScreenContainer,
|
|
3197
3203
|
ScreenDivider,
|
|
3198
3204
|
ScreenFooter,
|
|
3199
3205
|
ScreenRow,
|
|
3200
3206
|
ScreenTitle,
|
|
3207
|
+
Text5 as Text,
|
|
3201
3208
|
TextBlock,
|
|
3202
3209
|
buildBreadcrumb,
|
|
3203
3210
|
buildDetailBreadcrumb,
|
|
@@ -3206,6 +3213,7 @@ export {
|
|
|
3206
3213
|
defaultVersionSynopsisFunction,
|
|
3207
3214
|
getArgsInstance,
|
|
3208
3215
|
getParamsInstance,
|
|
3216
|
+
createElement2 as h,
|
|
3209
3217
|
joiEdateType,
|
|
3210
3218
|
joiStringArrayType,
|
|
3211
3219
|
organizeFooterMessages,
|
|
@@ -3215,6 +3223,12 @@ export {
|
|
|
3215
3223
|
showMultiColumnListScreen,
|
|
3216
3224
|
showMultiColumnListWithPreviewScreen,
|
|
3217
3225
|
showScreen,
|
|
3218
|
-
showWordGridScreen
|
|
3226
|
+
showWordGridScreen,
|
|
3227
|
+
useCallback,
|
|
3228
|
+
useEffect3 as useEffect,
|
|
3229
|
+
useInput2 as useInput,
|
|
3230
|
+
useMemo,
|
|
3231
|
+
useRef3 as useRef,
|
|
3232
|
+
useState3 as useState
|
|
3219
3233
|
};
|
|
3220
3234
|
//# sourceMappingURL=index.js.map
|