Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show a Modal using an object as modal parameters #583

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Commits on Jun 20, 2024

  1. Merge pull request #1 from Blazored/main

    pull updates
    jlchavez authored Jun 20, 2024
    Configuration menu
    Copy the full SHA
    7c4ce87 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2024

  1. Show a Modal using an object

    This allows to show a modal with a set of parameters from an anonymous object.
    jlchavez committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    2de62da View commit details
    Browse the repository at this point in the history
  2. Standardizing CSS Styles

    More friendly styles for the header of the modal dialog, which aligns the content on the vertical axis and any botton align to the right.
    jlchavez committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    9db7de4 View commit details
    Browse the repository at this point in the history
  3. Allow Customize Javascript Path

    This allows the javascript to be located on a CDN or shared location for server caching and/or sharing between multiple apps, or that the path can be customized for the app automatically base on the BaseUri found in NavigationManager
    jlchavez committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    eb5fbd5 View commit details
    Browse the repository at this point in the history
  4. Package References fixes

    Fix to package references for the previous commit.
    jlchavez committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    903f124 View commit details
    Browse the repository at this point in the history
  5. ModalHeader Component

    Instead of fully customizing the title, allow to inject a RenderFragment in the title bar between the title and the close button, for faster customization and maintaining the same look & feel.
    
    <ModalHeader>
        <RefreshButton class="tool" OnClick="RefreshAsync" />
    </ModalHeader>
    jlchavez committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    2ee9f7a View commit details
    Browse the repository at this point in the history