@akiojin/gwt 9.0.4 → 9.2.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.
Files changed (67) hide show
  1. package/README.ja.md +106 -146
  2. package/README.md +103 -143
  3. package/bin/gwt.cjs +1 -1
  4. package/package.json +5 -5
  5. package/rustfmt.toml +0 -2
  6. package/scripts/check-release-flow.sh +2 -8
  7. package/scripts/postinstall.js +17 -7
  8. package/scripts/run-local-backend-tests-on-commit.sh +6 -12
  9. package/scripts/test-all.sh +1 -5
  10. package/scripts/check-e2e-coverage-threshold.mjs +0 -238
  11. package/scripts/run-local-e2e-coverage-on-commit.sh +0 -69
  12. package/scripts/run-local-e2e-on-commit.sh +0 -60
  13. package/scripts/verify-ci-node-toolchain.sh +0 -76
  14. package/scripts/voice-eval.sh +0 -48
  15. package/vendor/ratatui-core/src/backend/test.rs +0 -1077
  16. package/vendor/ratatui-core/src/backend.rs +0 -405
  17. package/vendor/ratatui-core/src/buffer/assert.rs +0 -71
  18. package/vendor/ratatui-core/src/buffer/buffer.rs +0 -1388
  19. package/vendor/ratatui-core/src/buffer/cell.rs +0 -377
  20. package/vendor/ratatui-core/src/buffer.rs +0 -9
  21. package/vendor/ratatui-core/src/layout/alignment.rs +0 -89
  22. package/vendor/ratatui-core/src/layout/constraint.rs +0 -526
  23. package/vendor/ratatui-core/src/layout/direction.rs +0 -63
  24. package/vendor/ratatui-core/src/layout/flex.rs +0 -212
  25. package/vendor/ratatui-core/src/layout/layout.rs +0 -2838
  26. package/vendor/ratatui-core/src/layout/margin.rs +0 -79
  27. package/vendor/ratatui-core/src/layout/offset.rs +0 -66
  28. package/vendor/ratatui-core/src/layout/position.rs +0 -253
  29. package/vendor/ratatui-core/src/layout/rect/iter.rs +0 -356
  30. package/vendor/ratatui-core/src/layout/rect/ops.rs +0 -136
  31. package/vendor/ratatui-core/src/layout/rect.rs +0 -1114
  32. package/vendor/ratatui-core/src/layout/size.rs +0 -147
  33. package/vendor/ratatui-core/src/layout.rs +0 -333
  34. package/vendor/ratatui-core/src/lib.rs +0 -82
  35. package/vendor/ratatui-core/src/style/anstyle.rs +0 -348
  36. package/vendor/ratatui-core/src/style/color.rs +0 -788
  37. package/vendor/ratatui-core/src/style/palette/material.rs +0 -608
  38. package/vendor/ratatui-core/src/style/palette/tailwind.rs +0 -653
  39. package/vendor/ratatui-core/src/style/palette.rs +0 -6
  40. package/vendor/ratatui-core/src/style/palette_conversion.rs +0 -82
  41. package/vendor/ratatui-core/src/style/stylize.rs +0 -668
  42. package/vendor/ratatui-core/src/style.rs +0 -1069
  43. package/vendor/ratatui-core/src/symbols/bar.rs +0 -51
  44. package/vendor/ratatui-core/src/symbols/block.rs +0 -51
  45. package/vendor/ratatui-core/src/symbols/border.rs +0 -709
  46. package/vendor/ratatui-core/src/symbols/braille.rs +0 -21
  47. package/vendor/ratatui-core/src/symbols/half_block.rs +0 -3
  48. package/vendor/ratatui-core/src/symbols/line.rs +0 -259
  49. package/vendor/ratatui-core/src/symbols/marker.rs +0 -82
  50. package/vendor/ratatui-core/src/symbols/merge.rs +0 -748
  51. package/vendor/ratatui-core/src/symbols/pixel.rs +0 -30
  52. package/vendor/ratatui-core/src/symbols/scrollbar.rs +0 -46
  53. package/vendor/ratatui-core/src/symbols/shade.rs +0 -5
  54. package/vendor/ratatui-core/src/symbols.rs +0 -15
  55. package/vendor/ratatui-core/src/terminal/frame.rs +0 -192
  56. package/vendor/ratatui-core/src/terminal/terminal.rs +0 -926
  57. package/vendor/ratatui-core/src/terminal/viewport.rs +0 -58
  58. package/vendor/ratatui-core/src/terminal.rs +0 -40
  59. package/vendor/ratatui-core/src/text/grapheme.rs +0 -84
  60. package/vendor/ratatui-core/src/text/line.rs +0 -1678
  61. package/vendor/ratatui-core/src/text/masked.rs +0 -149
  62. package/vendor/ratatui-core/src/text/span.rs +0 -904
  63. package/vendor/ratatui-core/src/text/text.rs +0 -1434
  64. package/vendor/ratatui-core/src/text.rs +0 -64
  65. package/vendor/ratatui-core/src/widgets/stateful_widget.rs +0 -193
  66. package/vendor/ratatui-core/src/widgets/widget.rs +0 -174
  67. package/vendor/ratatui-core/src/widgets.rs +0 -9
