Skip to content
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.

Latest commit

 

History

History
43 lines (37 loc) · 785 Bytes

CHANGELOG.md

File metadata and controls

43 lines (37 loc) · 785 Bytes

0.10.3

  • New assets: AutoNumeric

0.10.2

  • Set active state when loading menu from array

0.10.1

  • Hide parent menu without URL

0.10.0

  • Support Laravel 6

0.9.0

Rename folder lib to plugins

To comply with Vega pentest.

Add support to skip flash message for certains URI

Added new config:

    'flash'          => [
        'except' => [],
    ],

Move flash attributes config to their own namespace:

Old:

    'flash'          => [
            'display_time' => 5000,
            'opacity' => 0.9,
            'position' => 'top center',
    ],

New:

    'flash'          => [
        'attributes' => [
            'display_time' => 5000,
            'opacity' => 0.9,
            'position' => 'top center',
        ],
    ],