Skip to content

Releases: trendmicro-frontend/tonic-ui

@tonic-ui/[email protected]

14 Feb 03:36
c127dd0
Compare
Choose a tag to compare

2.2.0

Minor Changes

  • feat(styled-system): introduce _has, _is, and _not style props to support functional pseudo-class selectors by @cheton in #972

@tonic-ui/[email protected]

14 Feb 03:37
c127dd0
Compare
Choose a tag to compare

2.6.1

Patch Changes

  • feat(styled-system): introduce _has, _is, and _not style props to support functional pseudo-class selectors by @cheton in #972
  • Updated dependencies [008d823]

🚀 Examples


⚠️ Deprecation Notice

  • The properties _focusHover and _focusActive are deprecated and will be removed in the next major release. Instead, use _focus with nested selectors (PR #972):
    _focus={{
      '&:hover': {
        // Styles for `&:focus:hover`
      },
      '&:active': {
        // Styles for `&:focus:active`
      },
    }}

@tonic-ui/[email protected]

14 Feb 01:37
008d823
Compare
Choose a tag to compare

2.1.0

Minor Changes

  • feat: enhance support for the nested theme token structure by @cheton in #958

@tonic-ui/[email protected]

14 Feb 01:35
008d823
Compare
Choose a tag to compare

2.0.3

Patch Changes

@tonic-ui/[email protected]

14 Feb 01:33
5744e11
Compare
Choose a tag to compare

2.6.0

Minor Changes

  • feat: eliminate the lodash.get dependency by @cheton in #964
  • feat(react/date-pickers)!: deprecate Calendar and replace it with DateCalendar by @cheton in #961
  • feat: CircularProgress component by @cheton in #966

@tonic-ui/[email protected]

05 Dec 12:29
d797c22
Compare
Choose a tag to compare

2.5.1

Patch Changes

  • feat(react): add exports for DefaultPropsProvider and useDefaultProps by @cheton in #950
  • feat(react/Popper): use the useDefaultProps hook for managing default props by @cheton in #950
  • fix(react/theme): fixed a logical error in the CSSVariables component by correcting the condition to check for empty cssVariables by @cheton in #953

@tonic-ui/[email protected]

05 Dec 12:29
ba8cb0f
Compare
Choose a tag to compare

2.5.0

Minor Changes

  • feat(react): add createTheme for theme customization by @cheton in #947

Patch Changes

@tonic-ui/[email protected]

23 Nov 13:14
848cc51
Compare
Choose a tag to compare

@tonic-ui/[email protected]

23 Nov 13:12
848cc51
Compare
Choose a tag to compare

2.4.0

Minor Changes

  • feat(react/toast): enhance inline toast transition management by @cheton in #941

Patch Changes

@tonic-ui/[email protected]

17 Oct 03:48
2dff356
Compare
Choose a tag to compare

2.3.0

Minor Changes

  • feat: improve disabled prop handling in Button and ButtonGroup by @cheton in #930
  • feat(react/checkbox,react/radio): use useEffectOnceWhen hook to display warning message in non-production environments by @cheton in #937
  • fix: resolve bug with isNameConflictRef.current in Checkbox and Radio components by @cheton in #935
  • feat(react/scrollbar): add scrollViewProps to enable passing custom props to the ScrollView component by @cheton in #939