Skip to content

Latest commit

 

History

History
81 lines (52 loc) · 2.41 KB

CHANGELOG.md

File metadata and controls

81 lines (52 loc) · 2.41 KB

Changelog

All notable changes to Matrix Choice will be documented in this file

v3.2.2 - 2024-09-04

What's Changed

  • Bump dependabot/fetch-metadata from 1.6.0 to 2.2.0 by @dependabot in #12
  • allow to disable options by @atmonshi in #14

Allow to disable options:

usage:

MatrixAlias::make('options')
    ->disableOptionWhen(fn (string $value): bool => $value === 'm' || $value === 'p' || $value === 'users')
    ->rowSelectRequired(false)

    ->label('Resources Operations')
    ->asRadio()
    ->columnData([
        'c'=>'Create',
        'r'=>'Read',
        'u'=>'Update',
        'd'=>'Delete',
        'm'=>'Manage',
        'p'=>'Approve',
    ])
    ->rowData([
        'users'=>'Users',
        'companies'=>'Companies',
        'clients'=>'Clients',
    ]),

output: Screenshot 2024-09-04 at 3 25 12 PM

Full Changelog: https://github.com/lara-zeus/matrix-choice/compare/v3.2.1...v3.2.2

v3.2.1 - 2024-05-04

What's Changed

  • Bump ramsey/composer-install from 2 to 3 by @dependabot in #7
  • Bump aglipanci/laravel-pint-action from 2.3.1 to 2.4 by @dependabot in #9
  • responsive ui by @atmonshi in #11

Full Changelog: https://github.com/lara-zeus/matrix-choice/compare/v3.2.0...v3.2.1

v3.2.0 - 2024-01-08

What's Changed

  • Bump aglipanci/laravel-pint-action from 2.3.0 to 2.3.1 by @dependabot in #4
  • update filament v3.1 by @atmonshi in #5

New Contributors

  • @dependabot made their first contribution in #4

Full Changelog: https://github.com/lara-zeus/matrix-choice/compare/v3.1.0...v3.2.0

v3.1.0 - 2023-12-06

What's Changed

  • New feature Optional selects by @ArtDepartmentMJ in #3

New Contributors

  • @ArtDepartmentMJ made their first contribution in #3

Full Changelog: https://github.com/lara-zeus/matrix-choice/compare/v3.0.1...v3.1.0

3.0.0 - 2023-11-04

  • initial release