whats-up-dug 0.2.4 → 0.2.5
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 +1 -0
- package/dist/index.js +5 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,6 +65,7 @@ dug responds to keyboard commands. He's a very trained boy.
|
|
|
65
65
|
| Key | What happens |
|
|
66
66
|
|-----|-------------|
|
|
67
67
|
| `j` / `k` | Move between rows |
|
|
68
|
+
| `h` / `l` | Scroll columns left / right |
|
|
68
69
|
| `Enter` | Look at this record |
|
|
69
70
|
| `n` / `p` | Next / previous page |
|
|
70
71
|
| `/` | Quick search |
|
package/dist/index.js
CHANGED
|
@@ -52915,12 +52915,11 @@ function TableScreen({
|
|
|
52915
52915
|
}, undefined, false, undefined, this)
|
|
52916
52916
|
]
|
|
52917
52917
|
}, undefined, true, undefined, this),
|
|
52918
|
-
overlay === "search"
|
|
52918
|
+
overlay === "search" ? /* @__PURE__ */ jsx_dev_runtime8.jsxDEV(Box_default, {
|
|
52919
52919
|
flexDirection: "column",
|
|
52920
52920
|
borderStyle: "round",
|
|
52921
52921
|
borderColor: "yellow",
|
|
52922
52922
|
paddingX: 1,
|
|
52923
|
-
marginBottom: 1,
|
|
52924
52923
|
children: [
|
|
52925
52924
|
/* @__PURE__ */ jsx_dev_runtime8.jsxDEV(Text, {
|
|
52926
52925
|
bold: true,
|
|
@@ -52968,13 +52967,11 @@ function TableScreen({
|
|
|
52968
52967
|
]
|
|
52969
52968
|
}, undefined, true, undefined, this)
|
|
52970
52969
|
]
|
|
52971
|
-
}, undefined, true, undefined, this),
|
|
52972
|
-
overlay === "sort" && /* @__PURE__ */ jsx_dev_runtime8.jsxDEV(Box_default, {
|
|
52970
|
+
}, undefined, true, undefined, this) : overlay === "sort" ? /* @__PURE__ */ jsx_dev_runtime8.jsxDEV(Box_default, {
|
|
52973
52971
|
flexDirection: "column",
|
|
52974
52972
|
borderStyle: "round",
|
|
52975
52973
|
borderColor: "cyan",
|
|
52976
52974
|
paddingX: 1,
|
|
52977
|
-
marginBottom: 1,
|
|
52978
52975
|
children: [
|
|
52979
52976
|
/* @__PURE__ */ jsx_dev_runtime8.jsxDEV(Text, {
|
|
52980
52977
|
bold: true,
|
|
@@ -53024,13 +53021,11 @@ function TableScreen({
|
|
|
53024
53021
|
children: "Esc to cancel"
|
|
53025
53022
|
}, undefined, false, undefined, this)
|
|
53026
53023
|
]
|
|
53027
|
-
}, undefined, true, undefined, this),
|
|
53028
|
-
overlay === "columns" && /* @__PURE__ */ jsx_dev_runtime8.jsxDEV(Box_default, {
|
|
53024
|
+
}, undefined, true, undefined, this) : overlay === "columns" ? /* @__PURE__ */ jsx_dev_runtime8.jsxDEV(Box_default, {
|
|
53029
53025
|
flexDirection: "column",
|
|
53030
53026
|
borderStyle: "round",
|
|
53031
53027
|
borderColor: "green",
|
|
53032
53028
|
paddingX: 1,
|
|
53033
|
-
marginBottom: 1,
|
|
53034
53029
|
children: [
|
|
53035
53030
|
/* @__PURE__ */ jsx_dev_runtime8.jsxDEV(Text, {
|
|
53036
53031
|
bold: true,
|
|
@@ -53051,13 +53046,11 @@ function TableScreen({
|
|
|
53051
53046
|
}, undefined, true, undefined, this)
|
|
53052
53047
|
}, attr, false, undefined, this))
|
|
53053
53048
|
]
|
|
53054
|
-
}, undefined, true, undefined, this),
|
|
53055
|
-
overlay === "query" && /* @__PURE__ */ jsx_dev_runtime8.jsxDEV(Box_default, {
|
|
53049
|
+
}, undefined, true, undefined, this) : overlay === "query" ? /* @__PURE__ */ jsx_dev_runtime8.jsxDEV(Box_default, {
|
|
53056
53050
|
flexDirection: "column",
|
|
53057
53051
|
borderStyle: "round",
|
|
53058
53052
|
borderColor: "magenta",
|
|
53059
53053
|
paddingX: 1,
|
|
53060
|
-
marginBottom: 1,
|
|
53061
53054
|
children: /* @__PURE__ */ jsx_dev_runtime8.jsxDEV(QueryBuilder, {
|
|
53062
53055
|
attributes: allAttributes,
|
|
53063
53056
|
defaultLimit: tablePageSize,
|
|
@@ -53074,8 +53067,7 @@ function TableScreen({
|
|
|
53074
53067
|
},
|
|
53075
53068
|
onCancel: () => setOverlay("none")
|
|
53076
53069
|
}, undefined, false, undefined, this)
|
|
53077
|
-
}, undefined, false, undefined, this),
|
|
53078
|
-
overlay === "schema-info" ? /* @__PURE__ */ jsx_dev_runtime8.jsxDEV(Box_default, {
|
|
53070
|
+
}, undefined, false, undefined, this) : overlay === "schema-info" ? /* @__PURE__ */ jsx_dev_runtime8.jsxDEV(Box_default, {
|
|
53079
53071
|
flexDirection: "column",
|
|
53080
53072
|
borderStyle: "round",
|
|
53081
53073
|
borderColor: "blue",
|