From 9d0f6f0171e3c23370e7561f5fc8d558df377b69 Mon Sep 17 00:00:00 2001 From: Michael Molisani Date: Sun, 3 Nov 2024 13:54:31 -0500 Subject: [PATCH 1/2] docs: increase z-index of navbar to place on top of editor Signed-off-by: Michael Molisani --- docs/src/css/custom.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/css/custom.scss b/docs/src/css/custom.scss index e850d59..00831e0 100644 --- a/docs/src/css/custom.scss +++ b/docs/src/css/custom.scss @@ -118,7 +118,7 @@ a.button { } .editor-navbar { - z-index: 1; + z-index: 10; position: absolute; top: 3px; right: 20px; From 7b7c0dc2d88270c1ee97eba008d371836d7187f5 Mon Sep 17 00:00:00 2001 From: Michael Molisani Date: Sat, 2 Nov 2024 17:03:26 -0400 Subject: [PATCH 2/2] docs: populate brief for all live playground examples Signed-off-by: Michael Molisani --- docs/docs/features/argument-parsing/examples/array-argument.txt | 2 +- docs/docs/features/argument-parsing/examples/boolean-flag.txt | 2 +- .../argument-parsing/examples/bounded-array-argument.txt | 2 +- docs/docs/features/argument-parsing/examples/counter-flag.txt | 2 +- docs/docs/features/argument-parsing/examples/default-flag.txt | 2 +- .../argument-parsing/examples/default-tuple-argument.txt | 2 +- docs/docs/features/argument-parsing/examples/enum-flag.txt | 2 +- docs/docs/features/argument-parsing/examples/hidden-flag.txt | 2 +- docs/docs/features/argument-parsing/examples/optional-flag.txt | 2 +- .../argument-parsing/examples/optional-tuple-argument.txt | 2 +- docs/docs/features/argument-parsing/examples/parsed-flag.txt | 2 +- docs/docs/features/argument-parsing/examples/tuple-argument.txt | 2 +- docs/docs/features/argument-parsing/examples/variadic-flag.txt | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/docs/features/argument-parsing/examples/array-argument.txt b/docs/docs/features/argument-parsing/examples/array-argument.txt index 69a2c12..98ce5d9 100644 --- a/docs/docs/features/argument-parsing/examples/array-argument.txt +++ b/docs/docs/features/argument-parsing/examples/array-argument.txt @@ -14,6 +14,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with homogenous positional parameters", }, }); diff --git a/docs/docs/features/argument-parsing/examples/boolean-flag.txt b/docs/docs/features/argument-parsing/examples/boolean-flag.txt index e84ac04..dce4623 100644 --- a/docs/docs/features/argument-parsing/examples/boolean-flag.txt +++ b/docs/docs/features/argument-parsing/examples/boolean-flag.txt @@ -17,7 +17,7 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with boolean flag", customUsage: [ "--quiet", "--quiet=yes", diff --git a/docs/docs/features/argument-parsing/examples/bounded-array-argument.txt b/docs/docs/features/argument-parsing/examples/bounded-array-argument.txt index bc5ce97..74f51cf 100644 --- a/docs/docs/features/argument-parsing/examples/bounded-array-argument.txt +++ b/docs/docs/features/argument-parsing/examples/bounded-array-argument.txt @@ -16,6 +16,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with bounded positional parameters", }, }); diff --git a/docs/docs/features/argument-parsing/examples/counter-flag.txt b/docs/docs/features/argument-parsing/examples/counter-flag.txt index c767c8d..fdab706 100644 --- a/docs/docs/features/argument-parsing/examples/counter-flag.txt +++ b/docs/docs/features/argument-parsing/examples/counter-flag.txt @@ -20,7 +20,7 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with counter flag", customUsage: [ "--verbose", "-v", diff --git a/docs/docs/features/argument-parsing/examples/default-flag.txt b/docs/docs/features/argument-parsing/examples/default-flag.txt index 4a80cbc..07893c7 100644 --- a/docs/docs/features/argument-parsing/examples/default-flag.txt +++ b/docs/docs/features/argument-parsing/examples/default-flag.txt @@ -19,6 +19,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with flag configured with default value", }, }); diff --git a/docs/docs/features/argument-parsing/examples/default-tuple-argument.txt b/docs/docs/features/argument-parsing/examples/default-tuple-argument.txt index 53588d0..c0391e5 100644 --- a/docs/docs/features/argument-parsing/examples/default-tuple-argument.txt +++ b/docs/docs/features/argument-parsing/examples/default-tuple-argument.txt @@ -17,6 +17,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with positional parameter configured with default value", }, }); diff --git a/docs/docs/features/argument-parsing/examples/enum-flag.txt b/docs/docs/features/argument-parsing/examples/enum-flag.txt index a9fccab..a03f4b7 100644 --- a/docs/docs/features/argument-parsing/examples/enum-flag.txt +++ b/docs/docs/features/argument-parsing/examples/enum-flag.txt @@ -21,6 +21,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "" + brief: "Example for live playground with enum flag" }, }); diff --git a/docs/docs/features/argument-parsing/examples/hidden-flag.txt b/docs/docs/features/argument-parsing/examples/hidden-flag.txt index 91731c4..8e8f9c3 100644 --- a/docs/docs/features/argument-parsing/examples/hidden-flag.txt +++ b/docs/docs/features/argument-parsing/examples/hidden-flag.txt @@ -28,6 +28,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "" + brief: "Example for live playground with hidden flag" }, }); diff --git a/docs/docs/features/argument-parsing/examples/optional-flag.txt b/docs/docs/features/argument-parsing/examples/optional-flag.txt index b06e0c8..947a35f 100644 --- a/docs/docs/features/argument-parsing/examples/optional-flag.txt +++ b/docs/docs/features/argument-parsing/examples/optional-flag.txt @@ -19,7 +19,7 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with optional flag", customUsage: [ "", "--limit 1000", diff --git a/docs/docs/features/argument-parsing/examples/optional-tuple-argument.txt b/docs/docs/features/argument-parsing/examples/optional-tuple-argument.txt index 6b00e1e..fbb08ce 100644 --- a/docs/docs/features/argument-parsing/examples/optional-tuple-argument.txt +++ b/docs/docs/features/argument-parsing/examples/optional-tuple-argument.txt @@ -25,6 +25,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with optional positional parameter", }, }); diff --git a/docs/docs/features/argument-parsing/examples/parsed-flag.txt b/docs/docs/features/argument-parsing/examples/parsed-flag.txt index e52544a..2f224bd 100644 --- a/docs/docs/features/argument-parsing/examples/parsed-flag.txt +++ b/docs/docs/features/argument-parsing/examples/parsed-flag.txt @@ -24,7 +24,7 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with parsed flags", customUsage: [ "--item apple --price 1", "--item orange --price 3.5", diff --git a/docs/docs/features/argument-parsing/examples/tuple-argument.txt b/docs/docs/features/argument-parsing/examples/tuple-argument.txt index d2c72c1..c879762 100644 --- a/docs/docs/features/argument-parsing/examples/tuple-argument.txt +++ b/docs/docs/features/argument-parsing/examples/tuple-argument.txt @@ -20,6 +20,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with positional parameters", }, }); diff --git a/docs/docs/features/argument-parsing/examples/variadic-flag.txt b/docs/docs/features/argument-parsing/examples/variadic-flag.txt index 51f1a64..d9ff4eb 100644 --- a/docs/docs/features/argument-parsing/examples/variadic-flag.txt +++ b/docs/docs/features/argument-parsing/examples/variadic-flag.txt @@ -22,7 +22,7 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with variadic flag", customUsage: [ "--id 10", "--id 10 --id 20 --id 30",