bloznelis / typioca

Cozy typing speed tester in terminal
MIT License
782 stars 22 forks source link

Bump github.com/charmbracelet/lipgloss from 0.5.0 to 0.6.0 #76

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps github.com/charmbracelet/lipgloss from 0.5.0 to 0.6.0.

Release notes

Sourced from github.com/charmbracelet/lipgloss's releases.

v0.6.0

Vertical Alignment & Per-Profile Color Settings

In this latest release of Lip Gloss, styles now support vertical alignment! Additionally, we introduced two new color types, CompleteColor and CompleteAdaptiveColor, which lets you bypass automatic color interpolation choose colors for each color profile (ANSI, ANSI256, and TrueColor).

Align content in a Style vertically at the top, center, or bottom. To get started make a style with some Height and an AlignVertical property.

lipgloss.NewStyle().Height(5).AlignVertical(lipgloss.Center).Render("Hello, Center!")

or use the Align shorthand which sets both horizontal and vertical alignments:

lipgloss.NewStyle().Height(5).Align(lipgloss.Left, lipgloss.Bottom).Render("Hello, Center!")

New API:

Note, there are no breaking changes since if the Align shorthand will still accept 1 argument (variadic arguments) and will set only the horizontal alignment to maintain original functionality

  • Align(p ...Position)
  • AlignVertical(p Position)
  • AlignHorizontal(p Position)
  • GetAlignVertical() Position
  • GetAlignHorizontal() Position

Complete Colors

This revision introduces two new color types CompleteColor and CompleteAdaptiveColor. Not for the faint of heart, these types are for bypassing automatic color interpolation so you can specify exact colors for all color profiles in cases where the interpolation can benefit from manual adjustment:

cc := CompleteColor{
    TrueColor: "#6B51FF",
    ANSI256: "63",
    ANSI: "5",
}

cac := CompleteAdaptiveColor{ Light: CompleteColor{ TrueColor: "#FF51CE", ANSI256: "213", ANSI: "5", }, Dark: CompleteColor{ TrueColor: "#6B51FF", ANSI256: "63", ANSI: "5", </tr></table>

... (truncated)

Commits
  • 0ce5550 feat: Align takes multiple arguments for setting horizontal + vertical alignment
  • 9852bb3 feat: VerticalAlign
  • 0ee74a5 feat: non-interpolated colors, aka CompleteColor (#100)
  • 2cb1d4a docs(lint): update example code in GoDocs per new style standard
  • f651363 Fix height doc (width -> height)
  • 81744be chore(lint): remove magic numbers
  • 1fb1fb9 chore: drop go-colorful dependency (but it's a great lib)
  • e8297c4 Use ReplaceAll instead of Replace with n=-1
  • a86f21a ci: add benchmark test for Style.Render
  • 6b5dc18 Clarify Inherit comment
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)