You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/BootstrapBlazor.Server/Locales/en-US.json
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2767,7 +2767,7 @@
2767
2767
"InputNumbersColorDescription2": "No button",
2768
2768
"InputNumbersColorIntro": "Set the <code>Color</code> parameter to customize the button color",
2769
2769
"InputNumbersColorTitle": "Color",
2770
-
"InputNumbersDateTypeIntro": "This component uses generic support the underlying data type <code>int short long float double decimal</code>",
2770
+
"InputNumbersDateTypeIntro": "This component uses generics to support the underlying data types <code>sbyte byte short ushort int uint long ulong float double decimal</code>",
2771
2771
"InputNumbersDateTypeTitle": "Data type",
2772
2772
"InputNumbersDescription": "Only standard numeric values are allowed, and custom ranges and other advanced features are supported",
2773
2773
"InputNumbersDisabledIntro": "When you set the <code>IsDisabled</code> property value to <code>true</code>, the component suppresses input",
@@ -2784,7 +2784,13 @@
2784
2784
"InputNumbersStep0.1": "The step defaults to 0.1",
2785
2785
"InputNumbersStep1": "The step defaults to 1",
2786
2786
"InputNumbersStep10": "The step defaults to 10",
2787
+
"InputNumbersStepCurrentConfigDescription": "Starting with version <code>10.7.1</code>, the default configuration was adjusted. The default values for <code>float</code>, <code>double</code>, and <code>decimal</code> changed from <code>0.01</code> to <code>any</code>, and all other numeric types changed from <code>1</code> to <code>null</code> (unset).",
2788
+
"InputNumbersStepDocLink": "For the related <code>html</code> <code>step</code> documentation, see <a href='https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/input/number?wt.mc_id=DT-MVP-5004174#step' target='_blank'>the docs</a>",
2787
2789
"InputNumbersStepIntro": "Set the <code>Step</code> parameter to control the increase or decrease in steps",
2790
+
"InputNumbersStepLegacyConfigDescription": "Before version <code>10.7.1</code>, the project template configured the default <code>step</code> values in <code>appsettings.json</code> like this:",
2791
+
"InputNumbersStepNotesDescription": "When <code>Step</code>, <code>Min</code>, and <code>Max</code> are set, the browser will apply the native <code>html</code> validation rules if the component value does not match the configured <code>step</code> strategy, and you need to handle that behavior yourself.",
2792
+
"InputNumbersStepNotesTitle": "Notes",
2793
+
"InputNumbersStepOptionsDescription": "You can also configure the default <code>step</code> value by injecting <code>BootstrapBlazorOptions</code> and setting its <code>StepSettings</code>.",
2788
2794
"InputNumbersStepTitle": "Custom steps",
2789
2795
"InputNumbersTitle": "InputNumber",
2790
2796
"InputNumbersUseInputEventIntro": "Component uses <code>OnInput</code> event for value updates",
0 commit comments