Skip to content

Commit 2eb3db0

Browse files
authored
feat: replace foundation with platform #2018 (#2109)
1 parent db3a13d commit 2eb3db0

File tree

15 files changed

+33
-33
lines changed

15 files changed

+33
-33
lines changed

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe
3434

3535
## Enforcement
3636

37-
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
37+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
3838

3939
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
4040

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 Bit Foundation
3+
Copyright (c) 2022 Bit Platform
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/Bit.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<PropertyGroup>
44

55
<!-- Info -->
6-
<Authors>Bit Foundation</Authors>
7-
<Company>Bit Foundation</Company>
6+
<Authors>Bit Platform</Authors>
7+
<Company>Bit Platform</Company>
88
<Product>Bit Platform</Product>
99
<Title>$(MSBuildProjectName)</Title>
1010
<Description>$(MSBuildProjectName)</Description>
11-
<Copyright>Copyright © Bit Foundation 2022</Copyright>
11+
<Copyright>Copyright © Bit Platform 2022</Copyright>
1212

1313
<!-- Repo -->
1414
<RepositoryUrl>https://github.com/bitfoundation/bitplatform</RepositoryUrl>

src/Client/Web/Playground/Bit.Client.Web.BlazorUI.Playground/Web/Pages/Components/Buttons/BitActionButtonDemo.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@
5757
<div class="example-desc">BitActionButton can act as a link by setting Href and Target attribute, you define how to open your link.</div>
5858
<div>
5959
<BitActionButton IconName="BitIconName.Website" Target="_blank" Href="https://github.com/bitfoundation/bitplatform">
60-
Open Bit Foundation In New Tab
60+
Open Bit Platform In New Tab
6161
</BitActionButton>
6262
<BitActionButton IconName="BitIconName.Website" Href="https://github.com/bitfoundation/bitplatform" ButtonStyle="BitButtonStyle.Standard">
63-
Go To Bit Foundation
63+
Go To Bit Platform
6464
</BitActionButton>
6565
<BitActionButton IconName="BitIconName.Website" Target="_self" Href="https://github.com/bitfoundation/bitplatform" IsEnabled="false">
66-
<span>Bit Foundation From Span</span>
66+
<span>Bit Platform From Span</span>
6767
</BitActionButton>
6868
</div>
6969
</ExamplePreview>

src/Client/Web/Playground/Bit.Client.Web.BlazorUI.Playground/Web/Pages/Components/Buttons/BitActionButtonDemo.razor.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,13 +171,13 @@ Action Button with Aria Hidden
171171
</BitActionButton>";
172172

173173
private readonly string example5HTMLCode = @"<BitActionButton IconName=""BitIconName.Website"" Target=""_blank"" Href=""https://github.com/bitfoundation/bitplatform"">
174-
Open Bit Foundation In New Tab
174+
Open Bit Platform In New Tab
175175
</BitActionButton>
176176
<BitActionButton IconName=""BitIconName.Website"" Href=""https://github.com/bitfoundation/bitplatform"" ButtonStyle=""BitButtonStyle.Standard"">
177-
Go To Bit Foundation
177+
Go To Bit Platform
178178
</BitActionButton>
179179
<BitActionButton IconName=""BitIconName.Website"" Target=""_self"" Href=""https://github.com/bitfoundation/bitplatform"" IsEnabled=""false"">
180-
<span>Bit Foundation From Span</span>
180+
<span>Bit Platform From Span</span>
181181
</BitActionButton>";
182182
}
183183
}

src/Client/Web/Playground/Bit.Client.Web.BlazorUI.Playground/Web/Pages/Components/Buttons/BitButtonDemo.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@
6565
<div class="example-desc">BitButton can act as a link by setting Href and Target attributes.</div>
6666
<div class="sample-lnk-btn">
6767
<BitButton Style="margin-right: 10px;" Title="Primary" Target="_blank" Href="https://github.com/bitfoundation/bitplatform">
68-
Open Bit Foundation In New Tab
68+
Open Bit Platform In New Tab
6969
</BitButton>
7070
<BitButton Class="lnk-btn" Style="margin-right: 10px;" Title="Standard" Href="https://github.com/bitfoundation/bitplatform" ButtonStyle="BitButtonStyle.Standard">
71-
Go To Bit Foundation
71+
Go To Bit Platform
7272
</BitButton>
7373
<BitButton Class="disable-btn" Target="_self" Href="https://github.com/bitfoundation/bitplatform" IsEnabled="false">
74-
<span>Bit Foundation From Span</span>
74+
<span>Bit Platform From Span</span>
7575
</BitButton>
7676
</div>
7777
</ExamplePreview>

src/Client/Web/Playground/Bit.Client.Web.BlazorUI.Playground/Web/Pages/Components/Buttons/BitButtonDemo.razor.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,13 +204,13 @@ Button with Aria Hidden
204204
</BitButton>";
205205

206206
private readonly string example5HTMLCode = @"<BitButton Style=""margin-right: 10px;"" Title=""Primary"" Target=""_blank"" Href=""https://github.com/bitfoundation/bitplatform"">
207-
Open Bit Foundation In New Tab
207+
Open Bit Platform In New Tab
208208
</BitButton>
209209
<BitButton Class=""lnk-btn"" Style=""margin-right: 10px;"" Title=""Standard"" Href=""https://github.com/bitfoundation/bitplatform"" ButtonStyle=""BitButtonStyle.Standard"">
210-
Go To Bit Foundation
210+
Go To Bit Platform
211211
</BitButton>
212212
<BitButton Class=""disable-btn"" Target=""_self"" Href=""https://github.com/bitfoundation/bitplatform"" IsEnabled=""false"">
213-
<span>Bit Foundation From Span</span>
213+
<span>Bit Platform From Span</span>
214214
</BitButton>";
215215
}
216216
}

