wireui

TallStack UI components

MIT License

Downloads
599.1K
Stars
1.4K
Committers
59
wireui - v1.12.3

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.12.2...v1.12.3

wireui - v1.12.2

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.12.1...v1.12.2

wireui - v1.12.1

Published by PH7-Jack over 2 years ago

wireui - v1.12.0

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.11.3...v1.12.0

wireui - v1.11.3

Published by PH7-Jack over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/wireui/wireui/compare/v1.11.2...v1.11.3

wireui - v1.11.2

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.11.1...v1.11.2

wireui - v1.11.1

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.11.0...v1.11.1

wireui - v1.11.0

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.10.0...v1.11.0

wireui - v1.10.0

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.9.0...v1.10.0

wireui - v1.9.0

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.8.1...v1.9.0

wireui - v1.8.1

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.8.0...v1.8.1

wireui - v1.8.0

Published by PH7-Jack over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/wireui/wireui/compare/v1.7.0...v1.8.0

wireui - v1.7.0

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.6.1...v1.7.0

wireui - v1.6.1

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.6.0...v1.6.1

wireui - v1.6.0

Published by PH7-Jack over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/wireui/wireui/compare/v1.5.0...v1.6.0

wireui - v1.5.0

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.4.0...v1.5.0

wireui - v1.4.0

Published by PH7-Jack over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/wireui/wireui/compare/v1.3.2...v1.4.0

wireui - v1.3.2

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.3.1...v1.3.2

wireui - v1.3.1

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.3.0...v1.3.1

wireui - v1.3.0

Published by PH7-Jack over 2 years ago

What's Changed

Full Changelog: https://github.com/wireui/wireui/compare/v1.2.2...v1.3.0

New Features

  1. Short Notification Syntax
    $this->notification($options) use this and will fire a notification.
  2. Short Dialog Syntax
    $this->dialog($options) use this and will fire a dialog.
  3. Added a soft-scrollbar CSS utility (it already exists, but is now documented)
  4. Added a hide-scrollbar CSS utility (it already exists, but is now documented)

Breaking Changes ⚠️

The notification notify method is now deprecated, use the send instead

before  $this->notification()->notify(...)  ❌ 
now     $this->notification()->send(...)    ✅ 

Class Renamed

If did you publish the resources, make this replacement

WireUiComponent::resolve => WireUi::component

before  :component="WireUiComponent::resolve('icon')"  ❌ 
now     :component="WireUi::component('icon')"         ✅