Skip to content

Releases: jonathanharrell/hiq

v4.1.1

11 Oct 21:35
e0f3048
Compare
Choose a tag to compare

4.1.1 (2020-10-11)

Bug Fixes

  • docs: fix server-side rendered docs (6001119)

v4.1.0

11 Oct 21:22
970a8c7
Compare
Choose a tag to compare

4.1.0 (2020-10-11)

Features

  • docs: accessibility improvements (d1572a3)
  • docs: add dark theme toggle (f25a2ab)
  • docs: algolia search api key (94f25b8)
  • docs: update homepage (479e445)

v4.0.2

18 Jul 23:42
744c3df
Compare
Choose a tag to compare

4.0.2 (2020-07-18)

Bug Fixes

  • typography: fix font size clamp minimum (6afaa84)

v4.0.1

18 Jul 23:29
3f20380
Compare
Choose a tag to compare

4.0.1 (2020-07-18)

Bug Fixes

  • links: add more variables to support hover and active state colors for visited links (48a58ac)

v4.0.0

18 Jul 22:49
19613b3
Compare
Choose a tag to compare

4.0.0 (2020-07-18)

Sensible Defaults for Input Validation (BREAKING CHANGE)

Valid and invalid border colors will now apply to all input scenarios, not just when those inputs are required. Because of this, the default valid border color has been set to match the standard input border color.

Font Size Clamping

Font sizes 1-6 can be more finely controlled, while still retaining the overall fluid type scale. You can set a min or max px value on each font size to prevent it from growing or shrinking past a certain point.

:root {
	--hiq-max-font-size-1: 40px;
	--hiq-min-font-size-6: 16px;
}

This will work in any browsers supporting the CSS clamp() function.

Visited Link Customization

You can now customize the color of a visited link using a custom property:

:root {
	--hiq-link-visited-color: blue;
}

Dialog Styling

Dialog elements (only supported in some browsers) now receive some default styling. You can also customize their border radius.

:root {
	--hiq-dialog-border-radius: 0.2rem;
}

v3.1.0

18 Jul 02:30
6c543c9
Compare
Choose a tag to compare

3.1.0 (2020-07-18)

Features

  • color inputs: tweak color input styles, allow customization of color input background color (03d9303)
  • typography: add system-ui alias to font stack (6d938bc)

v3.0.5

18 Jul 02:06
c5e494a
Compare
Choose a tag to compare

3.0.5 (2020-07-18)

Bug Fixes

  • meters: fix styling to accommodate Chrome changes (c5d773e)

v3.0.4

20 Feb 01:01
ec91c1b
Compare
Choose a tag to compare

3.0.4 (2020-02-20)

Bug Fixes

  • commitizen config update (94bc554)

v3.0.3

19 Feb 22:56
4747dcf
Compare
Choose a tag to compare

3.0.3 (2020-02-19)

Bug Fixes

  • security: fix lodash.merge vulnerability (9c0d9a9)

v3.0.2

29 Aug 01:53
Compare
Choose a tag to compare

3.0.2 (2019-08-29)

Bug Fixes

  • move custom media definitions out of root (dbe10c7)
  • security fixes (3750966)