src/Client/Web/Playground/Bit.Client.Web.BlazorUI.Playground/Web/Pages/Components/Buttons/BitCompoundButtonDemo.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@
6363
<ExamplePreview>
6464
<div class="example-desc">BitCompoundButton can act as a link by setting Href and Target attributes.</div>
6565
<div>
66-
<BitCompoundButton Target="_blank" Href="https://github.com/bitfoundation/bitplatform" Text="Open the site" SecondaryText="Open Bit Foundation In New Tab"></BitCompoundButton>
67-
<BitCompoundButton Href="https://github.com/bitfoundation/bitplatform" ButtonStyle="BitButtonStyle.Standard" Text="Open the site" SecondaryText="Go To Bit Foundation"></BitCompoundButton>
68-
<BitCompoundButton Target="_self" Href="https://github.com/bitfoundation/bitplatform" IsEnabled="false" Text="Open the site" SecondaryText="Go To Bit Foundation"></BitCompoundButton>
66+
<BitCompoundButton Target="_blank" Href="https://github.com/bitfoundation/bitplatform" Text="Open the site" SecondaryText="Open Bit Platform In New Tab"></BitCompoundButton>
67+
<BitCompoundButton Href="https://github.com/bitfoundation/bitplatform" ButtonStyle="BitButtonStyle.Standard" Text="Open the site" SecondaryText="Go To Bit Platform"></BitCompoundButton>
68+
<BitCompoundButton Target="_self" Href="https://github.com/bitfoundation/bitplatform" IsEnabled="false" Text="Open the site" SecondaryText="Go To Bit Platform"></BitCompoundButton>
6969
</div>
7070
</ExamplePreview>
7171
</ComponentExampleBox>

src/Client/Web/Playground/Bit.Client.Web.BlazorUI.Playground/Web/Pages/Components/Buttons/BitCompoundButtonDemo.razor.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ public partial class BitCompoundButtonDemo
207207
private readonly string example4HTMLCode = @"<BitCompoundButton ButtonStyle=""BitButtonStyle.Standard"" Text=""AriaDescription"" SecondaryText=""This is a compound button with aria description"" AriaDescription=""Button with Aria Description""></BitCompoundButton>
208208
<BitCompoundButton Text=""AriaHidden"" Style=""height: 85px;"" SecondaryText=""This is a compound button with aria hidden"" AriaHidden=""true""></BitCompoundButton>";
209209

210-
private readonly string example5HTMLCode = @"<BitCompoundButton Target=""_blank"" Href=""https://github.com/bitfoundation/bitplatform"" Text=""Open the site"" SecondaryText=""Open Bit Foundation In New Tab""></BitCompoundButton>
211-
<BitCompoundButton Href=""https://github.com/bitfoundation/bitplatform"" ButtonStyle=""BitButtonStyle.Standard"" Text=""Open the site"" SecondaryText=""Go To Bit Foundation""></BitCompoundButton>
212-
<BitCompoundButton Target=""_self"" Href=""https://github.com/bitfoundation/bitplatform"" IsEnabled=""false"" Text=""Open the site"" SecondaryText=""Go To Bit Foundation""></BitCompoundButton>";
210+
private readonly string example5HTMLCode = @"<BitCompoundButton Target=""_blank"" Href=""https://github.com/bitfoundation/bitplatform"" Text=""Open the site"" SecondaryText=""Open Bit Platform In New Tab""></BitCompoundButton>
211+
<BitCompoundButton Href=""https://github.com/bitfoundation/bitplatform"" ButtonStyle=""BitButtonStyle.Standard"" Text=""Open the site"" SecondaryText=""Go To Bit Platform""></BitCompoundButton>
212+
<BitCompoundButton Target=""_self"" Href=""https://github.com/bitfoundation/bitplatform"" IsEnabled=""false"" Text=""Open the site"" SecondaryText=""Go To Bit Platform""></BitCompoundButton>";
213213
}
214214
}

src/Client/Web/Playground/Bit.Client.Web.BlazorUI.Playground/Web/Pages/Components/Buttons/BitIconButtonDemo.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@
5454
<div class="example-desc">BitButton can act as a link by setting Href and Target attributes.</div>
5555
<div>
5656
<BitIconButton IconName="BitIconName.Website" Target="_blank" Href="https://github.com/bitfoundation/bitplatform">
57-
Open Bit Foundation In New Tab
57+
Open Bit Platform In New Tab
5858
</BitIconButton>
5959
<BitIconButton IconName="BitIconName.Website" Href="https://github.com/bitfoundation/bitplatform" ButtonStyle="BitButtonStyle.Standard">
60-
Go To Bit Foundation
60+
Go To Bit Platform
6161
</BitIconButton>
6262
<BitIconButton IconName="BitIconName.Website" Target="_self" Href="https://github.com/bitfoundation/bitplatform" IsEnabled="false">
63-
<span>Bit Foundation From Span</span>
63+
<span>Bit Platform From Span</span>
6464
</BitIconButton>
6565
</div>
6666
</ExamplePreview>

0 commit comments

Comments
 (0)