This commit is contained in:
2026-01-30 14:42:56 +01:00
parent a2de0c9273
commit cbfce91270
3 changed files with 15 additions and 2 deletions

View File

@ -1,5 +1,8 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.14.36915.13 d17.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TecniStamp", "TecniStamp\TecniStamp.csproj", "{CFA3D1CC-936B-4DF5-B2AE-A46A8616501A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TecniStamp.Domain", "TecniStamp.Domain\TecniStamp.Domain.csproj", "{0B2CDA69-F597-4401-BFBE-B1AAF5451930}"
@ -31,4 +34,7 @@ Global
{3C50F0F5-0C91-4F70-8A97-79DC354455B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3C50F0F5-0C91-4F70-8A97-79DC354455B5}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,6 @@
<h3>Operatori</h3>
@page "/account/login"
@code {
}

View File

@ -115,7 +115,7 @@ var CountUp = /** @class */ (function () {
this.easeOutExpo = function (t, b, c, d) {
return c * (-Math.pow(2, -10 * t / d) + 1) * 1024 / 1023 + b;
};
this.options = __assign({}, this.defaults, options);
this.options = __assign(__assign({}, this.defaults), options);
this.formattingFn = (this.options.formattingFn) ?
this.options.formattingFn : this.formatNumber;
this.easingFn = (this.options.easingFn) ?
@ -262,10 +262,11 @@ var CountUp = /** @class */ (function () {
this.rAF = requestAnimationFrame(this.count);
};
CountUp.prototype.printValue = function (val) {
var _a;
if (!this.el)
return;
var result = this.formattingFn(val);
if (this.options.plugin ? .render : ) {
if ((_a = this.options.plugin) === null || _a === void 0 ? void 0 : _a.render) {
this.options.plugin.render(this.el, result);
return;
}