Skip to content

Commit

Permalink
Merge pull request #35 from envor/main
Browse files Browse the repository at this point in the history
Add select component to base install
  • Loading branch information
inmanturbo authored Jul 10, 2024
2 parents 7ba68dc + bd61891 commit 95392ae
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2.1.0
uses: dependabot/fetch-metadata@v2.2.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to `one-app` will be documented in this file.

## v1.0.26 - 2024-06-26

### What's Changed

* improve invitation-only-super-admin by @inmanturbo in https://github.com/envor/one-app/pull/33

**Full Changelog**: https://github.com/envor/one-app/compare/v1.0.25...v1.0.26

## v1.0.25 - 2024-06-25

### What's Changed
Expand Down
6 changes: 6 additions & 0 deletions stubs/one-app/resources/views/components/select.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@props(['disabled' => false])

<select {{ $disabled ? 'disabled' : '' }}
{!! $attributes->merge(['class' => 'border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 rounded-md shadow-sm dark:focus:ring-indigo-600 dark:focus:border-indigo-600 dark:border-gray-700 dark:bg-gray-900 dark:text-gray-300']) !!}>
{{ $slot }}
</select>

0 comments on commit 95392ae

Please sign in to comment.