Skip to content

Commit bf6f327

Browse files
committed
feat(button): package version dev
1 parent 2bc95fa commit bf6f327

File tree

4 files changed

+35
-23
lines changed

4 files changed

+35
-23
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ jobs:
281281
DISABLE_PACKAGE_GENERATION: true
282282
run: |
283283
dotnet build TELBlazor.sln -c Release \
284-
/p:TELBlazorPackageVersion=$TELBLAZOR_PACKAGE_VERSION \
284+
/p:TELBlazorPackageVersion=$DEV_TELBLAZOR_PACKAGE_VERSION \
285285
/p:NupkgOutputPath=$TELBLAZOR_PACKAGE_LOCAL_OUTPUT_PATH \
286286
/p:UseTELBlazorComponentsProjectReference=$USE_TEL_BLAZOR_COMPONENTS_PROJECT_REFERENCE \
287287
/p:TELBlazorPackageSource=$TELBLAZOR_PACKAGE_SOURCE \

TELBlazor.Components.ShowCase.Shared/packages.lock.json

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,19 @@
3131
"resolved": "4.2.0",
3232
"contentHash": "gmoWVOvKgbME8TYR+gwMf7osROiWAURterc6Rt2dQyX7wtjZYpqFiA/pY6ztjGQKKV62GGCyOcmtP1UKMHgSmA=="
3333
},
34+
"TELBlazor.Components": {
35+
"type": "Direct",
36+
"requested": "[10.9.9, )",
37+
"resolved": "10.9.9",
38+
"contentHash": "dyHaYw7B8+MW/+nNNLXfs0SI6iSTgoFERglnVuM6VR+HrXm//8XojVIN6Pbin4x4PUIKbe2gVXE7/cFHL7/Bfg==",
39+
"dependencies": {
40+
"Microsoft.AspNetCore.Components.Web": "8.0.14",
41+
"Microsoft.Extensions.DependencyInjection": "8.0.1",
42+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
43+
"Microsoft.Extensions.Http": "8.0.1",
44+
"Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
45+
}
46+
},
3447
"Microsoft.AspNetCore.Authorization": {
3548
"type": "Transitive",
3649
"resolved": "8.0.14",
@@ -154,13 +167,6 @@
154167
"resolved": "8.0.0",
155168
"contentHash": "FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA=="
156169
},
157-
"telblazor.components": {
158-
"type": "Project",
159-
"dependencies": {
160-
"Microsoft.AspNetCore.Components.Web": "[8.0.14, )",
161-
"Microsoft.Extensions.Http": "[8.0.1, )"
162-
}
163-
},
164170
"Microsoft.Extensions.DependencyInjection": {
165171
"type": "CentralTransitive",
166172
"requested": "[8.0.1, )",

TELBlazor.Components.UnitTests/packages.lock.json

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,19 @@
139139
"xunit.core": "2.4.1"
140140
}
141141
},
142+
"TELBlazor.Components": {
143+
"type": "Direct",
144+
"requested": "[10.9.9, )",
145+
"resolved": "10.9.9",
146+
"contentHash": "dyHaYw7B8+MW/+nNNLXfs0SI6iSTgoFERglnVuM6VR+HrXm//8XojVIN6Pbin4x4PUIKbe2gVXE7/cFHL7/Bfg==",
147+
"dependencies": {
148+
"Microsoft.AspNetCore.Components.Web": "8.0.14",
149+
"Microsoft.Extensions.DependencyInjection": "8.0.1",
150+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
151+
"Microsoft.Extensions.Http": "8.0.1",
152+
"Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
153+
}
154+
},
142155
"xunit": {
143156
"type": "Direct",
144157
"requested": "[2.9.0, )",
@@ -1666,13 +1679,6 @@
16661679
"xunit.extensibility.core": "[2.9.0]"
16671680
}
16681681
},
1669-
"telblazor.components": {
1670-
"type": "Project",
1671-
"dependencies": {
1672-
"Microsoft.AspNetCore.Components.Web": "[8.0.14, )",
1673-
"Microsoft.Extensions.Http": "[8.0.1, )"
1674-
}
1675-
},
16761682
"Microsoft.AspNetCore.Components.Web": {
16771683
"type": "CentralTransitive",
16781684
"requested": "[8.0.14, )",

TELBlazor.Components/Components/BaseComponents/TELButton.razor

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
@if (IsSubmitButtonForEditForm)
66
{
77
<TELButtonSubComponent
8-
ButtonStyle="@ButtonStyle"
9-
ButtonText="@ButtonText"
10-
AriaLabel="@AriaLabel"
11-
AssistiveText="@AssistiveText"
12-
TabIndex="@TabIndex"
13-
ToolTipTitle="@ToolTipTitle"
14-
AdditionalCssClasses="@AdditionalCssClasses"
15-
PreventDoubleClick="@PreventDoubleClick"
8+
ButtonStyle="@ButtonStyle"
9+
ButtonText="@ButtonText"
10+
AriaLabel="@AriaLabel"
11+
AssistiveText="@AssistiveText"
12+
TabIndex="@TabIndex"
13+
ToolTipTitle="@ToolTipTitle"
14+
AdditionalCssClasses="@AdditionalCssClasses"
15+
PreventDoubleClick="@PreventDoubleClick"
1616
/>
1717
}
1818
else

0 commit comments

Comments
 (0)