-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into regex-validator-patch
- Loading branch information
Showing
545 changed files
with
9,450 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,105 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 PureBlazor | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
# Functional Source License, Version 1.1, Apache 2.0 Future License | ||
|
||
## Abbreviation | ||
|
||
FSL-1.1-Apache-2.0 | ||
|
||
## Notice | ||
|
||
Copyright 2024 CodeFrog, Inc. dba PureBlazor | ||
|
||
## Terms and Conditions | ||
|
||
### Licensor ("We") | ||
|
||
The party offering the Software under these Terms and Conditions. | ||
|
||
### The Software | ||
|
||
The "Software" is each version of the software that we make available under | ||
these Terms and Conditions, as indicated by our inclusion of these Terms and | ||
Conditions with the Software. | ||
|
||
### License Grant | ||
|
||
Subject to your compliance with this License Grant and the Patents, | ||
Redistribution and Trademark clauses below, we hereby grant you the right to | ||
use, copy, modify, create derivative works, publicly perform, publicly display | ||
and redistribute the Software for any Permitted Purpose identified below. | ||
|
||
### Permitted Purpose | ||
|
||
A Permitted Purpose is any purpose other than a Competing Use. A Competing Use | ||
means making the Software available to others in a commercial product or | ||
service that: | ||
|
||
1. substitutes for the Software; | ||
|
||
2. substitutes for any other product or service we offer using the Software | ||
that exists as of the date we make the Software available; or | ||
|
||
3. offers the same or substantially similar functionality as the Software. | ||
|
||
Permitted Purposes specifically include using the Software: | ||
|
||
1. for your internal use and access; | ||
|
||
2. for non-commercial education; | ||
|
||
3. for non-commercial research; and | ||
|
||
4. in connection with professional services that you provide to a licensee | ||
using the Software in accordance with these Terms and Conditions. | ||
|
||
### Patents | ||
|
||
To the extent your use for a Permitted Purpose would necessarily infringe our | ||
patents, the license grant above includes a license under our patents. If you | ||
make a claim against any party that the Software infringes or contributes to | ||
the infringement of any patent, then your patent license to the Software ends | ||
immediately. | ||
|
||
### Redistribution | ||
|
||
The Terms and Conditions apply to all copies, modifications and derivatives of | ||
the Software. | ||
|
||
If you redistribute any copies, modifications or derivatives of the Software, | ||
you must include a copy of or a link to these Terms and Conditions and not | ||
remove any copyright notices provided in or with the Software. | ||
|
||
### Disclaimer | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR | ||
PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT. | ||
|
||
IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE | ||
SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, | ||
EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE. | ||
|
||
### Trademarks | ||
|
||
Except for displaying the License Details and identifying us as the origin of | ||
the Software, you have no right under these Terms and Conditions to use our | ||
trademarks, trade names, service marks or product names. | ||
|
||
## Grant of Future License | ||
|
||
We hereby irrevocably grant you an additional license to use the Software under | ||
the Apache License, Version 2.0 that is effective on the second anniversary of | ||
the date we make the Software available. On or after that date, you may use the | ||
Software under the Apache License, Version 2.0, in which case the following | ||
will apply: | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use | ||
this file except in compliance with the License. | ||
|
||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software distributed | ||
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations under the License. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
dotnet nuget push **\*.nupkg --source $HOME/code/nuget |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,5 +55,7 @@ public enum PureIcons | |
IconPlay, | ||
IconClock, | ||
PencilSquare, | ||
XMark | ||
XMark, | ||
IconMinus, | ||
IconCamera | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,7 @@ | ||
@inherits PureComponent | ||
<div class="flex flex-col md:flex-row justify-between items-center gap-4 sm:gap-0"> | ||
<h1 id="@Id" class="text-2xl sm:text-3xl font-extrabold leading-6 subpixel-antialiased text-gray-800 tracking-wide @Styles">@ChildContent</h1> | ||
@if (Suffix is not null) | ||
{ | ||
@Suffix | ||
} | ||
</div> | ||
@if (!string.IsNullOrWhiteSpace(Subtitle)) | ||
{ | ||
<p class="mt-2 text-sm text-gray-800">@Subtitle</p> | ||
<hr class="my-4 border-gray-200"/> | ||
} | ||
else | ||
{ | ||
<hr class="mt-2 mb-4 border-gray-200"/> | ||
} | ||
<h1 id="@Id" class="text-2xl sm:text-3xl font-extrabold leading-6 subpixel-antialiased text-gray-800 tracking-wide @Styles">@ChildContent</h1> | ||
|
||
@code { | ||
|
||
@code { | ||
[Parameter] public string Id { get; set; } = string.Empty; | ||
|
||
[Parameter] public string? Subtitle { get; set; } | ||
[Parameter] public RenderFragment? Suffix { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
@inherits PureComponent | ||
<div class="flex flex-col md:flex-row justify-between items-center gap-4 sm:gap-0"> | ||
<Header1 Id="@Id">@ChildContent</Header1> | ||
@if (Suffix is not null) | ||
{ | ||
@Suffix | ||
} | ||
</div> | ||
@if (!string.IsNullOrWhiteSpace(Subtitle)) | ||
{ | ||
<p class="mt-2 text-sm text-gray-800">@Subtitle</p> | ||
<hr class="my-4 border-gray-200"/> | ||
} | ||
else | ||
{ | ||
<hr class="mt-2 mb-4 border-gray-200"/> | ||
} | ||
|
||
@code { | ||
|
||
[Parameter] public string Id { get; set; } = string.Empty; | ||
|
||
[Parameter] public string? Subtitle { get; set; } | ||
[Parameter] public RenderFragment? Suffix { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.