@@ -1,51 +0,0 @@
1
- pub const FULL: &str = "█";
2
- pub const SEVEN_EIGHTHS: &str = "▇";
3
- pub const THREE_QUARTERS: &str = "▆";
4
- pub const FIVE_EIGHTHS: &str = "▅";
5
- pub const HALF: &str = "▄";
6
- pub const THREE_EIGHTHS: &str = "▃";
7
- pub const ONE_QUARTER: &str = "▂";
8
- pub const ONE_EIGHTH: &str = "▁";
9
-
10
- #[derive(Debug, Clone, Eq, PartialEq, Hash)]
11
- pub struct Set<'a> {
12
- pub full: &'a str,
13
- pub seven_eighths: &'a str,
14
- pub three_quarters: &'a str,
15
- pub five_eighths: &'a str,
16
- pub half: &'a str,
17
- pub three_eighths: &'a str,
18
- pub one_quarter: &'a str,
19
- pub one_eighth: &'a str,
20
- pub empty: &'a str,
21
- }
22
-
23
- impl Default for Set<'_> {
24
- fn default() -> Self {
25
- NINE_LEVELS
26
- }
27
- }
28
-
29
- pub const THREE_LEVELS: Set = Set {
30
- full: FULL,
31
- seven_eighths: FULL,
32
- three_quarters: HALF,
33
- five_eighths: HALF,
34
- half: HALF,
35
- three_eighths: HALF,
36
- one_quarter: HALF,
37
- one_eighth: " ",
38
- empty: " ",
39
- };
40
-
41
- pub const NINE_LEVELS: Set = Set {
42
- full: FULL,
43
- seven_eighths: SEVEN_EIGHTHS,
44
- three_quarters: THREE_QUARTERS,
45
- five_eighths: FIVE_EIGHTHS,
46
- half: HALF,
47
- three_eighths: THREE_EIGHTHS,
48
- one_quarter: ONE_QUARTER,
49
- one_eighth: ONE_EIGHTH,
50
- empty: " ",
51
- };
@@ -1,51 +0,0 @@
1
- pub const FULL: &str = "█";
2
- pub const SEVEN_EIGHTHS: &str = "▉";
3
- pub const THREE_QUARTERS: &str = "▊";
4
- pub const FIVE_EIGHTHS: &str = "▋";
5
- pub const HALF: &str = "▌";
6
- pub const THREE_EIGHTHS: &str = "▍";
7
- pub const ONE_QUARTER: &str = "▎";
8
- pub const ONE_EIGHTH: &str = "▏";
9
-
10
- #[derive(Debug, Clone, Eq, PartialEq, Hash)]
11
- pub struct Set<'a> {
12
- pub full: &'a str,
13
- pub seven_eighths: &'a str,
14
- pub three_quarters: &'a str,
15
- pub five_eighths: &'a str,
16
- pub half: &'a str,
17
- pub three_eighths: &'a str,
18
- pub one_quarter: &'a str,
19
- pub one_eighth: &'a str,
20
- pub empty: &'a str,
21
- }
22
-
23
- impl Default for Set<'_> {
24
- fn default() -> Self {
25
- NINE_LEVELS
26
- }
27
- }
28
-
29
- pub const THREE_LEVELS: Set = Set {
30
- full: FULL,
31
- seven_eighths: FULL,
32
- three_quarters: HALF,
33
- five_eighths: HALF,
34
- half: HALF,
35
- three_eighths: HALF,
36
- one_quarter: HALF,
37
- one_eighth: " ",
38
- empty: " ",
39
- };
40
-
41
- pub const NINE_LEVELS: Set = Set {
42
- full: FULL,
43
- seven_eighths: SEVEN_EIGHTHS,
44
- three_quarters: THREE_QUARTERS,
45
- five_eighths: FIVE_EIGHTHS,
46
- half: HALF,
47
- three_eighths: THREE_EIGHTHS,
48
- one_quarter: ONE_QUARTER,
49
- one_eighth: ONE_EIGHTH,
50
- empty: " ",
51
- };