Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,12 @@ ModelManifest.xml
# Rider
.idea

#kiro
.kiro

#cursor
.cursor

profile.arm.json

# bit
Expand Down
17 changes: 17 additions & 0 deletions src/BlazorUI/Bit.BlazorUI.Extras/Components/Map/BitMap.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@namespace Bit.BlazorUI
@inherits BitComponentBase
@typeparam TMapProvider where TMapProvider : class, IBitMapProvider, new()

<div @ref="RootElement"
@attributes="HtmlAttributes"
id="@_Id"
style="@StyleBuilder.Value"
class="@ClassBuilder.Value"
dir="@Dir?.ToString().ToLower()">
<div @ref="_mapElement"
class="bit-map-canvas"
tabindex="0"
role="application"
Comment thread
msynk marked this conversation as resolved.
Outdated
aria-label="@AriaLabel"></div>
Comment thread
msynk marked this conversation as resolved.
Outdated
@ChildContent
</div>
Loading
Loading