Skip to content

Commit 61bf674

Browse files
authored
Merge pull request #95 from majorimi/release/v1.5.0
Release/v1.5.0
2 parents 537a2ca + af1da42 commit 61bf674

23 files changed

+897
-135
lines changed

.github/docs/Notifications.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ Following code example shows how to use **`ToastContainer` and `Toast`** compone
319319
**First step to add a *single* `ToastContainer` to a common place e.g. MainLayour.razor**
320320
```
321321
...
322-
@Body
322+
@Body
323323
...
324324
325325
@*Toast container initialized once per application at the bottom of the rendered HTML in order to work with all Relative elements!!*@
@@ -403,7 +403,6 @@ Then `Toast` notifications can be configured, prompted, removed and listened for
403403
_toastService.OnToastCloseButtonClicked -= ToastCloseButtonClicked;
404404
}
405405
}
406-
407406
```
408407

409408
### `IHtmlNotificationService` usage

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ Check out our planned components and extensions on the project [Wiki page](https
7272
- **Majorsoft.Blazor.Components.PermaLink**: [PermaLink component and extension](https://github.com/majorimi/blazor-components/blob/master/.github/docs/PermaLink.md) that can be used to create navigation element inside Blazor pages (#permalink).
7373
- **Majorsoft.Blazor.Components.Toggle**: [Toggle components](https://github.com/majorimi/blazor-components/blob/master/.github/docs/Toggle.md) that can be used to render customizable Toggle switch and Toggle button components.
7474
- **Majorsoft.Blazor.Components.Tabs**: [Tabs components](https://github.com/majorimi/blazor-components/blob/master/.github/docs/Tabs.md) that renders customizable Tabs panel with many tabs and custom content.
75-
- **Majorsoft.Blazor.Components.Collapse**: [Collapse components](https://github.com/majorimi/blazor-components/blob/master/.github/docs/Collapse.md) that renders customizable Collapsable/Expandable panel and Accordion with many but only one active panel also custom content and header.
75+
- **Majorsoft.Blazor.Components.Collapse**: [Collapse components](https://github.com/majorimi/blazor-components/blob/master/.github/docs/Collapse.md) that renders customizable Collapsible/Expandable panel and Accordion with many but only one active panel also custom content and header.
7676
- **Majorsoft.Blazor.Components.Maps**: [Google/Bing Maps components](https://github.com/majorimi/blazor-components/blob/master/.github/docs/Maps.md) that renders **Google/Bing maps** wrapped into Blazor components allowing to control and mange maps with .Net code.
7777
- **Majorsoft.Blazor.Components.GdprConsent**: [GDPR Consent components](https://github.com/majorimi/blazor-components/blob/master/.github/docs/GdprConsent.md) injectable service and components that renders a customizable GDPR consent Banner or Popup witch Accept/Reject for cookie settings chosen value is persisted to Browser storage.
78-
- **Majorsoft.Blazor.Components.Notifications **: [Notification components](https://github.com/majorimi/blazor-components/blob/master/.github/docs/Notifications.md) injectable INotificationService service to handle HTML5 Notifications and ServiceWorker Notifications and components that renders customizable Alert and Toast notification message elements.
78+
- **Majorsoft.Blazor.Components.Notifications**: [Notification components](https://github.com/majorimi/blazor-components/blob/master/.github/docs/Notifications.md) injectable INotificationService service to handle HTML5 Notifications and ServiceWorker Notifications and components that renders customizable Alert and Toast notification message elements.
7979

8080
## Other info
8181
- [Contributing](CONTRIBUTING.md)

demo/Majorsoft.Blazor.Components.DemoApp/Components/Collapse.razor

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@
77
<br /><strong>Majorsoft.Blazor.Components.Collapse</strong> package is available on <a href="https://www.nuget.org/packages/Majorsoft.Blazor.Components.Collapse" target="_blank">Nuget</a>
88
</p>
99

10+
<h3>Collapse features:</h3>
11+
<ul>
12+
<li><NavLink href="collapse#collapsePanel">Collapse Panel</NavLink></li>
13+
<li><NavLink href="collapse#accordion">Accordion</NavLink></li>
14+
</ul>
15+
1016
<div class="container-fluid p-3 mb-3 border rounded">
1117
<PermaLinkElement PermaLinkName="collapsePanel" IconActions="PermaLinkIconActions.Copy|PermaLinkIconActions.Navigate" IconMarginTop="8" IconSize="18">
1218
<Content><h3>CollapsePanel</h3></Content>
1319
</PermaLinkElement>
14-
<p>Renders <strong><code>CollapsePanel</code> component </strong> which is an <strong> Expandable and Collapsible panel</strong> with custumizable header and content.</p>
20+
<p>Renders <strong><code>CollapsePanel</code> component </strong> which is an <strong> Expandable and Collapsible panel</strong> with customizable header and content.</p>
1521

1622
<div class="row pb-2">
1723
<div class="col-12 col-lg-8 col-xl-5">
@@ -190,7 +196,7 @@
190196
<Content><h3>Accordion</h3></Content>
191197
</PermaLinkElement>
192198
<p>
193-
Renders <strong> a set of <code>CollapsePanel</code> components </strong> which is an <strong> Expandable and Collapsible panel</strong> with custumizable header and content.
199+
Renders <strong> a set of <code>CollapsePanel</code> components </strong> which is an <strong> Expandable and Collapsible panel</strong> with customizable header and content.
194200
But <code>Accordion</code> allows only one Expanded (active) panel.
195201
</p>
196202

demo/Majorsoft.Blazor.Components.DemoApp/Components/Index.razor

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</p>
1414

1515
<p>
16-
<h2>Extensions</h2>
16+
<h2>Extensions:</h2>
1717
<ul>
1818
<li><NavLink href="logger">Browser Console logger</NavLink></li>
1919
<li>
@@ -28,13 +28,13 @@
2828
</p>
2929

3030
<p>
31-
<h2>Components</h2>
31+
<h2>Components:</h2>
3232
<ul>
3333
<li><NavLink href="debounceinput">Debounce Inputs</NavLink></li>
3434
<li><NavLink href="typeahead">Typeahead Inputs</NavLink></li>
3535
<li><NavLink href="maxLengthInput">Max allowed length with Counter Inputs</NavLink></li>
3636
<li><NavLink href="timer">Timer Component</NavLink></li>
37-
<li><NavLink href="loading">Loading Components</NavLink></li>
37+
<li><NavLink href="loading">Loading and Overlay Components</NavLink></li>
3838
<li>
3939
<NavLink href="jsinterop">Js Interop controls and extensions</NavLink>
4040
<ul>
@@ -61,7 +61,7 @@
6161
</li>
6262
<li><NavLink href="modal">Modal Dialog</NavLink></li>
6363
<li>
64-
<NavLink href="permalink">Perma link navigation</NavLink>
64+
<NavLink href="permalink">Permalink navigation</NavLink>
6565
<ul>
6666
<li><NavLink href="permalink#does-not_exists">Non existing permalink</NavLink></li>
6767
<li><NavLink href="permalink#standard-a-tag">Standard &lt;a&gt; tag</NavLink></li>
@@ -92,7 +92,21 @@
9292
</ul>
9393
</li>
9494
<li><NavLink href="gdpr">GDPR Consents</NavLink></li>
95-
95+
<li>
96+
<NavLink href="notifications">Notifications</NavLink>
97+
<ul>
98+
<li><NavLink href="notifications#alerts">Alert</NavLink></li>
99+
<li><NavLink href="notifications#toasts">Toast</NavLink></li>
100+
<li><NavLink href="notifications#htmlnotification">Html5 Notification</NavLink></li>
101+
</ul>
102+
</li>
103+
<li>
104+
<NavLink href="tooltips">Tooltips</NavLink>
105+
<ul>
106+
<li><NavLink href="tooltips#tooltip">Tooltip</NavLink></li>
107+
<li><NavLink href="tooltips#popover">Popover</NavLink></li>
108+
</ul>
109+
</li>
96110
@*<li><NavLink href="draganddrop">Drag and Drop</NavLink></li>
97111
<li><NavLink href="colorpicker">Color Picker</NavLink></li>*@
98112
</ul>

demo/Majorsoft.Blazor.Components.DemoApp/Components/JsDemo/HeadJs.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
<div class="row pb-2">
1919
<div class="col-12">
20-
<label>Current HTML page FavIcon (e.g: https://www.google.com/favicon.ico):</label>
21-
<input class="form-control w-100 mb-2" @bind-value="_favIcon " type="text" placeholder="HTML page Tilte" />
20+
<label>Current HTML page FavIcon (e.g: https://c.s-microsoft.com/favicon.ico):</label>
21+
<input class="form-control w-100 mb-2" @bind-value="_favIcon " type="text" placeholder="HTML page Favicon" />
2222
<button class="btn btn-primary" @onclick="SetPageFavIcon">Set HTML page FavIcon</button>
2323
</div>
2424
</div>

0 commit comments

Comments
 (0)