diff --git a/src/Compiler/Microsoft.AspNetCore.Razor.Language/legacyTest/Legacy/TagHelperBlockRewriterTest.cs b/src/Compiler/Microsoft.AspNetCore.Razor.Language/legacyTest/Legacy/TagHelperBlockRewriterTest.cs index 80066ea46f6..08f5ea2538e 100644 --- a/src/Compiler/Microsoft.AspNetCore.Razor.Language/legacyTest/Legacy/TagHelperBlockRewriterTest.cs +++ b/src/Compiler/Microsoft.AspNetCore.Razor.Language/legacyTest/Legacy/TagHelperBlockRewriterTest.cs @@ -2242,8 +2242,8 @@ public void Rewrites_ComponentDirectiveAttributes() .BindAttributeParameter(p => { p.Name = "event"; + p.PropertyName = "Event"; p.TypeName = typeof(string).FullName; - p.SetMetadata(PropertyName("Event")); })) .Build(), ]; @@ -2288,8 +2288,8 @@ public void Rewrites_MinimizedComponentDirectiveAttributes() .BindAttributeParameter(p => { p.Name = "param"; + p.PropertyName = "Param"; p.TypeName = typeof(string).FullName; - p.SetMetadata(PropertyName("Param")); })) .Build(), ]; diff --git a/src/Compiler/Microsoft.AspNetCore.Razor.Language/test/Legacy/TagHelperBlockRewriterTest.cs b/src/Compiler/Microsoft.AspNetCore.Razor.Language/test/Legacy/TagHelperBlockRewriterTest.cs index 8524d523f5a..1fc9380ea1d 100644 --- a/src/Compiler/Microsoft.AspNetCore.Razor.Language/test/Legacy/TagHelperBlockRewriterTest.cs +++ b/src/Compiler/Microsoft.AspNetCore.Razor.Language/test/Legacy/TagHelperBlockRewriterTest.cs @@ -2465,8 +2465,8 @@ public void Rewrites_ComponentDirectiveAttributes() .BindAttributeParameter(p => { p.Name = "event"; + p.PropertyName = "Event"; p.TypeName = typeof(string).FullName; - p.SetMetadata(PropertyName("Event")); })) .Build(), ]; @@ -2511,8 +2511,8 @@ public void Rewrites_MinimizedComponentDirectiveAttributes() .BindAttributeParameter(p => { p.Name = "param"; + p.PropertyName = "Param"; p.TypeName = typeof(string).FullName; - p.SetMetadata(PropertyName("Param")); })) .Build(), ]; diff --git a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/CSharp/BindTagHelperDescriptorProvider.cs b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/CSharp/BindTagHelperDescriptorProvider.cs index 8177a52d5fb..b30d946db22 100644 --- a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/CSharp/BindTagHelperDescriptorProvider.cs +++ b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/CSharp/BindTagHelperDescriptorProvider.cs @@ -164,57 +164,52 @@ private static TagHelperDescriptor CreateFallbackBindTagHelper() attribute.BindAttributeParameter(parameter => { parameter.Name = "format"; + parameter.PropertyName = "Format"; parameter.TypeName = typeof(string).FullName; parameter.SetDocumentation(DocumentationDescriptor.BindTagHelper_Fallback_Format); - - parameter.SetMetadata(Parameters.Format); }); attribute.BindAttributeParameter(parameter => { parameter.Name = "event"; + parameter.PropertyName = "Event"; parameter.TypeName = typeof(string).FullName; parameter.SetDocumentation( DocumentationDescriptor.From( DocumentationId.BindTagHelper_Fallback_Event, attributeName)); - - parameter.SetMetadata(Parameters.Event); }); attribute.BindAttributeParameter(parameter => { parameter.Name = "culture"; + parameter.PropertyName = "Culture"; parameter.TypeName = typeof(CultureInfo).FullName; parameter.SetDocumentation(DocumentationDescriptor.BindTagHelper_Element_Culture); - - parameter.SetMetadata(Parameters.Culture); }); attribute.BindAttributeParameter(parameter => { parameter.Name = "get"; + parameter.PropertyName = "Get"; parameter.TypeName = typeof(object).FullName; parameter.SetDocumentation(DocumentationDescriptor.BindTagHelper_Element_Get); - - parameter.SetMetadata(Parameters.Get); + parameter.BindAttributeGetSet = true; }); attribute.BindAttributeParameter(parameter => { parameter.Name = "set"; + parameter.PropertyName = "Set"; parameter.TypeName = typeof(Delegate).FullName; parameter.SetDocumentation(DocumentationDescriptor.BindTagHelper_Element_Set); - - parameter.SetMetadata(Parameters.Set); }); attribute.BindAttributeParameter(parameter => { parameter.Name = "after"; + parameter.PropertyName = "After"; parameter.TypeName = typeof(Delegate).FullName; parameter.SetDocumentation(DocumentationDescriptor.BindTagHelper_Element_After); - - parameter.SetMetadata(Parameters.After); }); }); @@ -470,61 +465,56 @@ private static TagHelperDescriptor CreateElementBindTagHelper( a.BindAttributeParameter(parameter => { parameter.Name = "format"; + parameter.PropertyName = formatName; parameter.TypeName = typeof(string).FullName; parameter.SetDocumentation( DocumentationDescriptor.From( DocumentationId.BindTagHelper_Element_Format, attributeName)); - - parameter.SetMetadata(PropertyName(formatName)); }); a.BindAttributeParameter(parameter => { parameter.Name = "event"; + parameter.PropertyName = eventName; parameter.TypeName = typeof(string).FullName; parameter.SetDocumentation( DocumentationDescriptor.From( DocumentationId.BindTagHelper_Element_Event, attributeName)); - - parameter.SetMetadata(PropertyName(eventName)); }); a.BindAttributeParameter(parameter => { parameter.Name = "culture"; + parameter.PropertyName = "Culture"; parameter.TypeName = typeof(CultureInfo).FullName; parameter.SetDocumentation(DocumentationDescriptor.BindTagHelper_Element_Culture); - - parameter.SetMetadata(Parameters.Culture); }); a.BindAttributeParameter(parameter => { parameter.Name = "get"; + parameter.PropertyName = "Get"; parameter.TypeName = typeof(object).FullName; parameter.SetDocumentation(DocumentationDescriptor.BindTagHelper_Element_Get); - - parameter.SetMetadata(Parameters.Get); + parameter.BindAttributeGetSet = true; }); a.BindAttributeParameter(parameter => { parameter.Name = "set"; + parameter.PropertyName = "Set"; parameter.TypeName = typeof(Delegate).FullName; parameter.SetDocumentation(DocumentationDescriptor.BindTagHelper_Element_Set); - - parameter.SetMetadata(Parameters.Set); }); a.BindAttributeParameter(parameter => { parameter.Name = "after"; + parameter.PropertyName = "After"; parameter.TypeName = typeof(Delegate).FullName; parameter.SetDocumentation(DocumentationDescriptor.BindTagHelper_Element_After); - - parameter.SetMetadata(Parameters.After); }); }); @@ -676,28 +666,26 @@ private static void AddComponentBindTagHelpers(TagHelperDescriptor tagHelper, re attribute.BindAttributeParameter(parameter => { parameter.Name = "get"; + parameter.PropertyName = "Get"; parameter.TypeName = typeof(object).FullName; parameter.SetDocumentation(DocumentationDescriptor.BindTagHelper_Element_Get); - - parameter.SetMetadata(Parameters.Get); + parameter.BindAttributeGetSet = true; }); attribute.BindAttributeParameter(parameter => { parameter.Name = "set"; + parameter.PropertyName = "Set"; parameter.TypeName = typeof(Delegate).FullName; parameter.SetDocumentation(DocumentationDescriptor.BindTagHelper_Element_Set); - - parameter.SetMetadata(Parameters.Set); }); attribute.BindAttributeParameter(parameter => { parameter.Name = "after"; + parameter.PropertyName = "After"; parameter.TypeName = typeof(Delegate).FullName; parameter.SetDocumentation(DocumentationDescriptor.BindTagHelper_Element_After); - - parameter.SetMetadata(Parameters.After); }); }); diff --git a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/CSharp/EventHandlerTagHelperDescriptorProvider.cs b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/CSharp/EventHandlerTagHelperDescriptorProvider.cs index ff052c408d2..348808a7f51 100644 --- a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/CSharp/EventHandlerTagHelperDescriptorProvider.cs +++ b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/CSharp/EventHandlerTagHelperDescriptorProvider.cs @@ -240,13 +240,12 @@ private static TagHelperDescriptor CreateTagHelper( a.BindAttributeParameter(parameter => { parameter.Name = "preventDefault"; + parameter.PropertyName = "PreventDefault"; parameter.TypeName = typeof(bool).FullName; parameter.SetDocumentation( DocumentationDescriptor.From( DocumentationId.EventHandlerTagHelper_PreventDefault, attributeName)); - - parameter.SetMetadata(Parameters.PreventDefault); }); } @@ -255,13 +254,12 @@ private static TagHelperDescriptor CreateTagHelper( a.BindAttributeParameter(parameter => { parameter.Name = "stopPropagation"; + parameter.PropertyName = "StopPropagation"; parameter.TypeName = typeof(bool).FullName; parameter.SetDocumentation( DocumentationDescriptor.From( DocumentationId.EventHandlerTagHelper_StopPropagation, attributeName)); - - parameter.SetMetadata(Parameters.StopPropagation); }); } }); diff --git a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeDescriptorBuilderExtensions.cs b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeDescriptorBuilderExtensions.cs index 197d6495789..88f9c7b9b5d 100644 --- a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeDescriptorBuilderExtensions.cs +++ b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeDescriptorBuilderExtensions.cs @@ -5,7 +5,6 @@ using System; using System.Collections.Generic; -using Microsoft.AspNetCore.Razor.Language.Components; namespace Microsoft.AspNetCore.Razor.Language; @@ -49,9 +48,4 @@ public static void AsDictionary( builder.IndexerAttributeNamePrefix = attributeNamePrefix; builder.IndexerValueTypeName = valueTypeName; } - - internal static void SetMetadata(this BoundAttributeParameterDescriptorBuilder builder, KeyValuePair pair) - { - builder.SetMetadata(MetadataCollection.Create(pair)); - } } diff --git a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeDescriptorExtensions.cs b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeDescriptorExtensions.cs index 60a788b31c3..4a75b4cf3f4 100644 --- a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeDescriptorExtensions.cs +++ b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeDescriptorExtensions.cs @@ -58,12 +58,4 @@ public static bool IsDefaultKind(this BoundAttributeParameterDescriptor paramete return parameter.Parent.Parent.Kind == TagHelperConventions.DefaultKind; } - - public static string? GetPropertyName(this BoundAttributeParameterDescriptor parameter) - { - ArgHelper.ThrowIfNull(parameter); - - parameter.Metadata.TryGetValue(TagHelperMetadata.Common.PropertyName, out var propertyName); - return propertyName; - } } diff --git a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterDescriptor.cs b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterDescriptor.cs index ba164ac3fae..ad4dcb90550 100644 --- a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterDescriptor.cs +++ b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterDescriptor.cs @@ -1,7 +1,6 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. -using System; using System.Collections.Immutable; using System.Diagnostics; using Microsoft.AspNetCore.Razor.Utilities; @@ -10,86 +9,52 @@ namespace Microsoft.AspNetCore.Razor.Language; public sealed class BoundAttributeParameterDescriptor : TagHelperObject { - [Flags] - private enum BoundAttributeParameterFlags - { - CaseSensitive = 1 << 0, - IsEnum = 1 << 1, - IsStringProperty = 1 << 2, - IsBooleanProperty = 1 << 3 - } - private readonly BoundAttributeParameterFlags _flags; - private readonly DocumentationObject _documentationObject; - private BoundAttributeDescriptor? _parent; + private string? _displayName; + public BoundAttributeParameterFlags Flags => _flags; public string Name { get; } - public string TypeName { get; } - public string DisplayName { get; } + public string PropertyName { get; } + public string TypeName => TypeNameObject.GetTypeName().AssumeNotNull(); + public string DisplayName => _displayName ??= ":" + Name; + + public string? Documentation => DocumentationObject.GetText(); - public bool CaseSensitive => (_flags & BoundAttributeParameterFlags.CaseSensitive) != 0; - public bool IsEnum => (_flags & BoundAttributeParameterFlags.IsEnum) != 0; - public bool IsStringProperty => (_flags & BoundAttributeParameterFlags.IsStringProperty) != 0; - public bool IsBooleanProperty => (_flags & BoundAttributeParameterFlags.IsBooleanProperty) != 0; + internal TypeNameObject TypeNameObject { get; } + internal DocumentationObject DocumentationObject { get; } - public MetadataCollection Metadata { get; } + public bool CaseSensitive => _flags.IsFlagSet(BoundAttributeParameterFlags.CaseSensitive); + public bool IsEnum => _flags.IsFlagSet(BoundAttributeParameterFlags.IsEnum); + public bool IsStringProperty => TypeNameObject.IsString; + public bool IsBooleanProperty => TypeNameObject.IsBoolean; + public bool BindAttributeGetSet => _flags.IsFlagSet(BoundAttributeParameterFlags.BindAttributeGetSet); internal BoundAttributeParameterDescriptor( + BoundAttributeParameterFlags flags, string name, - string typeName, - bool isEnum, + string propertyName, + TypeNameObject typeNameObject, DocumentationObject documentationObject, - string displayName, - bool caseSensitive, - MetadataCollection metadata, ImmutableArray diagnostics) : base(diagnostics) { - Name = name; - TypeName = typeName; - _documentationObject = documentationObject; - DisplayName = displayName; - Metadata = metadata ?? MetadataCollection.Empty; - - BoundAttributeParameterFlags flags = 0; - - if (isEnum) - { - flags |= BoundAttributeParameterFlags.IsEnum; - } - - if (caseSensitive) - { - flags |= BoundAttributeParameterFlags.CaseSensitive; - } - - if (typeName == typeof(string).FullName || typeName == "string") - { - flags |= BoundAttributeParameterFlags.IsStringProperty; - } - - if (typeName == typeof(bool).FullName || typeName == "bool") - { - flags |= BoundAttributeParameterFlags.IsBooleanProperty; - } - _flags = flags; + + Name = name; + PropertyName = propertyName; + TypeNameObject = typeNameObject; + DocumentationObject = documentationObject; } private protected override void BuildChecksum(in Checksum.Builder builder) { + builder.AppendData((byte)_flags); builder.AppendData(Name); - builder.AppendData(TypeName); - builder.AppendData(DisplayName); + builder.AppendData(PropertyName); + TypeNameObject.AppendToChecksum(in builder); DocumentationObject.AppendToChecksum(in builder); - - builder.AppendData(CaseSensitive); - builder.AppendData(IsEnum); - builder.AppendData(IsBooleanProperty); - builder.AppendData(IsStringProperty); - builder.AppendData(Metadata.Checksum); } public BoundAttributeDescriptor Parent @@ -103,10 +68,6 @@ internal void SetParent(BoundAttributeDescriptor parent) _parent = parent; } - public string? Documentation => _documentationObject.GetText(); - - internal DocumentationObject DocumentationObject => _documentationObject; - public override string ToString() - => DisplayName ?? base.ToString()!; + => DisplayName; } diff --git a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterDescriptorBuilder.cs b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterDescriptorBuilder.cs index 687f056cf8d..7e80dc6631c 100644 --- a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterDescriptorBuilder.cs +++ b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterDescriptorBuilder.cs @@ -2,7 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. using System; -using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics.CodeAnalysis; using Microsoft.AspNetCore.Razor.PooledObjects; @@ -13,8 +12,9 @@ public sealed partial class BoundAttributeParameterDescriptorBuilder : TagHelper { [AllowNull] private BoundAttributeDescriptorBuilder _parent; + private BoundAttributeParameterFlags _flags; private DocumentationObject _documentationObject; - private MetadataHolder _metadata; + private TypeNameObject _typeNameObject; private BoundAttributeParameterDescriptorBuilder() { @@ -26,23 +26,31 @@ internal BoundAttributeParameterDescriptorBuilder(BoundAttributeDescriptorBuilde } public string? Name { get; set; } - public string? TypeName { get; set; } - public bool IsEnum { get; set; } + public string? PropertyName { get; set; } - public string? Documentation + public string? TypeName { - get => _documentationObject.GetText(); - set => _documentationObject = new(value); + get => _typeNameObject.GetTypeName(); + set => _typeNameObject = TypeNameObject.From(value); } - public string? DisplayName { get; set; } - - public IDictionary Metadata => _metadata.MetadataDictionary; + public bool IsEnum + { + get => _flags.IsFlagSet(BoundAttributeParameterFlags.IsEnum); + set => _flags.UpdateFlag(BoundAttributeParameterFlags.IsEnum, value); + } - public void SetMetadata(MetadataCollection metadata) => _metadata.SetMetadataCollection(metadata); + public bool BindAttributeGetSet + { + get => _flags.IsFlagSet(BoundAttributeParameterFlags.BindAttributeGetSet); + set => _flags.UpdateFlag(BoundAttributeParameterFlags.BindAttributeGetSet, value); + } - public bool TryGetMetadataValue(string key, [NotNullWhen(true)] out string? value) - => _metadata.TryGetMetadataValue(key, out value); + public string? Documentation + { + get => _documentationObject.GetText(); + set => _documentationObject = new(value); + } internal bool CaseSensitive => _parent.CaseSensitive; @@ -58,20 +66,22 @@ internal void SetDocumentation(DocumentationDescriptor? documentation) private protected override BoundAttributeParameterDescriptor BuildCore(ImmutableArray diagnostics) { + var flags = _flags; + + if (CaseSensitive) + { + flags |= BoundAttributeParameterFlags.CaseSensitive; + } + return new BoundAttributeParameterDescriptor( + flags, Name ?? string.Empty, - TypeName ?? string.Empty, - IsEnum, + PropertyName ?? string.Empty, + _typeNameObject, _documentationObject, - GetDisplayName(), - CaseSensitive, - _metadata.GetMetadataCollection(), diagnostics); } - private string GetDisplayName() - => DisplayName ?? $":{Name}"; - private protected override void CollectDiagnostics(ref PooledHashSet diagnostics) { if (Name.IsNullOrWhiteSpace()) diff --git a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterDescriptorBuilder_Pooling.cs b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterDescriptorBuilder_Pooling.cs index 3fbce12ec92..0613dbf22bf 100644 --- a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterDescriptorBuilder_Pooling.cs +++ b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterDescriptorBuilder_Pooling.cs @@ -22,14 +22,12 @@ internal static BoundAttributeParameterDescriptorBuilder GetInstance(BoundAttrib private protected override void Reset() { _parent = null; + _flags = 0; _documentationObject = default; + _typeNameObject = default; Name = null; - TypeName = null; - IsEnum = false; - DisplayName = null; - - _metadata.Clear(); + PropertyName = null; } private sealed class Policy : PooledBuilderPolicy diff --git a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterFlags.cs b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterFlags.cs new file mode 100644 index 00000000000..511179a701c --- /dev/null +++ b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/BoundAttributeParameterFlags.cs @@ -0,0 +1,14 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System; + +namespace Microsoft.AspNetCore.Razor.Language; + +[Flags] +public enum BoundAttributeParameterFlags : byte +{ + CaseSensitive = 1 << 0, + IsEnum = 1 << 1, + BindAttributeGetSet = 1 << 2 +} diff --git a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/Components/ComponentBindLoweringPass.cs b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/Components/ComponentBindLoweringPass.cs index 20b8be13d48..afd7c15d442 100644 --- a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/Components/ComponentBindLoweringPass.cs +++ b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/Components/ComponentBindLoweringPass.cs @@ -97,7 +97,7 @@ protected override void ExecuteCore(RazorCodeDocument codeDocument, DocumentInte continue; } - if (node.BoundAttributeParameter.Metadata.ContainsKey(ComponentMetadata.Bind.BindAttributeGetSet)) + if (node.BoundAttributeParameter.BindAttributeGetSet) { if (!_bindGetSetSupported) { diff --git a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/Intermediate/ComponentAttributeIntermediateNode.cs b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/Intermediate/ComponentAttributeIntermediateNode.cs index 534b2f2d873..bd405ac67e0 100644 --- a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/Intermediate/ComponentAttributeIntermediateNode.cs +++ b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/Intermediate/ComponentAttributeIntermediateNode.cs @@ -129,7 +129,7 @@ public ComponentAttributeIntermediateNode(TagHelperDirectiveAttributeParameterIn AttributeStructure = directiveAttributeParameterNode.AttributeStructure; BoundAttribute = directiveAttributeParameterNode.BoundAttribute; OriginalAttributeSpan = directiveAttributeParameterNode.OriginalAttributeSpan; - PropertyName = directiveAttributeParameterNode.BoundAttributeParameter.GetPropertyName(); + PropertyName = directiveAttributeParameterNode.BoundAttributeParameter.PropertyName; Source = directiveAttributeParameterNode.Source; TagHelper = directiveAttributeParameterNode.TagHelper; TypeName = directiveAttributeParameterNode.BoundAttributeParameter.TypeName; diff --git a/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/TypeNameObject.cs b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/TypeNameObject.cs new file mode 100644 index 00000000000..819ca83c13c --- /dev/null +++ b/src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/TypeNameObject.cs @@ -0,0 +1,131 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System; +using System.Collections.Frozen; +using System.Collections.Generic; +using System.Collections.Immutable; +using System.Diagnostics; +using Microsoft.AspNetCore.Razor.Utilities; + +namespace Microsoft.AspNetCore.Razor.Language; + +internal readonly struct TypeNameObject +{ + private static readonly ImmutableArray s_knownTypeNames; + private static readonly FrozenDictionary s_typeNameToIndex; + + private static readonly int s_booleanIndex; + private static readonly int s_stringIndex; + + static TypeNameObject() + { + var knownTypeNames = ImmutableArray.CreateBuilder(); + var typeNameToIndex = new Dictionary(StringComparer.Ordinal); + + Add("object"); + s_booleanIndex = Add("bool"); + Add("int"); + Add("long"); + Add("short"); + Add("byte"); + Add("sbyte"); + Add("uint"); + Add("ulong"); + Add("ushort"); + Add("float"); + Add("double"); + Add("decimal"); + Add("char"); + s_stringIndex = Add("string"); + Add(); + Add(); + Add(); + + // Add any additional types here. + + s_knownTypeNames = knownTypeNames.ToImmutable(); + s_typeNameToIndex = typeNameToIndex.ToFrozenDictionary(StringComparer.Ordinal); + + int Add(string? alias = null) + { + var fullName = typeof(T).FullName!; + Debug.Assert(knownTypeNames.Count < byte.MaxValue, "Too many known type names to fit in a byte index."); + var index = (byte)knownTypeNames.Count; + knownTypeNames.Add(fullName); + typeNameToIndex.Add(fullName, index); + + if (alias is not null) + { + typeNameToIndex.Add(alias, index); + } + + return index; + } + } + + private readonly byte? _index; + private readonly string? _stringValue; + + public TypeNameObject(byte index) + { + Debug.Assert(index >= 0 && index < s_knownTypeNames.Length); + + _index = index; + _stringValue = null; + } + + public TypeNameObject(string? stringValue) + { + Debug.Assert(stringValue is null || !s_typeNameToIndex.ContainsKey(stringValue)); + + _index = null; + _stringValue = stringValue; + } + + public bool IsNull => _index is null && _stringValue is null; + + public byte? Index => _index; + public string? StringValue => _stringValue; + + public static TypeNameObject From(string? typeName) + { + if (typeName is null) + { + return default; + } + + return s_typeNameToIndex.TryGetValue(typeName, out var index) + ? new(index) + : new(typeName); + } + + public bool IsBoolean => _index == s_booleanIndex; + public bool IsString => _index == s_stringIndex; + + public readonly string? GetTypeName() + { + if (_index is byte index) + { + return s_knownTypeNames[index]; + } + + return _stringValue; + } + + public void AppendToChecksum(in Checksum.Builder builder) + { + if (_index is byte index) + { + builder.AppendData(index); + } + else if (_stringValue is string fullName) + { + builder.AppendData(fullName); + } + else + { + builder.AppendNull(); + } + } +} diff --git a/src/Compiler/Microsoft.CodeAnalysis.Razor/test/BindTagHelperDescriptorProviderTest.cs b/src/Compiler/Microsoft.CodeAnalysis.Razor/test/BindTagHelperDescriptorProviderTest.cs index 585cb01333e..ccf77b5add9 100644 --- a/src/Compiler/Microsoft.CodeAnalysis.Razor/test/BindTagHelperDescriptorProviderTest.cs +++ b/src/Compiler/Microsoft.CodeAnalysis.Razor/test/BindTagHelperDescriptorProviderTest.cs @@ -600,7 +600,7 @@ static void AssertAttribute(BoundAttributeDescriptor attribute) parameter.Documentation); Assert.Equal("format", parameter.Name); - Assert.Equal("Format_myprop", parameter.GetPropertyName()); + Assert.Equal("Format_myprop", parameter.PropertyName); Assert.Equal(":format", parameter.DisplayName); // Defined from the property type @@ -622,7 +622,7 @@ static void AssertAttribute(BoundAttributeDescriptor attribute) parameter.Documentation); Assert.Equal("culture", parameter.Name); - Assert.Equal("Culture", parameter.GetPropertyName()); + Assert.Equal("Culture", parameter.PropertyName); Assert.Equal(":culture", parameter.DisplayName); // Defined from the property type @@ -644,7 +644,7 @@ static void AssertAttribute(BoundAttributeDescriptor attribute) parameter.Documentation); Assert.Equal("get", parameter.Name); - Assert.Equal("Get", parameter.GetPropertyName()); + Assert.Equal("Get", parameter.PropertyName); Assert.Equal(":get", parameter.DisplayName); // Defined from the property type @@ -666,7 +666,7 @@ static void AssertAttribute(BoundAttributeDescriptor attribute) parameter.Documentation); Assert.Equal("set", parameter.Name); - Assert.Equal("Set", parameter.GetPropertyName()); + Assert.Equal("Set", parameter.PropertyName); Assert.Equal(":set", parameter.DisplayName); // Defined from the property type @@ -688,7 +688,7 @@ static void AssertAttribute(BoundAttributeDescriptor attribute) parameter.Documentation); Assert.Equal("after", parameter.Name); - Assert.Equal("After", parameter.GetPropertyName()); + Assert.Equal("After", parameter.PropertyName); Assert.Equal(":after", parameter.DisplayName); // Defined from the property type @@ -852,7 +852,7 @@ public class BindAttributes var parameter = Assert.Single(attribute.Parameters, a => a.Name.Equals("format")); Assert.Equal("format", parameter.Name); - Assert.Equal("Format_myprop", parameter.GetPropertyName()); + Assert.Equal("Format_myprop", parameter.PropertyName); Assert.Equal(":format", parameter.DisplayName); } @@ -947,7 +947,7 @@ public class BindAttributes var parameter = Assert.Single(attribute.Parameters, a => a.Name.Equals("format")); Assert.Equal("format", parameter.Name); - Assert.Equal("Format_myprop", parameter.GetPropertyName()); + Assert.Equal("Format_myprop", parameter.PropertyName); Assert.Equal(":format", parameter.DisplayName); } @@ -1044,7 +1044,7 @@ public class BindAttributes var parameter = Assert.Single(attribute.Parameters, a => a.Name.Equals("format")); Assert.Equal("format", parameter.Name); - Assert.Equal("Format_somevalue", parameter.GetPropertyName()); + Assert.Equal("Format_somevalue", parameter.PropertyName); Assert.Equal(":format", parameter.DisplayName); } @@ -1201,7 +1201,7 @@ public void Execute_BindFallback_CreatesDescriptor() parameter.Documentation); Assert.Equal("format", parameter.Name); - Assert.Equal("Format", parameter.GetPropertyName()); + Assert.Equal("Format", parameter.PropertyName); Assert.Equal(":format", parameter.DisplayName); // Defined from the property type @@ -1223,7 +1223,7 @@ public void Execute_BindFallback_CreatesDescriptor() parameter.Documentation); Assert.Equal("culture", parameter.Name); - Assert.Equal("Culture", parameter.GetPropertyName()); + Assert.Equal("Culture", parameter.PropertyName); Assert.Equal(":culture", parameter.DisplayName); // Defined from the property type diff --git a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/ArgKind.cs b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/ArgKind.cs deleted file mode 100644 index 31e58ca1f50..00000000000 --- a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/ArgKind.cs +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the MIT license. See License.txt in the project root for license information. - -namespace Microsoft.CodeAnalysis.Razor.Serialization.MessagePack; - -internal enum ArgKind -{ - Integer, - String, - Null, - True, - False, - Boolean -} diff --git a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/DocumentationKind.cs b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/DocumentationKind.cs deleted file mode 100644 index 8e758ffbdbf..00000000000 --- a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/DocumentationKind.cs +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the MIT license. See License.txt in the project root for license information. - -namespace Microsoft.CodeAnalysis.Razor.Serialization.MessagePack; - -internal enum DocumentationKind -{ - Descriptor, - String -} diff --git a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Formatters/TagHelpers/BoundAttributeParameterFormatter.cs b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Formatters/TagHelpers/BoundAttributeParameterFormatter.cs index 2b4abfeacc1..bfb856cb07f 100644 --- a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Formatters/TagHelpers/BoundAttributeParameterFormatter.cs +++ b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Formatters/TagHelpers/BoundAttributeParameterFormatter.cs @@ -10,7 +10,7 @@ namespace Microsoft.CodeAnalysis.Razor.Serialization.MessagePack.Formatters.TagH internal sealed class BoundAttributeParameterFormatter : ValueFormatter { - private const int PropertyCount = 8; + private const int PropertyCount = 6; public static readonly ValueFormatter Instance = new BoundAttributeParameterFormatter(); @@ -22,34 +22,28 @@ public override BoundAttributeParameterDescriptor Deserialize(ref MessagePackRea { reader.ReadArrayHeaderAndVerify(PropertyCount); + var flags = (BoundAttributeParameterFlags)reader.ReadByte(); var name = CachedStringFormatter.Instance.Deserialize(ref reader, options); - var typeName = CachedStringFormatter.Instance.Deserialize(ref reader, options).AssumeNotNull(); - var isEnum = reader.ReadBoolean(); - var displayName = CachedStringFormatter.Instance.Deserialize(ref reader, options).AssumeNotNull(); + var propertyName = CachedStringFormatter.Instance.Deserialize(ref reader, options).AssumeNotNull(); + var typeNameObject = reader.Deserialize(options); var documentationObject = reader.Deserialize(options); - var caseSensitive = reader.ReadBoolean(); - var metadata = reader.Deserialize(options); var diagnostics = reader.Deserialize>(options); return new BoundAttributeParameterDescriptor( - name!, typeName, - isEnum, documentationObject, displayName, caseSensitive, - metadata, diagnostics); + flags, name!, propertyName, typeNameObject, documentationObject, diagnostics); } public override void Serialize(ref MessagePackWriter writer, BoundAttributeParameterDescriptor value, SerializerCachingOptions options) { writer.WriteArrayHeader(PropertyCount); + writer.Write((byte)value.Flags); CachedStringFormatter.Instance.Serialize(ref writer, value.Name, options); - CachedStringFormatter.Instance.Serialize(ref writer, value.TypeName, options); - writer.Write(value.IsEnum); - CachedStringFormatter.Instance.Serialize(ref writer, value.DisplayName, options); + CachedStringFormatter.Instance.Serialize(ref writer, value.PropertyName, options); + writer.Serialize(value.TypeNameObject, options); writer.Serialize(value.DocumentationObject, options); - writer.Write(value.CaseSensitive); - writer.Serialize(value.Metadata, options); writer.Serialize(value.Diagnostics, options); } @@ -57,14 +51,12 @@ public override void Skim(ref MessagePackReader reader, SerializerCachingOptions { reader.ReadArrayHeaderAndVerify(PropertyCount); + reader.Skip(); // Flags CachedStringFormatter.Instance.Skim(ref reader, options); // Name - CachedStringFormatter.Instance.Skim(ref reader, options); // TypeName - reader.Skip(); // IsEnum - CachedStringFormatter.Instance.Skim(ref reader, options); // DisplayName + CachedStringFormatter.Instance.Skim(ref reader, options); // PropertyName + TypeNameObjectFormatter.Instance.Skim(ref reader, options); // TypeNameObject DocumentationObjectFormatter.Instance.Skim(ref reader, options); // DocumentationObject - reader.Skip(); // CaseSensitive - MetadataCollectionFormatter.Instance.Skim(ref reader, options); // Metadata RazorDiagnosticFormatter.Instance.SkimArray(ref reader, options); // Diagnostics } } diff --git a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Formatters/TagHelpers/DocumentationObjectFormatter.cs b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Formatters/TagHelpers/DocumentationObjectFormatter.cs index 9fc58133a69..2d8f15ff180 100644 --- a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Formatters/TagHelpers/DocumentationObjectFormatter.cs +++ b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Formatters/TagHelpers/DocumentationObjectFormatter.cs @@ -13,6 +13,19 @@ namespace Microsoft.CodeAnalysis.Razor.Serialization.MessagePack.Formatters.TagH internal sealed class DocumentationObjectFormatter : ValueFormatter { + private enum DocumentationKind : byte + { + Descriptor, + String + } + + private enum ArgKind : byte + { + Integer, + String, + Boolean + } + public static readonly ValueFormatter Instance = new DocumentationObjectFormatter(); private DocumentationObjectFormatter() @@ -28,7 +41,7 @@ public override DocumentationObject Deserialize(ref MessagePackReader reader, Se var count = reader.ReadArrayHeader(); - var documentationKind = (DocumentationKind)reader.ReadInt32(); + var documentationKind = (DocumentationKind)reader.ReadByte(); switch (documentationKind) { @@ -40,7 +53,7 @@ public override DocumentationObject Deserialize(ref MessagePackReader reader, Se // Note: Each argument is stored as two values. var args = count > 0 ? ReadArgs(ref reader, count / 2, options) - : Array.Empty(); + : []; return DocumentationDescriptor.From(id, args); @@ -76,7 +89,7 @@ public override DocumentationObject Deserialize(ref MessagePackReader reader, Se return null; } - var argKind = (ArgKind)reader.ReadInt32(); + var argKind = (ArgKind)reader.ReadByte(); return argKind switch { @@ -99,7 +112,7 @@ public override void Serialize(ref MessagePackWriter writer, DocumentationObject writer.WriteArrayHeader(count); - writer.Write((int)DocumentationKind.Descriptor); + writer.Write((byte)DocumentationKind.Descriptor); writer.Write((int)descriptor.Id); foreach (var arg in args) @@ -111,7 +124,7 @@ public override void Serialize(ref MessagePackWriter writer, DocumentationObject case string text: writer.WriteArrayHeader(2); - writer.Write((int)DocumentationKind.String); + writer.Write((byte)DocumentationKind.String); CachedStringFormatter.Instance.Serialize(ref writer, text, options); break; @@ -129,25 +142,25 @@ static void WriteArg(ref MessagePackWriter writer, object? value, SerializerCach switch (value) { case string s: - writer.Write((int)ArgKind.String); + writer.Write((byte)ArgKind.String); CachedStringFormatter.Instance.Serialize(ref writer, s, options); break; + case null: + writer.Write((byte)ArgKind.String); + writer.WriteNil(); + break; + case int i: - writer.Write((int)ArgKind.Integer); + writer.Write((byte)ArgKind.Integer); writer.Write(i); break; case bool b: - writer.Write((int)ArgKind.Boolean); + writer.Write((byte)ArgKind.Boolean); writer.Write(b); break; - case null: - writer.Write((int)ArgKind.String); - writer.WriteNil(); - break; - case var arg: ThrowNotSupported(arg.GetType()); break; @@ -171,7 +184,7 @@ public override void Skim(ref MessagePackReader reader, SerializerCachingOptions var count = reader.ReadArrayHeader(); - var documentationKind = (DocumentationKind)reader.ReadInt32(); + var documentationKind = (DocumentationKind)reader.ReadByte(); switch (documentationKind) { @@ -217,7 +230,7 @@ static void SkimArg(ref MessagePackReader reader, SerializerCachingOptions optio return; } - var argKind = (ArgKind)reader.ReadInt32(); + var argKind = (ArgKind)reader.ReadByte(); switch (argKind) { diff --git a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Formatters/TagHelpers/TypeNameObjectFormatter.cs b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Formatters/TagHelpers/TypeNameObjectFormatter.cs new file mode 100644 index 00000000000..3d83f2e4818 --- /dev/null +++ b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Formatters/TagHelpers/TypeNameObjectFormatter.cs @@ -0,0 +1,98 @@ +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the MIT license. See License.txt in the project root for license information. + +using MessagePack; +using Microsoft.AspNetCore.Razor; +using Microsoft.AspNetCore.Razor.Language; + +namespace Microsoft.CodeAnalysis.Razor.Serialization.MessagePack.Formatters.TagHelpers; + +internal sealed class TypeNameObjectFormatter : ValueFormatter +{ + private enum TypeNameKind : byte + { + Index, + String + } + + private const int PropertyCount = 2; + + public static readonly ValueFormatter Instance = new TypeNameObjectFormatter(); + + private TypeNameObjectFormatter() + { + } + + public override TypeNameObject Deserialize(ref MessagePackReader reader, SerializerCachingOptions options) + { + if (reader.TryReadNil()) + { + return default; + } + + reader.ReadArrayHeaderAndVerify(PropertyCount); + + var typeNameKind = (TypeNameKind)reader.ReadByte(); + + switch (typeNameKind) + { + case TypeNameKind.Index: + var index = reader.ReadByte(); + return new(index); + case TypeNameKind.String: + var fullName = CachedStringFormatter.Instance.Deserialize(ref reader, options).AssumeNotNull(); + return new(fullName); + + default: + return Assumed.Unreachable(); + } + } + + public override void Serialize(ref MessagePackWriter writer, TypeNameObject value, SerializerCachingOptions options) + { + if (value.IsNull) + { + writer.WriteNil(); + return; + } + + writer.WriteArrayHeader(PropertyCount); + + if (value.Index is byte index) + { + writer.Write((byte)TypeNameKind.Index); + writer.Write(index); + } + else if (value.StringValue is string stringValue) + { + writer.Write((byte)TypeNameKind.String); + CachedStringFormatter.Instance.Serialize(ref writer, stringValue, options); + } + else + { + Assumed.Unreachable(); + } + } + + public override void Skim(ref MessagePackReader reader, SerializerCachingOptions options) + { + if (reader.TryReadNil()) + { + return; + } + + reader.ReadArrayHeaderAndVerify(PropertyCount); + + var typeNameKind = (TypeNameKind)reader.ReadByte(); + switch (typeNameKind) + { + case TypeNameKind.Index: + reader.Skip(); // Index + break; + + case TypeNameKind.String: + CachedStringFormatter.Instance.Skim(ref reader, options); // StringValue + break; + } + } +} diff --git a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Resolvers/FetchTagHelpersResultResolver.cs b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Resolvers/FetchTagHelpersResultResolver.cs index fb489d20ce5..35837b598e5 100644 --- a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Resolvers/FetchTagHelpersResultResolver.cs +++ b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Resolvers/FetchTagHelpersResultResolver.cs @@ -48,7 +48,8 @@ private static class TypeToFormatterMap RazorDiagnosticFormatter.Instance, RequiredAttributeFormatter.Instance, TagHelperFormatter.Instance, - TagMatchingRuleFormatter.Instance + TagMatchingRuleFormatter.Instance, + TypeNameObjectFormatter.Instance }; public static object? GetFormatter(Type t) diff --git a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Resolvers/RazorProjectInfoResolver.cs b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Resolvers/RazorProjectInfoResolver.cs index fb764bb8fe3..c920aaf2d3f 100644 --- a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Resolvers/RazorProjectInfoResolver.cs +++ b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/Resolvers/RazorProjectInfoResolver.cs @@ -54,6 +54,7 @@ private static class TypeToFormatterMap RequiredAttributeFormatter.Instance, TagHelperFormatter.Instance, TagMatchingRuleFormatter.Instance, + TypeNameObjectFormatter.Instance }; public static object? GetFormatter(Type t) diff --git a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/SerializationFormat.cs b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/SerializationFormat.cs index 6a7c6afac32..47a3baa3df5 100644 --- a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/SerializationFormat.cs +++ b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Serialization/MessagePack/SerializationFormat.cs @@ -9,5 +9,5 @@ internal static class SerializationFormat // or any of the types that compose it changes. This includes: RazorConfiguration, // ProjectWorkspaceState, TagHelperDescriptor, and DocumentSnapshotHandle. // NOTE: If this version is changed, a coordinated insertion is required between Roslyn and Razor for the C# extension. - public const int Version = 9; + public const int Version = 10; } diff --git a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Tooltip/BoundAttributeDescriptionInfo.cs b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Tooltip/BoundAttributeDescriptionInfo.cs index 5445feddf2d..4d2a563a774 100644 --- a/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Tooltip/BoundAttributeDescriptionInfo.cs +++ b/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Tooltip/BoundAttributeDescriptionInfo.cs @@ -21,7 +21,7 @@ public static BoundAttributeDescriptionInfo From(BoundAttributeParameterDescript throw new ArgumentNullException(nameof(parentTagHelperTypeName)); } - var propertyName = parameterAttribute.GetPropertyName().AssumeNotNull(); + var propertyName = parameterAttribute.PropertyName; return new BoundAttributeDescriptionInfo( parameterAttribute.TypeName, diff --git a/src/Razor/test/Microsoft.AspNetCore.Razor.Test.Common.Tooling/SimpleTagHelpers.cs b/src/Razor/test/Microsoft.AspNetCore.Razor.Test.Common.Tooling/SimpleTagHelpers.cs index 6d9153ee593..69c0970bb35 100644 --- a/src/Razor/test/Microsoft.AspNetCore.Razor.Test.Common.Tooling/SimpleTagHelpers.cs +++ b/src/Razor/test/Microsoft.AspNetCore.Razor.Test.Common.Tooling/SimpleTagHelpers.cs @@ -122,9 +122,8 @@ static SimpleTagHelpers() attribute.BindAttributeParameter(parameter => { parameter.Name = "something"; + parameter.PropertyName = "Something"; parameter.TypeName = typeof(string).FullName; - - parameter.SetMetadata(PropertyName("Something")); }); }); directiveAttribute1.SetMetadata( @@ -160,9 +159,8 @@ static SimpleTagHelpers() attribute.BindAttributeParameter(parameter => { parameter.Name = "something"; + parameter.PropertyName = "Something"; parameter.TypeName = typeof(string).FullName; - - parameter.SetMetadata(PropertyName("Something")); }); }); directiveAttribute2.SetMetadata( diff --git a/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/JsonDataReader.cs b/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/JsonDataReader.cs index b395ef9c97b..28b48dde3b3 100644 --- a/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/JsonDataReader.cs +++ b/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/JsonDataReader.cs @@ -40,7 +40,9 @@ private JsonDataReader() { } + public bool IsInteger => _reader.TokenType == JsonToken.Integer; public bool IsObjectStart => _reader.TokenType == JsonToken.StartObject; + public bool IsString => _reader.TokenType == JsonToken.String; public bool IsPropertyName(string propertyName) => _reader.TokenType == JsonToken.PropertyName && @@ -137,6 +139,41 @@ public bool TryReadBoolean(string propertyName, out bool value) return false; } + public byte ReadByte() + { + _reader.CheckToken(JsonToken.Integer); + + var result = Convert.ToByte(_reader.Value); + _reader.Read(); + + return result; + } + + public byte ReadByteOrDefault(string propertyName, byte defaultValue = default) + => TryReadPropertyName(propertyName) ? ReadByte() : defaultValue; + + public byte ReadByteOrZero(string propertyName) + => TryReadPropertyName(propertyName) ? ReadByte() : (byte)0; + + public bool TryReadByte(string propertyName, out byte value) + { + if (TryReadPropertyName(propertyName)) + { + value = ReadByte(); + return true; + } + + value = default; + return false; + } + + public byte ReadByte(string propertyName) + { + ReadPropertyName(propertyName); + + return ReadByte(); + } + public int ReadInt32() { _reader.CheckToken(JsonToken.Integer); diff --git a/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/JsonDataWriter.cs b/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/JsonDataWriter.cs index 34bb0fca7c0..33a4a3ecee3 100644 --- a/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/JsonDataWriter.cs +++ b/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/JsonDataWriter.cs @@ -68,6 +68,30 @@ public void WriteIfNotFalse(string propertyName, bool value) } } + public void Write(byte value) + { + _writer.WriteValue(value); + } + + public void Write(string propertyName, byte value) + { + _writer.WritePropertyName(propertyName); + _writer.WriteValue(value); + } + + public void WriteIfNotZero(string propertyName, byte value) + { + WriteIfNotDefault(propertyName, value, defaultValue: (byte)0); + } + + public void WriteIfNotDefault(string propertyName, byte value, byte defaultValue) + { + if (value != defaultValue) + { + Write(propertyName, value); + } + } + public void Write(int value) { _writer.WriteValue(value); diff --git a/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/ObjectReaders_TagHelpers.cs b/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/ObjectReaders_TagHelpers.cs index 7ee4a0d6a03..9d0a49a52d8 100644 --- a/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/ObjectReaders_TagHelpers.cs +++ b/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/ObjectReaders_TagHelpers.cs @@ -1,6 +1,7 @@ // Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT license. See License.txt in the project root for license information. +using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using Microsoft.AspNetCore.Razor.Language; #if JSONSERIALIZATION_ENABLETAGHELPERCACHE @@ -183,20 +184,15 @@ static BoundAttributeParameterDescriptor ReadBoundAttributeParameter(JsonDataRea static BoundAttributeParameterDescriptor ReadFromProperties(JsonDataReader reader) { + var flags = (BoundAttributeParameterFlags)reader.ReadInt32(nameof(BoundAttributeParameterDescriptor.Flags)); var name = reader.ReadString(nameof(BoundAttributeParameterDescriptor.Name)); - var typeName = reader.ReadNonNullString(nameof(BoundAttributeParameterDescriptor.TypeName)); - var isEnum = reader.ReadBooleanOrFalse(nameof(BoundAttributeParameterDescriptor.IsEnum)); - var displayName = reader.ReadNonNullString(nameof(BoundAttributeParameterDescriptor.DisplayName)); + var propertyName = reader.ReadNonNullString(nameof(BoundAttributeParameterDescriptor.PropertyName)); + var typeNameObject = ReadTypeNameObject(reader, nameof(BoundAttributeParameterDescriptor.TypeName)); var documentationObject = ReadDocumentationObject(reader, nameof(BoundAttributeParameterDescriptor.Documentation)); - var caseSensitive = reader.ReadBooleanOrTrue(nameof(BoundAttributeParameterDescriptor.CaseSensitive)); - - var metadata = ReadMetadata(reader, nameof(RequiredAttributeDescriptor.Metadata)); var diagnostics = reader.ReadImmutableArrayOrEmpty(nameof(BoundAttributeParameterDescriptor.Diagnostics), ReadDiagnostic); return new BoundAttributeParameterDescriptor( - Cached(name)!, Cached(typeName), - isEnum, documentationObject, Cached(displayName), caseSensitive, - metadata, diagnostics); + flags, Cached(name)!, Cached(propertyName), typeNameObject, documentationObject, diagnostics); } } @@ -214,6 +210,25 @@ static AllowedChildTagDescriptor ReadFromProperties(JsonDataReader reader) } } + static TypeNameObject ReadTypeNameObject(JsonDataReader reader, string propertyName) + { + if (!reader.TryReadPropertyName(propertyName)) + { + return default; + } + + if (reader.IsInteger) + { + var index = reader.ReadByte(); + return new(index); + } + + Debug.Assert(reader.IsString); + + var fullName = reader.ReadNonNullString(); + return new(Cached(fullName)); + } + static DocumentationObject ReadDocumentationObject(JsonDataReader reader, string propertyName) { return reader.TryReadPropertyName(propertyName) diff --git a/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/ObjectWriters_TagHelpers.cs b/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/ObjectWriters_TagHelpers.cs index 60f8636d329..f03882cdb20 100644 --- a/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/ObjectWriters_TagHelpers.cs +++ b/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/ObjectWriters_TagHelpers.cs @@ -60,6 +60,18 @@ static void WriteDocumentationObject(JsonDataWriter writer, string propertyName, } } + static void WriteTypeNameObject(JsonDataWriter writer, string propertyName, TypeNameObject typeNameObject) + { + if (typeNameObject.Index is byte index) + { + writer.Write(propertyName, index); + } + else if (typeNameObject.StringValue is string stringValue) + { + writer.Write(propertyName, stringValue); + } + } + static void WriteTagMatchingRule(JsonDataWriter writer, TagMatchingRuleDescriptor value) { writer.WriteObject(value, static (writer, value) => @@ -115,14 +127,12 @@ static void WriteBoundAttributeParameter(JsonDataWriter writer, BoundAttributePa { writer.WriteObject(value, static (writer, value) => { + writer.Write(nameof(value.Flags), (byte)value.Flags); writer.Write(nameof(value.Name), value.Name); - writer.Write(nameof(value.TypeName), value.TypeName); - writer.WriteIfNotFalse(nameof(value.IsEnum), value.IsEnum); - writer.WriteIfNotNull(nameof(value.DisplayName), value.DisplayName); + writer.Write(nameof(value.PropertyName), value.PropertyName); + WriteTypeNameObject(writer, nameof(value.TypeName), value.TypeNameObject); WriteDocumentationObject(writer, nameof(value.Documentation), value.DocumentationObject); - writer.WriteIfNotTrue(nameof(value.CaseSensitive), value.CaseSensitive); - WriteMetadata(writer, nameof(value.Metadata), value.Metadata); writer.WriteArrayIfNotDefaultOrEmpty(nameof(value.Diagnostics), value.Diagnostics, Write); }); } diff --git a/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/SerializationFormat.cs b/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/SerializationFormat.cs index c4499f80372..b0e4af540c7 100644 --- a/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/SerializationFormat.cs +++ b/src/Shared/Microsoft.AspNetCore.Razor.Serialization.Json/SerializationFormat.cs @@ -9,5 +9,5 @@ internal static class SerializationFormat // or any of the types that compose it changes. This includes: RazorConfiguration, // ProjectWorkspaceState, TagHelperDescriptor, and DocumentSnapshotHandle. // NOTE: If this version is changed, a coordinated insertion is required between Roslyn and Razor for the C# extension. - public const int Version = 9; + public const int Version = 10; } diff --git a/src/Shared/files/Tooling/BlazorServerApp.TagHelpers.json b/src/Shared/files/Tooling/BlazorServerApp.TagHelpers.json index b96306264d7..815b0aa30d5 100644 --- a/src/Shared/files/Tooling/BlazorServerApp.TagHelpers.json +++ b/src/Shared/files/Tooling/BlazorServerApp.TagHelpers.json @@ -6242,10 +6242,10 @@ }, { "__Checksum": { - "Data1": 6047026887317017772, - "Data2": -4508084249633088946, - "Data3": -5927311961329022405, - "Data4": 9035981505318525756 + "Data1": -6465587773490381159, + "Data2": 7535074613755532958, + "Data3": -6597400106414466904, + "Data4": -4718295965203228666 }, "Kind": "Components.EventHandler", "Name": "onfocus", @@ -6311,31 +6311,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfocus" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfocus" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6358,10 +6354,10 @@ }, { "__Checksum": { - "Data1": 7332788971497905640, - "Data2": -8541963829760085535, - "Data3": 1430468808176028699, - "Data4": 1419625672529866908 + "Data1": 3922960561969939214, + "Data2": 2174238041354609490, + "Data3": 6278244008069449085, + "Data4": 7975697877211154135 }, "Kind": "Components.EventHandler", "Name": "onblur", @@ -6427,31 +6423,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onblur" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onblur" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6474,10 +6466,10 @@ }, { "__Checksum": { - "Data1": -5781133336234525322, - "Data2": 3719151934547428160, - "Data3": 5406025833203121897, - "Data4": -1476178686617567973 + "Data1": 3827718291310388734, + "Data2": -2988755441088730532, + "Data3": 926934914465422300, + "Data4": 1954337354554334265 }, "Kind": "Components.EventHandler", "Name": "onfocusin", @@ -6543,31 +6535,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfocusin" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfocusin" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6590,10 +6578,10 @@ }, { "__Checksum": { - "Data1": -1693134630263997206, - "Data2": -533288755180455703, - "Data3": 2719322161973441581, - "Data4": 5318341378063528532 + "Data1": -3522629918317327344, + "Data2": -1485009587756691819, + "Data3": 1807056340270892927, + "Data4": 5991603992002843538 }, "Kind": "Components.EventHandler", "Name": "onfocusout", @@ -6659,31 +6647,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfocusout" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfocusout" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6706,10 +6690,10 @@ }, { "__Checksum": { - "Data1": -2607626939905438992, - "Data2": -1036478999287336737, - "Data3": 8144846070015279171, - "Data4": -6084546997573366169 + "Data1": 4719679284010052614, + "Data2": -6037487177636854366, + "Data3": 3980125903044192178, + "Data4": -1160956382569708684 }, "Kind": "Components.EventHandler", "Name": "onmouseover", @@ -6775,31 +6759,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseover" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseover" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6822,10 +6802,10 @@ }, { "__Checksum": { - "Data1": 2496264225608889538, - "Data2": 1835166405042331793, - "Data3": -2805646357002840381, - "Data4": -3740422317011027010 + "Data1": -2517308608647479670, + "Data2": -5139125921065721692, + "Data3": 3322751183034831620, + "Data4": -5611729191927699236 }, "Kind": "Components.EventHandler", "Name": "onmouseout", @@ -6891,31 +6871,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseout" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseout" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6938,10 +6914,10 @@ }, { "__Checksum": { - "Data1": 2665527030597264325, - "Data2": 442339100000135636, - "Data3": 7742313068710279026, - "Data4": -4554407899484104843 + "Data1": -8999018585483935701, + "Data2": -3890567381620569097, + "Data3": -5100889117651095789, + "Data4": -6863457054907620445 }, "Kind": "Components.EventHandler", "Name": "onmousemove", @@ -7007,31 +6983,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmousemove" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmousemove" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7054,10 +7026,10 @@ }, { "__Checksum": { - "Data1": -3245687421161492477, - "Data2": 481036742404428755, - "Data3": -8499383570115558517, - "Data4": -4009137393771576123 + "Data1": -7527427037382849112, + "Data2": 4042853249102039431, + "Data3": -4167170694211966184, + "Data4": -2180020198076536278 }, "Kind": "Components.EventHandler", "Name": "onmousedown", @@ -7123,31 +7095,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmousedown" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmousedown" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7170,10 +7138,10 @@ }, { "__Checksum": { - "Data1": 6811149048034138543, - "Data2": 9055346314194565790, - "Data3": 6218743337272204781, - "Data4": 494487771164003491 + "Data1": 1499097655157122654, + "Data2": 4011670832160661146, + "Data3": -3017464299655988853, + "Data4": 5331598497616975675 }, "Kind": "Components.EventHandler", "Name": "onmouseup", @@ -7239,31 +7207,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseup" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseup" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7286,10 +7250,10 @@ }, { "__Checksum": { - "Data1": -5216193914736213729, - "Data2": 7300246371238740720, - "Data3": -323831195702061987, - "Data4": -5814794816245574342 + "Data1": 5842743917841288001, + "Data2": -2264286113015980950, + "Data3": -7244925475129355886, + "Data4": 4299288348001316974 }, "Kind": "Components.EventHandler", "Name": "onclick", @@ -7355,31 +7319,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onclick" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onclick" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7402,10 +7362,10 @@ }, { "__Checksum": { - "Data1": 6968566271842145395, - "Data2": -17883870018577415, - "Data3": 208023758140888935, - "Data4": 2290473049761130632 + "Data1": 2620506878031740205, + "Data2": 141975143151795759, + "Data3": 5121298285083402139, + "Data4": -1960590552236709803 }, "Kind": "Components.EventHandler", "Name": "ondblclick", @@ -7471,31 +7431,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondblclick" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondblclick" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7518,10 +7474,10 @@ }, { "__Checksum": { - "Data1": -6832266313703754952, - "Data2": 8424878414357466395, - "Data3": -3630942783497325528, - "Data4": -8688959150094885914 + "Data1": -1018886666421110275, + "Data2": 812524389814512043, + "Data3": -5025771482729477954, + "Data4": -1403302363189702754 }, "Kind": "Components.EventHandler", "Name": "onwheel", @@ -7587,31 +7543,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onwheel" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onwheel" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7634,10 +7586,10 @@ }, { "__Checksum": { - "Data1": 4728781118904122511, - "Data2": -1283512924236747993, - "Data3": -3466031805110974420, - "Data4": 5339080886917887668 + "Data1": 8455769333687009820, + "Data2": 5742320475525345635, + "Data3": 2267392040673083720, + "Data4": 1353306075721455459 }, "Kind": "Components.EventHandler", "Name": "onmousewheel", @@ -7703,31 +7655,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmousewheel" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmousewheel" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7750,10 +7698,10 @@ }, { "__Checksum": { - "Data1": 8023485693772935410, - "Data2": -1364693856223591523, - "Data3": -1379191194653808512, - "Data4": 7011513567773879467 + "Data1": 5866507126627341590, + "Data2": 2936673807454416411, + "Data3": -5290716116845906785, + "Data4": 8363257237998436509 }, "Kind": "Components.EventHandler", "Name": "oncontextmenu", @@ -7819,31 +7767,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncontextmenu" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncontextmenu" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7866,10 +7810,10 @@ }, { "__Checksum": { - "Data1": -2181225571089942960, - "Data2": 8259409794359197167, - "Data3": 3031186878260122362, - "Data4": 5383033199240539373 + "Data1": 7181065197870870517, + "Data2": 3084007880969192524, + "Data3": -227946195396508294, + "Data4": 5704366182847069435 }, "Kind": "Components.EventHandler", "Name": "ondrag", @@ -7935,31 +7879,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondrag" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondrag" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7982,10 +7922,10 @@ }, { "__Checksum": { - "Data1": -4811802129701968717, - "Data2": -4681333014681454993, - "Data3": 4456880278066877224, - "Data4": -9006292183047762700 + "Data1": 9138138522320706846, + "Data2": 8917470108640680039, + "Data3": -1090110288218714537, + "Data4": 8156552988483215598 }, "Kind": "Components.EventHandler", "Name": "ondragend", @@ -8051,31 +7991,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragend" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragend" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8098,10 +8034,10 @@ }, { "__Checksum": { - "Data1": -6654574822456750620, - "Data2": 8046154493035059423, - "Data3": -3112448663427061050, - "Data4": 5399061999628553092 + "Data1": 5993047465740969478, + "Data2": -645794873687625372, + "Data3": 4411793638442113045, + "Data4": -2182860268158911274 }, "Kind": "Components.EventHandler", "Name": "ondragenter", @@ -8167,31 +8103,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragenter" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragenter" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8214,10 +8146,10 @@ }, { "__Checksum": { - "Data1": -1577873322971605981, - "Data2": -2169806260402290491, - "Data3": -6410392401845890237, - "Data4": -2951589261288399266 + "Data1": 643961210950863711, + "Data2": -8679857167680824771, + "Data3": 3651588027436503457, + "Data4": -4711680326248175511 }, "Kind": "Components.EventHandler", "Name": "ondragleave", @@ -8283,31 +8215,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragleave" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragleave" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8330,10 +8258,10 @@ }, { "__Checksum": { - "Data1": -2608174897690276432, - "Data2": 2038599822250087783, - "Data3": 3254757248611194109, - "Data4": 2243603005428566409 + "Data1": -5307007483605923523, + "Data2": 595504818010280652, + "Data3": -231275281916851905, + "Data4": -6168021898791241900 }, "Kind": "Components.EventHandler", "Name": "ondragover", @@ -8399,31 +8327,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragover" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragover" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8446,10 +8370,10 @@ }, { "__Checksum": { - "Data1": -6094446339351077495, - "Data2": -8160353778039689611, - "Data3": -3485188431078549341, - "Data4": 8855134020084022660 + "Data1": 4997880789409733277, + "Data2": 4062967912102442479, + "Data3": -3274980429523621759, + "Data4": 8344879387406235935 }, "Kind": "Components.EventHandler", "Name": "ondragstart", @@ -8515,31 +8439,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragstart" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragstart" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8562,10 +8482,10 @@ }, { "__Checksum": { - "Data1": 6768543876078749417, - "Data2": -7653673437507506953, - "Data3": 3832452929334985725, - "Data4": -8024435062539759732 + "Data1": -5117519943565302600, + "Data2": -282535833899837640, + "Data3": -587826129906022188, + "Data4": -5186587993067057403 }, "Kind": "Components.EventHandler", "Name": "ondrop", @@ -8631,31 +8551,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondrop" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondrop" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8678,10 +8594,10 @@ }, { "__Checksum": { - "Data1": -904106963592523608, - "Data2": -2479391200992788997, - "Data3": -3125341680503857394, - "Data4": -4495946951115286801 + "Data1": -4488320895469629587, + "Data2": -4354446904858488124, + "Data3": 3476068273635033022, + "Data4": -2378627222450335552 }, "Kind": "Components.EventHandler", "Name": "onkeydown", @@ -8747,31 +8663,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onkeydown" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onkeydown" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8794,10 +8706,10 @@ }, { "__Checksum": { - "Data1": -2762540601503860190, - "Data2": 6537596651685718742, - "Data3": -4968777981327903699, - "Data4": 5445638825637714351 + "Data1": -3065544849487249174, + "Data2": 7275382063339441280, + "Data3": 4257418289076185769, + "Data4": 4650954062822818606 }, "Kind": "Components.EventHandler", "Name": "onkeyup", @@ -8863,31 +8775,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onkeyup" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onkeyup" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8910,10 +8818,10 @@ }, { "__Checksum": { - "Data1": -3150386372233545282, - "Data2": 3872706444740851607, - "Data3": -5003909694691906593, - "Data4": 2767105148129643530 + "Data1": 2684959576086536102, + "Data2": -2060164410703761768, + "Data3": 6053754243341442598, + "Data4": -7692618678005444574 }, "Kind": "Components.EventHandler", "Name": "onkeypress", @@ -8979,31 +8887,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onkeypress" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onkeypress" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9026,10 +8930,10 @@ }, { "__Checksum": { - "Data1": -5739078806659387639, - "Data2": 6990517037142761482, - "Data3": 3255874663260615120, - "Data4": -536866768904251924 + "Data1": -7584621526987209222, + "Data2": 6296633483679274967, + "Data3": 4108917095665830259, + "Data4": 8728791231176131261 }, "Kind": "Components.EventHandler", "Name": "onchange", @@ -9095,31 +8999,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9142,10 +9042,10 @@ }, { "__Checksum": { - "Data1": 20872680784986129, - "Data2": -1280628360868871018, - "Data3": 4599508431640933635, - "Data4": 5310881484231576393 + "Data1": 4023366590626973548, + "Data2": -4000437393701196393, + "Data3": -5453294020141143770, + "Data4": -7793400469412774879 }, "Kind": "Components.EventHandler", "Name": "oninput", @@ -9211,31 +9111,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oninput" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oninput" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9258,10 +9154,10 @@ }, { "__Checksum": { - "Data1": -2398474118270879716, - "Data2": 1941517868360774955, - "Data3": 6049640605823773064, - "Data4": 884354251738426809 + "Data1": -5302080963814639005, + "Data2": -5382300485274367385, + "Data3": 4309544325908333913, + "Data4": -8220266761205956267 }, "Kind": "Components.EventHandler", "Name": "oninvalid", @@ -9327,31 +9223,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oninvalid" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oninvalid" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9374,10 +9266,10 @@ }, { "__Checksum": { - "Data1": -2354917177562196159, - "Data2": -3044088487990651744, - "Data3": 8886614317634031584, - "Data4": -4727253319280409082 + "Data1": 8734858102839951686, + "Data2": -2347259868355024479, + "Data3": 2145930144175565539, + "Data4": 6083241797791414271 }, "Kind": "Components.EventHandler", "Name": "onreset", @@ -9443,31 +9335,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onreset" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onreset" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9490,10 +9378,10 @@ }, { "__Checksum": { - "Data1": -1058526240597162816, - "Data2": 532131020924320221, - "Data3": 1602963208656305535, - "Data4": 1088787240367428204 + "Data1": -2088011628329944041, + "Data2": -4999546565367881781, + "Data3": 7471613055237126019, + "Data4": 8330518124309523037 }, "Kind": "Components.EventHandler", "Name": "onselect", @@ -9559,31 +9447,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onselect" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onselect" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9606,10 +9490,10 @@ }, { "__Checksum": { - "Data1": 3093537362408529852, - "Data2": -6813613706441731119, - "Data3": 5163333025208264432, - "Data4": 2321339005933797191 + "Data1": -5288273382229968961, + "Data2": -42001991506114637, + "Data3": -3758671851226525360, + "Data4": -7595366435962408260 }, "Kind": "Components.EventHandler", "Name": "onselectstart", @@ -9675,31 +9559,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onselectstart" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onselectstart" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9722,10 +9602,10 @@ }, { "__Checksum": { - "Data1": -6247529119239298926, - "Data2": -4063912787643106663, - "Data3": 2756237083891577198, - "Data4": 6432983232027926564 + "Data1": 906694272796350418, + "Data2": -9007971882201471679, + "Data3": -524300612543727045, + "Data4": -3973740341548814289 }, "Kind": "Components.EventHandler", "Name": "onselectionchange", @@ -9791,31 +9671,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onselectionchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onselectionchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9838,10 +9714,10 @@ }, { "__Checksum": { - "Data1": 5544819165240136666, - "Data2": -7799328468831322369, - "Data3": 4122373302443374790, - "Data4": -3513063458097030914 + "Data1": 6767276106165310419, + "Data2": -5621542771004110853, + "Data3": 3866828061693883018, + "Data4": 3959111927254083025 }, "Kind": "Components.EventHandler", "Name": "onsubmit", @@ -9907,31 +9783,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onsubmit" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onsubmit" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9954,10 +9826,10 @@ }, { "__Checksum": { - "Data1": 5290056762375420873, - "Data2": -419029537866716364, - "Data3": -2345555909528925902, - "Data4": 5919307106818556317 + "Data1": -7962864395333347053, + "Data2": -7068272891191157547, + "Data3": -8482247690341826270, + "Data4": 1177052501507779085 }, "Kind": "Components.EventHandler", "Name": "onbeforecopy", @@ -10023,31 +9895,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforecopy" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforecopy" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10070,10 +9938,10 @@ }, { "__Checksum": { - "Data1": 4761396429330858649, - "Data2": -1598036257954584694, - "Data3": -5117456029749091660, - "Data4": 6309486742728624793 + "Data1": 733722938788303854, + "Data2": 5718205123590306890, + "Data3": 4968932478876794348, + "Data4": 7931037784533220902 }, "Kind": "Components.EventHandler", "Name": "onbeforecut", @@ -10139,31 +10007,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforecut" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforecut" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10186,10 +10050,10 @@ }, { "__Checksum": { - "Data1": 1029372928366886531, - "Data2": 8104661957776323837, - "Data3": 1509677230915956677, - "Data4": -6355782764987233093 + "Data1": 5195515156876521644, + "Data2": -83820529944840325, + "Data3": 5098380854634285425, + "Data4": 2254230579666312180 }, "Kind": "Components.EventHandler", "Name": "onbeforepaste", @@ -10255,31 +10119,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforepaste" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforepaste" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10302,10 +10162,10 @@ }, { "__Checksum": { - "Data1": -7705251047584511333, - "Data2": 8002701997274286947, - "Data3": -1676600895832769461, - "Data4": 2245694104751163838 + "Data1": 5785815391833969144, + "Data2": 7426433522232774266, + "Data3": 9038206878593963880, + "Data4": 3254114237675633096 }, "Kind": "Components.EventHandler", "Name": "oncopy", @@ -10371,31 +10231,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncopy" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncopy" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10418,10 +10274,10 @@ }, { "__Checksum": { - "Data1": -7416992712423089233, - "Data2": 4449370565921709650, - "Data3": -6437785349582923886, - "Data4": -2801190639824190532 + "Data1": -2609897972982771624, + "Data2": 7922590185429854174, + "Data3": -3390296626931518695, + "Data4": -2409953976955017726 }, "Kind": "Components.EventHandler", "Name": "oncut", @@ -10487,31 +10343,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncut" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncut" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10534,10 +10386,10 @@ }, { "__Checksum": { - "Data1": 1330559035022496075, - "Data2": -4460978051811237857, - "Data3": 4695250384772663299, - "Data4": -7717757570830372855 + "Data1": 7376445045194540373, + "Data2": -9112356877100429819, + "Data3": -2380530598642118551, + "Data4": -7873051073718984526 }, "Kind": "Components.EventHandler", "Name": "onpaste", @@ -10603,31 +10455,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpaste" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpaste" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10650,10 +10498,10 @@ }, { "__Checksum": { - "Data1": -5305018988864397513, - "Data2": -7056861188320643127, - "Data3": 4138462206631949520, - "Data4": 1287681477163409205 + "Data1": 5056866497218561842, + "Data2": 4051360251600008758, + "Data3": -1883731599349537376, + "Data4": 5490887723705191254 }, "Kind": "Components.EventHandler", "Name": "ontouchcancel", @@ -10719,31 +10567,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchcancel" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchcancel" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10766,10 +10610,10 @@ }, { "__Checksum": { - "Data1": 564116037820298704, - "Data2": -1057279746178053957, - "Data3": 9014585644924556968, - "Data4": -387530969364403907 + "Data1": -4280006762647084968, + "Data2": 4784687432975891540, + "Data3": -2610726941771164358, + "Data4": 9101273155625600638 }, "Kind": "Components.EventHandler", "Name": "ontouchend", @@ -10835,31 +10679,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchend" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchend" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10882,10 +10722,10 @@ }, { "__Checksum": { - "Data1": -8675233277290799136, - "Data2": -5643826883035093936, - "Data3": -6576035289012049613, - "Data4": -8251539618503399646 + "Data1": 4150334943984926387, + "Data2": -1730547721487666194, + "Data3": 5915207751029640734, + "Data4": 2626361866656274122 }, "Kind": "Components.EventHandler", "Name": "ontouchmove", @@ -10951,31 +10791,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchmove" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchmove" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10998,10 +10834,10 @@ }, { "__Checksum": { - "Data1": -3443756728771598432, - "Data2": 2835526665684590414, - "Data3": 8274112597837107412, - "Data4": 9084919052569765732 + "Data1": 1471835487647021681, + "Data2": -1804324470531860128, + "Data3": -4436570376778556838, + "Data4": 6623868717126983394 }, "Kind": "Components.EventHandler", "Name": "ontouchstart", @@ -11067,31 +10903,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchstart" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchstart" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11114,10 +10946,10 @@ }, { "__Checksum": { - "Data1": 6827428511433383785, - "Data2": 4880809401438293803, - "Data3": -6694443512408380021, - "Data4": -2704006860198456434 + "Data1": -7460631154571318862, + "Data2": -2424658594096228664, + "Data3": -8924327641613131363, + "Data4": 7709986489448240830 }, "Kind": "Components.EventHandler", "Name": "ontouchenter", @@ -11183,31 +11015,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchenter" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchenter" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11230,10 +11058,10 @@ }, { "__Checksum": { - "Data1": 1680911349423367456, - "Data2": -304063173116270662, - "Data3": -379129983034387056, - "Data4": 81003187346916834 + "Data1": 1206477914866130555, + "Data2": -827543412384579740, + "Data3": 5664104254253767115, + "Data4": 1325744795667415854 }, "Kind": "Components.EventHandler", "Name": "ontouchleave", @@ -11299,31 +11127,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchleave" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchleave" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11346,10 +11170,10 @@ }, { "__Checksum": { - "Data1": 3425892492955859449, - "Data2": -580168571579207205, - "Data3": 7599035357894044036, - "Data4": 679416671753898484 + "Data1": -5071805037143667245, + "Data2": 2784887102994723699, + "Data3": -5821858542529465344, + "Data4": -6075492442609413063 }, "Kind": "Components.EventHandler", "Name": "ongotpointercapture", @@ -11415,31 +11239,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ongotpointercapture" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ongotpointercapture" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11462,10 +11282,10 @@ }, { "__Checksum": { - "Data1": -4474978641456041565, - "Data2": -5110195079129352476, - "Data3": -4645550538575791547, - "Data4": -6291765634598000623 + "Data1": 4234935237194607603, + "Data2": 4666086240833797740, + "Data3": -8190592873098651197, + "Data4": 4815966663442635767 }, "Kind": "Components.EventHandler", "Name": "onlostpointercapture", @@ -11531,31 +11351,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onlostpointercapture" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onlostpointercapture" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11578,10 +11394,10 @@ }, { "__Checksum": { - "Data1": 1379338898289528175, - "Data2": 2585187423364263082, - "Data3": -6325028203201766155, - "Data4": -6309337970068528705 + "Data1": 1501806557496147984, + "Data2": 8800865181144088021, + "Data3": 7245324866050579704, + "Data4": 4143059404539196834 }, "Kind": "Components.EventHandler", "Name": "onpointercancel", @@ -11647,31 +11463,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointercancel" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointercancel" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11694,10 +11506,10 @@ }, { "__Checksum": { - "Data1": -2553259661874421168, - "Data2": -4493759146170282767, - "Data3": -4168597998860204671, - "Data4": -4969987990483598350 + "Data1": 7021801142064366064, + "Data2": 4913943734187142819, + "Data3": 5353043824189147667, + "Data4": -5986691567274862652 }, "Kind": "Components.EventHandler", "Name": "onpointerdown", @@ -11763,31 +11575,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerdown" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerdown" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11810,10 +11618,10 @@ }, { "__Checksum": { - "Data1": 2700463498781894171, - "Data2": -6602539361139634558, - "Data3": 7558205690610402624, - "Data4": 2496123374629508907 + "Data1": 6482496106735241507, + "Data2": -5632006137845861053, + "Data3": -5902478731819820985, + "Data4": -4861547872203913897 }, "Kind": "Components.EventHandler", "Name": "onpointerenter", @@ -11879,31 +11687,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerenter" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerenter" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11926,10 +11730,10 @@ }, { "__Checksum": { - "Data1": 5539970425595830600, - "Data2": 7021769284836871079, - "Data3": 7611456839823976789, - "Data4": -5944920644924701866 + "Data1": -2362876619405756834, + "Data2": 1690387501013985772, + "Data3": 6018500545669392927, + "Data4": 6825138873003342529 }, "Kind": "Components.EventHandler", "Name": "onpointerleave", @@ -11995,31 +11799,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerleave" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerleave" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12042,10 +11842,10 @@ }, { "__Checksum": { - "Data1": -711564165081807438, - "Data2": 4520308147072737518, - "Data3": 5103176159753468431, - "Data4": 4251400873142575344 + "Data1": -8413602580205111867, + "Data2": -5700767381511039156, + "Data3": -298499902154277031, + "Data4": -1971877250491053743 }, "Kind": "Components.EventHandler", "Name": "onpointermove", @@ -12111,31 +11911,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointermove" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointermove" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12158,10 +11954,10 @@ }, { "__Checksum": { - "Data1": 1001738969538072012, - "Data2": -5378665257954222229, - "Data3": -136768412375561435, - "Data4": -7659708495786581435 + "Data1": 2144864367700287499, + "Data2": 4423494774394580856, + "Data3": -8162909701359617749, + "Data4": -1934638848813298266 }, "Kind": "Components.EventHandler", "Name": "onpointerout", @@ -12227,31 +12023,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerout" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerout" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12274,10 +12066,10 @@ }, { "__Checksum": { - "Data1": 2031745077191260163, - "Data2": 2836951590382653926, - "Data3": 106896774618161384, - "Data4": -1429047874143825742 + "Data1": -4832915731373040927, + "Data2": -3645379124209717938, + "Data3": 5090595826452547610, + "Data4": -5721662004122803061 }, "Kind": "Components.EventHandler", "Name": "onpointerover", @@ -12343,31 +12135,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerover" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerover" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12390,10 +12178,10 @@ }, { "__Checksum": { - "Data1": 6117797937985479587, - "Data2": 1424717631174450395, - "Data3": -8923540287425087243, - "Data4": 8680250377133975669 + "Data1": 6602855428127841735, + "Data2": -6959804828078026469, + "Data3": 3921474775593284583, + "Data4": -579299129316613531 }, "Kind": "Components.EventHandler", "Name": "onpointerup", @@ -12459,31 +12247,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerup" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerup" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12506,10 +12290,10 @@ }, { "__Checksum": { - "Data1": -259997514739446311, - "Data2": -3949862888780372812, - "Data3": -1971540590833930834, - "Data4": -4446709509104956028 + "Data1": -8517356995865596965, + "Data2": -992787950199641001, + "Data3": 8023591749468715182, + "Data4": -477094535197733868 }, "Kind": "Components.EventHandler", "Name": "oncanplay", @@ -12575,31 +12359,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncanplay" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncanplay" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12622,10 +12402,10 @@ }, { "__Checksum": { - "Data1": 3415187253573544380, - "Data2": 1357066540771817265, - "Data3": 1192668042235496698, - "Data4": 3365234440120081810 + "Data1": 4629118218007658177, + "Data2": -7241108023393395784, + "Data3": 3229008464593641698, + "Data4": -5784998754638029759 }, "Kind": "Components.EventHandler", "Name": "oncanplaythrough", @@ -12691,31 +12471,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncanplaythrough" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncanplaythrough" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12738,10 +12514,10 @@ }, { "__Checksum": { - "Data1": -6859297001923222178, - "Data2": 3763702373718469321, - "Data3": -6884798471578659041, - "Data4": -2690915798969206765 + "Data1": -5707088807687139046, + "Data2": -3539020173421035295, + "Data3": 5998176378940967845, + "Data4": -8845294488404047632 }, "Kind": "Components.EventHandler", "Name": "oncuechange", @@ -12807,31 +12583,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncuechange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncuechange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12854,10 +12626,10 @@ }, { "__Checksum": { - "Data1": 5748964994866444353, - "Data2": 289142820514211902, - "Data3": 1928142390738088083, - "Data4": -896830889325628076 + "Data1": -1788598345103024084, + "Data2": -682840718304328422, + "Data3": -5710148236194371533, + "Data4": 7470660248046215027 }, "Kind": "Components.EventHandler", "Name": "ondurationchange", @@ -12923,31 +12695,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondurationchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondurationchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12970,10 +12738,10 @@ }, { "__Checksum": { - "Data1": 5343605566184879157, - "Data2": -822614450025992430, - "Data3": 8858745392590378920, - "Data4": -3759863122199772294 + "Data1": -3625429067103254419, + "Data2": 4539422050649057828, + "Data3": -7631501157482005911, + "Data4": 4204638230042759551 }, "Kind": "Components.EventHandler", "Name": "onemptied", @@ -13039,31 +12807,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onemptied" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onemptied" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13086,10 +12850,10 @@ }, { "__Checksum": { - "Data1": 7587005031887781748, - "Data2": -6184883583454133435, - "Data3": -2165535750005891386, - "Data4": 6217643653631035442 + "Data1": -9146971396433179074, + "Data2": -5282983060336594145, + "Data3": -4779369206026873005, + "Data4": -94348007343300824 }, "Kind": "Components.EventHandler", "Name": "onpause", @@ -13155,31 +12919,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpause" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpause" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13202,10 +12962,10 @@ }, { "__Checksum": { - "Data1": -16286162747959751, - "Data2": -333266593655239970, - "Data3": -102706316696374390, - "Data4": -5520149497265258515 + "Data1": 1059137068162022950, + "Data2": -4215602002842057386, + "Data3": 6301567405147335341, + "Data4": 4696929276391390537 }, "Kind": "Components.EventHandler", "Name": "onplay", @@ -13271,31 +13031,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onplay" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onplay" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13318,10 +13074,10 @@ }, { "__Checksum": { - "Data1": -8529626627709558402, - "Data2": 8502471872827500829, - "Data3": 112137623713716468, - "Data4": 8107506951097989756 + "Data1": -5784475203072407219, + "Data2": 2860983261650190928, + "Data3": 631687845329009811, + "Data4": -5326089256190954983 }, "Kind": "Components.EventHandler", "Name": "onplaying", @@ -13387,31 +13143,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onplaying" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onplaying" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13434,10 +13186,10 @@ }, { "__Checksum": { - "Data1": -2243716971781356261, - "Data2": -2243486428670620248, - "Data3": 5247634082025144206, - "Data4": 6442960578843050166 + "Data1": -1968719276996210829, + "Data2": -4888372353790097486, + "Data3": -384622165291078470, + "Data4": 4454151101341103385 }, "Kind": "Components.EventHandler", "Name": "onratechange", @@ -13503,31 +13255,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onratechange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onratechange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13550,10 +13298,10 @@ }, { "__Checksum": { - "Data1": -7383429162636503294, - "Data2": -9136049703297292967, - "Data3": -1049917215045597375, - "Data4": -6144955766809190361 + "Data1": -5575277420642292460, + "Data2": 4804308430389093007, + "Data3": 3918461850642287482, + "Data4": 5057274518924628615 }, "Kind": "Components.EventHandler", "Name": "onseeked", @@ -13619,31 +13367,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onseeked" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onseeked" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13666,10 +13410,10 @@ }, { "__Checksum": { - "Data1": -7994337040615910904, - "Data2": -5885834839292246813, - "Data3": 2173347610538860248, - "Data4": 1840799941117240830 + "Data1": -5063494710674516762, + "Data2": 7410013601124139843, + "Data3": -583553163367105336, + "Data4": 3213876888019643959 }, "Kind": "Components.EventHandler", "Name": "onseeking", @@ -13735,31 +13479,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onseeking" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onseeking" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13782,10 +13522,10 @@ }, { "__Checksum": { - "Data1": 7623752215529251708, - "Data2": 823946282868141714, - "Data3": -6532523101154722281, - "Data4": 2265115827492901297 + "Data1": 6084103135700216292, + "Data2": 6429144624448735926, + "Data3": -8281887254098985812, + "Data4": -2690585504040709743 }, "Kind": "Components.EventHandler", "Name": "onstalled", @@ -13851,31 +13591,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onstalled" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onstalled" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13898,10 +13634,10 @@ }, { "__Checksum": { - "Data1": 5351662504777831591, - "Data2": 5536226642137423374, - "Data3": 3476856708771627053, - "Data4": 4772002411136580981 + "Data1": 246405243843322072, + "Data2": -8822349407240274097, + "Data3": -80538699882916434, + "Data4": 1570202605183528156 }, "Kind": "Components.EventHandler", "Name": "onstop", @@ -13967,31 +13703,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onstop" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onstop" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14014,10 +13746,10 @@ }, { "__Checksum": { - "Data1": -3773134486102041151, - "Data2": -5303691755979948328, - "Data3": -7386228779843377892, - "Data4": 3207053949499221222 + "Data1": 293528524221976117, + "Data2": -3366951729747817650, + "Data3": -5475163449206969678, + "Data4": 3690320208582785874 }, "Kind": "Components.EventHandler", "Name": "onsuspend", @@ -14083,31 +13815,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onsuspend" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onsuspend" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14130,10 +13858,10 @@ }, { "__Checksum": { - "Data1": 3312210782190908774, - "Data2": -8588219188621407725, - "Data3": -8109753740969381136, - "Data4": -2095251202158049885 + "Data1": 305507146321625271, + "Data2": 7173741238827226407, + "Data3": -1333007376625119472, + "Data4": -3143059708732953577 }, "Kind": "Components.EventHandler", "Name": "ontimeupdate", @@ -14199,31 +13927,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontimeupdate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontimeupdate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14246,10 +13970,10 @@ }, { "__Checksum": { - "Data1": -7305069800047749179, - "Data2": -5172920902383206331, - "Data3": 391015758867023567, - "Data4": 8482441857296557730 + "Data1": 1832092438189817910, + "Data2": -4154991746732791329, + "Data3": 976892343367997206, + "Data4": 45633615304561987 }, "Kind": "Components.EventHandler", "Name": "onvolumechange", @@ -14315,31 +14039,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onvolumechange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onvolumechange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14362,10 +14082,10 @@ }, { "__Checksum": { - "Data1": 593709650915600685, - "Data2": -307312212565857477, - "Data3": 6758294691376472510, - "Data4": -1572201468609100345 + "Data1": -6993783120374000756, + "Data2": 5847247330045731879, + "Data3": -7208229469270431962, + "Data4": -7864315108729487104 }, "Kind": "Components.EventHandler", "Name": "onwaiting", @@ -14431,31 +14151,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onwaiting" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onwaiting" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14478,10 +14194,10 @@ }, { "__Checksum": { - "Data1": 7882452388634032889, - "Data2": -3444398838505225659, - "Data3": 4799736048752651083, - "Data4": 1874463589560151822 + "Data1": -6285200834579135833, + "Data2": 2035732230181430265, + "Data3": 3609790375995416568, + "Data4": -6613225275514344390 }, "Kind": "Components.EventHandler", "Name": "onloadstart", @@ -14547,31 +14263,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onloadstart" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onloadstart" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14594,10 +14306,10 @@ }, { "__Checksum": { - "Data1": -3208865689752618202, - "Data2": -6039060768647787701, - "Data3": -6323819805002739290, - "Data4": -7064853970937689756 + "Data1": 1694150034442696923, + "Data2": 1069671084818358101, + "Data3": -3214492484340375293, + "Data4": -1326598221796717690 }, "Kind": "Components.EventHandler", "Name": "ontimeout", @@ -14663,31 +14375,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontimeout" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontimeout" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14710,10 +14418,10 @@ }, { "__Checksum": { - "Data1": 5517286596914179561, - "Data2": -230880993724126423, - "Data3": -4985188932476363437, - "Data4": -7924261506718931601 + "Data1": 2380563678566474524, + "Data2": -1136715120141684409, + "Data3": -1984682432189711320, + "Data4": 2062459213259058505 }, "Kind": "Components.EventHandler", "Name": "onabort", @@ -14779,31 +14487,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onabort" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onabort" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14826,10 +14530,10 @@ }, { "__Checksum": { - "Data1": 2640248037925490589, - "Data2": -389935676788374942, - "Data3": 7348422703346238091, - "Data4": 950949472204027613 + "Data1": 1893109679458908558, + "Data2": -7955171739830713350, + "Data3": -7143377721943900835, + "Data4": -2818643425800890408 }, "Kind": "Components.EventHandler", "Name": "onload", @@ -14895,31 +14599,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onload" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onload" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14942,10 +14642,10 @@ }, { "__Checksum": { - "Data1": 6361780924464596780, - "Data2": -1804182222262416346, - "Data3": 5584007445419305339, - "Data4": 2464241323453385090 + "Data1": 1773103568781512608, + "Data2": -5445138843615588881, + "Data3": -6756415198543367473, + "Data4": 1971274505118157439 }, "Kind": "Components.EventHandler", "Name": "onloadend", @@ -15011,31 +14711,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onloadend" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onloadend" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15058,10 +14754,10 @@ }, { "__Checksum": { - "Data1": -3987842527220306591, - "Data2": -6472666418911948201, - "Data3": 4474144720116591146, - "Data4": -4977092847955973775 + "Data1": -1761524245764503792, + "Data2": -5978964798168000293, + "Data3": 9011375316736691779, + "Data4": -441653473004576 }, "Kind": "Components.EventHandler", "Name": "onprogress", @@ -15127,31 +14823,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onprogress" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onprogress" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15174,10 +14866,10 @@ }, { "__Checksum": { - "Data1": 5480734986078559925, - "Data2": -9186361750575766070, - "Data3": 1258461978763052951, - "Data4": -2466887559970426836 + "Data1": 6760573744222223865, + "Data2": -3878583513165488469, + "Data3": 4521116122300886525, + "Data4": 2947477448943339481 }, "Kind": "Components.EventHandler", "Name": "onerror", @@ -15243,31 +14935,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onerror" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onerror" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15290,10 +14978,10 @@ }, { "__Checksum": { - "Data1": -3803670477853102010, - "Data2": -3353912797114447522, - "Data3": 3887447057752885684, - "Data4": -7871759346705495936 + "Data1": -7664205254589202189, + "Data2": -3453900203848537869, + "Data3": 5381695674163240261, + "Data4": 5140689584628676755 }, "Kind": "Components.EventHandler", "Name": "onactivate", @@ -15359,31 +15047,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onactivate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onactivate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15406,10 +15090,10 @@ }, { "__Checksum": { - "Data1": 8805204294556538525, - "Data2": -2356897028422896907, - "Data3": -8312013638718554443, - "Data4": -7994810128451906235 + "Data1": -1693746754447189996, + "Data2": -4305422666207016239, + "Data3": 3716145686732648141, + "Data4": -1211307605170481463 }, "Kind": "Components.EventHandler", "Name": "onbeforeactivate", @@ -15475,31 +15159,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15522,10 +15202,10 @@ }, { "__Checksum": { - "Data1": -8611419312725385816, - "Data2": -4139870421362047494, - "Data3": 4973600697304848632, - "Data4": 2472479503276106655 + "Data1": 1312066357581846522, + "Data2": -6727246692053051819, + "Data3": 6349367685571933293, + "Data4": -5989922618684855487 }, "Kind": "Components.EventHandler", "Name": "onbeforedeactivate", @@ -15591,31 +15271,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforedeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforedeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15638,10 +15314,10 @@ }, { "__Checksum": { - "Data1": 4791236511695847760, - "Data2": 312516141702812934, - "Data3": 8237704925604603450, - "Data4": -3937672952356560506 + "Data1": -8647793524939028632, + "Data2": 955743316717787413, + "Data3": 5859052869483680726, + "Data4": 7506331123294323471 }, "Kind": "Components.EventHandler", "Name": "ondeactivate", @@ -15707,31 +15383,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15754,10 +15426,10 @@ }, { "__Checksum": { - "Data1": 1936349161302817158, - "Data2": 2271322694401344492, - "Data3": -8339908410001989826, - "Data4": 7546429217263541845 + "Data1": 1906284907089214848, + "Data2": 443188841020385088, + "Data3": -5028477845044567293, + "Data4": -1850545874622278529 }, "Kind": "Components.EventHandler", "Name": "onended", @@ -15823,31 +15495,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onended" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onended" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15870,10 +15538,10 @@ }, { "__Checksum": { - "Data1": -5680030528602112438, - "Data2": -6320129605653645803, - "Data3": -7255378352851181249, - "Data4": -6002392956716526008 + "Data1": -396938278057026480, + "Data2": -7643873025564860557, + "Data3": -1229704884769523426, + "Data4": 5165627441129530916 }, "Kind": "Components.EventHandler", "Name": "onfullscreenchange", @@ -15939,31 +15607,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfullscreenchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfullscreenchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15986,10 +15650,10 @@ }, { "__Checksum": { - "Data1": 4781388477919751940, - "Data2": 8601929763457414002, - "Data3": -5778004181091268115, - "Data4": -1287845292857900007 + "Data1": 8455409692328489706, + "Data2": -8430176529168880915, + "Data3": 3283677877177499758, + "Data4": 413805143971355079 }, "Kind": "Components.EventHandler", "Name": "onfullscreenerror", @@ -16055,31 +15719,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfullscreenerror" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfullscreenerror" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16102,10 +15762,10 @@ }, { "__Checksum": { - "Data1": -911870474655330118, - "Data2": -1405496868336768916, - "Data3": 8390996053480263818, - "Data4": 5248373465439382189 + "Data1": -4454430292558936412, + "Data2": -1109499151669397957, + "Data3": -4197866983520898941, + "Data4": -1538235480261615795 }, "Kind": "Components.EventHandler", "Name": "onloadeddata", @@ -16171,31 +15831,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onloadeddata" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onloadeddata" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16218,10 +15874,10 @@ }, { "__Checksum": { - "Data1": 8370334749715402415, - "Data2": 8554880655860903061, - "Data3": -4476024602383204342, - "Data4": 3651343592203203583 + "Data1": 6862941353545766880, + "Data2": 7918769923840348038, + "Data3": -1948391046523206943, + "Data4": 2940449063330701396 }, "Kind": "Components.EventHandler", "Name": "onloadedmetadata", @@ -16287,31 +15943,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onloadedmetadata" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onloadedmetadata" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16334,10 +15986,10 @@ }, { "__Checksum": { - "Data1": -341901047023207503, - "Data2": -8495994002760927968, - "Data3": 261394283688568312, - "Data4": 315966696347312304 + "Data1": -5319856823806878114, + "Data2": 6640686403219892770, + "Data3": 6596596643185515064, + "Data4": -8333154803890283708 }, "Kind": "Components.EventHandler", "Name": "onpointerlockchange", @@ -16403,31 +16055,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerlockchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerlockchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16450,10 +16098,10 @@ }, { "__Checksum": { - "Data1": -1900113584630384717, - "Data2": -2180580021106248266, - "Data3": -5265969542243742196, - "Data4": 2572919969243757125 + "Data1": -2405315184326742362, + "Data2": -4336956376583241421, + "Data3": 2067781814523124254, + "Data4": -8683903035252113557 }, "Kind": "Components.EventHandler", "Name": "onpointerlockerror", @@ -16519,31 +16167,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerlockerror" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerlockerror" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16566,10 +16210,10 @@ }, { "__Checksum": { - "Data1": 4837019075015193591, - "Data2": 7087602864750864527, - "Data3": 4805132055039542629, - "Data4": 2766956913945018243 + "Data1": -7823779853248095029, + "Data2": 2896948618275552326, + "Data3": 6015849736099765352, + "Data4": -8165407376096835581 }, "Kind": "Components.EventHandler", "Name": "onreadystatechange", @@ -16635,31 +16279,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onreadystatechange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onreadystatechange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16682,10 +16322,10 @@ }, { "__Checksum": { - "Data1": 4149677710501796733, - "Data2": 36043277307705683, - "Data3": -4792850075748737341, - "Data4": 7875696479337195571 + "Data1": -4086907535258678610, + "Data2": 2273919336126465370, + "Data3": 5801632512138309614, + "Data4": -4798362539997732828 }, "Kind": "Components.EventHandler", "Name": "onscroll", @@ -16751,31 +16391,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onscroll" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onscroll" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16798,10 +16434,10 @@ }, { "__Checksum": { - "Data1": 1140419827034931787, - "Data2": 6770507407134574405, - "Data3": -8001041985769797285, - "Data4": -7579531138963952213 + "Data1": 4753124172124543843, + "Data2": 4390281967717981656, + "Data3": 7035810605520754206, + "Data4": -2512411399122211635 }, "Kind": "Components.EventHandler", "Name": "ontoggle", @@ -16867,31 +16503,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontoggle" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontoggle" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -19749,10 +19381,10 @@ }, { "__Checksum": { - "Data1": -4956411382073006453, - "Data2": 516732521478035673, - "Data3": 3816531986645240906, - "Data4": 604760014856119338 + "Data1": -1073301647227589633, + "Data2": 8101759897890733284, + "Data3": -6920811933630909984, + "Data4": -6290663200272122769 }, "Kind": "Components.Bind", "Name": "Bind", @@ -19790,73 +19422,60 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format", + "TypeName": 2, "Documentation": { "Id": 2 - }, - "Metadata": { - "Common.PropertyName": "Format" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event", + "TypeName": 2, "Documentation": { "Id": 1, "Args": [ "@bind-..." ] - }, - "Metadata": { - "Common.PropertyName": "Event" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -19878,10 +19497,10 @@ }, { "__Checksum": { - "Data1": 7402027333053994539, - "Data2": -3446878997932190904, - "Data3": -3101521142354767554, - "Data4": -6760953170491785234 + "Data1": -1556004898731902221, + "Data2": 7829188875044190705, + "Data3": -5991469701502087751, + "Data4": -6643408075181463790 }, "Kind": "Components.Bind", "Name": "Bind", @@ -19942,76 +19561,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -20050,10 +19656,10 @@ }, { "__Checksum": { - "Data1": 8844774585541617356, - "Data2": 8658003120836766162, - "Data3": 4305185477720729866, - "Data4": 7023709757413983193 + "Data1": -4721804179514870219, + "Data2": 7607236171508579391, + "Data3": -4587957588803971833, + "Data4": -1541458591551164882 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -20114,76 +19720,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -20222,10 +19815,10 @@ }, { "__Checksum": { - "Data1": -6139627449151613019, - "Data2": 1628249431281193389, - "Data3": -802943671935024249, - "Data4": 648384761177778230 + "Data1": -9012130317925565883, + "Data2": -8385752469162579727, + "Data3": -3360898089607708973, + "Data4": 1630998681911142131 }, "Kind": "Components.Bind", "Name": "Bind", @@ -20298,76 +19891,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_checked", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_checked" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_checked", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_checked" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -20407,10 +19987,10 @@ }, { "__Checksum": { - "Data1": 6068105800957731755, - "Data2": 1958126132282487755, - "Data3": 4852930634683786960, - "Data4": 3769138096448137878 + "Data1": 1549220529411200477, + "Data2": -2761563220845679330, + "Data3": -1847807182485603835, + "Data4": -3423906826708397841 }, "Kind": "Components.Bind", "Name": "Bind", @@ -20483,76 +20063,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -20592,10 +20159,10 @@ }, { "__Checksum": { - "Data1": -3192163379129342866, - "Data2": -908092289118660396, - "Data3": 8916901005292949522, - "Data4": -694254851830939888 + "Data1": 8735413799192487182, + "Data2": 5230765264560867301, + "Data3": 5051546020838539200, + "Data4": 2018314258591378276 }, "Kind": "Components.Bind", "Name": "Bind", @@ -20668,76 +20235,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -20777,10 +20331,10 @@ }, { "__Checksum": { - "Data1": 3657137836086790504, - "Data2": -8441360560393812229, - "Data3": 2083449763440333656, - "Data4": -7746762440594570849 + "Data1": -6251259028650079662, + "Data2": 7168576928716550522, + "Data3": 1403993109432839481, + "Data4": 6167908272748344637 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -20853,76 +20407,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -20962,10 +20503,10 @@ }, { "__Checksum": { - "Data1": -7210429511237930730, - "Data2": 3700914488903705463, - "Data3": 1755174149562436174, - "Data4": 4654468164006271658 + "Data1": -4394598297581586680, + "Data2": 2224518312051877274, + "Data3": -2794255316184007845, + "Data4": 1833766771664005764 }, "Kind": "Components.Bind", "Name": "Bind", @@ -21038,76 +20579,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -21147,10 +20675,10 @@ }, { "__Checksum": { - "Data1": 6520226159997619286, - "Data2": -3528059980413999827, - "Data3": 6463875126138844678, - "Data4": 455218432979510465 + "Data1": 7513898485628571921, + "Data2": 9204617037395680736, + "Data3": 7156667228265874567, + "Data4": -1279991360901700991 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -21223,76 +20751,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -21332,10 +20847,10 @@ }, { "__Checksum": { - "Data1": -5265448538819468886, - "Data2": -5244566089296707730, - "Data3": 9114408832821437652, - "Data4": 6068985787287525837 + "Data1": 6065669705363870747, + "Data2": -1748370172846223305, + "Data3": -1034028830525457953, + "Data4": 9199791234749301344 }, "Kind": "Components.Bind", "Name": "Bind", @@ -21408,76 +20923,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -21517,10 +21019,10 @@ }, { "__Checksum": { - "Data1": 3101210583463877685, - "Data2": -8736249305119653430, - "Data3": -2164829316630798434, - "Data4": -4331253107632651662 + "Data1": 2262595175992799016, + "Data2": 1497381156082470256, + "Data3": -4152647695859345462, + "Data4": -1087305299235597026 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -21593,76 +21095,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -21702,10 +21191,10 @@ }, { "__Checksum": { - "Data1": -5189851214647459156, - "Data2": 6997728873791061517, - "Data3": -6652651042841705090, - "Data4": -2714701243441476264 + "Data1": 3530375003684148846, + "Data2": 1678816126431870996, + "Data3": -6398414745134880827, + "Data4": 8771218935058771279 }, "Kind": "Components.Bind", "Name": "Bind", @@ -21778,76 +21267,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -21887,10 +21363,10 @@ }, { "__Checksum": { - "Data1": 4666257921032366535, - "Data2": -2689373953497127477, - "Data3": 5820845103411567289, - "Data4": -1399037484187168549 + "Data1": 5193172178106771296, + "Data2": 8305085487092208634, + "Data3": 5058761880136319390, + "Data4": -4185226980644972553 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -21963,76 +21439,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -22072,10 +21535,10 @@ }, { "__Checksum": { - "Data1": 3219901297506981950, - "Data2": -4399880091467860075, - "Data3": 9081026489297834595, - "Data4": 9194712501025302398 + "Data1": 2548659463358859266, + "Data2": -2352573489261492797, + "Data3": 5929663946111134036, + "Data4": -3071770098965250483 }, "Kind": "Components.Bind", "Name": "Bind", @@ -22148,76 +21611,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -22257,10 +21707,10 @@ }, { "__Checksum": { - "Data1": 3060167502699573182, - "Data2": 3516087094815481835, - "Data3": -6236246758717087683, - "Data4": 9206904560509313410 + "Data1": -8845957714180709455, + "Data2": -3321753692228733690, + "Data3": 4937282102329962251, + "Data4": 7486711684880919745 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -22333,76 +21783,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -22442,10 +21879,10 @@ }, { "__Checksum": { - "Data1": 8989652253133676506, - "Data2": -8892643895572038104, - "Data3": -6216481859063566605, - "Data4": -936080324882560203 + "Data1": 1480048902184114821, + "Data2": -5176199698937666041, + "Data3": -5329087519324644459, + "Data4": -262845877164119105 }, "Kind": "Components.Bind", "Name": "Bind", @@ -22506,76 +21943,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -22614,10 +22038,10 @@ }, { "__Checksum": { - "Data1": 8267406816439511629, - "Data2": -8070515216210757972, - "Data3": 3797801915330303535, - "Data4": 8813063268165781585 + "Data1": -6607248474983469194, + "Data2": 7639608389418746979, + "Data3": 4800089072749287555, + "Data4": -224888138103330670 }, "Kind": "Components.Bind", "Name": "Bind", @@ -22678,76 +22102,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -22786,10 +22197,10 @@ }, { "__Checksum": { - "Data1": -960011711740559922, - "Data2": -8022787084652653840, - "Data3": -9059182930809321800, - "Data4": 3446386250744275939 + "Data1": -3276191800921921802, + "Data2": 4513260245355185204, + "Data3": -2576952910462202359, + "Data4": -937506176843006316 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", @@ -22850,37 +22261,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -22903,10 +22307,10 @@ }, { "__Checksum": { - "Data1": -1703059564437539489, - "Data2": -977913726472460743, - "Data3": -5654365996384152609, - "Data4": 3153774339147487699 + "Data1": -2088088777708089979, + "Data2": 8575525148995798498, + "Data3": 158776863372837806, + "Data4": 3902257292046130122 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", @@ -22967,37 +22371,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -23021,10 +22418,10 @@ }, { "__Checksum": { - "Data1": 7843810788710194448, - "Data2": 4322325964591229058, - "Data3": 570175307709215678, - "Data4": 448364692654265271 + "Data1": 7018675345428767976, + "Data2": -1365168072988000591, + "Data3": -8784073059659437102, + "Data4": 3592457312435978779 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", @@ -23085,37 +22482,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -23138,10 +22528,10 @@ }, { "__Checksum": { - "Data1": -6466330588814503818, - "Data2": 424735198563788609, - "Data3": -2612843300788331659, - "Data4": 491996349997901495 + "Data1": 4114637234506317754, + "Data2": -6805817000095944842, + "Data3": -9022280586090709983, + "Data4": 5567039216260504126 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", @@ -23202,37 +22592,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -23256,10 +22639,10 @@ }, { "__Checksum": { - "Data1": -6286832222660170180, - "Data2": -916078296290814949, - "Data3": 7692715090507250587, - "Data4": -3464213187979528483 + "Data1": -8961389199761290019, + "Data2": -5821760351464054316, + "Data3": -2980198449104638410, + "Data4": 2046454222357699386 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", @@ -23320,37 +22703,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -23373,10 +22749,10 @@ }, { "__Checksum": { - "Data1": -3690200114443874820, - "Data2": 2777513507250896605, - "Data3": -73161014199470040, - "Data4": -5870339312383060886 + "Data1": -4690655020524261271, + "Data2": -8275349966617060297, + "Data3": 3961478111746509057, + "Data4": 6888637949762861865 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", @@ -23437,37 +22813,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -23491,10 +22860,10 @@ }, { "__Checksum": { - "Data1": -8268174122080178268, - "Data2": 6970402634146870399, - "Data3": 5727037980354914138, - "Data4": 411720478786037415 + "Data1": -5717882134386465073, + "Data2": 8034896147222961196, + "Data3": -2837159614071967350, + "Data4": 5210987620701611409 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", @@ -23555,37 +22924,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -23608,10 +22970,10 @@ }, { "__Checksum": { - "Data1": 7163771992523568394, - "Data2": -7437325150105231996, - "Data3": 734376592578972009, - "Data4": 7115028067981471260 + "Data1": 5984347378442387488, + "Data2": 188862352023201556, + "Data3": 6521783132572974966, + "Data4": -905545728348648981 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", @@ -23672,37 +23034,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -23726,10 +23081,10 @@ }, { "__Checksum": { - "Data1": 5351108948226454620, - "Data2": -2954289968439605647, - "Data3": 3733221384548320271, - "Data4": -7705797846292557390 + "Data1": -3264438285090029890, + "Data2": 1801940021254323519, + "Data3": -3020105652873365421, + "Data4": -7839071809104232476 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", @@ -23790,37 +23145,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -23843,10 +23191,10 @@ }, { "__Checksum": { - "Data1": -52112667549248369, - "Data2": 636326677130659578, - "Data3": -5684615603336029330, - "Data4": -9119613647709862212 + "Data1": 6842202156290866491, + "Data2": -3914392770148398935, + "Data3": -4192744942988181366, + "Data4": -2347925610916699686 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", @@ -23907,37 +23255,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -23961,10 +23302,10 @@ }, { "__Checksum": { - "Data1": 8169860100540165305, - "Data2": 8097607686873152988, - "Data3": 7300025027054631533, - "Data4": -7207419192900064047 + "Data1": 9090280802210564846, + "Data2": -6266284878899832283, + "Data3": 6989333063678890185, + "Data4": 2920980918393632342 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", @@ -24025,37 +23366,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -24078,10 +23412,10 @@ }, { "__Checksum": { - "Data1": -6567775896921388091, - "Data2": 8108027945637834184, - "Data3": 291356362209817215, - "Data4": -9080380078428802894 + "Data1": -6590276302536833864, + "Data2": -5394958843841354575, + "Data3": 4288607606627449254, + "Data4": -9051709823621622449 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", @@ -24142,37 +23476,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -24196,10 +23523,10 @@ }, { "__Checksum": { - "Data1": 5470880301241973659, - "Data2": 7006311831299753154, - "Data3": -6890578684808138809, - "Data4": -1483406253993667552 + "Data1": -429484931486236910, + "Data2": -7734931497761470796, + "Data3": -1015320485118632528, + "Data4": 3157981366101583363 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", @@ -24260,37 +23587,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -24313,10 +23633,10 @@ }, { "__Checksum": { - "Data1": -2375944316459808049, - "Data2": -2851744261248584751, - "Data3": -19476265537583022, - "Data4": 6745520080649124262 + "Data1": 2407412623707583861, + "Data2": -1616016677399057252, + "Data3": -724398860504216064, + "Data4": -2552689729345681718 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", @@ -24377,37 +23697,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], diff --git a/src/Shared/files/Tooling/Telerik/Kendo.Mvc.Examples.project.razor.json b/src/Shared/files/Tooling/Telerik/Kendo.Mvc.Examples.project.razor.json index ba2be7ea522..fff3babba7e 100644 --- a/src/Shared/files/Tooling/Telerik/Kendo.Mvc.Examples.project.razor.json +++ b/src/Shared/files/Tooling/Telerik/Kendo.Mvc.Examples.project.razor.json @@ -1,5 +1,5 @@ { - "__Version": 9, + "__Version": 10, "ProjectKey": "C:/Users/admin/location/Kendo.Mvc.Examples/obj/Debug/net7.0/", "FilePath": "C:\\Users\\admin\\location\\Kendo.Mvc.Examples\\Kendo.Mvc.Examples.csproj", "Configuration": { @@ -5926,10 +5926,10 @@ }, { "__Checksum": { - "Data1": 6047026887317017772, - "Data2": -4508084249633088946, - "Data3": -5927311961329022405, - "Data4": 9035981505318525756 + "Data1": -6465587773490381159, + "Data2": 7535074613755532958, + "Data3": -6597400106414466904, + "Data4": -4718295965203228666 }, "Kind": "Components.EventHandler", "Name": "onfocus", @@ -5995,31 +5995,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfocus" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfocus" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6042,10 +6038,10 @@ }, { "__Checksum": { - "Data1": 7332788971497905640, - "Data2": -8541963829760085535, - "Data3": 1430468808176028699, - "Data4": 1419625672529866908 + "Data1": 3922960561969939214, + "Data2": 2174238041354609490, + "Data3": 6278244008069449085, + "Data4": 7975697877211154135 }, "Kind": "Components.EventHandler", "Name": "onblur", @@ -6111,31 +6107,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onblur" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onblur" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6158,10 +6150,10 @@ }, { "__Checksum": { - "Data1": -5781133336234525322, - "Data2": 3719151934547428160, - "Data3": 5406025833203121897, - "Data4": -1476178686617567973 + "Data1": 3827718291310388734, + "Data2": -2988755441088730532, + "Data3": 926934914465422300, + "Data4": 1954337354554334265 }, "Kind": "Components.EventHandler", "Name": "onfocusin", @@ -6227,31 +6219,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfocusin" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfocusin" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6274,10 +6262,10 @@ }, { "__Checksum": { - "Data1": -1693134630263997206, - "Data2": -533288755180455703, - "Data3": 2719322161973441581, - "Data4": 5318341378063528532 + "Data1": -3522629918317327344, + "Data2": -1485009587756691819, + "Data3": 1807056340270892927, + "Data4": 5991603992002843538 }, "Kind": "Components.EventHandler", "Name": "onfocusout", @@ -6343,31 +6331,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfocusout" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfocusout" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6390,10 +6374,10 @@ }, { "__Checksum": { - "Data1": -2607626939905438992, - "Data2": -1036478999287336737, - "Data3": 8144846070015279171, - "Data4": -6084546997573366169 + "Data1": 4719679284010052614, + "Data2": -6037487177636854366, + "Data3": 3980125903044192178, + "Data4": -1160956382569708684 }, "Kind": "Components.EventHandler", "Name": "onmouseover", @@ -6459,31 +6443,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseover" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseover" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6506,10 +6486,10 @@ }, { "__Checksum": { - "Data1": 2496264225608889538, - "Data2": 1835166405042331793, - "Data3": -2805646357002840381, - "Data4": -3740422317011027010 + "Data1": -2517308608647479670, + "Data2": -5139125921065721692, + "Data3": 3322751183034831620, + "Data4": -5611729191927699236 }, "Kind": "Components.EventHandler", "Name": "onmouseout", @@ -6575,31 +6555,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseout" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseout" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6622,10 +6598,10 @@ }, { "__Checksum": { - "Data1": 8476218347103556414, - "Data2": -8427298635768969164, - "Data3": 3387631042301122858, - "Data4": -2097441240446929882 + "Data1": 3664463825940920196, + "Data2": 8828846019351256654, + "Data3": -223456287656935559, + "Data4": 7461978948651665487 }, "Kind": "Components.EventHandler", "Name": "onmouseleave", @@ -6691,31 +6667,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseleave" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseleave" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6738,10 +6710,10 @@ }, { "__Checksum": { - "Data1": -3871963670627187680, - "Data2": 7879037207930218929, - "Data3": -3186526955181269865, - "Data4": -7372010524365462789 + "Data1": -841678271861648746, + "Data2": 1355330575336854718, + "Data3": -3471689290251880713, + "Data4": 6317639043586385517 }, "Kind": "Components.EventHandler", "Name": "onmouseenter", @@ -6807,31 +6779,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseenter" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseenter" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6854,10 +6822,10 @@ }, { "__Checksum": { - "Data1": 2665527030597264325, - "Data2": 442339100000135636, - "Data3": 7742313068710279026, - "Data4": -4554407899484104843 + "Data1": -8999018585483935701, + "Data2": -3890567381620569097, + "Data3": -5100889117651095789, + "Data4": -6863457054907620445 }, "Kind": "Components.EventHandler", "Name": "onmousemove", @@ -6923,31 +6891,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmousemove" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmousemove" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6970,10 +6934,10 @@ }, { "__Checksum": { - "Data1": -3245687421161492477, - "Data2": 481036742404428755, - "Data3": -8499383570115558517, - "Data4": -4009137393771576123 + "Data1": -7527427037382849112, + "Data2": 4042853249102039431, + "Data3": -4167170694211966184, + "Data4": -2180020198076536278 }, "Kind": "Components.EventHandler", "Name": "onmousedown", @@ -7039,31 +7003,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmousedown" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmousedown" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7086,10 +7046,10 @@ }, { "__Checksum": { - "Data1": 6811149048034138543, - "Data2": 9055346314194565790, - "Data3": 6218743337272204781, - "Data4": 494487771164003491 + "Data1": 1499097655157122654, + "Data2": 4011670832160661146, + "Data3": -3017464299655988853, + "Data4": 5331598497616975675 }, "Kind": "Components.EventHandler", "Name": "onmouseup", @@ -7155,31 +7115,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseup" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseup" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7202,10 +7158,10 @@ }, { "__Checksum": { - "Data1": -5216193914736213729, - "Data2": 7300246371238740720, - "Data3": -323831195702061987, - "Data4": -5814794816245574342 + "Data1": 5842743917841288001, + "Data2": -2264286113015980950, + "Data3": -7244925475129355886, + "Data4": 4299288348001316974 }, "Kind": "Components.EventHandler", "Name": "onclick", @@ -7271,31 +7227,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onclick" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onclick" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7318,10 +7270,10 @@ }, { "__Checksum": { - "Data1": 6968566271842145395, - "Data2": -17883870018577415, - "Data3": 208023758140888935, - "Data4": 2290473049761130632 + "Data1": 2620506878031740205, + "Data2": 141975143151795759, + "Data3": 5121298285083402139, + "Data4": -1960590552236709803 }, "Kind": "Components.EventHandler", "Name": "ondblclick", @@ -7387,31 +7339,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondblclick" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondblclick" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7434,10 +7382,10 @@ }, { "__Checksum": { - "Data1": -6832266313703754952, - "Data2": 8424878414357466395, - "Data3": -3630942783497325528, - "Data4": -8688959150094885914 + "Data1": -1018886666421110275, + "Data2": 812524389814512043, + "Data3": -5025771482729477954, + "Data4": -1403302363189702754 }, "Kind": "Components.EventHandler", "Name": "onwheel", @@ -7503,31 +7451,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onwheel" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onwheel" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7550,10 +7494,10 @@ }, { "__Checksum": { - "Data1": 4728781118904122511, - "Data2": -1283512924236747993, - "Data3": -3466031805110974420, - "Data4": 5339080886917887668 + "Data1": 8455769333687009820, + "Data2": 5742320475525345635, + "Data3": 2267392040673083720, + "Data4": 1353306075721455459 }, "Kind": "Components.EventHandler", "Name": "onmousewheel", @@ -7619,31 +7563,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmousewheel" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmousewheel" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7666,10 +7606,10 @@ }, { "__Checksum": { - "Data1": 8023485693772935410, - "Data2": -1364693856223591523, - "Data3": -1379191194653808512, - "Data4": 7011513567773879467 + "Data1": 5866507126627341590, + "Data2": 2936673807454416411, + "Data3": -5290716116845906785, + "Data4": 8363257237998436509 }, "Kind": "Components.EventHandler", "Name": "oncontextmenu", @@ -7735,31 +7675,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncontextmenu" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncontextmenu" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7782,10 +7718,10 @@ }, { "__Checksum": { - "Data1": -2181225571089942960, - "Data2": 8259409794359197167, - "Data3": 3031186878260122362, - "Data4": 5383033199240539373 + "Data1": 7181065197870870517, + "Data2": 3084007880969192524, + "Data3": -227946195396508294, + "Data4": 5704366182847069435 }, "Kind": "Components.EventHandler", "Name": "ondrag", @@ -7851,31 +7787,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondrag" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondrag" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7898,10 +7830,10 @@ }, { "__Checksum": { - "Data1": -4811802129701968717, - "Data2": -4681333014681454993, - "Data3": 4456880278066877224, - "Data4": -9006292183047762700 + "Data1": 9138138522320706846, + "Data2": 8917470108640680039, + "Data3": -1090110288218714537, + "Data4": 8156552988483215598 }, "Kind": "Components.EventHandler", "Name": "ondragend", @@ -7967,31 +7899,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragend" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragend" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8014,10 +7942,10 @@ }, { "__Checksum": { - "Data1": -6654574822456750620, - "Data2": 8046154493035059423, - "Data3": -3112448663427061050, - "Data4": 5399061999628553092 + "Data1": 5993047465740969478, + "Data2": -645794873687625372, + "Data3": 4411793638442113045, + "Data4": -2182860268158911274 }, "Kind": "Components.EventHandler", "Name": "ondragenter", @@ -8083,31 +8011,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragenter" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragenter" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8130,10 +8054,10 @@ }, { "__Checksum": { - "Data1": -1577873322971605981, - "Data2": -2169806260402290491, - "Data3": -6410392401845890237, - "Data4": -2951589261288399266 + "Data1": 643961210950863711, + "Data2": -8679857167680824771, + "Data3": 3651588027436503457, + "Data4": -4711680326248175511 }, "Kind": "Components.EventHandler", "Name": "ondragleave", @@ -8199,31 +8123,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragleave" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragleave" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8246,10 +8166,10 @@ }, { "__Checksum": { - "Data1": -2608174897690276432, - "Data2": 2038599822250087783, - "Data3": 3254757248611194109, - "Data4": 2243603005428566409 + "Data1": -5307007483605923523, + "Data2": 595504818010280652, + "Data3": -231275281916851905, + "Data4": -6168021898791241900 }, "Kind": "Components.EventHandler", "Name": "ondragover", @@ -8315,31 +8235,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragover" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragover" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8362,10 +8278,10 @@ }, { "__Checksum": { - "Data1": -6094446339351077495, - "Data2": -8160353778039689611, - "Data3": -3485188431078549341, - "Data4": 8855134020084022660 + "Data1": 4997880789409733277, + "Data2": 4062967912102442479, + "Data3": -3274980429523621759, + "Data4": 8344879387406235935 }, "Kind": "Components.EventHandler", "Name": "ondragstart", @@ -8431,31 +8347,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragstart" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragstart" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8478,10 +8390,10 @@ }, { "__Checksum": { - "Data1": 6768543876078749417, - "Data2": -7653673437507506953, - "Data3": 3832452929334985725, - "Data4": -8024435062539759732 + "Data1": -5117519943565302600, + "Data2": -282535833899837640, + "Data3": -587826129906022188, + "Data4": -5186587993067057403 }, "Kind": "Components.EventHandler", "Name": "ondrop", @@ -8547,31 +8459,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondrop" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondrop" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8594,10 +8502,10 @@ }, { "__Checksum": { - "Data1": -904106963592523608, - "Data2": -2479391200992788997, - "Data3": -3125341680503857394, - "Data4": -4495946951115286801 + "Data1": -4488320895469629587, + "Data2": -4354446904858488124, + "Data3": 3476068273635033022, + "Data4": -2378627222450335552 }, "Kind": "Components.EventHandler", "Name": "onkeydown", @@ -8663,31 +8571,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onkeydown" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onkeydown" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8710,10 +8614,10 @@ }, { "__Checksum": { - "Data1": -2762540601503860190, - "Data2": 6537596651685718742, - "Data3": -4968777981327903699, - "Data4": 5445638825637714351 + "Data1": -3065544849487249174, + "Data2": 7275382063339441280, + "Data3": 4257418289076185769, + "Data4": 4650954062822818606 }, "Kind": "Components.EventHandler", "Name": "onkeyup", @@ -8779,31 +8683,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onkeyup" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onkeyup" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8826,10 +8726,10 @@ }, { "__Checksum": { - "Data1": -3150386372233545282, - "Data2": 3872706444740851607, - "Data3": -5003909694691906593, - "Data4": 2767105148129643530 + "Data1": 2684959576086536102, + "Data2": -2060164410703761768, + "Data3": 6053754243341442598, + "Data4": -7692618678005444574 }, "Kind": "Components.EventHandler", "Name": "onkeypress", @@ -8895,31 +8795,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onkeypress" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onkeypress" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8942,10 +8838,10 @@ }, { "__Checksum": { - "Data1": -5739078806659387639, - "Data2": 6990517037142761482, - "Data3": 3255874663260615120, - "Data4": -536866768904251924 + "Data1": -7584621526987209222, + "Data2": 6296633483679274967, + "Data3": 4108917095665830259, + "Data4": 8728791231176131261 }, "Kind": "Components.EventHandler", "Name": "onchange", @@ -9011,31 +8907,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9058,10 +8950,10 @@ }, { "__Checksum": { - "Data1": 20872680784986129, - "Data2": -1280628360868871018, - "Data3": 4599508431640933635, - "Data4": 5310881484231576393 + "Data1": 4023366590626973548, + "Data2": -4000437393701196393, + "Data3": -5453294020141143770, + "Data4": -7793400469412774879 }, "Kind": "Components.EventHandler", "Name": "oninput", @@ -9127,31 +9019,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oninput" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oninput" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9174,10 +9062,10 @@ }, { "__Checksum": { - "Data1": -2398474118270879716, - "Data2": 1941517868360774955, - "Data3": 6049640605823773064, - "Data4": 884354251738426809 + "Data1": -5302080963814639005, + "Data2": -5382300485274367385, + "Data3": 4309544325908333913, + "Data4": -8220266761205956267 }, "Kind": "Components.EventHandler", "Name": "oninvalid", @@ -9243,31 +9131,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oninvalid" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oninvalid" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9290,10 +9174,10 @@ }, { "__Checksum": { - "Data1": -2354917177562196159, - "Data2": -3044088487990651744, - "Data3": 8886614317634031584, - "Data4": -4727253319280409082 + "Data1": 8734858102839951686, + "Data2": -2347259868355024479, + "Data3": 2145930144175565539, + "Data4": 6083241797791414271 }, "Kind": "Components.EventHandler", "Name": "onreset", @@ -9359,31 +9243,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onreset" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onreset" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9406,10 +9286,10 @@ }, { "__Checksum": { - "Data1": -1058526240597162816, - "Data2": 532131020924320221, - "Data3": 1602963208656305535, - "Data4": 1088787240367428204 + "Data1": -2088011628329944041, + "Data2": -4999546565367881781, + "Data3": 7471613055237126019, + "Data4": 8330518124309523037 }, "Kind": "Components.EventHandler", "Name": "onselect", @@ -9475,31 +9355,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onselect" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onselect" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9522,10 +9398,10 @@ }, { "__Checksum": { - "Data1": 3093537362408529852, - "Data2": -6813613706441731119, - "Data3": 5163333025208264432, - "Data4": 2321339005933797191 + "Data1": -5288273382229968961, + "Data2": -42001991506114637, + "Data3": -3758671851226525360, + "Data4": -7595366435962408260 }, "Kind": "Components.EventHandler", "Name": "onselectstart", @@ -9591,31 +9467,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onselectstart" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onselectstart" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9638,10 +9510,10 @@ }, { "__Checksum": { - "Data1": -6247529119239298926, - "Data2": -4063912787643106663, - "Data3": 2756237083891577198, - "Data4": 6432983232027926564 + "Data1": 906694272796350418, + "Data2": -9007971882201471679, + "Data3": -524300612543727045, + "Data4": -3973740341548814289 }, "Kind": "Components.EventHandler", "Name": "onselectionchange", @@ -9707,31 +9579,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onselectionchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onselectionchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9754,10 +9622,10 @@ }, { "__Checksum": { - "Data1": 5544819165240136666, - "Data2": -7799328468831322369, - "Data3": 4122373302443374790, - "Data4": -3513063458097030914 + "Data1": 6767276106165310419, + "Data2": -5621542771004110853, + "Data3": 3866828061693883018, + "Data4": 3959111927254083025 }, "Kind": "Components.EventHandler", "Name": "onsubmit", @@ -9823,31 +9691,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onsubmit" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onsubmit" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9870,10 +9734,10 @@ }, { "__Checksum": { - "Data1": 5290056762375420873, - "Data2": -419029537866716364, - "Data3": -2345555909528925902, - "Data4": 5919307106818556317 + "Data1": -7962864395333347053, + "Data2": -7068272891191157547, + "Data3": -8482247690341826270, + "Data4": 1177052501507779085 }, "Kind": "Components.EventHandler", "Name": "onbeforecopy", @@ -9939,31 +9803,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforecopy" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforecopy" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9986,10 +9846,10 @@ }, { "__Checksum": { - "Data1": 4761396429330858649, - "Data2": -1598036257954584694, - "Data3": -5117456029749091660, - "Data4": 6309486742728624793 + "Data1": 733722938788303854, + "Data2": 5718205123590306890, + "Data3": 4968932478876794348, + "Data4": 7931037784533220902 }, "Kind": "Components.EventHandler", "Name": "onbeforecut", @@ -10055,31 +9915,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforecut" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforecut" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10102,10 +9958,10 @@ }, { "__Checksum": { - "Data1": 1029372928366886531, - "Data2": 8104661957776323837, - "Data3": 1509677230915956677, - "Data4": -6355782764987233093 + "Data1": 5195515156876521644, + "Data2": -83820529944840325, + "Data3": 5098380854634285425, + "Data4": 2254230579666312180 }, "Kind": "Components.EventHandler", "Name": "onbeforepaste", @@ -10171,31 +10027,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforepaste" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforepaste" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10218,10 +10070,10 @@ }, { "__Checksum": { - "Data1": -7705251047584511333, - "Data2": 8002701997274286947, - "Data3": -1676600895832769461, - "Data4": 2245694104751163838 + "Data1": 5785815391833969144, + "Data2": 7426433522232774266, + "Data3": 9038206878593963880, + "Data4": 3254114237675633096 }, "Kind": "Components.EventHandler", "Name": "oncopy", @@ -10287,31 +10139,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncopy" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncopy" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10334,10 +10182,10 @@ }, { "__Checksum": { - "Data1": -7416992712423089233, - "Data2": 4449370565921709650, - "Data3": -6437785349582923886, - "Data4": -2801190639824190532 + "Data1": -2609897972982771624, + "Data2": 7922590185429854174, + "Data3": -3390296626931518695, + "Data4": -2409953976955017726 }, "Kind": "Components.EventHandler", "Name": "oncut", @@ -10403,31 +10251,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncut" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncut" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10450,10 +10294,10 @@ }, { "__Checksum": { - "Data1": 1330559035022496075, - "Data2": -4460978051811237857, - "Data3": 4695250384772663299, - "Data4": -7717757570830372855 + "Data1": 7376445045194540373, + "Data2": -9112356877100429819, + "Data3": -2380530598642118551, + "Data4": -7873051073718984526 }, "Kind": "Components.EventHandler", "Name": "onpaste", @@ -10519,31 +10363,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpaste" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpaste" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10566,10 +10406,10 @@ }, { "__Checksum": { - "Data1": -5305018988864397513, - "Data2": -7056861188320643127, - "Data3": 4138462206631949520, - "Data4": 1287681477163409205 + "Data1": 5056866497218561842, + "Data2": 4051360251600008758, + "Data3": -1883731599349537376, + "Data4": 5490887723705191254 }, "Kind": "Components.EventHandler", "Name": "ontouchcancel", @@ -10635,31 +10475,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchcancel" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchcancel" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10682,10 +10518,10 @@ }, { "__Checksum": { - "Data1": 564116037820298704, - "Data2": -1057279746178053957, - "Data3": 9014585644924556968, - "Data4": -387530969364403907 + "Data1": -4280006762647084968, + "Data2": 4784687432975891540, + "Data3": -2610726941771164358, + "Data4": 9101273155625600638 }, "Kind": "Components.EventHandler", "Name": "ontouchend", @@ -10751,31 +10587,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchend" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchend" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10798,10 +10630,10 @@ }, { "__Checksum": { - "Data1": -8675233277290799136, - "Data2": -5643826883035093936, - "Data3": -6576035289012049613, - "Data4": -8251539618503399646 + "Data1": 4150334943984926387, + "Data2": -1730547721487666194, + "Data3": 5915207751029640734, + "Data4": 2626361866656274122 }, "Kind": "Components.EventHandler", "Name": "ontouchmove", @@ -10867,31 +10699,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchmove" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchmove" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10914,10 +10742,10 @@ }, { "__Checksum": { - "Data1": -3443756728771598432, - "Data2": 2835526665684590414, - "Data3": 8274112597837107412, - "Data4": 9084919052569765732 + "Data1": 1471835487647021681, + "Data2": -1804324470531860128, + "Data3": -4436570376778556838, + "Data4": 6623868717126983394 }, "Kind": "Components.EventHandler", "Name": "ontouchstart", @@ -10983,31 +10811,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchstart" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchstart" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11030,10 +10854,10 @@ }, { "__Checksum": { - "Data1": 6827428511433383785, - "Data2": 4880809401438293803, - "Data3": -6694443512408380021, - "Data4": -2704006860198456434 + "Data1": -7460631154571318862, + "Data2": -2424658594096228664, + "Data3": -8924327641613131363, + "Data4": 7709986489448240830 }, "Kind": "Components.EventHandler", "Name": "ontouchenter", @@ -11099,31 +10923,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchenter" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchenter" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11146,10 +10966,10 @@ }, { "__Checksum": { - "Data1": 1680911349423367456, - "Data2": -304063173116270662, - "Data3": -379129983034387056, - "Data4": 81003187346916834 + "Data1": 1206477914866130555, + "Data2": -827543412384579740, + "Data3": 5664104254253767115, + "Data4": 1325744795667415854 }, "Kind": "Components.EventHandler", "Name": "ontouchleave", @@ -11215,31 +11035,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchleave" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchleave" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11262,10 +11078,10 @@ }, { "__Checksum": { - "Data1": 3425892492955859449, - "Data2": -580168571579207205, - "Data3": 7599035357894044036, - "Data4": 679416671753898484 + "Data1": -5071805037143667245, + "Data2": 2784887102994723699, + "Data3": -5821858542529465344, + "Data4": -6075492442609413063 }, "Kind": "Components.EventHandler", "Name": "ongotpointercapture", @@ -11331,31 +11147,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ongotpointercapture" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ongotpointercapture" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11378,10 +11190,10 @@ }, { "__Checksum": { - "Data1": -4474978641456041565, - "Data2": -5110195079129352476, - "Data3": -4645550538575791547, - "Data4": -6291765634598000623 + "Data1": 4234935237194607603, + "Data2": 4666086240833797740, + "Data3": -8190592873098651197, + "Data4": 4815966663442635767 }, "Kind": "Components.EventHandler", "Name": "onlostpointercapture", @@ -11447,31 +11259,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onlostpointercapture" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onlostpointercapture" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11494,10 +11302,10 @@ }, { "__Checksum": { - "Data1": 1379338898289528175, - "Data2": 2585187423364263082, - "Data3": -6325028203201766155, - "Data4": -6309337970068528705 + "Data1": 1501806557496147984, + "Data2": 8800865181144088021, + "Data3": 7245324866050579704, + "Data4": 4143059404539196834 }, "Kind": "Components.EventHandler", "Name": "onpointercancel", @@ -11563,31 +11371,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointercancel" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointercancel" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11610,10 +11414,10 @@ }, { "__Checksum": { - "Data1": -2553259661874421168, - "Data2": -4493759146170282767, - "Data3": -4168597998860204671, - "Data4": -4969987990483598350 + "Data1": 7021801142064366064, + "Data2": 4913943734187142819, + "Data3": 5353043824189147667, + "Data4": -5986691567274862652 }, "Kind": "Components.EventHandler", "Name": "onpointerdown", @@ -11679,31 +11483,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerdown" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerdown" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11726,10 +11526,10 @@ }, { "__Checksum": { - "Data1": 2700463498781894171, - "Data2": -6602539361139634558, - "Data3": 7558205690610402624, - "Data4": 2496123374629508907 + "Data1": 6482496106735241507, + "Data2": -5632006137845861053, + "Data3": -5902478731819820985, + "Data4": -4861547872203913897 }, "Kind": "Components.EventHandler", "Name": "onpointerenter", @@ -11795,31 +11595,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerenter" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerenter" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11842,10 +11638,10 @@ }, { "__Checksum": { - "Data1": 5539970425595830600, - "Data2": 7021769284836871079, - "Data3": 7611456839823976789, - "Data4": -5944920644924701866 + "Data1": -2362876619405756834, + "Data2": 1690387501013985772, + "Data3": 6018500545669392927, + "Data4": 6825138873003342529 }, "Kind": "Components.EventHandler", "Name": "onpointerleave", @@ -11911,31 +11707,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerleave" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerleave" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11958,10 +11750,10 @@ }, { "__Checksum": { - "Data1": -711564165081807438, - "Data2": 4520308147072737518, - "Data3": 5103176159753468431, - "Data4": 4251400873142575344 + "Data1": -8413602580205111867, + "Data2": -5700767381511039156, + "Data3": -298499902154277031, + "Data4": -1971877250491053743 }, "Kind": "Components.EventHandler", "Name": "onpointermove", @@ -12027,31 +11819,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointermove" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointermove" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12074,10 +11862,10 @@ }, { "__Checksum": { - "Data1": 1001738969538072012, - "Data2": -5378665257954222229, - "Data3": -136768412375561435, - "Data4": -7659708495786581435 + "Data1": 2144864367700287499, + "Data2": 4423494774394580856, + "Data3": -8162909701359617749, + "Data4": -1934638848813298266 }, "Kind": "Components.EventHandler", "Name": "onpointerout", @@ -12143,31 +11931,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerout" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerout" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12190,10 +11974,10 @@ }, { "__Checksum": { - "Data1": 2031745077191260163, - "Data2": 2836951590382653926, - "Data3": 106896774618161384, - "Data4": -1429047874143825742 + "Data1": -4832915731373040927, + "Data2": -3645379124209717938, + "Data3": 5090595826452547610, + "Data4": -5721662004122803061 }, "Kind": "Components.EventHandler", "Name": "onpointerover", @@ -12259,31 +12043,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerover" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerover" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12306,10 +12086,10 @@ }, { "__Checksum": { - "Data1": 6117797937985479587, - "Data2": 1424717631174450395, - "Data3": -8923540287425087243, - "Data4": 8680250377133975669 + "Data1": 6602855428127841735, + "Data2": -6959804828078026469, + "Data3": 3921474775593284583, + "Data4": -579299129316613531 }, "Kind": "Components.EventHandler", "Name": "onpointerup", @@ -12375,31 +12155,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerup" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerup" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12422,10 +12198,10 @@ }, { "__Checksum": { - "Data1": -259997514739446311, - "Data2": -3949862888780372812, - "Data3": -1971540590833930834, - "Data4": -4446709509104956028 + "Data1": -8517356995865596965, + "Data2": -992787950199641001, + "Data3": 8023591749468715182, + "Data4": -477094535197733868 }, "Kind": "Components.EventHandler", "Name": "oncanplay", @@ -12491,31 +12267,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncanplay" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncanplay" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12538,10 +12310,10 @@ }, { "__Checksum": { - "Data1": 3415187253573544380, - "Data2": 1357066540771817265, - "Data3": 1192668042235496698, - "Data4": 3365234440120081810 + "Data1": 4629118218007658177, + "Data2": -7241108023393395784, + "Data3": 3229008464593641698, + "Data4": -5784998754638029759 }, "Kind": "Components.EventHandler", "Name": "oncanplaythrough", @@ -12607,31 +12379,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncanplaythrough" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncanplaythrough" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12654,10 +12422,10 @@ }, { "__Checksum": { - "Data1": -6859297001923222178, - "Data2": 3763702373718469321, - "Data3": -6884798471578659041, - "Data4": -2690915798969206765 + "Data1": -5707088807687139046, + "Data2": -3539020173421035295, + "Data3": 5998176378940967845, + "Data4": -8845294488404047632 }, "Kind": "Components.EventHandler", "Name": "oncuechange", @@ -12723,31 +12491,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncuechange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncuechange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12770,10 +12534,10 @@ }, { "__Checksum": { - "Data1": 5748964994866444353, - "Data2": 289142820514211902, - "Data3": 1928142390738088083, - "Data4": -896830889325628076 + "Data1": -1788598345103024084, + "Data2": -682840718304328422, + "Data3": -5710148236194371533, + "Data4": 7470660248046215027 }, "Kind": "Components.EventHandler", "Name": "ondurationchange", @@ -12839,31 +12603,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondurationchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondurationchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12886,10 +12646,10 @@ }, { "__Checksum": { - "Data1": 5343605566184879157, - "Data2": -822614450025992430, - "Data3": 8858745392590378920, - "Data4": -3759863122199772294 + "Data1": -3625429067103254419, + "Data2": 4539422050649057828, + "Data3": -7631501157482005911, + "Data4": 4204638230042759551 }, "Kind": "Components.EventHandler", "Name": "onemptied", @@ -12955,31 +12715,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onemptied" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onemptied" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13002,10 +12758,10 @@ }, { "__Checksum": { - "Data1": 7587005031887781748, - "Data2": -6184883583454133435, - "Data3": -2165535750005891386, - "Data4": 6217643653631035442 + "Data1": -9146971396433179074, + "Data2": -5282983060336594145, + "Data3": -4779369206026873005, + "Data4": -94348007343300824 }, "Kind": "Components.EventHandler", "Name": "onpause", @@ -13071,31 +12827,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpause" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpause" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13118,10 +12870,10 @@ }, { "__Checksum": { - "Data1": -16286162747959751, - "Data2": -333266593655239970, - "Data3": -102706316696374390, - "Data4": -5520149497265258515 + "Data1": 1059137068162022950, + "Data2": -4215602002842057386, + "Data3": 6301567405147335341, + "Data4": 4696929276391390537 }, "Kind": "Components.EventHandler", "Name": "onplay", @@ -13187,31 +12939,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onplay" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onplay" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13234,10 +12982,10 @@ }, { "__Checksum": { - "Data1": -8529626627709558402, - "Data2": 8502471872827500829, - "Data3": 112137623713716468, - "Data4": 8107506951097989756 + "Data1": -5784475203072407219, + "Data2": 2860983261650190928, + "Data3": 631687845329009811, + "Data4": -5326089256190954983 }, "Kind": "Components.EventHandler", "Name": "onplaying", @@ -13303,31 +13051,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onplaying" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onplaying" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13350,10 +13094,10 @@ }, { "__Checksum": { - "Data1": -2243716971781356261, - "Data2": -2243486428670620248, - "Data3": 5247634082025144206, - "Data4": 6442960578843050166 + "Data1": -1968719276996210829, + "Data2": -4888372353790097486, + "Data3": -384622165291078470, + "Data4": 4454151101341103385 }, "Kind": "Components.EventHandler", "Name": "onratechange", @@ -13419,31 +13163,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onratechange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onratechange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13466,10 +13206,10 @@ }, { "__Checksum": { - "Data1": -7383429162636503294, - "Data2": -9136049703297292967, - "Data3": -1049917215045597375, - "Data4": -6144955766809190361 + "Data1": -5575277420642292460, + "Data2": 4804308430389093007, + "Data3": 3918461850642287482, + "Data4": 5057274518924628615 }, "Kind": "Components.EventHandler", "Name": "onseeked", @@ -13535,31 +13275,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onseeked" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onseeked" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13582,10 +13318,10 @@ }, { "__Checksum": { - "Data1": -7994337040615910904, - "Data2": -5885834839292246813, - "Data3": 2173347610538860248, - "Data4": 1840799941117240830 + "Data1": -5063494710674516762, + "Data2": 7410013601124139843, + "Data3": -583553163367105336, + "Data4": 3213876888019643959 }, "Kind": "Components.EventHandler", "Name": "onseeking", @@ -13651,31 +13387,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onseeking" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onseeking" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13698,10 +13430,10 @@ }, { "__Checksum": { - "Data1": 7623752215529251708, - "Data2": 823946282868141714, - "Data3": -6532523101154722281, - "Data4": 2265115827492901297 + "Data1": 6084103135700216292, + "Data2": 6429144624448735926, + "Data3": -8281887254098985812, + "Data4": -2690585504040709743 }, "Kind": "Components.EventHandler", "Name": "onstalled", @@ -13767,31 +13499,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onstalled" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onstalled" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13814,10 +13542,10 @@ }, { "__Checksum": { - "Data1": 5351662504777831591, - "Data2": 5536226642137423374, - "Data3": 3476856708771627053, - "Data4": 4772002411136580981 + "Data1": 246405243843322072, + "Data2": -8822349407240274097, + "Data3": -80538699882916434, + "Data4": 1570202605183528156 }, "Kind": "Components.EventHandler", "Name": "onstop", @@ -13883,31 +13611,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onstop" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onstop" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13930,10 +13654,10 @@ }, { "__Checksum": { - "Data1": -3773134486102041151, - "Data2": -5303691755979948328, - "Data3": -7386228779843377892, - "Data4": 3207053949499221222 + "Data1": 293528524221976117, + "Data2": -3366951729747817650, + "Data3": -5475163449206969678, + "Data4": 3690320208582785874 }, "Kind": "Components.EventHandler", "Name": "onsuspend", @@ -13999,31 +13723,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onsuspend" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onsuspend" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14046,10 +13766,10 @@ }, { "__Checksum": { - "Data1": 3312210782190908774, - "Data2": -8588219188621407725, - "Data3": -8109753740969381136, - "Data4": -2095251202158049885 + "Data1": 305507146321625271, + "Data2": 7173741238827226407, + "Data3": -1333007376625119472, + "Data4": -3143059708732953577 }, "Kind": "Components.EventHandler", "Name": "ontimeupdate", @@ -14115,31 +13835,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontimeupdate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontimeupdate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14162,10 +13878,10 @@ }, { "__Checksum": { - "Data1": -7305069800047749179, - "Data2": -5172920902383206331, - "Data3": 391015758867023567, - "Data4": 8482441857296557730 + "Data1": 1832092438189817910, + "Data2": -4154991746732791329, + "Data3": 976892343367997206, + "Data4": 45633615304561987 }, "Kind": "Components.EventHandler", "Name": "onvolumechange", @@ -14231,31 +13947,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onvolumechange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onvolumechange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14278,10 +13990,10 @@ }, { "__Checksum": { - "Data1": 593709650915600685, - "Data2": -307312212565857477, - "Data3": 6758294691376472510, - "Data4": -1572201468609100345 + "Data1": -6993783120374000756, + "Data2": 5847247330045731879, + "Data3": -7208229469270431962, + "Data4": -7864315108729487104 }, "Kind": "Components.EventHandler", "Name": "onwaiting", @@ -14347,31 +14059,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onwaiting" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onwaiting" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14394,10 +14102,10 @@ }, { "__Checksum": { - "Data1": 7882452388634032889, - "Data2": -3444398838505225659, - "Data3": 4799736048752651083, - "Data4": 1874463589560151822 + "Data1": -6285200834579135833, + "Data2": 2035732230181430265, + "Data3": 3609790375995416568, + "Data4": -6613225275514344390 }, "Kind": "Components.EventHandler", "Name": "onloadstart", @@ -14463,31 +14171,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onloadstart" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onloadstart" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14510,10 +14214,10 @@ }, { "__Checksum": { - "Data1": -3208865689752618202, - "Data2": -6039060768647787701, - "Data3": -6323819805002739290, - "Data4": -7064853970937689756 + "Data1": 1694150034442696923, + "Data2": 1069671084818358101, + "Data3": -3214492484340375293, + "Data4": -1326598221796717690 }, "Kind": "Components.EventHandler", "Name": "ontimeout", @@ -14579,31 +14283,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontimeout" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontimeout" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14626,10 +14326,10 @@ }, { "__Checksum": { - "Data1": 5517286596914179561, - "Data2": -230880993724126423, - "Data3": -4985188932476363437, - "Data4": -7924261506718931601 + "Data1": 2380563678566474524, + "Data2": -1136715120141684409, + "Data3": -1984682432189711320, + "Data4": 2062459213259058505 }, "Kind": "Components.EventHandler", "Name": "onabort", @@ -14695,31 +14395,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onabort" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onabort" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14742,10 +14438,10 @@ }, { "__Checksum": { - "Data1": 2640248037925490589, - "Data2": -389935676788374942, - "Data3": 7348422703346238091, - "Data4": 950949472204027613 + "Data1": 1893109679458908558, + "Data2": -7955171739830713350, + "Data3": -7143377721943900835, + "Data4": -2818643425800890408 }, "Kind": "Components.EventHandler", "Name": "onload", @@ -14811,31 +14507,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onload" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onload" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14858,10 +14550,10 @@ }, { "__Checksum": { - "Data1": 6361780924464596780, - "Data2": -1804182222262416346, - "Data3": 5584007445419305339, - "Data4": 2464241323453385090 + "Data1": 1773103568781512608, + "Data2": -5445138843615588881, + "Data3": -6756415198543367473, + "Data4": 1971274505118157439 }, "Kind": "Components.EventHandler", "Name": "onloadend", @@ -14927,31 +14619,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onloadend" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onloadend" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14974,10 +14662,10 @@ }, { "__Checksum": { - "Data1": -3987842527220306591, - "Data2": -6472666418911948201, - "Data3": 4474144720116591146, - "Data4": -4977092847955973775 + "Data1": -1761524245764503792, + "Data2": -5978964798168000293, + "Data3": 9011375316736691779, + "Data4": -441653473004576 }, "Kind": "Components.EventHandler", "Name": "onprogress", @@ -15043,31 +14731,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onprogress" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onprogress" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15090,10 +14774,10 @@ }, { "__Checksum": { - "Data1": 5480734986078559925, - "Data2": -9186361750575766070, - "Data3": 1258461978763052951, - "Data4": -2466887559970426836 + "Data1": 6760573744222223865, + "Data2": -3878583513165488469, + "Data3": 4521116122300886525, + "Data4": 2947477448943339481 }, "Kind": "Components.EventHandler", "Name": "onerror", @@ -15159,31 +14843,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onerror" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onerror" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15206,10 +14886,10 @@ }, { "__Checksum": { - "Data1": -3803670477853102010, - "Data2": -3353912797114447522, - "Data3": 3887447057752885684, - "Data4": -7871759346705495936 + "Data1": -7664205254589202189, + "Data2": -3453900203848537869, + "Data3": 5381695674163240261, + "Data4": 5140689584628676755 }, "Kind": "Components.EventHandler", "Name": "onactivate", @@ -15275,31 +14955,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onactivate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onactivate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15322,10 +14998,10 @@ }, { "__Checksum": { - "Data1": 8805204294556538525, - "Data2": -2356897028422896907, - "Data3": -8312013638718554443, - "Data4": -7994810128451906235 + "Data1": -1693746754447189996, + "Data2": -4305422666207016239, + "Data3": 3716145686732648141, + "Data4": -1211307605170481463 }, "Kind": "Components.EventHandler", "Name": "onbeforeactivate", @@ -15391,31 +15067,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15438,10 +15110,10 @@ }, { "__Checksum": { - "Data1": -8611419312725385816, - "Data2": -4139870421362047494, - "Data3": 4973600697304848632, - "Data4": 2472479503276106655 + "Data1": 1312066357581846522, + "Data2": -6727246692053051819, + "Data3": 6349367685571933293, + "Data4": -5989922618684855487 }, "Kind": "Components.EventHandler", "Name": "onbeforedeactivate", @@ -15507,31 +15179,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforedeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforedeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15554,10 +15222,10 @@ }, { "__Checksum": { - "Data1": 4791236511695847760, - "Data2": 312516141702812934, - "Data3": 8237704925604603450, - "Data4": -3937672952356560506 + "Data1": -8647793524939028632, + "Data2": 955743316717787413, + "Data3": 5859052869483680726, + "Data4": 7506331123294323471 }, "Kind": "Components.EventHandler", "Name": "ondeactivate", @@ -15623,31 +15291,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15670,10 +15334,10 @@ }, { "__Checksum": { - "Data1": 1936349161302817158, - "Data2": 2271322694401344492, - "Data3": -8339908410001989826, - "Data4": 7546429217263541845 + "Data1": 1906284907089214848, + "Data2": 443188841020385088, + "Data3": -5028477845044567293, + "Data4": -1850545874622278529 }, "Kind": "Components.EventHandler", "Name": "onended", @@ -15739,31 +15403,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onended" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onended" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15786,10 +15446,10 @@ }, { "__Checksum": { - "Data1": -5680030528602112438, - "Data2": -6320129605653645803, - "Data3": -7255378352851181249, - "Data4": -6002392956716526008 + "Data1": -396938278057026480, + "Data2": -7643873025564860557, + "Data3": -1229704884769523426, + "Data4": 5165627441129530916 }, "Kind": "Components.EventHandler", "Name": "onfullscreenchange", @@ -15855,31 +15515,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfullscreenchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfullscreenchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15902,10 +15558,10 @@ }, { "__Checksum": { - "Data1": 4781388477919751940, - "Data2": 8601929763457414002, - "Data3": -5778004181091268115, - "Data4": -1287845292857900007 + "Data1": 8455409692328489706, + "Data2": -8430176529168880915, + "Data3": 3283677877177499758, + "Data4": 413805143971355079 }, "Kind": "Components.EventHandler", "Name": "onfullscreenerror", @@ -15971,31 +15627,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfullscreenerror" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfullscreenerror" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16018,10 +15670,10 @@ }, { "__Checksum": { - "Data1": -911870474655330118, - "Data2": -1405496868336768916, - "Data3": 8390996053480263818, - "Data4": 5248373465439382189 + "Data1": -4454430292558936412, + "Data2": -1109499151669397957, + "Data3": -4197866983520898941, + "Data4": -1538235480261615795 }, "Kind": "Components.EventHandler", "Name": "onloadeddata", @@ -16087,31 +15739,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onloadeddata" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onloadeddata" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16134,10 +15782,10 @@ }, { "__Checksum": { - "Data1": 8370334749715402415, - "Data2": 8554880655860903061, - "Data3": -4476024602383204342, - "Data4": 3651343592203203583 + "Data1": 6862941353545766880, + "Data2": 7918769923840348038, + "Data3": -1948391046523206943, + "Data4": 2940449063330701396 }, "Kind": "Components.EventHandler", "Name": "onloadedmetadata", @@ -16203,31 +15851,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onloadedmetadata" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onloadedmetadata" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16250,10 +15894,10 @@ }, { "__Checksum": { - "Data1": -341901047023207503, - "Data2": -8495994002760927968, - "Data3": 261394283688568312, - "Data4": 315966696347312304 + "Data1": -5319856823806878114, + "Data2": 6640686403219892770, + "Data3": 6596596643185515064, + "Data4": -8333154803890283708 }, "Kind": "Components.EventHandler", "Name": "onpointerlockchange", @@ -16319,31 +15963,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerlockchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerlockchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16366,10 +16006,10 @@ }, { "__Checksum": { - "Data1": -1900113584630384717, - "Data2": -2180580021106248266, - "Data3": -5265969542243742196, - "Data4": 2572919969243757125 + "Data1": -2405315184326742362, + "Data2": -4336956376583241421, + "Data3": 2067781814523124254, + "Data4": -8683903035252113557 }, "Kind": "Components.EventHandler", "Name": "onpointerlockerror", @@ -16435,31 +16075,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerlockerror" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerlockerror" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16482,10 +16118,10 @@ }, { "__Checksum": { - "Data1": 4837019075015193591, - "Data2": 7087602864750864527, - "Data3": 4805132055039542629, - "Data4": 2766956913945018243 + "Data1": -7823779853248095029, + "Data2": 2896948618275552326, + "Data3": 6015849736099765352, + "Data4": -8165407376096835581 }, "Kind": "Components.EventHandler", "Name": "onreadystatechange", @@ -16551,31 +16187,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onreadystatechange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onreadystatechange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16598,10 +16230,10 @@ }, { "__Checksum": { - "Data1": 4149677710501796733, - "Data2": 36043277307705683, - "Data3": -4792850075748737341, - "Data4": 7875696479337195571 + "Data1": -4086907535258678610, + "Data2": 2273919336126465370, + "Data3": 5801632512138309614, + "Data4": -4798362539997732828 }, "Kind": "Components.EventHandler", "Name": "onscroll", @@ -16667,31 +16299,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onscroll" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onscroll" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16714,10 +16342,10 @@ }, { "__Checksum": { - "Data1": 1140419827034931787, - "Data2": 6770507407134574405, - "Data3": -8001041985769797285, - "Data4": -7579531138963952213 + "Data1": 4753124172124543843, + "Data2": 4390281967717981656, + "Data3": 7035810605520754206, + "Data4": -2512411399122211635 }, "Kind": "Components.EventHandler", "Name": "ontoggle", @@ -16783,31 +16411,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontoggle" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontoggle" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -143977,10 +143601,10 @@ }, { "__Checksum": { - "Data1": -4956411382073006453, - "Data2": 516732521478035673, - "Data3": 3816531986645240906, - "Data4": 604760014856119338 + "Data1": -1073301647227589633, + "Data2": 8101759897890733284, + "Data3": -6920811933630909984, + "Data4": -6290663200272122769 }, "Kind": "Components.Bind", "Name": "Bind", @@ -144018,73 +143642,60 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format", + "TypeName": 2, "Documentation": { "Id": 2 - }, - "Metadata": { - "Common.PropertyName": "Format" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event", + "TypeName": 2, "Documentation": { "Id": 1, "Args": [ "@bind-..." ] - }, - "Metadata": { - "Common.PropertyName": "Event" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -144106,10 +143717,10 @@ }, { "__Checksum": { - "Data1": 7402027333053994539, - "Data2": -3446878997932190904, - "Data3": -3101521142354767554, - "Data4": -6760953170491785234 + "Data1": -1556004898731902221, + "Data2": 7829188875044190705, + "Data3": -5991469701502087751, + "Data4": -6643408075181463790 }, "Kind": "Components.Bind", "Name": "Bind", @@ -144170,76 +143781,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -144278,10 +143876,10 @@ }, { "__Checksum": { - "Data1": 8844774585541617356, - "Data2": 8658003120836766162, - "Data3": 4305185477720729866, - "Data4": 7023709757413983193 + "Data1": -4721804179514870219, + "Data2": 7607236171508579391, + "Data3": -4587957588803971833, + "Data4": -1541458591551164882 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -144342,76 +143940,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -144450,10 +144035,10 @@ }, { "__Checksum": { - "Data1": -6139627449151613019, - "Data2": 1628249431281193389, - "Data3": -802943671935024249, - "Data4": 648384761177778230 + "Data1": -9012130317925565883, + "Data2": -8385752469162579727, + "Data3": -3360898089607708973, + "Data4": 1630998681911142131 }, "Kind": "Components.Bind", "Name": "Bind", @@ -144526,76 +144111,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_checked", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_checked" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_checked", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_checked" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -144635,10 +144207,10 @@ }, { "__Checksum": { - "Data1": 6068105800957731755, - "Data2": 1958126132282487755, - "Data3": 4852930634683786960, - "Data4": 3769138096448137878 + "Data1": 1549220529411200477, + "Data2": -2761563220845679330, + "Data3": -1847807182485603835, + "Data4": -3423906826708397841 }, "Kind": "Components.Bind", "Name": "Bind", @@ -144711,76 +144283,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -144820,10 +144379,10 @@ }, { "__Checksum": { - "Data1": -3192163379129342866, - "Data2": -908092289118660396, - "Data3": 8916901005292949522, - "Data4": -694254851830939888 + "Data1": 8735413799192487182, + "Data2": 5230765264560867301, + "Data3": 5051546020838539200, + "Data4": 2018314258591378276 }, "Kind": "Components.Bind", "Name": "Bind", @@ -144896,76 +144455,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -145005,10 +144551,10 @@ }, { "__Checksum": { - "Data1": 3657137836086790504, - "Data2": -8441360560393812229, - "Data3": 2083449763440333656, - "Data4": -7746762440594570849 + "Data1": -6251259028650079662, + "Data2": 7168576928716550522, + "Data3": 1403993109432839481, + "Data4": 6167908272748344637 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -145081,76 +144627,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -145190,10 +144723,10 @@ }, { "__Checksum": { - "Data1": -7210429511237930730, - "Data2": 3700914488903705463, - "Data3": 1755174149562436174, - "Data4": 4654468164006271658 + "Data1": -4394598297581586680, + "Data2": 2224518312051877274, + "Data3": -2794255316184007845, + "Data4": 1833766771664005764 }, "Kind": "Components.Bind", "Name": "Bind", @@ -145266,76 +144799,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -145375,10 +144895,10 @@ }, { "__Checksum": { - "Data1": 6520226159997619286, - "Data2": -3528059980413999827, - "Data3": 6463875126138844678, - "Data4": 455218432979510465 + "Data1": 7513898485628571921, + "Data2": 9204617037395680736, + "Data3": 7156667228265874567, + "Data4": -1279991360901700991 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -145451,76 +144971,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -145560,10 +145067,10 @@ }, { "__Checksum": { - "Data1": -5265448538819468886, - "Data2": -5244566089296707730, - "Data3": 9114408832821437652, - "Data4": 6068985787287525837 + "Data1": 6065669705363870747, + "Data2": -1748370172846223305, + "Data3": -1034028830525457953, + "Data4": 9199791234749301344 }, "Kind": "Components.Bind", "Name": "Bind", @@ -145636,76 +145143,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -145745,10 +145239,10 @@ }, { "__Checksum": { - "Data1": 3101210583463877685, - "Data2": -8736249305119653430, - "Data3": -2164829316630798434, - "Data4": -4331253107632651662 + "Data1": 2262595175992799016, + "Data2": 1497381156082470256, + "Data3": -4152647695859345462, + "Data4": -1087305299235597026 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -145821,76 +145315,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -145930,10 +145411,10 @@ }, { "__Checksum": { - "Data1": -5189851214647459156, - "Data2": 6997728873791061517, - "Data3": -6652651042841705090, - "Data4": -2714701243441476264 + "Data1": 3530375003684148846, + "Data2": 1678816126431870996, + "Data3": -6398414745134880827, + "Data4": 8771218935058771279 }, "Kind": "Components.Bind", "Name": "Bind", @@ -146006,76 +145487,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -146115,10 +145583,10 @@ }, { "__Checksum": { - "Data1": 4666257921032366535, - "Data2": -2689373953497127477, - "Data3": 5820845103411567289, - "Data4": -1399037484187168549 + "Data1": 5193172178106771296, + "Data2": 8305085487092208634, + "Data3": 5058761880136319390, + "Data4": -4185226980644972553 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -146191,76 +145659,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -146300,10 +145755,10 @@ }, { "__Checksum": { - "Data1": 3219901297506981950, - "Data2": -4399880091467860075, - "Data3": 9081026489297834595, - "Data4": 9194712501025302398 + "Data1": 2548659463358859266, + "Data2": -2352573489261492797, + "Data3": 5929663946111134036, + "Data4": -3071770098965250483 }, "Kind": "Components.Bind", "Name": "Bind", @@ -146376,76 +145831,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -146485,10 +145927,10 @@ }, { "__Checksum": { - "Data1": 3060167502699573182, - "Data2": 3516087094815481835, - "Data3": -6236246758717087683, - "Data4": 9206904560509313410 + "Data1": -8845957714180709455, + "Data2": -3321753692228733690, + "Data3": 4937282102329962251, + "Data4": 7486711684880919745 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -146561,76 +146003,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -146670,10 +146099,10 @@ }, { "__Checksum": { - "Data1": 8989652253133676506, - "Data2": -8892643895572038104, - "Data3": -6216481859063566605, - "Data4": -936080324882560203 + "Data1": 1480048902184114821, + "Data2": -5176199698937666041, + "Data3": -5329087519324644459, + "Data4": -262845877164119105 }, "Kind": "Components.Bind", "Name": "Bind", @@ -146734,76 +146163,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -146842,10 +146258,10 @@ }, { "__Checksum": { - "Data1": 8267406816439511629, - "Data2": -8070515216210757972, - "Data3": 3797801915330303535, - "Data4": 8813063268165781585 + "Data1": -6607248474983469194, + "Data2": 7639608389418746979, + "Data3": 4800089072749287555, + "Data4": -224888138103330670 }, "Kind": "Components.Bind", "Name": "Bind", @@ -146906,76 +146322,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147014,10 +146417,10 @@ }, { "__Checksum": { - "Data1": -960011711740559922, - "Data2": -8022787084652653840, - "Data3": -9059182930809321800, - "Data4": 3446386250744275939 + "Data1": -3276191800921921802, + "Data2": 4513260245355185204, + "Data3": -2576952910462202359, + "Data4": -937506176843006316 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", @@ -147078,37 +146481,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147131,10 +146527,10 @@ }, { "__Checksum": { - "Data1": -1703059564437539489, - "Data2": -977913726472460743, - "Data3": -5654365996384152609, - "Data4": 3153774339147487699 + "Data1": -2088088777708089979, + "Data2": 8575525148995798498, + "Data3": 158776863372837806, + "Data4": 3902257292046130122 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", @@ -147195,37 +146591,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147249,10 +146638,10 @@ }, { "__Checksum": { - "Data1": 7843810788710194448, - "Data2": 4322325964591229058, - "Data3": 570175307709215678, - "Data4": 448364692654265271 + "Data1": 7018675345428767976, + "Data2": -1365168072988000591, + "Data3": -8784073059659437102, + "Data4": 3592457312435978779 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", @@ -147313,37 +146702,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147366,10 +146748,10 @@ }, { "__Checksum": { - "Data1": -6466330588814503818, - "Data2": 424735198563788609, - "Data3": -2612843300788331659, - "Data4": 491996349997901495 + "Data1": 4114637234506317754, + "Data2": -6805817000095944842, + "Data3": -9022280586090709983, + "Data4": 5567039216260504126 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", @@ -147430,37 +146812,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147484,10 +146859,10 @@ }, { "__Checksum": { - "Data1": -6286832222660170180, - "Data2": -916078296290814949, - "Data3": 7692715090507250587, - "Data4": -3464213187979528483 + "Data1": -8961389199761290019, + "Data2": -5821760351464054316, + "Data3": -2980198449104638410, + "Data4": 2046454222357699386 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", @@ -147548,37 +146923,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147601,10 +146969,10 @@ }, { "__Checksum": { - "Data1": -3690200114443874820, - "Data2": 2777513507250896605, - "Data3": -73161014199470040, - "Data4": -5870339312383060886 + "Data1": -4690655020524261271, + "Data2": -8275349966617060297, + "Data3": 3961478111746509057, + "Data4": 6888637949762861865 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", @@ -147665,37 +147033,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147719,10 +147080,10 @@ }, { "__Checksum": { - "Data1": -8268174122080178268, - "Data2": 6970402634146870399, - "Data3": 5727037980354914138, - "Data4": 411720478786037415 + "Data1": -5717882134386465073, + "Data2": 8034896147222961196, + "Data3": -2837159614071967350, + "Data4": 5210987620701611409 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", @@ -147783,37 +147144,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147836,10 +147190,10 @@ }, { "__Checksum": { - "Data1": 7163771992523568394, - "Data2": -7437325150105231996, - "Data3": 734376592578972009, - "Data4": 7115028067981471260 + "Data1": 5984347378442387488, + "Data2": 188862352023201556, + "Data3": 6521783132572974966, + "Data4": -905545728348648981 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", @@ -147900,37 +147254,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147954,10 +147301,10 @@ }, { "__Checksum": { - "Data1": 5351108948226454620, - "Data2": -2954289968439605647, - "Data3": 3733221384548320271, - "Data4": -7705797846292557390 + "Data1": -3264438285090029890, + "Data2": 1801940021254323519, + "Data3": -3020105652873365421, + "Data4": -7839071809104232476 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", @@ -148018,37 +147365,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -148071,10 +147411,10 @@ }, { "__Checksum": { - "Data1": -52112667549248369, - "Data2": 636326677130659578, - "Data3": -5684615603336029330, - "Data4": -9119613647709862212 + "Data1": 6842202156290866491, + "Data2": -3914392770148398935, + "Data3": -4192744942988181366, + "Data4": -2347925610916699686 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", @@ -148135,37 +147475,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -148189,10 +147522,10 @@ }, { "__Checksum": { - "Data1": 8169860100540165305, - "Data2": 8097607686873152988, - "Data3": 7300025027054631533, - "Data4": -7207419192900064047 + "Data1": 9090280802210564846, + "Data2": -6266284878899832283, + "Data3": 6989333063678890185, + "Data4": 2920980918393632342 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", @@ -148253,37 +147586,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -148306,10 +147632,10 @@ }, { "__Checksum": { - "Data1": -6567775896921388091, - "Data2": 8108027945637834184, - "Data3": 291356362209817215, - "Data4": -9080380078428802894 + "Data1": -6590276302536833864, + "Data2": -5394958843841354575, + "Data3": 4288607606627449254, + "Data4": -9051709823621622449 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", @@ -148370,37 +147696,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -148424,10 +147743,10 @@ }, { "__Checksum": { - "Data1": 5470880301241973659, - "Data2": 7006311831299753154, - "Data3": -6890578684808138809, - "Data4": -1483406253993667552 + "Data1": -429484931486236910, + "Data2": -7734931497761470796, + "Data3": -1015320485118632528, + "Data4": 3157981366101583363 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", @@ -148488,37 +147807,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -148541,10 +147853,10 @@ }, { "__Checksum": { - "Data1": -2375944316459808049, - "Data2": -2851744261248584751, - "Data3": -19476265537583022, - "Data4": 6745520080649124262 + "Data1": 2407412623707583861, + "Data2": -1616016677399057252, + "Data3": -724398860504216064, + "Data4": -2552689729345681718 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", @@ -148605,37 +147917,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], diff --git a/src/Shared/files/Tooling/Telerik/Kendo.Mvc.Examples.taghelpers.json b/src/Shared/files/Tooling/Telerik/Kendo.Mvc.Examples.taghelpers.json index 59f13f760b2..90a4db60b8d 100644 --- a/src/Shared/files/Tooling/Telerik/Kendo.Mvc.Examples.taghelpers.json +++ b/src/Shared/files/Tooling/Telerik/Kendo.Mvc.Examples.taghelpers.json @@ -5913,10 +5913,10 @@ }, { "__Checksum": { - "Data1": 6047026887317017772, - "Data2": -4508084249633088946, - "Data3": -5927311961329022405, - "Data4": 9035981505318525756 + "Data1": -6465587773490381159, + "Data2": 7535074613755532958, + "Data3": -6597400106414466904, + "Data4": -4718295965203228666 }, "Kind": "Components.EventHandler", "Name": "onfocus", @@ -5982,31 +5982,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfocus" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfocus" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6029,10 +6025,10 @@ }, { "__Checksum": { - "Data1": 7332788971497905640, - "Data2": -8541963829760085535, - "Data3": 1430468808176028699, - "Data4": 1419625672529866908 + "Data1": 3922960561969939214, + "Data2": 2174238041354609490, + "Data3": 6278244008069449085, + "Data4": 7975697877211154135 }, "Kind": "Components.EventHandler", "Name": "onblur", @@ -6098,31 +6094,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onblur" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onblur" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6145,10 +6137,10 @@ }, { "__Checksum": { - "Data1": -5781133336234525322, - "Data2": 3719151934547428160, - "Data3": 5406025833203121897, - "Data4": -1476178686617567973 + "Data1": 3827718291310388734, + "Data2": -2988755441088730532, + "Data3": 926934914465422300, + "Data4": 1954337354554334265 }, "Kind": "Components.EventHandler", "Name": "onfocusin", @@ -6214,31 +6206,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfocusin" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfocusin" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6261,10 +6249,10 @@ }, { "__Checksum": { - "Data1": -1693134630263997206, - "Data2": -533288755180455703, - "Data3": 2719322161973441581, - "Data4": 5318341378063528532 + "Data1": -3522629918317327344, + "Data2": -1485009587756691819, + "Data3": 1807056340270892927, + "Data4": 5991603992002843538 }, "Kind": "Components.EventHandler", "Name": "onfocusout", @@ -6330,31 +6318,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfocusout" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfocusout" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6377,10 +6361,10 @@ }, { "__Checksum": { - "Data1": -2607626939905438992, - "Data2": -1036478999287336737, - "Data3": 8144846070015279171, - "Data4": -6084546997573366169 + "Data1": 4719679284010052614, + "Data2": -6037487177636854366, + "Data3": 3980125903044192178, + "Data4": -1160956382569708684 }, "Kind": "Components.EventHandler", "Name": "onmouseover", @@ -6446,31 +6430,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseover" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseover" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6493,10 +6473,10 @@ }, { "__Checksum": { - "Data1": 2496264225608889538, - "Data2": 1835166405042331793, - "Data3": -2805646357002840381, - "Data4": -3740422317011027010 + "Data1": -2517308608647479670, + "Data2": -5139125921065721692, + "Data3": 3322751183034831620, + "Data4": -5611729191927699236 }, "Kind": "Components.EventHandler", "Name": "onmouseout", @@ -6562,31 +6542,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseout" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseout" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6609,10 +6585,10 @@ }, { "__Checksum": { - "Data1": 8476218347103556414, - "Data2": -8427298635768969164, - "Data3": 3387631042301122858, - "Data4": -2097441240446929882 + "Data1": 3664463825940920196, + "Data2": 8828846019351256654, + "Data3": -223456287656935559, + "Data4": 7461978948651665487 }, "Kind": "Components.EventHandler", "Name": "onmouseleave", @@ -6678,31 +6654,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseleave" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseleave" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6725,10 +6697,10 @@ }, { "__Checksum": { - "Data1": -3871963670627187680, - "Data2": 7879037207930218929, - "Data3": -3186526955181269865, - "Data4": -7372010524365462789 + "Data1": -841678271861648746, + "Data2": 1355330575336854718, + "Data3": -3471689290251880713, + "Data4": 6317639043586385517 }, "Kind": "Components.EventHandler", "Name": "onmouseenter", @@ -6794,31 +6766,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseenter" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseenter" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6841,10 +6809,10 @@ }, { "__Checksum": { - "Data1": 2665527030597264325, - "Data2": 442339100000135636, - "Data3": 7742313068710279026, - "Data4": -4554407899484104843 + "Data1": -8999018585483935701, + "Data2": -3890567381620569097, + "Data3": -5100889117651095789, + "Data4": -6863457054907620445 }, "Kind": "Components.EventHandler", "Name": "onmousemove", @@ -6910,31 +6878,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmousemove" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmousemove" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -6957,10 +6921,10 @@ }, { "__Checksum": { - "Data1": -3245687421161492477, - "Data2": 481036742404428755, - "Data3": -8499383570115558517, - "Data4": -4009137393771576123 + "Data1": -7527427037382849112, + "Data2": 4042853249102039431, + "Data3": -4167170694211966184, + "Data4": -2180020198076536278 }, "Kind": "Components.EventHandler", "Name": "onmousedown", @@ -7026,31 +6990,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmousedown" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmousedown" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7073,10 +7033,10 @@ }, { "__Checksum": { - "Data1": 6811149048034138543, - "Data2": 9055346314194565790, - "Data3": 6218743337272204781, - "Data4": 494487771164003491 + "Data1": 1499097655157122654, + "Data2": 4011670832160661146, + "Data3": -3017464299655988853, + "Data4": 5331598497616975675 }, "Kind": "Components.EventHandler", "Name": "onmouseup", @@ -7142,31 +7102,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmouseup" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmouseup" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7189,10 +7145,10 @@ }, { "__Checksum": { - "Data1": -5216193914736213729, - "Data2": 7300246371238740720, - "Data3": -323831195702061987, - "Data4": -5814794816245574342 + "Data1": 5842743917841288001, + "Data2": -2264286113015980950, + "Data3": -7244925475129355886, + "Data4": 4299288348001316974 }, "Kind": "Components.EventHandler", "Name": "onclick", @@ -7258,31 +7214,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onclick" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onclick" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7305,10 +7257,10 @@ }, { "__Checksum": { - "Data1": 6968566271842145395, - "Data2": -17883870018577415, - "Data3": 208023758140888935, - "Data4": 2290473049761130632 + "Data1": 2620506878031740205, + "Data2": 141975143151795759, + "Data3": 5121298285083402139, + "Data4": -1960590552236709803 }, "Kind": "Components.EventHandler", "Name": "ondblclick", @@ -7374,31 +7326,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondblclick" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondblclick" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7421,10 +7369,10 @@ }, { "__Checksum": { - "Data1": -6832266313703754952, - "Data2": 8424878414357466395, - "Data3": -3630942783497325528, - "Data4": -8688959150094885914 + "Data1": -1018886666421110275, + "Data2": 812524389814512043, + "Data3": -5025771482729477954, + "Data4": -1403302363189702754 }, "Kind": "Components.EventHandler", "Name": "onwheel", @@ -7490,31 +7438,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onwheel" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onwheel" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7537,10 +7481,10 @@ }, { "__Checksum": { - "Data1": 4728781118904122511, - "Data2": -1283512924236747993, - "Data3": -3466031805110974420, - "Data4": 5339080886917887668 + "Data1": 8455769333687009820, + "Data2": 5742320475525345635, + "Data3": 2267392040673083720, + "Data4": 1353306075721455459 }, "Kind": "Components.EventHandler", "Name": "onmousewheel", @@ -7606,31 +7550,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onmousewheel" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onmousewheel" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7653,10 +7593,10 @@ }, { "__Checksum": { - "Data1": 8023485693772935410, - "Data2": -1364693856223591523, - "Data3": -1379191194653808512, - "Data4": 7011513567773879467 + "Data1": 5866507126627341590, + "Data2": 2936673807454416411, + "Data3": -5290716116845906785, + "Data4": 8363257237998436509 }, "Kind": "Components.EventHandler", "Name": "oncontextmenu", @@ -7722,31 +7662,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncontextmenu" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncontextmenu" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7769,10 +7705,10 @@ }, { "__Checksum": { - "Data1": -2181225571089942960, - "Data2": 8259409794359197167, - "Data3": 3031186878260122362, - "Data4": 5383033199240539373 + "Data1": 7181065197870870517, + "Data2": 3084007880969192524, + "Data3": -227946195396508294, + "Data4": 5704366182847069435 }, "Kind": "Components.EventHandler", "Name": "ondrag", @@ -7838,31 +7774,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondrag" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondrag" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -7885,10 +7817,10 @@ }, { "__Checksum": { - "Data1": -4811802129701968717, - "Data2": -4681333014681454993, - "Data3": 4456880278066877224, - "Data4": -9006292183047762700 + "Data1": 9138138522320706846, + "Data2": 8917470108640680039, + "Data3": -1090110288218714537, + "Data4": 8156552988483215598 }, "Kind": "Components.EventHandler", "Name": "ondragend", @@ -7954,31 +7886,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragend" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragend" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8001,10 +7929,10 @@ }, { "__Checksum": { - "Data1": -6654574822456750620, - "Data2": 8046154493035059423, - "Data3": -3112448663427061050, - "Data4": 5399061999628553092 + "Data1": 5993047465740969478, + "Data2": -645794873687625372, + "Data3": 4411793638442113045, + "Data4": -2182860268158911274 }, "Kind": "Components.EventHandler", "Name": "ondragenter", @@ -8070,31 +7998,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragenter" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragenter" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8117,10 +8041,10 @@ }, { "__Checksum": { - "Data1": -1577873322971605981, - "Data2": -2169806260402290491, - "Data3": -6410392401845890237, - "Data4": -2951589261288399266 + "Data1": 643961210950863711, + "Data2": -8679857167680824771, + "Data3": 3651588027436503457, + "Data4": -4711680326248175511 }, "Kind": "Components.EventHandler", "Name": "ondragleave", @@ -8186,31 +8110,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragleave" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragleave" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8233,10 +8153,10 @@ }, { "__Checksum": { - "Data1": -2608174897690276432, - "Data2": 2038599822250087783, - "Data3": 3254757248611194109, - "Data4": 2243603005428566409 + "Data1": -5307007483605923523, + "Data2": 595504818010280652, + "Data3": -231275281916851905, + "Data4": -6168021898791241900 }, "Kind": "Components.EventHandler", "Name": "ondragover", @@ -8302,31 +8222,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragover" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragover" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8349,10 +8265,10 @@ }, { "__Checksum": { - "Data1": -6094446339351077495, - "Data2": -8160353778039689611, - "Data3": -3485188431078549341, - "Data4": 8855134020084022660 + "Data1": 4997880789409733277, + "Data2": 4062967912102442479, + "Data3": -3274980429523621759, + "Data4": 8344879387406235935 }, "Kind": "Components.EventHandler", "Name": "ondragstart", @@ -8418,31 +8334,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondragstart" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondragstart" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8465,10 +8377,10 @@ }, { "__Checksum": { - "Data1": 6768543876078749417, - "Data2": -7653673437507506953, - "Data3": 3832452929334985725, - "Data4": -8024435062539759732 + "Data1": -5117519943565302600, + "Data2": -282535833899837640, + "Data3": -587826129906022188, + "Data4": -5186587993067057403 }, "Kind": "Components.EventHandler", "Name": "ondrop", @@ -8534,31 +8446,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondrop" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondrop" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8581,10 +8489,10 @@ }, { "__Checksum": { - "Data1": -904106963592523608, - "Data2": -2479391200992788997, - "Data3": -3125341680503857394, - "Data4": -4495946951115286801 + "Data1": -4488320895469629587, + "Data2": -4354446904858488124, + "Data3": 3476068273635033022, + "Data4": -2378627222450335552 }, "Kind": "Components.EventHandler", "Name": "onkeydown", @@ -8650,31 +8558,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onkeydown" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onkeydown" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8697,10 +8601,10 @@ }, { "__Checksum": { - "Data1": -2762540601503860190, - "Data2": 6537596651685718742, - "Data3": -4968777981327903699, - "Data4": 5445638825637714351 + "Data1": -3065544849487249174, + "Data2": 7275382063339441280, + "Data3": 4257418289076185769, + "Data4": 4650954062822818606 }, "Kind": "Components.EventHandler", "Name": "onkeyup", @@ -8766,31 +8670,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onkeyup" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onkeyup" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8813,10 +8713,10 @@ }, { "__Checksum": { - "Data1": -3150386372233545282, - "Data2": 3872706444740851607, - "Data3": -5003909694691906593, - "Data4": 2767105148129643530 + "Data1": 2684959576086536102, + "Data2": -2060164410703761768, + "Data3": 6053754243341442598, + "Data4": -7692618678005444574 }, "Kind": "Components.EventHandler", "Name": "onkeypress", @@ -8882,31 +8782,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onkeypress" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onkeypress" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -8929,10 +8825,10 @@ }, { "__Checksum": { - "Data1": -5739078806659387639, - "Data2": 6990517037142761482, - "Data3": 3255874663260615120, - "Data4": -536866768904251924 + "Data1": -7584621526987209222, + "Data2": 6296633483679274967, + "Data3": 4108917095665830259, + "Data4": 8728791231176131261 }, "Kind": "Components.EventHandler", "Name": "onchange", @@ -8998,31 +8894,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9045,10 +8937,10 @@ }, { "__Checksum": { - "Data1": 20872680784986129, - "Data2": -1280628360868871018, - "Data3": 4599508431640933635, - "Data4": 5310881484231576393 + "Data1": 4023366590626973548, + "Data2": -4000437393701196393, + "Data3": -5453294020141143770, + "Data4": -7793400469412774879 }, "Kind": "Components.EventHandler", "Name": "oninput", @@ -9114,31 +9006,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oninput" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oninput" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9161,10 +9049,10 @@ }, { "__Checksum": { - "Data1": -2398474118270879716, - "Data2": 1941517868360774955, - "Data3": 6049640605823773064, - "Data4": 884354251738426809 + "Data1": -5302080963814639005, + "Data2": -5382300485274367385, + "Data3": 4309544325908333913, + "Data4": -8220266761205956267 }, "Kind": "Components.EventHandler", "Name": "oninvalid", @@ -9230,31 +9118,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oninvalid" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oninvalid" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9277,10 +9161,10 @@ }, { "__Checksum": { - "Data1": -2354917177562196159, - "Data2": -3044088487990651744, - "Data3": 8886614317634031584, - "Data4": -4727253319280409082 + "Data1": 8734858102839951686, + "Data2": -2347259868355024479, + "Data3": 2145930144175565539, + "Data4": 6083241797791414271 }, "Kind": "Components.EventHandler", "Name": "onreset", @@ -9346,31 +9230,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onreset" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onreset" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9393,10 +9273,10 @@ }, { "__Checksum": { - "Data1": -1058526240597162816, - "Data2": 532131020924320221, - "Data3": 1602963208656305535, - "Data4": 1088787240367428204 + "Data1": -2088011628329944041, + "Data2": -4999546565367881781, + "Data3": 7471613055237126019, + "Data4": 8330518124309523037 }, "Kind": "Components.EventHandler", "Name": "onselect", @@ -9462,31 +9342,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onselect" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onselect" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9509,10 +9385,10 @@ }, { "__Checksum": { - "Data1": 3093537362408529852, - "Data2": -6813613706441731119, - "Data3": 5163333025208264432, - "Data4": 2321339005933797191 + "Data1": -5288273382229968961, + "Data2": -42001991506114637, + "Data3": -3758671851226525360, + "Data4": -7595366435962408260 }, "Kind": "Components.EventHandler", "Name": "onselectstart", @@ -9578,31 +9454,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onselectstart" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onselectstart" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9625,10 +9497,10 @@ }, { "__Checksum": { - "Data1": -6247529119239298926, - "Data2": -4063912787643106663, - "Data3": 2756237083891577198, - "Data4": 6432983232027926564 + "Data1": 906694272796350418, + "Data2": -9007971882201471679, + "Data3": -524300612543727045, + "Data4": -3973740341548814289 }, "Kind": "Components.EventHandler", "Name": "onselectionchange", @@ -9694,31 +9566,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onselectionchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onselectionchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9741,10 +9609,10 @@ }, { "__Checksum": { - "Data1": 5544819165240136666, - "Data2": -7799328468831322369, - "Data3": 4122373302443374790, - "Data4": -3513063458097030914 + "Data1": 6767276106165310419, + "Data2": -5621542771004110853, + "Data3": 3866828061693883018, + "Data4": 3959111927254083025 }, "Kind": "Components.EventHandler", "Name": "onsubmit", @@ -9810,31 +9678,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onsubmit" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onsubmit" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9857,10 +9721,10 @@ }, { "__Checksum": { - "Data1": 5290056762375420873, - "Data2": -419029537866716364, - "Data3": -2345555909528925902, - "Data4": 5919307106818556317 + "Data1": -7962864395333347053, + "Data2": -7068272891191157547, + "Data3": -8482247690341826270, + "Data4": 1177052501507779085 }, "Kind": "Components.EventHandler", "Name": "onbeforecopy", @@ -9926,31 +9790,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforecopy" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforecopy" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -9973,10 +9833,10 @@ }, { "__Checksum": { - "Data1": 4761396429330858649, - "Data2": -1598036257954584694, - "Data3": -5117456029749091660, - "Data4": 6309486742728624793 + "Data1": 733722938788303854, + "Data2": 5718205123590306890, + "Data3": 4968932478876794348, + "Data4": 7931037784533220902 }, "Kind": "Components.EventHandler", "Name": "onbeforecut", @@ -10042,31 +9902,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforecut" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforecut" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10089,10 +9945,10 @@ }, { "__Checksum": { - "Data1": 1029372928366886531, - "Data2": 8104661957776323837, - "Data3": 1509677230915956677, - "Data4": -6355782764987233093 + "Data1": 5195515156876521644, + "Data2": -83820529944840325, + "Data3": 5098380854634285425, + "Data4": 2254230579666312180 }, "Kind": "Components.EventHandler", "Name": "onbeforepaste", @@ -10158,31 +10014,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforepaste" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforepaste" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10205,10 +10057,10 @@ }, { "__Checksum": { - "Data1": -7705251047584511333, - "Data2": 8002701997274286947, - "Data3": -1676600895832769461, - "Data4": 2245694104751163838 + "Data1": 5785815391833969144, + "Data2": 7426433522232774266, + "Data3": 9038206878593963880, + "Data4": 3254114237675633096 }, "Kind": "Components.EventHandler", "Name": "oncopy", @@ -10274,31 +10126,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncopy" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncopy" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10321,10 +10169,10 @@ }, { "__Checksum": { - "Data1": -7416992712423089233, - "Data2": 4449370565921709650, - "Data3": -6437785349582923886, - "Data4": -2801190639824190532 + "Data1": -2609897972982771624, + "Data2": 7922590185429854174, + "Data3": -3390296626931518695, + "Data4": -2409953976955017726 }, "Kind": "Components.EventHandler", "Name": "oncut", @@ -10390,31 +10238,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncut" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncut" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10437,10 +10281,10 @@ }, { "__Checksum": { - "Data1": 1330559035022496075, - "Data2": -4460978051811237857, - "Data3": 4695250384772663299, - "Data4": -7717757570830372855 + "Data1": 7376445045194540373, + "Data2": -9112356877100429819, + "Data3": -2380530598642118551, + "Data4": -7873051073718984526 }, "Kind": "Components.EventHandler", "Name": "onpaste", @@ -10506,31 +10350,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpaste" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpaste" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10553,10 +10393,10 @@ }, { "__Checksum": { - "Data1": -5305018988864397513, - "Data2": -7056861188320643127, - "Data3": 4138462206631949520, - "Data4": 1287681477163409205 + "Data1": 5056866497218561842, + "Data2": 4051360251600008758, + "Data3": -1883731599349537376, + "Data4": 5490887723705191254 }, "Kind": "Components.EventHandler", "Name": "ontouchcancel", @@ -10622,31 +10462,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchcancel" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchcancel" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10669,10 +10505,10 @@ }, { "__Checksum": { - "Data1": 564116037820298704, - "Data2": -1057279746178053957, - "Data3": 9014585644924556968, - "Data4": -387530969364403907 + "Data1": -4280006762647084968, + "Data2": 4784687432975891540, + "Data3": -2610726941771164358, + "Data4": 9101273155625600638 }, "Kind": "Components.EventHandler", "Name": "ontouchend", @@ -10738,31 +10574,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchend" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchend" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10785,10 +10617,10 @@ }, { "__Checksum": { - "Data1": -8675233277290799136, - "Data2": -5643826883035093936, - "Data3": -6576035289012049613, - "Data4": -8251539618503399646 + "Data1": 4150334943984926387, + "Data2": -1730547721487666194, + "Data3": 5915207751029640734, + "Data4": 2626361866656274122 }, "Kind": "Components.EventHandler", "Name": "ontouchmove", @@ -10854,31 +10686,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchmove" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchmove" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -10901,10 +10729,10 @@ }, { "__Checksum": { - "Data1": -3443756728771598432, - "Data2": 2835526665684590414, - "Data3": 8274112597837107412, - "Data4": 9084919052569765732 + "Data1": 1471835487647021681, + "Data2": -1804324470531860128, + "Data3": -4436570376778556838, + "Data4": 6623868717126983394 }, "Kind": "Components.EventHandler", "Name": "ontouchstart", @@ -10970,31 +10798,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchstart" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchstart" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11017,10 +10841,10 @@ }, { "__Checksum": { - "Data1": 6827428511433383785, - "Data2": 4880809401438293803, - "Data3": -6694443512408380021, - "Data4": -2704006860198456434 + "Data1": -7460631154571318862, + "Data2": -2424658594096228664, + "Data3": -8924327641613131363, + "Data4": 7709986489448240830 }, "Kind": "Components.EventHandler", "Name": "ontouchenter", @@ -11086,31 +10910,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchenter" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchenter" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11133,10 +10953,10 @@ }, { "__Checksum": { - "Data1": 1680911349423367456, - "Data2": -304063173116270662, - "Data3": -379129983034387056, - "Data4": 81003187346916834 + "Data1": 1206477914866130555, + "Data2": -827543412384579740, + "Data3": 5664104254253767115, + "Data4": 1325744795667415854 }, "Kind": "Components.EventHandler", "Name": "ontouchleave", @@ -11202,31 +11022,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontouchleave" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontouchleave" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11249,10 +11065,10 @@ }, { "__Checksum": { - "Data1": 3425892492955859449, - "Data2": -580168571579207205, - "Data3": 7599035357894044036, - "Data4": 679416671753898484 + "Data1": -5071805037143667245, + "Data2": 2784887102994723699, + "Data3": -5821858542529465344, + "Data4": -6075492442609413063 }, "Kind": "Components.EventHandler", "Name": "ongotpointercapture", @@ -11318,31 +11134,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ongotpointercapture" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ongotpointercapture" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11365,10 +11177,10 @@ }, { "__Checksum": { - "Data1": -4474978641456041565, - "Data2": -5110195079129352476, - "Data3": -4645550538575791547, - "Data4": -6291765634598000623 + "Data1": 4234935237194607603, + "Data2": 4666086240833797740, + "Data3": -8190592873098651197, + "Data4": 4815966663442635767 }, "Kind": "Components.EventHandler", "Name": "onlostpointercapture", @@ -11434,31 +11246,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onlostpointercapture" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onlostpointercapture" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11481,10 +11289,10 @@ }, { "__Checksum": { - "Data1": 1379338898289528175, - "Data2": 2585187423364263082, - "Data3": -6325028203201766155, - "Data4": -6309337970068528705 + "Data1": 1501806557496147984, + "Data2": 8800865181144088021, + "Data3": 7245324866050579704, + "Data4": 4143059404539196834 }, "Kind": "Components.EventHandler", "Name": "onpointercancel", @@ -11550,31 +11358,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointercancel" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointercancel" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11597,10 +11401,10 @@ }, { "__Checksum": { - "Data1": -2553259661874421168, - "Data2": -4493759146170282767, - "Data3": -4168597998860204671, - "Data4": -4969987990483598350 + "Data1": 7021801142064366064, + "Data2": 4913943734187142819, + "Data3": 5353043824189147667, + "Data4": -5986691567274862652 }, "Kind": "Components.EventHandler", "Name": "onpointerdown", @@ -11666,31 +11470,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerdown" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerdown" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11713,10 +11513,10 @@ }, { "__Checksum": { - "Data1": 2700463498781894171, - "Data2": -6602539361139634558, - "Data3": 7558205690610402624, - "Data4": 2496123374629508907 + "Data1": 6482496106735241507, + "Data2": -5632006137845861053, + "Data3": -5902478731819820985, + "Data4": -4861547872203913897 }, "Kind": "Components.EventHandler", "Name": "onpointerenter", @@ -11782,31 +11582,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerenter" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerenter" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11829,10 +11625,10 @@ }, { "__Checksum": { - "Data1": 5539970425595830600, - "Data2": 7021769284836871079, - "Data3": 7611456839823976789, - "Data4": -5944920644924701866 + "Data1": -2362876619405756834, + "Data2": 1690387501013985772, + "Data3": 6018500545669392927, + "Data4": 6825138873003342529 }, "Kind": "Components.EventHandler", "Name": "onpointerleave", @@ -11898,31 +11694,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerleave" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerleave" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -11945,10 +11737,10 @@ }, { "__Checksum": { - "Data1": -711564165081807438, - "Data2": 4520308147072737518, - "Data3": 5103176159753468431, - "Data4": 4251400873142575344 + "Data1": -8413602580205111867, + "Data2": -5700767381511039156, + "Data3": -298499902154277031, + "Data4": -1971877250491053743 }, "Kind": "Components.EventHandler", "Name": "onpointermove", @@ -12014,31 +11806,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointermove" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointermove" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12061,10 +11849,10 @@ }, { "__Checksum": { - "Data1": 1001738969538072012, - "Data2": -5378665257954222229, - "Data3": -136768412375561435, - "Data4": -7659708495786581435 + "Data1": 2144864367700287499, + "Data2": 4423494774394580856, + "Data3": -8162909701359617749, + "Data4": -1934638848813298266 }, "Kind": "Components.EventHandler", "Name": "onpointerout", @@ -12130,31 +11918,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerout" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerout" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12177,10 +11961,10 @@ }, { "__Checksum": { - "Data1": 2031745077191260163, - "Data2": 2836951590382653926, - "Data3": 106896774618161384, - "Data4": -1429047874143825742 + "Data1": -4832915731373040927, + "Data2": -3645379124209717938, + "Data3": 5090595826452547610, + "Data4": -5721662004122803061 }, "Kind": "Components.EventHandler", "Name": "onpointerover", @@ -12246,31 +12030,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerover" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerover" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12293,10 +12073,10 @@ }, { "__Checksum": { - "Data1": 6117797937985479587, - "Data2": 1424717631174450395, - "Data3": -8923540287425087243, - "Data4": 8680250377133975669 + "Data1": 6602855428127841735, + "Data2": -6959804828078026469, + "Data3": 3921474775593284583, + "Data4": -579299129316613531 }, "Kind": "Components.EventHandler", "Name": "onpointerup", @@ -12362,31 +12142,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerup" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerup" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12409,10 +12185,10 @@ }, { "__Checksum": { - "Data1": -259997514739446311, - "Data2": -3949862888780372812, - "Data3": -1971540590833930834, - "Data4": -4446709509104956028 + "Data1": -8517356995865596965, + "Data2": -992787950199641001, + "Data3": 8023591749468715182, + "Data4": -477094535197733868 }, "Kind": "Components.EventHandler", "Name": "oncanplay", @@ -12478,31 +12254,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncanplay" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncanplay" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12525,10 +12297,10 @@ }, { "__Checksum": { - "Data1": 3415187253573544380, - "Data2": 1357066540771817265, - "Data3": 1192668042235496698, - "Data4": 3365234440120081810 + "Data1": 4629118218007658177, + "Data2": -7241108023393395784, + "Data3": 3229008464593641698, + "Data4": -5784998754638029759 }, "Kind": "Components.EventHandler", "Name": "oncanplaythrough", @@ -12594,31 +12366,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncanplaythrough" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncanplaythrough" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12641,10 +12409,10 @@ }, { "__Checksum": { - "Data1": -6859297001923222178, - "Data2": 3763702373718469321, - "Data3": -6884798471578659041, - "Data4": -2690915798969206765 + "Data1": -5707088807687139046, + "Data2": -3539020173421035295, + "Data3": 5998176378940967845, + "Data4": -8845294488404047632 }, "Kind": "Components.EventHandler", "Name": "oncuechange", @@ -12710,31 +12478,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@oncuechange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@oncuechange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12757,10 +12521,10 @@ }, { "__Checksum": { - "Data1": 5748964994866444353, - "Data2": 289142820514211902, - "Data3": 1928142390738088083, - "Data4": -896830889325628076 + "Data1": -1788598345103024084, + "Data2": -682840718304328422, + "Data3": -5710148236194371533, + "Data4": 7470660248046215027 }, "Kind": "Components.EventHandler", "Name": "ondurationchange", @@ -12826,31 +12590,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondurationchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondurationchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12873,10 +12633,10 @@ }, { "__Checksum": { - "Data1": 5343605566184879157, - "Data2": -822614450025992430, - "Data3": 8858745392590378920, - "Data4": -3759863122199772294 + "Data1": -3625429067103254419, + "Data2": 4539422050649057828, + "Data3": -7631501157482005911, + "Data4": 4204638230042759551 }, "Kind": "Components.EventHandler", "Name": "onemptied", @@ -12942,31 +12702,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onemptied" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onemptied" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -12989,10 +12745,10 @@ }, { "__Checksum": { - "Data1": 7587005031887781748, - "Data2": -6184883583454133435, - "Data3": -2165535750005891386, - "Data4": 6217643653631035442 + "Data1": -9146971396433179074, + "Data2": -5282983060336594145, + "Data3": -4779369206026873005, + "Data4": -94348007343300824 }, "Kind": "Components.EventHandler", "Name": "onpause", @@ -13058,31 +12814,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpause" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpause" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13105,10 +12857,10 @@ }, { "__Checksum": { - "Data1": -16286162747959751, - "Data2": -333266593655239970, - "Data3": -102706316696374390, - "Data4": -5520149497265258515 + "Data1": 1059137068162022950, + "Data2": -4215602002842057386, + "Data3": 6301567405147335341, + "Data4": 4696929276391390537 }, "Kind": "Components.EventHandler", "Name": "onplay", @@ -13174,31 +12926,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onplay" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onplay" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13221,10 +12969,10 @@ }, { "__Checksum": { - "Data1": -8529626627709558402, - "Data2": 8502471872827500829, - "Data3": 112137623713716468, - "Data4": 8107506951097989756 + "Data1": -5784475203072407219, + "Data2": 2860983261650190928, + "Data3": 631687845329009811, + "Data4": -5326089256190954983 }, "Kind": "Components.EventHandler", "Name": "onplaying", @@ -13290,31 +13038,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onplaying" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onplaying" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13337,10 +13081,10 @@ }, { "__Checksum": { - "Data1": -2243716971781356261, - "Data2": -2243486428670620248, - "Data3": 5247634082025144206, - "Data4": 6442960578843050166 + "Data1": -1968719276996210829, + "Data2": -4888372353790097486, + "Data3": -384622165291078470, + "Data4": 4454151101341103385 }, "Kind": "Components.EventHandler", "Name": "onratechange", @@ -13406,31 +13150,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onratechange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onratechange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13453,10 +13193,10 @@ }, { "__Checksum": { - "Data1": -7383429162636503294, - "Data2": -9136049703297292967, - "Data3": -1049917215045597375, - "Data4": -6144955766809190361 + "Data1": -5575277420642292460, + "Data2": 4804308430389093007, + "Data3": 3918461850642287482, + "Data4": 5057274518924628615 }, "Kind": "Components.EventHandler", "Name": "onseeked", @@ -13522,31 +13262,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onseeked" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onseeked" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13569,10 +13305,10 @@ }, { "__Checksum": { - "Data1": -7994337040615910904, - "Data2": -5885834839292246813, - "Data3": 2173347610538860248, - "Data4": 1840799941117240830 + "Data1": -5063494710674516762, + "Data2": 7410013601124139843, + "Data3": -583553163367105336, + "Data4": 3213876888019643959 }, "Kind": "Components.EventHandler", "Name": "onseeking", @@ -13638,31 +13374,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onseeking" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onseeking" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13685,10 +13417,10 @@ }, { "__Checksum": { - "Data1": 7623752215529251708, - "Data2": 823946282868141714, - "Data3": -6532523101154722281, - "Data4": 2265115827492901297 + "Data1": 6084103135700216292, + "Data2": 6429144624448735926, + "Data3": -8281887254098985812, + "Data4": -2690585504040709743 }, "Kind": "Components.EventHandler", "Name": "onstalled", @@ -13754,31 +13486,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onstalled" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onstalled" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13801,10 +13529,10 @@ }, { "__Checksum": { - "Data1": 5351662504777831591, - "Data2": 5536226642137423374, - "Data3": 3476856708771627053, - "Data4": 4772002411136580981 + "Data1": 246405243843322072, + "Data2": -8822349407240274097, + "Data3": -80538699882916434, + "Data4": 1570202605183528156 }, "Kind": "Components.EventHandler", "Name": "onstop", @@ -13870,31 +13598,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onstop" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onstop" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -13917,10 +13641,10 @@ }, { "__Checksum": { - "Data1": -3773134486102041151, - "Data2": -5303691755979948328, - "Data3": -7386228779843377892, - "Data4": 3207053949499221222 + "Data1": 293528524221976117, + "Data2": -3366951729747817650, + "Data3": -5475163449206969678, + "Data4": 3690320208582785874 }, "Kind": "Components.EventHandler", "Name": "onsuspend", @@ -13986,31 +13710,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onsuspend" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onsuspend" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14033,10 +13753,10 @@ }, { "__Checksum": { - "Data1": 3312210782190908774, - "Data2": -8588219188621407725, - "Data3": -8109753740969381136, - "Data4": -2095251202158049885 + "Data1": 305507146321625271, + "Data2": 7173741238827226407, + "Data3": -1333007376625119472, + "Data4": -3143059708732953577 }, "Kind": "Components.EventHandler", "Name": "ontimeupdate", @@ -14102,31 +13822,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontimeupdate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontimeupdate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14149,10 +13865,10 @@ }, { "__Checksum": { - "Data1": -7305069800047749179, - "Data2": -5172920902383206331, - "Data3": 391015758867023567, - "Data4": 8482441857296557730 + "Data1": 1832092438189817910, + "Data2": -4154991746732791329, + "Data3": 976892343367997206, + "Data4": 45633615304561987 }, "Kind": "Components.EventHandler", "Name": "onvolumechange", @@ -14218,31 +13934,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onvolumechange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onvolumechange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14265,10 +13977,10 @@ }, { "__Checksum": { - "Data1": 593709650915600685, - "Data2": -307312212565857477, - "Data3": 6758294691376472510, - "Data4": -1572201468609100345 + "Data1": -6993783120374000756, + "Data2": 5847247330045731879, + "Data3": -7208229469270431962, + "Data4": -7864315108729487104 }, "Kind": "Components.EventHandler", "Name": "onwaiting", @@ -14334,31 +14046,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onwaiting" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onwaiting" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14381,10 +14089,10 @@ }, { "__Checksum": { - "Data1": 7882452388634032889, - "Data2": -3444398838505225659, - "Data3": 4799736048752651083, - "Data4": 1874463589560151822 + "Data1": -6285200834579135833, + "Data2": 2035732230181430265, + "Data3": 3609790375995416568, + "Data4": -6613225275514344390 }, "Kind": "Components.EventHandler", "Name": "onloadstart", @@ -14450,31 +14158,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onloadstart" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onloadstart" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14497,10 +14201,10 @@ }, { "__Checksum": { - "Data1": -3208865689752618202, - "Data2": -6039060768647787701, - "Data3": -6323819805002739290, - "Data4": -7064853970937689756 + "Data1": 1694150034442696923, + "Data2": 1069671084818358101, + "Data3": -3214492484340375293, + "Data4": -1326598221796717690 }, "Kind": "Components.EventHandler", "Name": "ontimeout", @@ -14566,31 +14270,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontimeout" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontimeout" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14613,10 +14313,10 @@ }, { "__Checksum": { - "Data1": 5517286596914179561, - "Data2": -230880993724126423, - "Data3": -4985188932476363437, - "Data4": -7924261506718931601 + "Data1": 2380563678566474524, + "Data2": -1136715120141684409, + "Data3": -1984682432189711320, + "Data4": 2062459213259058505 }, "Kind": "Components.EventHandler", "Name": "onabort", @@ -14682,31 +14382,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onabort" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onabort" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14729,10 +14425,10 @@ }, { "__Checksum": { - "Data1": 2640248037925490589, - "Data2": -389935676788374942, - "Data3": 7348422703346238091, - "Data4": 950949472204027613 + "Data1": 1893109679458908558, + "Data2": -7955171739830713350, + "Data3": -7143377721943900835, + "Data4": -2818643425800890408 }, "Kind": "Components.EventHandler", "Name": "onload", @@ -14798,31 +14494,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onload" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onload" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14845,10 +14537,10 @@ }, { "__Checksum": { - "Data1": 6361780924464596780, - "Data2": -1804182222262416346, - "Data3": 5584007445419305339, - "Data4": 2464241323453385090 + "Data1": 1773103568781512608, + "Data2": -5445138843615588881, + "Data3": -6756415198543367473, + "Data4": 1971274505118157439 }, "Kind": "Components.EventHandler", "Name": "onloadend", @@ -14914,31 +14606,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onloadend" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onloadend" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -14961,10 +14649,10 @@ }, { "__Checksum": { - "Data1": -3987842527220306591, - "Data2": -6472666418911948201, - "Data3": 4474144720116591146, - "Data4": -4977092847955973775 + "Data1": -1761524245764503792, + "Data2": -5978964798168000293, + "Data3": 9011375316736691779, + "Data4": -441653473004576 }, "Kind": "Components.EventHandler", "Name": "onprogress", @@ -15030,31 +14718,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onprogress" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onprogress" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15077,10 +14761,10 @@ }, { "__Checksum": { - "Data1": 5480734986078559925, - "Data2": -9186361750575766070, - "Data3": 1258461978763052951, - "Data4": -2466887559970426836 + "Data1": 6760573744222223865, + "Data2": -3878583513165488469, + "Data3": 4521116122300886525, + "Data4": 2947477448943339481 }, "Kind": "Components.EventHandler", "Name": "onerror", @@ -15146,31 +14830,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onerror" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onerror" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15193,10 +14873,10 @@ }, { "__Checksum": { - "Data1": -3803670477853102010, - "Data2": -3353912797114447522, - "Data3": 3887447057752885684, - "Data4": -7871759346705495936 + "Data1": -7664205254589202189, + "Data2": -3453900203848537869, + "Data3": 5381695674163240261, + "Data4": 5140689584628676755 }, "Kind": "Components.EventHandler", "Name": "onactivate", @@ -15262,31 +14942,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onactivate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onactivate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15309,10 +14985,10 @@ }, { "__Checksum": { - "Data1": 8805204294556538525, - "Data2": -2356897028422896907, - "Data3": -8312013638718554443, - "Data4": -7994810128451906235 + "Data1": -1693746754447189996, + "Data2": -4305422666207016239, + "Data3": 3716145686732648141, + "Data4": -1211307605170481463 }, "Kind": "Components.EventHandler", "Name": "onbeforeactivate", @@ -15378,31 +15054,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15425,10 +15097,10 @@ }, { "__Checksum": { - "Data1": -8611419312725385816, - "Data2": -4139870421362047494, - "Data3": 4973600697304848632, - "Data4": 2472479503276106655 + "Data1": 1312066357581846522, + "Data2": -6727246692053051819, + "Data3": 6349367685571933293, + "Data4": -5989922618684855487 }, "Kind": "Components.EventHandler", "Name": "onbeforedeactivate", @@ -15494,31 +15166,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onbeforedeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onbeforedeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15541,10 +15209,10 @@ }, { "__Checksum": { - "Data1": 4791236511695847760, - "Data2": 312516141702812934, - "Data3": 8237704925604603450, - "Data4": -3937672952356560506 + "Data1": -8647793524939028632, + "Data2": 955743316717787413, + "Data3": 5859052869483680726, + "Data4": 7506331123294323471 }, "Kind": "Components.EventHandler", "Name": "ondeactivate", @@ -15610,31 +15278,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ondeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ondeactivate" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15657,10 +15321,10 @@ }, { "__Checksum": { - "Data1": 1936349161302817158, - "Data2": 2271322694401344492, - "Data3": -8339908410001989826, - "Data4": 7546429217263541845 + "Data1": 1906284907089214848, + "Data2": 443188841020385088, + "Data3": -5028477845044567293, + "Data4": -1850545874622278529 }, "Kind": "Components.EventHandler", "Name": "onended", @@ -15726,31 +15390,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onended" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onended" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15773,10 +15433,10 @@ }, { "__Checksum": { - "Data1": -5680030528602112438, - "Data2": -6320129605653645803, - "Data3": -7255378352851181249, - "Data4": -6002392956716526008 + "Data1": -396938278057026480, + "Data2": -7643873025564860557, + "Data3": -1229704884769523426, + "Data4": 5165627441129530916 }, "Kind": "Components.EventHandler", "Name": "onfullscreenchange", @@ -15842,31 +15502,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfullscreenchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfullscreenchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -15889,10 +15545,10 @@ }, { "__Checksum": { - "Data1": 4781388477919751940, - "Data2": 8601929763457414002, - "Data3": -5778004181091268115, - "Data4": -1287845292857900007 + "Data1": 8455409692328489706, + "Data2": -8430176529168880915, + "Data3": 3283677877177499758, + "Data4": 413805143971355079 }, "Kind": "Components.EventHandler", "Name": "onfullscreenerror", @@ -15958,31 +15614,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onfullscreenerror" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onfullscreenerror" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16005,10 +15657,10 @@ }, { "__Checksum": { - "Data1": -911870474655330118, - "Data2": -1405496868336768916, - "Data3": 8390996053480263818, - "Data4": 5248373465439382189 + "Data1": -4454430292558936412, + "Data2": -1109499151669397957, + "Data3": -4197866983520898941, + "Data4": -1538235480261615795 }, "Kind": "Components.EventHandler", "Name": "onloadeddata", @@ -16074,31 +15726,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onloadeddata" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onloadeddata" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16121,10 +15769,10 @@ }, { "__Checksum": { - "Data1": 8370334749715402415, - "Data2": 8554880655860903061, - "Data3": -4476024602383204342, - "Data4": 3651343592203203583 + "Data1": 6862941353545766880, + "Data2": 7918769923840348038, + "Data3": -1948391046523206943, + "Data4": 2940449063330701396 }, "Kind": "Components.EventHandler", "Name": "onloadedmetadata", @@ -16190,31 +15838,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onloadedmetadata" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onloadedmetadata" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16237,10 +15881,10 @@ }, { "__Checksum": { - "Data1": -341901047023207503, - "Data2": -8495994002760927968, - "Data3": 261394283688568312, - "Data4": 315966696347312304 + "Data1": -5319856823806878114, + "Data2": 6640686403219892770, + "Data3": 6596596643185515064, + "Data4": -8333154803890283708 }, "Kind": "Components.EventHandler", "Name": "onpointerlockchange", @@ -16306,31 +15950,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerlockchange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerlockchange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16353,10 +15993,10 @@ }, { "__Checksum": { - "Data1": -1900113584630384717, - "Data2": -2180580021106248266, - "Data3": -5265969542243742196, - "Data4": 2572919969243757125 + "Data1": -2405315184326742362, + "Data2": -4336956376583241421, + "Data3": 2067781814523124254, + "Data4": -8683903035252113557 }, "Kind": "Components.EventHandler", "Name": "onpointerlockerror", @@ -16422,31 +16062,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onpointerlockerror" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onpointerlockerror" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16469,10 +16105,10 @@ }, { "__Checksum": { - "Data1": 4837019075015193591, - "Data2": 7087602864750864527, - "Data3": 4805132055039542629, - "Data4": 2766956913945018243 + "Data1": -7823779853248095029, + "Data2": 2896948618275552326, + "Data3": 6015849736099765352, + "Data4": -8165407376096835581 }, "Kind": "Components.EventHandler", "Name": "onreadystatechange", @@ -16538,31 +16174,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onreadystatechange" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onreadystatechange" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16585,10 +16217,10 @@ }, { "__Checksum": { - "Data1": 4149677710501796733, - "Data2": 36043277307705683, - "Data3": -4792850075748737341, - "Data4": 7875696479337195571 + "Data1": -4086907535258678610, + "Data2": 2273919336126465370, + "Data3": 5801632512138309614, + "Data4": -4798362539997732828 }, "Kind": "Components.EventHandler", "Name": "onscroll", @@ -16654,31 +16286,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@onscroll" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@onscroll" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -16701,10 +16329,10 @@ }, { "__Checksum": { - "Data1": 1140419827034931787, - "Data2": 6770507407134574405, - "Data3": -8001041985769797285, - "Data4": -7579531138963952213 + "Data1": 4753124172124543843, + "Data2": 4390281967717981656, + "Data3": 7035810605520754206, + "Data4": -2512411399122211635 }, "Kind": "Components.EventHandler", "Name": "ontoggle", @@ -16770,31 +16398,27 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", + "PropertyName": "PreventDefault", + "TypeName": 1, "Documentation": { "Id": 15, "Args": [ "@ontoggle" ] - }, - "Metadata": { - "Common.PropertyName": "PreventDefault" } }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", + "PropertyName": "StopPropagation", + "TypeName": 1, "Documentation": { "Id": 16, "Args": [ "@ontoggle" ] - }, - "Metadata": { - "Common.PropertyName": "StopPropagation" } } ], @@ -143968,10 +143592,10 @@ }, { "__Checksum": { - "Data1": -4956411382073006453, - "Data2": 516732521478035673, - "Data3": 3816531986645240906, - "Data4": 604760014856119338 + "Data1": -1073301647227589633, + "Data2": 8101759897890733284, + "Data3": -6920811933630909984, + "Data4": -6290663200272122769 }, "Kind": "Components.Bind", "Name": "Bind", @@ -144009,73 +143633,60 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format", + "TypeName": 2, "Documentation": { "Id": 2 - }, - "Metadata": { - "Common.PropertyName": "Format" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event", + "TypeName": 2, "Documentation": { "Id": 1, "Args": [ "@bind-..." ] - }, - "Metadata": { - "Common.PropertyName": "Event" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -144097,10 +143708,10 @@ }, { "__Checksum": { - "Data1": 7402027333053994539, - "Data2": -3446878997932190904, - "Data3": -3101521142354767554, - "Data4": -6760953170491785234 + "Data1": -1556004898731902221, + "Data2": 7829188875044190705, + "Data3": -5991469701502087751, + "Data4": -6643408075181463790 }, "Kind": "Components.Bind", "Name": "Bind", @@ -144161,76 +143772,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -144269,10 +143867,10 @@ }, { "__Checksum": { - "Data1": 8844774585541617356, - "Data2": 8658003120836766162, - "Data3": 4305185477720729866, - "Data4": 7023709757413983193 + "Data1": -4721804179514870219, + "Data2": 7607236171508579391, + "Data3": -4587957588803971833, + "Data4": -1541458591551164882 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -144333,76 +143931,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -144441,10 +144026,10 @@ }, { "__Checksum": { - "Data1": -6139627449151613019, - "Data2": 1628249431281193389, - "Data3": -802943671935024249, - "Data4": 648384761177778230 + "Data1": -9012130317925565883, + "Data2": -8385752469162579727, + "Data3": -3360898089607708973, + "Data4": 1630998681911142131 }, "Kind": "Components.Bind", "Name": "Bind", @@ -144517,76 +144102,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_checked", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_checked" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_checked", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_checked" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -144626,10 +144198,10 @@ }, { "__Checksum": { - "Data1": 6068105800957731755, - "Data2": 1958126132282487755, - "Data3": 4852930634683786960, - "Data4": 3769138096448137878 + "Data1": 1549220529411200477, + "Data2": -2761563220845679330, + "Data3": -1847807182485603835, + "Data4": -3423906826708397841 }, "Kind": "Components.Bind", "Name": "Bind", @@ -144702,76 +144274,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -144811,10 +144370,10 @@ }, { "__Checksum": { - "Data1": -3192163379129342866, - "Data2": -908092289118660396, - "Data3": 8916901005292949522, - "Data4": -694254851830939888 + "Data1": 8735413799192487182, + "Data2": 5230765264560867301, + "Data3": 5051546020838539200, + "Data4": 2018314258591378276 }, "Kind": "Components.Bind", "Name": "Bind", @@ -144887,76 +144446,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -144996,10 +144542,10 @@ }, { "__Checksum": { - "Data1": 3657137836086790504, - "Data2": -8441360560393812229, - "Data3": 2083449763440333656, - "Data4": -7746762440594570849 + "Data1": -6251259028650079662, + "Data2": 7168576928716550522, + "Data3": 1403993109432839481, + "Data4": 6167908272748344637 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -145072,76 +144618,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -145181,10 +144714,10 @@ }, { "__Checksum": { - "Data1": -7210429511237930730, - "Data2": 3700914488903705463, - "Data3": 1755174149562436174, - "Data4": 4654468164006271658 + "Data1": -4394598297581586680, + "Data2": 2224518312051877274, + "Data3": -2794255316184007845, + "Data4": 1833766771664005764 }, "Kind": "Components.Bind", "Name": "Bind", @@ -145257,76 +144790,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -145366,10 +144886,10 @@ }, { "__Checksum": { - "Data1": 6520226159997619286, - "Data2": -3528059980413999827, - "Data3": 6463875126138844678, - "Data4": 455218432979510465 + "Data1": 7513898485628571921, + "Data2": 9204617037395680736, + "Data3": 7156667228265874567, + "Data4": -1279991360901700991 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -145442,76 +144962,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -145551,10 +145058,10 @@ }, { "__Checksum": { - "Data1": -5265448538819468886, - "Data2": -5244566089296707730, - "Data3": 9114408832821437652, - "Data4": 6068985787287525837 + "Data1": 6065669705363870747, + "Data2": -1748370172846223305, + "Data3": -1034028830525457953, + "Data4": 9199791234749301344 }, "Kind": "Components.Bind", "Name": "Bind", @@ -145627,76 +145134,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -145736,10 +145230,10 @@ }, { "__Checksum": { - "Data1": 3101210583463877685, - "Data2": -8736249305119653430, - "Data3": -2164829316630798434, - "Data4": -4331253107632651662 + "Data1": 2262595175992799016, + "Data2": 1497381156082470256, + "Data3": -4152647695859345462, + "Data4": -1087305299235597026 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -145812,76 +145306,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -145921,10 +145402,10 @@ }, { "__Checksum": { - "Data1": -5189851214647459156, - "Data2": 6997728873791061517, - "Data3": -6652651042841705090, - "Data4": -2714701243441476264 + "Data1": 3530375003684148846, + "Data2": 1678816126431870996, + "Data3": -6398414745134880827, + "Data4": 8771218935058771279 }, "Kind": "Components.Bind", "Name": "Bind", @@ -145997,76 +145478,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -146106,10 +145574,10 @@ }, { "__Checksum": { - "Data1": 4666257921032366535, - "Data2": -2689373953497127477, - "Data3": 5820845103411567289, - "Data4": -1399037484187168549 + "Data1": 5193172178106771296, + "Data2": 8305085487092208634, + "Data3": 5058761880136319390, + "Data4": -4185226980644972553 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -146182,76 +145650,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -146291,10 +145746,10 @@ }, { "__Checksum": { - "Data1": 3219901297506981950, - "Data2": -4399880091467860075, - "Data3": 9081026489297834595, - "Data4": 9194712501025302398 + "Data1": 2548659463358859266, + "Data2": -2352573489261492797, + "Data3": 5929663946111134036, + "Data4": -3071770098965250483 }, "Kind": "Components.Bind", "Name": "Bind", @@ -146367,76 +145822,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -146476,10 +145918,10 @@ }, { "__Checksum": { - "Data1": 3060167502699573182, - "Data2": 3516087094815481835, - "Data3": -6236246758717087683, - "Data4": 9206904560509313410 + "Data1": -8845957714180709455, + "Data2": -3321753692228733690, + "Data3": 4937282102329962251, + "Data4": 7486711684880919745 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -146552,76 +145994,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind-value" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -146661,10 +146090,10 @@ }, { "__Checksum": { - "Data1": 8989652253133676506, - "Data2": -8892643895572038104, - "Data3": -6216481859063566605, - "Data4": -936080324882560203 + "Data1": 1480048902184114821, + "Data2": -5176199698937666041, + "Data3": -5329087519324644459, + "Data4": -262845877164119105 }, "Kind": "Components.Bind", "Name": "Bind", @@ -146725,76 +146154,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -146833,10 +146249,10 @@ }, { "__Checksum": { - "Data1": 8267406816439511629, - "Data2": -8070515216210757972, - "Data3": 3797801915330303535, - "Data4": 8813063268165781585 + "Data1": -6607248474983469194, + "Data2": 7639608389418746979, + "Data3": 4800089072749287555, + "Data4": -224888138103330670 }, "Kind": "Components.Bind", "Name": "Bind", @@ -146897,76 +146313,63 @@ }, "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", + "PropertyName": "Format_value", + "TypeName": 2, "Documentation": { "Id": 7, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Format_value" } }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", + "PropertyName": "Event_value", + "TypeName": 2, "Documentation": { "Id": 6, "Args": [ "@bind" ] - }, - "Metadata": { - "Common.PropertyName": "Event_value" } }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", + "PropertyName": "Culture", + "TypeName": 3, "Documentation": { "Id": 5 - }, - "Metadata": { - "Common.PropertyName": "Culture" } }, { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147005,10 +146408,10 @@ }, { "__Checksum": { - "Data1": -960011711740559922, - "Data2": -8022787084652653840, - "Data3": -9059182930809321800, - "Data4": 3446386250744275939 + "Data1": -3276191800921921802, + "Data2": 4513260245355185204, + "Data3": -2576952910462202359, + "Data4": -937506176843006316 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", @@ -147069,37 +146472,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147122,10 +146518,10 @@ }, { "__Checksum": { - "Data1": -1703059564437539489, - "Data2": -977913726472460743, - "Data3": -5654365996384152609, - "Data4": 3153774339147487699 + "Data1": -2088088777708089979, + "Data2": 8575525148995798498, + "Data3": 158776863372837806, + "Data4": 3902257292046130122 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", @@ -147186,37 +146582,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147240,10 +146629,10 @@ }, { "__Checksum": { - "Data1": 7843810788710194448, - "Data2": 4322325964591229058, - "Data3": 570175307709215678, - "Data4": 448364692654265271 + "Data1": 7018675345428767976, + "Data2": -1365168072988000591, + "Data3": -8784073059659437102, + "Data4": 3592457312435978779 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", @@ -147304,37 +146693,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147357,10 +146739,10 @@ }, { "__Checksum": { - "Data1": -6466330588814503818, - "Data2": 424735198563788609, - "Data3": -2612843300788331659, - "Data4": 491996349997901495 + "Data1": 4114637234506317754, + "Data2": -6805817000095944842, + "Data3": -9022280586090709983, + "Data4": 5567039216260504126 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", @@ -147421,37 +146803,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147475,10 +146850,10 @@ }, { "__Checksum": { - "Data1": -6286832222660170180, - "Data2": -916078296290814949, - "Data3": 7692715090507250587, - "Data4": -3464213187979528483 + "Data1": -8961389199761290019, + "Data2": -5821760351464054316, + "Data3": -2980198449104638410, + "Data4": 2046454222357699386 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", @@ -147539,37 +146914,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147592,10 +146960,10 @@ }, { "__Checksum": { - "Data1": -3690200114443874820, - "Data2": 2777513507250896605, - "Data3": -73161014199470040, - "Data4": -5870339312383060886 + "Data1": -4690655020524261271, + "Data2": -8275349966617060297, + "Data3": 3961478111746509057, + "Data4": 6888637949762861865 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", @@ -147656,37 +147024,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147710,10 +147071,10 @@ }, { "__Checksum": { - "Data1": -8268174122080178268, - "Data2": 6970402634146870399, - "Data3": 5727037980354914138, - "Data4": 411720478786037415 + "Data1": -5717882134386465073, + "Data2": 8034896147222961196, + "Data3": -2837159614071967350, + "Data4": 5210987620701611409 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", @@ -147774,37 +147135,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147827,10 +147181,10 @@ }, { "__Checksum": { - "Data1": 7163771992523568394, - "Data2": -7437325150105231996, - "Data3": 734376592578972009, - "Data4": 7115028067981471260 + "Data1": 5984347378442387488, + "Data2": 188862352023201556, + "Data3": 6521783132572974966, + "Data4": -905545728348648981 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", @@ -147891,37 +147245,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -147945,10 +147292,10 @@ }, { "__Checksum": { - "Data1": 5351108948226454620, - "Data2": -2954289968439605647, - "Data3": 3733221384548320271, - "Data4": -7705797846292557390 + "Data1": -3264438285090029890, + "Data2": 1801940021254323519, + "Data3": -3020105652873365421, + "Data4": -7839071809104232476 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", @@ -148009,37 +147356,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -148062,10 +147402,10 @@ }, { "__Checksum": { - "Data1": -52112667549248369, - "Data2": 636326677130659578, - "Data3": -5684615603336029330, - "Data4": -9119613647709862212 + "Data1": 6842202156290866491, + "Data2": -3914392770148398935, + "Data3": -4192744942988181366, + "Data4": -2347925610916699686 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", @@ -148126,37 +147466,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -148180,10 +147513,10 @@ }, { "__Checksum": { - "Data1": 8169860100540165305, - "Data2": 8097607686873152988, - "Data3": 7300025027054631533, - "Data4": -7207419192900064047 + "Data1": 9090280802210564846, + "Data2": -6266284878899832283, + "Data3": 6989333063678890185, + "Data4": 2920980918393632342 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", @@ -148244,37 +147577,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -148297,10 +147623,10 @@ }, { "__Checksum": { - "Data1": -6567775896921388091, - "Data2": 8108027945637834184, - "Data3": 291356362209817215, - "Data4": -9080380078428802894 + "Data1": -6590276302536833864, + "Data2": -5394958843841354575, + "Data3": 4288607606627449254, + "Data4": -9051709823621622449 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", @@ -148361,37 +147687,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -148415,10 +147734,10 @@ }, { "__Checksum": { - "Data1": 5470880301241973659, - "Data2": 7006311831299753154, - "Data3": -6890578684808138809, - "Data4": -1483406253993667552 + "Data1": -429484931486236910, + "Data2": -7734931497761470796, + "Data3": -1015320485118632528, + "Data4": 3157981366101583363 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", @@ -148479,37 +147798,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], @@ -148532,10 +147844,10 @@ }, { "__Checksum": { - "Data1": -2375944316459808049, - "Data2": -2851744261248584751, - "Data3": -19476265537583022, - "Data4": 6745520080649124262 + "Data1": 2407412623707583861, + "Data2": -1616016677399057252, + "Data3": -724398860504216064, + "Data4": -2552689729345681718 }, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", @@ -148596,37 +147908,30 @@ }, "BoundAttributeParameters": [ { + "Flags": 5, "Name": "get", - "TypeName": "System.Object", - "DisplayName": ":get", + "PropertyName": "Get", + "TypeName": 0, "Documentation": { "Id": 8 - }, - "Metadata": { - "Common.PropertyName": "Get", - "Components.Bind.AlternativeNotation": "True" } }, { + "Flags": 1, "Name": "set", - "TypeName": "System.Delegate", - "DisplayName": ":set", + "PropertyName": "Set", + "TypeName": 4, "Documentation": { "Id": 9 - }, - "Metadata": { - "Common.PropertyName": "Set" } }, { + "Flags": 1, "Name": "after", - "TypeName": "System.Delegate", - "DisplayName": ":after", + "PropertyName": "After", + "TypeName": 4, "Documentation": { "Id": 4 - }, - "Metadata": { - "Common.PropertyName": "After" } } ], diff --git a/src/Shared/files/Tooling/project.razor.json b/src/Shared/files/Tooling/project.razor.json index 4dac418f03e..9071b75b595 100644 --- a/src/Shared/files/Tooling/project.razor.json +++ b/src/Shared/files/Tooling/project.razor.json @@ -1,5 +1,5 @@ { - "__Version": 9, + "__Version": 10, "ProjectKey": "C:/Users/admin/location/blazorserver/obj/Debug/net7.0/", "FilePath": "C:\\Users\\admin\\location\\blazorserver\\blazorserver.csproj", "Configuration": { @@ -3797,10 +3797,10 @@ }, { "__Checksum": { - "Data1": -3940417563334077494, - "Data2": -2793705821820990431, - "Data3": -2819452048435388354, - "Data4": -6427168090089153143 + "Data1": -7185869318604740139, + "Data2": 1266744045890869363, + "Data3": 7352259449973114746, + "Data4": 7043152225972481361 }, "Kind": "Components.EventHandler", "Name": "onabort", @@ -3854,22 +3854,18 @@ "Documentation": "Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onabort' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onabort' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onabort' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onabort' event in the capturing and bubbling phases." } ], "Metadata": { @@ -3889,10 +3885,10 @@ }, { "__Checksum": { - "Data1": 663808531574318153, - "Data2": -5342669193472976545, - "Data3": 3231042630720217159, - "Data4": -4657886527781031961 + "Data1": -8300532361499004606, + "Data2": 854999057381832682, + "Data3": -902755126215940511, + "Data4": -6947721768026850105 }, "Kind": "Components.EventHandler", "Name": "onactivate", @@ -3946,22 +3942,18 @@ "Documentation": "Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onactivate' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onactivate' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onactivate' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onactivate' event in the capturing and bubbling phases." } ], "Metadata": { @@ -3981,10 +3973,10 @@ }, { "__Checksum": { - "Data1": 6132316950804341443, - "Data2": 6089971888954621902, - "Data3": -4156982735535684027, - "Data4": -2124537412001647170 + "Data1": -3681368087013449715, + "Data2": 1706754919948434469, + "Data3": -5309422892307001556, + "Data4": 4120388465437424843 }, "Kind": "Components.EventHandler", "Name": "onbeforeactivate", @@ -4038,22 +4030,18 @@ "Documentation": "Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforeactivate' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforeactivate' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforeactivate' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforeactivate' event in the capturing and bubbling phases." } ], "Metadata": { @@ -4073,10 +4061,10 @@ }, { "__Checksum": { - "Data1": -4417619601065321449, - "Data2": 5709741143472002433, - "Data3": 7826813524506825041, - "Data4": 80996938954557616 + "Data1": 5005358520951546475, + "Data2": -1863520435212253126, + "Data3": 7979764898830936391, + "Data4": 3977545847797089733 }, "Kind": "Components.EventHandler", "Name": "onbeforecopy", @@ -4130,22 +4118,18 @@ "Documentation": "Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecopy' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecopy' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforecopy' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforecopy' event in the capturing and bubbling phases." } ], "Metadata": { @@ -4165,10 +4149,10 @@ }, { "__Checksum": { - "Data1": 4083028498643620681, - "Data2": 6699159384895549212, - "Data3": -964135144641896893, - "Data4": 7077770681443152311 + "Data1": 254953506678173427, + "Data2": 656497337734799826, + "Data3": -5721114991822481504, + "Data4": -5659572082348998454 }, "Kind": "Components.EventHandler", "Name": "onbeforecut", @@ -4222,22 +4206,18 @@ "Documentation": "Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecut' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecut' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforecut' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforecut' event in the capturing and bubbling phases." } ], "Metadata": { @@ -4257,10 +4237,10 @@ }, { "__Checksum": { - "Data1": -8025806188617320204, - "Data2": -6082686652704030811, - "Data3": -8093279825675698828, - "Data4": 5746838786326800862 + "Data1": 5998236281554342689, + "Data2": -1420832079730483711, + "Data3": -6962432517941287245, + "Data4": -302283119740540702 }, "Kind": "Components.EventHandler", "Name": "onbeforedeactivate", @@ -4314,22 +4294,18 @@ "Documentation": "Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforedeactivate' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforedeactivate' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforedeactivate' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforedeactivate' event in the capturing and bubbling phases." } ], "Metadata": { @@ -4349,10 +4325,10 @@ }, { "__Checksum": { - "Data1": 7571357410927497047, - "Data2": 4411204822237174079, - "Data3": 5674332168413130579, - "Data4": -6407069184537736335 + "Data1": 8858228293029966369, + "Data2": -5207907779052301717, + "Data3": 4320986515400584397, + "Data4": 60653984184612181 }, "Kind": "Components.EventHandler", "Name": "onbeforepaste", @@ -4406,22 +4382,18 @@ "Documentation": "Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforepaste' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforepaste' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforepaste' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforepaste' event in the capturing and bubbling phases." } ], "Metadata": { @@ -4441,10 +4413,10 @@ }, { "__Checksum": { - "Data1": -3083377324508042193, - "Data2": 4286671850891278896, - "Data3": -1562549968301713547, - "Data4": -5806696531572346695 + "Data1": -4528298221161968077, + "Data2": -5949511076020729716, + "Data3": -1678589538090319120, + "Data4": 1435113847205400560 }, "Kind": "Components.EventHandler", "Name": "onblur", @@ -4498,22 +4470,18 @@ "Documentation": "Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onblur' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onblur' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onblur' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onblur' event in the capturing and bubbling phases." } ], "Metadata": { @@ -4533,10 +4501,10 @@ }, { "__Checksum": { - "Data1": -3765025795286826325, - "Data2": 4110408392074931211, - "Data3": -173425413977177963, - "Data4": 5397233470819788401 + "Data1": 1892125199373762621, + "Data2": 380988957736880981, + "Data3": -5577440301498642388, + "Data4": 3854944777952895040 }, "Kind": "Components.EventHandler", "Name": "oncanplay", @@ -4590,22 +4558,18 @@ "Documentation": "Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplay' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplay' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@oncanplay' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@oncanplay' event in the capturing and bubbling phases." } ], "Metadata": { @@ -4625,10 +4589,10 @@ }, { "__Checksum": { - "Data1": -2340322281072073047, - "Data2": 5662284887384028074, - "Data3": -5505732082821801489, - "Data4": 7245304881374543053 + "Data1": -6417109148879373144, + "Data2": -5216029134280523214, + "Data3": 663072832703797255, + "Data4": 7607191632481161555 }, "Kind": "Components.EventHandler", "Name": "oncanplaythrough", @@ -4682,22 +4646,18 @@ "Documentation": "Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplaythrough' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplaythrough' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@oncanplaythrough' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@oncanplaythrough' event in the capturing and bubbling phases." } ], "Metadata": { @@ -4717,10 +4677,10 @@ }, { "__Checksum": { - "Data1": 9021550152565145703, - "Data2": -3681511981075089668, - "Data3": 8759804482147700930, - "Data4": 2691676552213055408 + "Data1": 6780348617368014301, + "Data2": 8525139024005634855, + "Data3": -2352843958001868051, + "Data4": -4789685502587947193 }, "Kind": "Components.EventHandler", "Name": "onchange", @@ -4774,22 +4734,18 @@ "Documentation": "Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onchange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onchange' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onchange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onchange' event in the capturing and bubbling phases." } ], "Metadata": { @@ -4809,10 +4765,10 @@ }, { "__Checksum": { - "Data1": 3597143635887702821, - "Data2": 6979406833120141731, - "Data3": 6279934246998199632, - "Data4": -8363376616623760505 + "Data1": -8103443168700733929, + "Data2": -6911235250501572401, + "Data3": -5412405907229474075, + "Data4": -3488741747911843477 }, "Kind": "Components.EventHandler", "Name": "onclick", @@ -4866,22 +4822,18 @@ "Documentation": "Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onclick' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onclick' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onclick' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onclick' event in the capturing and bubbling phases." } ], "Metadata": { @@ -4901,10 +4853,10 @@ }, { "__Checksum": { - "Data1": -691375261581337061, - "Data2": -4119886487163562852, - "Data3": 5599418538762395144, - "Data4": -8888936334110578607 + "Data1": -3646788032127206908, + "Data2": -6974094337749969146, + "Data3": -9154077109796387926, + "Data4": 6631452549439957642 }, "Kind": "Components.EventHandler", "Name": "oncontextmenu", @@ -4958,22 +4910,18 @@ "Documentation": "Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncontextmenu' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncontextmenu' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@oncontextmenu' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@oncontextmenu' event in the capturing and bubbling phases." } ], "Metadata": { @@ -4993,10 +4941,10 @@ }, { "__Checksum": { - "Data1": -4360942504650104630, - "Data2": 7731955405905389575, - "Data3": 1443601099487356626, - "Data4": -2101997293292828843 + "Data1": -1801345638014640380, + "Data2": -5776314023726260384, + "Data3": -3557943133529042211, + "Data4": -7700866317228252321 }, "Kind": "Components.EventHandler", "Name": "oncopy", @@ -5050,22 +4998,18 @@ "Documentation": "Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncopy' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncopy' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@oncopy' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@oncopy' event in the capturing and bubbling phases." } ], "Metadata": { @@ -5085,10 +5029,10 @@ }, { "__Checksum": { - "Data1": 286731150956740114, - "Data2": 4093610657574804738, - "Data3": 5407297486207738932, - "Data4": 5268212638313280214 + "Data1": -8553962487927456731, + "Data2": -4140973295189806341, + "Data3": 2359164150377993109, + "Data4": -6263867169461712955 }, "Kind": "Components.EventHandler", "Name": "oncuechange", @@ -5142,22 +5086,18 @@ "Documentation": "Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncuechange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncuechange' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@oncuechange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@oncuechange' event in the capturing and bubbling phases." } ], "Metadata": { @@ -5177,10 +5117,10 @@ }, { "__Checksum": { - "Data1": 8186128080124964816, - "Data2": 7586819290480753327, - "Data3": 6191209867032661391, - "Data4": -6331179048051247481 + "Data1": -5798522915240585359, + "Data2": 4007661949163750611, + "Data3": 3840586293082212082, + "Data4": -3698329017368706813 }, "Kind": "Components.EventHandler", "Name": "oncut", @@ -5234,22 +5174,18 @@ "Documentation": "Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncut' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncut' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@oncut' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@oncut' event in the capturing and bubbling phases." } ], "Metadata": { @@ -5269,10 +5205,10 @@ }, { "__Checksum": { - "Data1": 6174667092485240069, - "Data2": -8616048023282187142, - "Data3": -1939823437066439316, - "Data4": 2617448786231930441 + "Data1": 1141247401040638157, + "Data2": 2277194456865445772, + "Data3": 7709499647001075365, + "Data4": 3263240579429817108 }, "Kind": "Components.EventHandler", "Name": "ondblclick", @@ -5326,22 +5262,18 @@ "Documentation": "Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondblclick' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondblclick' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ondblclick' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ondblclick' event in the capturing and bubbling phases." } ], "Metadata": { @@ -5361,10 +5293,10 @@ }, { "__Checksum": { - "Data1": 5718547954337368240, - "Data2": 8196627432735438447, - "Data3": 3271260671104923917, - "Data4": -7816297703213577974 + "Data1": 3307789522207218683, + "Data2": -5166754862892962557, + "Data3": 2133498849378304817, + "Data4": 8511945813689698568 }, "Kind": "Components.EventHandler", "Name": "ondeactivate", @@ -5418,22 +5350,18 @@ "Documentation": "Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondeactivate' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondeactivate' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ondeactivate' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ondeactivate' event in the capturing and bubbling phases." } ], "Metadata": { @@ -5453,10 +5381,10 @@ }, { "__Checksum": { - "Data1": 3044718135165284681, - "Data2": 5436073248552167943, - "Data3": -2886877743044277554, - "Data4": 2909984613241968590 + "Data1": -3971027640034613206, + "Data2": 5042178227829604736, + "Data3": -121111243416218833, + "Data4": 8367313766383784857 }, "Kind": "Components.EventHandler", "Name": "ondrag", @@ -5510,22 +5438,18 @@ "Documentation": "Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrag' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrag' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ondrag' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ondrag' event in the capturing and bubbling phases." } ], "Metadata": { @@ -5545,10 +5469,10 @@ }, { "__Checksum": { - "Data1": -4240671660995984402, - "Data2": 6239023547715669506, - "Data3": -7365327087602747392, - "Data4": 142584652111293589 + "Data1": 4601150040565282116, + "Data2": 8175906426495218935, + "Data3": 8655249903144333231, + "Data4": -2338133232019961329 }, "Kind": "Components.EventHandler", "Name": "ondragend", @@ -5602,22 +5526,18 @@ "Documentation": "Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragend' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragend' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ondragend' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ondragend' event in the capturing and bubbling phases." } ], "Metadata": { @@ -5637,10 +5557,10 @@ }, { "__Checksum": { - "Data1": 4175038127814228424, - "Data2": -7673393665041000193, - "Data3": -7168823027377665897, - "Data4": 7874290089415791070 + "Data1": -2544703068246711798, + "Data2": -3844339009414526648, + "Data3": 599480062940613391, + "Data4": 8963675232117641429 }, "Kind": "Components.EventHandler", "Name": "ondragenter", @@ -5694,22 +5614,18 @@ "Documentation": "Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragenter' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragenter' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ondragenter' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ondragenter' event in the capturing and bubbling phases." } ], "Metadata": { @@ -5729,10 +5645,10 @@ }, { "__Checksum": { - "Data1": 8507517644447978342, - "Data2": 4707143056418058996, - "Data3": 3210865660913819484, - "Data4": 8826429626879443685 + "Data1": -603820631122538782, + "Data2": 6117031101746764137, + "Data3": -1807964945543940673, + "Data4": -378984891486118370 }, "Kind": "Components.EventHandler", "Name": "ondragleave", @@ -5786,22 +5702,18 @@ "Documentation": "Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragleave' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragleave' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ondragleave' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ondragleave' event in the capturing and bubbling phases." } ], "Metadata": { @@ -5821,10 +5733,10 @@ }, { "__Checksum": { - "Data1": 7365926596391016248, - "Data2": -86990075042666178, - "Data3": 2944230320276199164, - "Data4": 2661380786578760519 + "Data1": -9154575738318105975, + "Data2": -2435068396200159572, + "Data3": 5023923861701015648, + "Data4": 4303306424838097015 }, "Kind": "Components.EventHandler", "Name": "ondragover", @@ -5878,22 +5790,18 @@ "Documentation": "Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragover' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragover' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ondragover' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ondragover' event in the capturing and bubbling phases." } ], "Metadata": { @@ -5913,10 +5821,10 @@ }, { "__Checksum": { - "Data1": 1686507988083079929, - "Data2": -664640004120836139, - "Data3": 8195838960333187794, - "Data4": -4351979621907110879 + "Data1": 3083299950790812217, + "Data2": -4968702566915380517, + "Data3": -4472887354064608249, + "Data4": 3810560918520983291 }, "Kind": "Components.EventHandler", "Name": "ondragstart", @@ -5970,22 +5878,18 @@ "Documentation": "Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragstart' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragstart' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ondragstart' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ondragstart' event in the capturing and bubbling phases." } ], "Metadata": { @@ -6005,10 +5909,10 @@ }, { "__Checksum": { - "Data1": 3949561660456432516, - "Data2": -5532765836738545780, - "Data3": -6317790637780236377, - "Data4": -6247129404604341375 + "Data1": 935830456054590141, + "Data2": 6443916597130182316, + "Data3": 8844323502459125925, + "Data4": -7457467704015705562 }, "Kind": "Components.EventHandler", "Name": "ondrop", @@ -6062,22 +5966,18 @@ "Documentation": "Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrop' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrop' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ondrop' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ondrop' event in the capturing and bubbling phases." } ], "Metadata": { @@ -6097,10 +5997,10 @@ }, { "__Checksum": { - "Data1": 6549922667733891321, - "Data2": 8272157126127871938, - "Data3": -4141681556352313974, - "Data4": -2924455488559300037 + "Data1": 6432534032227519227, + "Data2": -2924799898615421785, + "Data3": 6209592232426818343, + "Data4": 3447830059337752498 }, "Kind": "Components.EventHandler", "Name": "ondurationchange", @@ -6154,22 +6054,18 @@ "Documentation": "Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondurationchange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondurationchange' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ondurationchange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ondurationchange' event in the capturing and bubbling phases." } ], "Metadata": { @@ -6189,10 +6085,10 @@ }, { "__Checksum": { - "Data1": -5427119264634528570, - "Data2": -7461394206739689388, - "Data3": 3737727228850993403, - "Data4": 7327876271960377507 + "Data1": 7176251681502761364, + "Data2": 793105031127567863, + "Data3": 1642741129950405811, + "Data4": -5797995583437017070 }, "Kind": "Components.EventHandler", "Name": "onemptied", @@ -6246,22 +6142,18 @@ "Documentation": "Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onemptied' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onemptied' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onemptied' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onemptied' event in the capturing and bubbling phases." } ], "Metadata": { @@ -6281,10 +6173,10 @@ }, { "__Checksum": { - "Data1": 4647465251142650686, - "Data2": 7814692682838903311, - "Data3": -3615158978828975616, - "Data4": 1531774199038467053 + "Data1": -7317323689869026524, + "Data2": 3798310874467210894, + "Data3": 1216027367430773556, + "Data4": 2575865312152985327 }, "Kind": "Components.EventHandler", "Name": "onended", @@ -6338,22 +6230,18 @@ "Documentation": "Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onended' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onended' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onended' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onended' event in the capturing and bubbling phases." } ], "Metadata": { @@ -6373,10 +6261,10 @@ }, { "__Checksum": { - "Data1": -1596925086852964803, - "Data2": 1776254936090663812, - "Data3": 3058272697794013257, - "Data4": 1598192923627348132 + "Data1": 4218487070720220381, + "Data2": -5578517268464598094, + "Data3": -9015511342552368416, + "Data4": 1026379393625161924 }, "Kind": "Components.EventHandler", "Name": "onerror", @@ -6430,22 +6318,18 @@ "Documentation": "Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onerror' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onerror' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onerror' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onerror' event in the capturing and bubbling phases." } ], "Metadata": { @@ -6465,10 +6349,10 @@ }, { "__Checksum": { - "Data1": -7611270163357449083, - "Data2": 807394460243871062, - "Data3": 7319378948627440297, - "Data4": -5980104535027657485 + "Data1": 5952537330027437152, + "Data2": -2364310788504605699, + "Data3": -5143931978055261402, + "Data4": -7338955179103254898 }, "Kind": "Components.EventHandler", "Name": "onfocus", @@ -6522,22 +6406,18 @@ "Documentation": "Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocus' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocus' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onfocus' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onfocus' event in the capturing and bubbling phases." } ], "Metadata": { @@ -6557,10 +6437,10 @@ }, { "__Checksum": { - "Data1": 47970977334695629, - "Data2": 7680994261274497927, - "Data3": -3935370477930522912, - "Data4": -6898621426090770654 + "Data1": 1963785329310803167, + "Data2": 4062222865568090195, + "Data3": -8613580747884273239, + "Data4": 5771109156451271566 }, "Kind": "Components.EventHandler", "Name": "onfocusin", @@ -6614,22 +6494,18 @@ "Documentation": "Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusin' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusin' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onfocusin' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onfocusin' event in the capturing and bubbling phases." } ], "Metadata": { @@ -6649,10 +6525,10 @@ }, { "__Checksum": { - "Data1": 2922748392745508869, - "Data2": -5078526997396378787, - "Data3": -417313702075665350, - "Data4": -1149393826271446116 + "Data1": -5152788383053143318, + "Data2": 6122717765153124112, + "Data3": -97135714486118605, + "Data4": -8514905249756934125 }, "Kind": "Components.EventHandler", "Name": "onfocusout", @@ -6706,22 +6582,18 @@ "Documentation": "Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusout' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusout' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onfocusout' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onfocusout' event in the capturing and bubbling phases." } ], "Metadata": { @@ -6741,10 +6613,10 @@ }, { "__Checksum": { - "Data1": -5618781630314055488, - "Data2": -6706525966075289273, - "Data3": -5504548583371703349, - "Data4": 8038011664956760552 + "Data1": -4540934740724939268, + "Data2": -5361594406278152334, + "Data3": 6540418271600002087, + "Data4": 4593000682503910564 }, "Kind": "Components.EventHandler", "Name": "onfullscreenchange", @@ -6798,22 +6670,18 @@ "Documentation": "Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenchange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenchange' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onfullscreenchange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onfullscreenchange' event in the capturing and bubbling phases." } ], "Metadata": { @@ -6833,10 +6701,10 @@ }, { "__Checksum": { - "Data1": 285145613875688311, - "Data2": 1075794768690470036, - "Data3": -2332515893041586408, - "Data4": 5148676719031280983 + "Data1": -80512023763574386, + "Data2": -1205366447683213333, + "Data3": 8707755760609381741, + "Data4": -2890727083912684227 }, "Kind": "Components.EventHandler", "Name": "onfullscreenerror", @@ -6890,22 +6758,18 @@ "Documentation": "Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenerror' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenerror' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onfullscreenerror' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onfullscreenerror' event in the capturing and bubbling phases." } ], "Metadata": { @@ -6925,10 +6789,10 @@ }, { "__Checksum": { - "Data1": -5900958437777690378, - "Data2": -854426927757262816, - "Data3": 5695205279963327325, - "Data4": -856881713920611722 + "Data1": -323475231051038962, + "Data2": -7491078729319372522, + "Data3": 5267872635142330093, + "Data4": -4694185516221206718 }, "Kind": "Components.EventHandler", "Name": "ongotpointercapture", @@ -6982,22 +6846,18 @@ "Documentation": "Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ongotpointercapture' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ongotpointercapture' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ongotpointercapture' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ongotpointercapture' event in the capturing and bubbling phases." } ], "Metadata": { @@ -7017,10 +6877,10 @@ }, { "__Checksum": { - "Data1": 3516843657437049369, - "Data2": 2888678420013701146, - "Data3": -5174009308955285918, - "Data4": 9060818771074397901 + "Data1": 7012990235676648942, + "Data2": -242970938381580547, + "Data3": -9152498249791379481, + "Data4": 6807485459192046558 }, "Kind": "Components.EventHandler", "Name": "oninput", @@ -7074,22 +6934,18 @@ "Documentation": "Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninput' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninput' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@oninput' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@oninput' event in the capturing and bubbling phases." } ], "Metadata": { @@ -7109,10 +6965,10 @@ }, { "__Checksum": { - "Data1": -8991665153212194909, - "Data2": 2501333078317245326, - "Data3": -6805796059615775649, - "Data4": -3802205414553884343 + "Data1": 4140131986068099268, + "Data2": 5778188919659894930, + "Data3": -8984740439060137997, + "Data4": 6093345290385440595 }, "Kind": "Components.EventHandler", "Name": "oninvalid", @@ -7166,22 +7022,18 @@ "Documentation": "Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninvalid' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninvalid' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@oninvalid' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@oninvalid' event in the capturing and bubbling phases." } ], "Metadata": { @@ -7201,10 +7053,10 @@ }, { "__Checksum": { - "Data1": -8336210659089602833, - "Data2": -6583326979754605591, - "Data3": 767336994680526441, - "Data4": -2398746601444360666 + "Data1": 7388829674657333435, + "Data2": 7004998130754596244, + "Data3": -1579151717965161512, + "Data4": -6194561806369711246 }, "Kind": "Components.EventHandler", "Name": "onkeydown", @@ -7258,22 +7110,18 @@ "Documentation": "Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeydown' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeydown' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onkeydown' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onkeydown' event in the capturing and bubbling phases." } ], "Metadata": { @@ -7293,10 +7141,10 @@ }, { "__Checksum": { - "Data1": -6677243767676095035, - "Data2": 3389728025038222789, - "Data3": 8230228331528941381, - "Data4": -9070131644502584525 + "Data1": -8809473822173676466, + "Data2": 4114145171708624415, + "Data3": -587994465041241124, + "Data4": 1718318931641151579 }, "Kind": "Components.EventHandler", "Name": "onkeypress", @@ -7350,22 +7198,18 @@ "Documentation": "Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeypress' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeypress' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onkeypress' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onkeypress' event in the capturing and bubbling phases." } ], "Metadata": { @@ -7385,10 +7229,10 @@ }, { "__Checksum": { - "Data1": -8017834596925491646, - "Data2": 2650303292375038693, - "Data3": -3063234541744385358, - "Data4": -3526453776222353578 + "Data1": -1050830011451391982, + "Data2": 146129200320685063, + "Data3": -2752290423156559593, + "Data4": -982313209953280895 }, "Kind": "Components.EventHandler", "Name": "onkeyup", @@ -7442,22 +7286,18 @@ "Documentation": "Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeyup' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeyup' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onkeyup' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onkeyup' event in the capturing and bubbling phases." } ], "Metadata": { @@ -7477,10 +7317,10 @@ }, { "__Checksum": { - "Data1": -2243489098095344885, - "Data2": -8936461220896769529, - "Data3": -2992401163237418763, - "Data4": 6889902857441278920 + "Data1": -4895298995921209103, + "Data2": -4398235020243634804, + "Data3": -9203117683559151385, + "Data4": -2807978460185291108 }, "Kind": "Components.EventHandler", "Name": "onload", @@ -7534,22 +7374,18 @@ "Documentation": "Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onload' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onload' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onload' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onload' event in the capturing and bubbling phases." } ], "Metadata": { @@ -7569,10 +7405,10 @@ }, { "__Checksum": { - "Data1": 6182385573677660212, - "Data2": -8734116397153133732, - "Data3": 1284254613761687775, - "Data4": -8747990934255698978 + "Data1": 7578014425924351235, + "Data2": -4955574261112010754, + "Data3": -8317743918882351619, + "Data4": 1140902661960732738 }, "Kind": "Components.EventHandler", "Name": "onloadeddata", @@ -7626,22 +7462,18 @@ "Documentation": "Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadeddata' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadeddata' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onloadeddata' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onloadeddata' event in the capturing and bubbling phases." } ], "Metadata": { @@ -7661,10 +7493,10 @@ }, { "__Checksum": { - "Data1": -510831045754026685, - "Data2": 6964289838075083330, - "Data3": -8998034021489020112, - "Data4": 1398669890987511756 + "Data1": 4611079111657132786, + "Data2": -643654385775602938, + "Data3": 3485405907981295335, + "Data4": -1286127212698286851 }, "Kind": "Components.EventHandler", "Name": "onloadedmetadata", @@ -7718,22 +7550,18 @@ "Documentation": "Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadedmetadata' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadedmetadata' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onloadedmetadata' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onloadedmetadata' event in the capturing and bubbling phases." } ], "Metadata": { @@ -7753,10 +7581,10 @@ }, { "__Checksum": { - "Data1": -1846785159651334689, - "Data2": 228583969728688184, - "Data3": 6282700219626528827, - "Data4": 8447352556658793790 + "Data1": -3916582289612656701, + "Data2": -6901651429604899888, + "Data3": 5991811088085112636, + "Data4": -7865461190550542044 }, "Kind": "Components.EventHandler", "Name": "onloadend", @@ -7810,22 +7638,18 @@ "Documentation": "Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadend' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadend' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onloadend' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onloadend' event in the capturing and bubbling phases." } ], "Metadata": { @@ -7845,10 +7669,10 @@ }, { "__Checksum": { - "Data1": -3271444022478402571, - "Data2": 6808684954229955978, - "Data3": 4118696354490472116, - "Data4": 1313084385443518196 + "Data1": -6620870422699118137, + "Data2": -742727370848380124, + "Data3": -8165102667604339678, + "Data4": -2582130758413984269 }, "Kind": "Components.EventHandler", "Name": "onloadstart", @@ -7902,22 +7726,18 @@ "Documentation": "Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadstart' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadstart' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onloadstart' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onloadstart' event in the capturing and bubbling phases." } ], "Metadata": { @@ -7937,10 +7757,10 @@ }, { "__Checksum": { - "Data1": 8560192747025301747, - "Data2": -3364043371282526417, - "Data3": 6534159599336212745, - "Data4": 6669620656951171824 + "Data1": 8376339645682673586, + "Data2": -5431962627570531157, + "Data3": -7223577022614846299, + "Data4": 3350849269904885251 }, "Kind": "Components.EventHandler", "Name": "onlostpointercapture", @@ -7994,22 +7814,18 @@ "Documentation": "Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onlostpointercapture' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onlostpointercapture' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onlostpointercapture' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onlostpointercapture' event in the capturing and bubbling phases." } ], "Metadata": { @@ -8029,10 +7845,10 @@ }, { "__Checksum": { - "Data1": 3844853799839066938, - "Data2": 6472949402307730128, - "Data3": -673570821360318099, - "Data4": -2068373078827981868 + "Data1": 85490524366915387, + "Data2": -7672361594115455654, + "Data3": 930006045806036201, + "Data4": 6481220027802324338 }, "Kind": "Components.EventHandler", "Name": "onmousedown", @@ -8086,22 +7902,18 @@ "Documentation": "Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousedown' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousedown' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onmousedown' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onmousedown' event in the capturing and bubbling phases." } ], "Metadata": { @@ -8121,10 +7933,10 @@ }, { "__Checksum": { - "Data1": -7231672217104957342, - "Data2": 1275343828862811216, - "Data3": -3212667756407280009, - "Data4": -591063670399133423 + "Data1": -7100107938822728515, + "Data2": -2916780864129095540, + "Data3": -6498625848404956595, + "Data4": 8575665302158667421 }, "Kind": "Components.EventHandler", "Name": "onmousemove", @@ -8178,22 +7990,18 @@ "Documentation": "Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousemove' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousemove' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onmousemove' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onmousemove' event in the capturing and bubbling phases." } ], "Metadata": { @@ -8213,10 +8021,10 @@ }, { "__Checksum": { - "Data1": -4695915169767853137, - "Data2": -5012006215027764888, - "Data3": -4562876979739212288, - "Data4": 6969325254105350676 + "Data1": 4338058125008432386, + "Data2": -2412516069099269055, + "Data3": 4537199837414391339, + "Data4": -6940566173904013284 }, "Kind": "Components.EventHandler", "Name": "onmouseout", @@ -8270,22 +8078,18 @@ "Documentation": "Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseout' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseout' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onmouseout' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onmouseout' event in the capturing and bubbling phases." } ], "Metadata": { @@ -8305,10 +8109,10 @@ }, { "__Checksum": { - "Data1": -6670020986484482530, - "Data2": -4264524944378393009, - "Data3": 342329424020831623, - "Data4": 9216840125230822241 + "Data1": -6991340220244018570, + "Data2": 2684265868884871799, + "Data3": 7035889216883200605, + "Data4": 2423404781952235603 }, "Kind": "Components.EventHandler", "Name": "onmouseover", @@ -8362,22 +8166,18 @@ "Documentation": "Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseover' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseover' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onmouseover' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onmouseover' event in the capturing and bubbling phases." } ], "Metadata": { @@ -8397,10 +8197,10 @@ }, { "__Checksum": { - "Data1": -8889769109475686179, - "Data2": -5718366049848122649, - "Data3": -2148202606540034464, - "Data4": 8063740994164547748 + "Data1": -3240934355022450766, + "Data2": 6617560377088607469, + "Data3": -3260815483546683390, + "Data4": 4043379036710452099 }, "Kind": "Components.EventHandler", "Name": "onmouseup", @@ -8454,22 +8254,18 @@ "Documentation": "Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseup' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseup' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onmouseup' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onmouseup' event in the capturing and bubbling phases." } ], "Metadata": { @@ -8489,10 +8285,10 @@ }, { "__Checksum": { - "Data1": -6064950808595188814, - "Data2": -4784466688234000366, - "Data3": -4595545819708619615, - "Data4": 6522007861271265334 + "Data1": 28708832908640841, + "Data2": 4637111640987001692, + "Data3": 659937512556419651, + "Data4": 2960656789339959525 }, "Kind": "Components.EventHandler", "Name": "onmousewheel", @@ -8546,22 +8342,18 @@ "Documentation": "Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousewheel' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousewheel' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onmousewheel' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onmousewheel' event in the capturing and bubbling phases." } ], "Metadata": { @@ -8581,10 +8373,10 @@ }, { "__Checksum": { - "Data1": -7905893440531719543, - "Data2": 7562212679621791805, - "Data3": -6096208515109829503, - "Data4": -6276469631909286987 + "Data1": -7320546096527219427, + "Data2": -5652096307083058252, + "Data3": -424066266533036725, + "Data4": -4882621223666078251 }, "Kind": "Components.EventHandler", "Name": "onpaste", @@ -8638,22 +8430,18 @@ "Documentation": "Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpaste' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpaste' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onpaste' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onpaste' event in the capturing and bubbling phases." } ], "Metadata": { @@ -8673,10 +8461,10 @@ }, { "__Checksum": { - "Data1": -6838145208851156030, - "Data2": -5489756394814979955, - "Data3": -6599702282998226328, - "Data4": -8890740204366495772 + "Data1": 6925683031597902808, + "Data2": -8193858560874879844, + "Data3": 3009403209639563434, + "Data4": -5873878936090806 }, "Kind": "Components.EventHandler", "Name": "onpause", @@ -8730,22 +8518,18 @@ "Documentation": "Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpause' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpause' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onpause' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onpause' event in the capturing and bubbling phases." } ], "Metadata": { @@ -8765,10 +8549,10 @@ }, { "__Checksum": { - "Data1": 2690716815643504147, - "Data2": 2394531767522550490, - "Data3": 8784326749896269104, - "Data4": 1824300260619810066 + "Data1": 7316575855584128364, + "Data2": 1136041920911461526, + "Data3": 185278435014702853, + "Data4": -8482359216563013969 }, "Kind": "Components.EventHandler", "Name": "onplay", @@ -8822,22 +8606,18 @@ "Documentation": "Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplay' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplay' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onplay' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onplay' event in the capturing and bubbling phases." } ], "Metadata": { @@ -8857,10 +8637,10 @@ }, { "__Checksum": { - "Data1": -3304281299509581153, - "Data2": -7862262381827351570, - "Data3": 2874030803864064860, - "Data4": -2096741352884955693 + "Data1": -9145055928073374728, + "Data2": -5565933669786037571, + "Data3": -6601509529724848786, + "Data4": -6625522752830695027 }, "Kind": "Components.EventHandler", "Name": "onplaying", @@ -8914,22 +8694,18 @@ "Documentation": "Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplaying' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplaying' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onplaying' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onplaying' event in the capturing and bubbling phases." } ], "Metadata": { @@ -8949,10 +8725,10 @@ }, { "__Checksum": { - "Data1": -1873469006752919581, - "Data2": -5072981947445660059, - "Data3": 7662953476336022729, - "Data4": 4972866536032886405 + "Data1": 7397328215603430353, + "Data2": 2551951551227428823, + "Data3": -4827177530417202644, + "Data4": -8873729829902051552 }, "Kind": "Components.EventHandler", "Name": "onpointercancel", @@ -9006,22 +8782,18 @@ "Documentation": "Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointercancel' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointercancel' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointercancel' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onpointercancel' event in the capturing and bubbling phases." } ], "Metadata": { @@ -9041,10 +8813,10 @@ }, { "__Checksum": { - "Data1": 2759905335606232699, - "Data2": -1964476083038050141, - "Data3": 1069871562731478040, - "Data4": 7728540198450016247 + "Data1": 5531789134773406438, + "Data2": 7900188402148951667, + "Data3": -2633580919224608338, + "Data4": 4059275599916629843 }, "Kind": "Components.EventHandler", "Name": "onpointerdown", @@ -9098,22 +8870,18 @@ "Documentation": "Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerdown' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerdown' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerdown' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerdown' event in the capturing and bubbling phases." } ], "Metadata": { @@ -9133,10 +8901,10 @@ }, { "__Checksum": { - "Data1": -408131904856483925, - "Data2": -6987948489373291874, - "Data3": 88884820318461938, - "Data4": 1199116417888345380 + "Data1": -3394523682458429064, + "Data2": 7219114259961966861, + "Data3": 612786561963848094, + "Data4": 5272092732060072440 }, "Kind": "Components.EventHandler", "Name": "onpointerenter", @@ -9190,22 +8958,18 @@ "Documentation": "Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerenter' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerenter' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerenter' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerenter' event in the capturing and bubbling phases." } ], "Metadata": { @@ -9225,10 +8989,10 @@ }, { "__Checksum": { - "Data1": -3998992340406114414, - "Data2": 1094366271103150357, - "Data3": -2447318345817832841, - "Data4": 3286070635033442150 + "Data1": 2829293836043812326, + "Data2": -1260604900553246092, + "Data3": 9113273088391495345, + "Data4": -4654675625642582510 }, "Kind": "Components.EventHandler", "Name": "onpointerleave", @@ -9282,22 +9046,18 @@ "Documentation": "Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerleave' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerleave' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerleave' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerleave' event in the capturing and bubbling phases." } ], "Metadata": { @@ -9317,10 +9077,10 @@ }, { "__Checksum": { - "Data1": 4098880326052710505, - "Data2": 8337925582774510561, - "Data3": 814570697334145419, - "Data4": 1924203194735847832 + "Data1": 6375921679450568672, + "Data2": -3269108332157207636, + "Data3": 4628894935344228480, + "Data4": -856220540572064425 }, "Kind": "Components.EventHandler", "Name": "onpointerlockchange", @@ -9374,22 +9134,18 @@ "Documentation": "Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockchange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockchange' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerlockchange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerlockchange' event in the capturing and bubbling phases." } ], "Metadata": { @@ -9409,10 +9165,10 @@ }, { "__Checksum": { - "Data1": -8193803496749865602, - "Data2": -7799907065274240459, - "Data3": -2246010572961436915, - "Data4": 4092281294794004986 + "Data1": 7887239623514062704, + "Data2": -5436090644757708037, + "Data3": 7549354325751636281, + "Data4": 8066751189638259098 }, "Kind": "Components.EventHandler", "Name": "onpointerlockerror", @@ -9466,22 +9222,18 @@ "Documentation": "Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockerror' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockerror' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerlockerror' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerlockerror' event in the capturing and bubbling phases." } ], "Metadata": { @@ -9501,10 +9253,10 @@ }, { "__Checksum": { - "Data1": 8989341770890372802, - "Data2": -435613441997019748, - "Data3": 2313846410646583447, - "Data4": 2185099028154550104 + "Data1": 4832439747655564991, + "Data2": -4512879615785887514, + "Data3": -7133993899680201306, + "Data4": -6891247532307498545 }, "Kind": "Components.EventHandler", "Name": "onpointermove", @@ -9558,22 +9310,18 @@ "Documentation": "Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointermove' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointermove' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointermove' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onpointermove' event in the capturing and bubbling phases." } ], "Metadata": { @@ -9593,10 +9341,10 @@ }, { "__Checksum": { - "Data1": -8525423674060353641, - "Data2": 8762580170020229294, - "Data3": -7696103862721831891, - "Data4": 1775657013434054859 + "Data1": -7473029431622188229, + "Data2": 1862511663468593325, + "Data3": 4055023952708697663, + "Data4": -4133895208001499675 }, "Kind": "Components.EventHandler", "Name": "onpointerout", @@ -9650,22 +9398,18 @@ "Documentation": "Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerout' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerout' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerout' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerout' event in the capturing and bubbling phases." } ], "Metadata": { @@ -9685,10 +9429,10 @@ }, { "__Checksum": { - "Data1": -3566498173339828859, - "Data2": 8076687167598020713, - "Data3": -4418971580259372899, - "Data4": -1523120538178311881 + "Data1": 7317353743738043694, + "Data2": -5739996462267796877, + "Data3": -2888130792210317441, + "Data4": 231589467525074146 }, "Kind": "Components.EventHandler", "Name": "onpointerover", @@ -9742,22 +9486,18 @@ "Documentation": "Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerover' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerover' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerover' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerover' event in the capturing and bubbling phases." } ], "Metadata": { @@ -9777,10 +9517,10 @@ }, { "__Checksum": { - "Data1": 4403598085412452850, - "Data2": -1947316553595927374, - "Data3": 6509234971427491243, - "Data4": 1087587615653973315 + "Data1": -5366786791349307980, + "Data2": -9066722678336691475, + "Data3": -444911357641092109, + "Data4": -4191957969607723941 }, "Kind": "Components.EventHandler", "Name": "onpointerup", @@ -9834,22 +9574,18 @@ "Documentation": "Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerup' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerup' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerup' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerup' event in the capturing and bubbling phases." } ], "Metadata": { @@ -9869,10 +9605,10 @@ }, { "__Checksum": { - "Data1": 3879427843670869193, - "Data2": 8428864266088137881, - "Data3": -1304270801097457931, - "Data4": -7026290091599055325 + "Data1": 3406400838604803747, + "Data2": -2098749030409528133, + "Data3": -6414629464348170303, + "Data4": -5243582165770392498 }, "Kind": "Components.EventHandler", "Name": "onprogress", @@ -9926,22 +9662,18 @@ "Documentation": "Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onprogress' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onprogress' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onprogress' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onprogress' event in the capturing and bubbling phases." } ], "Metadata": { @@ -9961,10 +9693,10 @@ }, { "__Checksum": { - "Data1": 6018351090573102403, - "Data2": 5385994926661756669, - "Data3": 4899745047929325574, - "Data4": 386529701324508905 + "Data1": 494567630702822934, + "Data2": -1018097234928779685, + "Data3": -393951081920276844, + "Data4": 4581155809097731917 }, "Kind": "Components.EventHandler", "Name": "onratechange", @@ -10018,22 +9750,18 @@ "Documentation": "Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onratechange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onratechange' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onratechange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onratechange' event in the capturing and bubbling phases." } ], "Metadata": { @@ -10053,10 +9781,10 @@ }, { "__Checksum": { - "Data1": -7104441795945113833, - "Data2": -2672458172754879857, - "Data3": 4232630043954398249, - "Data4": -3331973936600836381 + "Data1": -7688023218366364410, + "Data2": -2829820205990183412, + "Data3": 7637016241948523981, + "Data4": 4548677191200725293 }, "Kind": "Components.EventHandler", "Name": "onreadystatechange", @@ -10110,22 +9838,18 @@ "Documentation": "Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreadystatechange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreadystatechange' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onreadystatechange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onreadystatechange' event in the capturing and bubbling phases." } ], "Metadata": { @@ -10145,10 +9869,10 @@ }, { "__Checksum": { - "Data1": 1224827343190729662, - "Data2": 9146705381189747431, - "Data3": -3572015617153571978, - "Data4": 6642642978339759881 + "Data1": 224717445316874759, + "Data2": 5347660932654165673, + "Data3": 5181719928833362039, + "Data4": -4387464771602446362 }, "Kind": "Components.EventHandler", "Name": "onreset", @@ -10202,22 +9926,18 @@ "Documentation": "Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreset' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreset' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onreset' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onreset' event in the capturing and bubbling phases." } ], "Metadata": { @@ -10237,10 +9957,10 @@ }, { "__Checksum": { - "Data1": -5269019469634634394, - "Data2": -5215184336752733527, - "Data3": 8037565605809365375, - "Data4": 3956396367102989396 + "Data1": 6826453195202586983, + "Data2": 7683457740343697410, + "Data3": -8768293978917309078, + "Data4": -1699932148962838449 }, "Kind": "Components.EventHandler", "Name": "onscroll", @@ -10294,22 +10014,18 @@ "Documentation": "Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onscroll' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onscroll' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onscroll' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onscroll' event in the capturing and bubbling phases." } ], "Metadata": { @@ -10329,10 +10045,10 @@ }, { "__Checksum": { - "Data1": 5348764166581152634, - "Data2": -185856157442222895, - "Data3": -7699263863770504875, - "Data4": -8500278865866131135 + "Data1": 8445864660291885180, + "Data2": 510040691898294539, + "Data3": 6480558170492764918, + "Data4": -5418274989094225347 }, "Kind": "Components.EventHandler", "Name": "onseeked", @@ -10386,22 +10102,18 @@ "Documentation": "Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeked' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeked' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onseeked' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onseeked' event in the capturing and bubbling phases." } ], "Metadata": { @@ -10421,10 +10133,10 @@ }, { "__Checksum": { - "Data1": -5337289748336579194, - "Data2": -2764425311147520028, - "Data3": 3940806194153714994, - "Data4": -7737017287730939222 + "Data1": -2192183166053862912, + "Data2": -7744244642283049125, + "Data3": -2809229131799001521, + "Data4": -8886585934832241989 }, "Kind": "Components.EventHandler", "Name": "onseeking", @@ -10478,22 +10190,18 @@ "Documentation": "Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeking' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeking' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onseeking' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onseeking' event in the capturing and bubbling phases." } ], "Metadata": { @@ -10513,10 +10221,10 @@ }, { "__Checksum": { - "Data1": -8999554027865065483, - "Data2": 9053506557548338835, - "Data3": -8055523883860285167, - "Data4": 2771945697403335479 + "Data1": 8740321036435910222, + "Data2": 5891384443450844093, + "Data3": -2967303923433362985, + "Data4": 1612163178029608108 }, "Kind": "Components.EventHandler", "Name": "onselect", @@ -10570,22 +10278,18 @@ "Documentation": "Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselect' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselect' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onselect' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onselect' event in the capturing and bubbling phases." } ], "Metadata": { @@ -10605,10 +10309,10 @@ }, { "__Checksum": { - "Data1": -3401103688762081775, - "Data2": 8709192630522774774, - "Data3": -837919988537380635, - "Data4": -4460520393601812411 + "Data1": -4064073072735914895, + "Data2": -31601092673190627, + "Data3": 8734947246065897115, + "Data4": 6185886125014021072 }, "Kind": "Components.EventHandler", "Name": "onselectionchange", @@ -10662,22 +10366,18 @@ "Documentation": "Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectionchange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectionchange' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onselectionchange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onselectionchange' event in the capturing and bubbling phases." } ], "Metadata": { @@ -10697,10 +10397,10 @@ }, { "__Checksum": { - "Data1": 2547025097855028199, - "Data2": -7605025420708277560, - "Data3": -1312716523978744516, - "Data4": -6504621706267392300 + "Data1": -1138046083590599608, + "Data2": 4687463443162695208, + "Data3": 9053096327392442231, + "Data4": -6965323229588981034 }, "Kind": "Components.EventHandler", "Name": "onselectstart", @@ -10754,22 +10454,18 @@ "Documentation": "Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectstart' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectstart' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onselectstart' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onselectstart' event in the capturing and bubbling phases." } ], "Metadata": { @@ -10789,10 +10485,10 @@ }, { "__Checksum": { - "Data1": -5434978434956537759, - "Data2": 8936011303415081287, - "Data3": 5426628164775390400, - "Data4": -2430245909846221519 + "Data1": 318596306897676962, + "Data2": -840774377398621388, + "Data3": -1462482679929495584, + "Data4": 5294382030114106666 }, "Kind": "Components.EventHandler", "Name": "onstalled", @@ -10846,22 +10542,18 @@ "Documentation": "Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstalled' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstalled' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onstalled' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onstalled' event in the capturing and bubbling phases." } ], "Metadata": { @@ -10881,10 +10573,10 @@ }, { "__Checksum": { - "Data1": 4673650175081597591, - "Data2": 3024822344042810919, - "Data3": 8906429931535552461, - "Data4": 8540796470304621340 + "Data1": 682335393944696285, + "Data2": -8143509266863874208, + "Data3": -2282273855033062024, + "Data4": -5179552279762309277 }, "Kind": "Components.EventHandler", "Name": "onstop", @@ -10938,22 +10630,18 @@ "Documentation": "Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstop' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstop' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onstop' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onstop' event in the capturing and bubbling phases." } ], "Metadata": { @@ -10973,10 +10661,10 @@ }, { "__Checksum": { - "Data1": 535484282712467334, - "Data2": -735898059947873195, - "Data3": 5783258117750854991, - "Data4": 4371570045216854086 + "Data1": 375207229838560256, + "Data2": -18760777078759482, + "Data3": 3985625336333601867, + "Data4": 2953121569794424637 }, "Kind": "Components.EventHandler", "Name": "onsubmit", @@ -11030,22 +10718,18 @@ "Documentation": "Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsubmit' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsubmit' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onsubmit' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onsubmit' event in the capturing and bubbling phases." } ], "Metadata": { @@ -11065,10 +10749,10 @@ }, { "__Checksum": { - "Data1": -6351861245085816570, - "Data2": -5797567101172751535, - "Data3": 1043467516572737658, - "Data4": -6481474979887666324 + "Data1": -5445321366961653967, + "Data2": 4124806904531967893, + "Data3": 1933661076932727502, + "Data4": 8854206439306489824 }, "Kind": "Components.EventHandler", "Name": "onsuspend", @@ -11122,22 +10806,18 @@ "Documentation": "Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsuspend' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsuspend' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onsuspend' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onsuspend' event in the capturing and bubbling phases." } ], "Metadata": { @@ -11157,10 +10837,10 @@ }, { "__Checksum": { - "Data1": 8292097123581819337, - "Data2": 2776394615863869302, - "Data3": -4849882703177702563, - "Data4": 906162761099879996 + "Data1": -6260758442662658747, + "Data2": -4956140924178912324, + "Data3": -7339672672011689316, + "Data4": 2413686638602994464 }, "Kind": "Components.EventHandler", "Name": "ontimeout", @@ -11214,22 +10894,18 @@ "Documentation": "Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeout' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeout' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ontimeout' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ontimeout' event in the capturing and bubbling phases." } ], "Metadata": { @@ -11249,10 +10925,10 @@ }, { "__Checksum": { - "Data1": -5667603341153897733, - "Data2": 3892972364029271543, - "Data3": -6949172278752942387, - "Data4": 3539967113494603846 + "Data1": 7222802425613234723, + "Data2": -7277154280083511902, + "Data3": 2966982761299943195, + "Data4": -1162499262911127340 }, "Kind": "Components.EventHandler", "Name": "ontimeupdate", @@ -11306,22 +10982,18 @@ "Documentation": "Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeupdate' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeupdate' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ontimeupdate' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ontimeupdate' event in the capturing and bubbling phases." } ], "Metadata": { @@ -11341,10 +11013,10 @@ }, { "__Checksum": { - "Data1": -7806331998966020903, - "Data2": -7707138743821744509, - "Data3": 6455382756265501102, - "Data4": 3384184814395207884 + "Data1": -2933110866959855969, + "Data2": 4776123269696502483, + "Data3": -7215451003448242449, + "Data4": -4731990563456866962 }, "Kind": "Components.EventHandler", "Name": "ontouchcancel", @@ -11398,22 +11070,18 @@ "Documentation": "Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchcancel' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchcancel' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchcancel' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchcancel' event in the capturing and bubbling phases." } ], "Metadata": { @@ -11433,10 +11101,10 @@ }, { "__Checksum": { - "Data1": 4542987420449600718, - "Data2": 9013789881031146024, - "Data3": -4367289269788149840, - "Data4": -2578806760145339096 + "Data1": -6989557799974096154, + "Data2": -8781554843878572521, + "Data3": -7050593770855838515, + "Data4": 4846614854330578457 }, "Kind": "Components.EventHandler", "Name": "ontouchend", @@ -11490,22 +11158,18 @@ "Documentation": "Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchend' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchend' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchend' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchend' event in the capturing and bubbling phases." } ], "Metadata": { @@ -11525,10 +11189,10 @@ }, { "__Checksum": { - "Data1": -3779697527290143720, - "Data2": 527832603341980700, - "Data3": -7864893452240933530, - "Data4": 7790765333844005658 + "Data1": -6046162252574913814, + "Data2": 1996982228263436704, + "Data3": 162079317515365391, + "Data4": -8030054928814096267 }, "Kind": "Components.EventHandler", "Name": "ontouchenter", @@ -11582,22 +11246,18 @@ "Documentation": "Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchenter' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchenter' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchenter' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchenter' event in the capturing and bubbling phases." } ], "Metadata": { @@ -11617,10 +11277,10 @@ }, { "__Checksum": { - "Data1": 6510294364378274278, - "Data2": -7346350569613905399, - "Data3": -4594177156102174679, - "Data4": 7819420859205945506 + "Data1": -2557764745591168310, + "Data2": -482904289065305496, + "Data3": -8882497789396432323, + "Data4": 3149874420673659964 }, "Kind": "Components.EventHandler", "Name": "ontouchleave", @@ -11674,22 +11334,18 @@ "Documentation": "Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchleave' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchleave' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchleave' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchleave' event in the capturing and bubbling phases." } ], "Metadata": { @@ -11709,10 +11365,10 @@ }, { "__Checksum": { - "Data1": 4812163409056452754, - "Data2": 8423701471397266046, - "Data3": -784211087395201266, - "Data4": -6024175971943845623 + "Data1": 7570418477598409072, + "Data2": -2012819158168851695, + "Data3": 5833721410694397516, + "Data4": 4052898797121392415 }, "Kind": "Components.EventHandler", "Name": "ontouchmove", @@ -11766,22 +11422,18 @@ "Documentation": "Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchmove' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchmove' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchmove' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchmove' event in the capturing and bubbling phases." } ], "Metadata": { @@ -11801,10 +11453,10 @@ }, { "__Checksum": { - "Data1": -9084276094204070050, - "Data2": -7558266861140587626, - "Data3": -672148720628532948, - "Data4": -4330234491150592726 + "Data1": -6276453969501756829, + "Data2": -8277767549315702204, + "Data3": 8082463828934951326, + "Data4": 6384139276086053334 }, "Kind": "Components.EventHandler", "Name": "ontouchstart", @@ -11858,22 +11510,18 @@ "Documentation": "Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchstart' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchstart' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchstart' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchstart' event in the capturing and bubbling phases." } ], "Metadata": { @@ -11893,10 +11541,10 @@ }, { "__Checksum": { - "Data1": -2888202117723849406, - "Data2": -7094292676896212492, - "Data3": 2782059822840370194, - "Data4": 1229613741760470804 + "Data1": 9085283702070882756, + "Data2": 4853304623921408194, + "Data3": 4840371610510195757, + "Data4": 2679967318257509693 }, "Kind": "Components.EventHandler", "Name": "onvolumechange", @@ -11950,22 +11598,18 @@ "Documentation": "Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onvolumechange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onvolumechange' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onvolumechange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onvolumechange' event in the capturing and bubbling phases." } ], "Metadata": { @@ -11985,10 +11629,10 @@ }, { "__Checksum": { - "Data1": -8838217443688849831, - "Data2": -845497231821731321, - "Data3": -4695288501574354576, - "Data4": 1430466430403331030 + "Data1": 4763739743440912051, + "Data2": -5805890290527098950, + "Data3": 4415708932505262221, + "Data4": -4761431241838105867 }, "Kind": "Components.EventHandler", "Name": "onwaiting", @@ -12042,22 +11686,18 @@ "Documentation": "Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwaiting' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwaiting' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onwaiting' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onwaiting' event in the capturing and bubbling phases." } ], "Metadata": { @@ -12077,10 +11717,10 @@ }, { "__Checksum": { - "Data1": 6695658002474050984, - "Data2": 7759070390999581965, - "Data3": -833171135367282962, - "Data4": 5069663121235466930 + "Data1": -2435732156176880840, + "Data2": 7236098437422307162, + "Data3": -9030750916488917926, + "Data4": 1709821249770257085 }, "Kind": "Components.EventHandler", "Name": "onwheel", @@ -12134,22 +11774,18 @@ "Documentation": "Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwheel' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwheel' event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifies whether to prevent further propagation of the '@onwheel' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifies whether to prevent further propagation of the '@onwheel' event in the capturing and bubbling phases." } ], "Metadata": { @@ -14923,10 +14559,10 @@ }, { "__Checksum": { - "Data1": -8374502925475485972, - "Data2": 4707130141488163023, - "Data3": 411338323922686677, - "Data4": 295545264586871050 + "Data1": -3685292186040504276, + "Data2": 8536781606371643524, + "Data3": 4274372468402335766, + "Data4": 1468910848180810761 }, "Kind": "Components.Bind", "Name": "Bind", @@ -14960,31 +14596,25 @@ "Documentation": "Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the corresponding bind attribute. For example: @bind-value:format=\"...\" will apply a format string to the value specified in @bind-value=\"...\". The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format" - } + "PropertyName": "Format", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the corresponding bind attribute. For example: @bind-value:format=\"...\" will apply a format string to the value specified in @bind-value=\"...\". The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-...' attribute.", - "Metadata": { - "Common.PropertyName": "Event" - } + "PropertyName": "Event", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-...' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -15003,10 +14633,10 @@ }, { "__Checksum": { - "Data1": -8083328137904785432, - "Data2": 3969359824820992635, - "Data3": -5251356362654280105, - "Data4": 204765281340957522 + "Data1": 2985670379829105576, + "Data2": 8274301716369992601, + "Data3": 2880453571866082091, + "Data4": -3575772219232359282 }, "Kind": "Components.Bind", "Name": "Bind", @@ -15036,31 +14666,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -15091,10 +14715,10 @@ }, { "__Checksum": { - "Data1": -2045096310838737397, - "Data2": 1627355172981466643, - "Data3": -5202400309324669264, - "Data4": 1395355326308217900 + "Data1": 2817812258952236956, + "Data2": 5253073933658094894, + "Data3": 6740588000506545263, + "Data4": 7862719811371506707 }, "Kind": "Components.Bind", "Name": "Bind", @@ -15124,31 +14748,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -15179,10 +14797,10 @@ }, { "__Checksum": { - "Data1": -1463477446241557898, - "Data2": -8451094983334327173, - "Data3": 309269024453531163, - "Data4": 7570536586517191144 + "Data1": -7809547790453801279, + "Data2": -5757433330597755039, + "Data3": 623067456977970697, + "Data4": 4689900097438501027 }, "Kind": "Components.Bind", "Name": "Bind", @@ -15218,31 +14836,25 @@ "Documentation": "Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_checked" - } + "PropertyName": "Format_checked", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_checked" - } + "PropertyName": "Event_checked", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -15274,10 +14886,10 @@ }, { "__Checksum": { - "Data1": -610723102708122458, - "Data2": -1059946848847349542, - "Data3": -8733625058913092465, - "Data4": 7749118359074504351 + "Data1": -4785482484865695785, + "Data2": 3314045726500131272, + "Data3": -7713856404844623095, + "Data4": -6715489049262522563 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -15313,31 +14925,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -15369,10 +14975,10 @@ }, { "__Checksum": { - "Data1": -370761153577830254, - "Data2": -6937212866394766939, - "Data3": 9012680906355889818, - "Data4": 8282489071310411460 + "Data1": 890662114278379898, + "Data2": 3971470295267907455, + "Data3": 49589090793957989, + "Data4": -8367456935790439680 }, "Kind": "Components.Bind", "Name": "Bind", @@ -15408,31 +15014,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -15464,10 +15064,10 @@ }, { "__Checksum": { - "Data1": 376258524606428198, - "Data2": 6911672216055926280, - "Data3": -6079624827817224211, - "Data4": -9023036871903818635 + "Data1": 2902268118371366552, + "Data2": -5291299079245225802, + "Data3": -863434885957592293, + "Data4": -7062582030546450024 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -15503,31 +15103,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -15559,10 +15153,10 @@ }, { "__Checksum": { - "Data1": 5923598738481015030, - "Data2": -815128937363244410, - "Data3": 8047116853466098117, - "Data4": -7923054426791402953 + "Data1": 8323077042696068576, + "Data2": -7679787121196400457, + "Data3": 2237142770718645983, + "Data4": 1897522602057373425 }, "Kind": "Components.Bind", "Name": "Bind", @@ -15598,31 +15192,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -15654,10 +15242,10 @@ }, { "__Checksum": { - "Data1": -291129595025880893, - "Data2": -5756087797314309262, - "Data3": 7566509511520895168, - "Data4": 7257519651276114704 + "Data1": -6320533541342552612, + "Data2": -4323539625282631642, + "Data3": 2195120552717965085, + "Data4": 4106216466811421772 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -15693,31 +15281,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -15749,10 +15331,10 @@ }, { "__Checksum": { - "Data1": -2409928887212936452, - "Data2": -9205228317416867905, - "Data3": 7376276764479886690, - "Data4": -679354104792758218 + "Data1": 2539118183301452226, + "Data2": -5921674867011910942, + "Data3": -5440624088004299023, + "Data4": 7688493597734439022 }, "Kind": "Components.Bind", "Name": "Bind", @@ -15788,31 +15370,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -15844,10 +15420,10 @@ }, { "__Checksum": { - "Data1": 8797729002162753254, - "Data2": 7437180336391192617, - "Data3": -2663967424455897645, - "Data4": -4517904462757297054 + "Data1": 4880179657431543240, + "Data2": -423513603172884336, + "Data3": 2206583150977906855, + "Data4": -5906331554161240979 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -15883,31 +15459,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -15939,10 +15509,10 @@ }, { "__Checksum": { - "Data1": -1116788084557869619, - "Data2": -2898982718326102545, - "Data3": 6648341822851393022, - "Data4": -3034002887359481060 + "Data1": 625677145327438669, + "Data2": -874903887778963408, + "Data3": 7956982106780899970, + "Data4": 4320036332833234398 }, "Kind": "Components.Bind", "Name": "Bind", @@ -15978,31 +15548,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -16034,10 +15598,10 @@ }, { "__Checksum": { - "Data1": -2129792389192263848, - "Data2": 5122137648131834190, - "Data3": 1055822938728292428, - "Data4": 6357760022537249938 + "Data1": 4747274241146740015, + "Data2": 8761114011558415887, + "Data3": -6881949634175154265, + "Data4": 4082854514770647392 }, "Kind": "Components.Bind", "Name": "Bind", @@ -16073,31 +15637,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -16129,10 +15687,10 @@ }, { "__Checksum": { - "Data1": 4507268336053185054, - "Data2": -4924529436625881637, - "Data3": -6384694186165311236, - "Data4": 1159189652648307039 + "Data1": -4350784122265236843, + "Data2": 2700830642728689475, + "Data3": 7664509657514465206, + "Data4": 8896253258108937877 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -16168,31 +15726,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -16224,10 +15776,10 @@ }, { "__Checksum": { - "Data1": -2786262672341805485, - "Data2": 496796405187848261, - "Data3": -2512096008251902916, - "Data4": 8495041879440838067 + "Data1": 2910981472147216679, + "Data2": 1688254039565410991, + "Data3": -5900639657447504829, + "Data4": -3920063457595131644 }, "Kind": "Components.Bind", "Name": "Bind", @@ -16263,31 +15815,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -16319,10 +15865,10 @@ }, { "__Checksum": { - "Data1": -9039372246411499249, - "Data2": 5215789752599257667, - "Data3": 5482041223859225988, - "Data4": -5131003500985830395 + "Data1": -7022367332598984804, + "Data2": -6246828379507765753, + "Data3": 4707808536421549178, + "Data4": -5278616444778478773 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -16352,31 +15898,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { @@ -16407,10 +15947,10 @@ }, { "__Checksum": { - "Data1": -8658166212506016373, - "Data2": 991767655367317235, - "Data3": -6419385054464713237, - "Data4": 2446416340530546326 + "Data1": -8344498090806234141, + "Data2": 3783416190601196617, + "Data3": 8412050911796659813, + "Data4": -4863640647035698696 }, "Kind": "Components.Bind", "Name": "Bind", @@ -16440,31 +15980,25 @@ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifies the culture to use for conversions." } ], "Metadata": { diff --git a/src/Shared/files/Tooling/taghelpers.json b/src/Shared/files/Tooling/taghelpers.json index c8ea723e7c8..74db4a259e7 100644 --- a/src/Shared/files/Tooling/taghelpers.json +++ b/src/Shared/files/Tooling/taghelpers.json @@ -86574,10 +86574,10 @@ }, { "__Checksum": { - "Data1": -8029294114301294196, - "Data2": 4436871911460969384, - "Data3": 7026093149980344087, - "Data4": 2109966330317008498 + "Data1": 776561726507942884, + "Data2": 5557630740736201865, + "Data3": 7355842519808458354, + "Data4": -3964587568195868151 }, "Kind": "Components.EventHandler", "Name": "onfocus", @@ -86631,22 +86631,18 @@ "Documentation": "Setsthe'@onfocus'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onfocus'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onfocus'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onfocus'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onfocus'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -86666,10 +86662,10 @@ }, { "__Checksum": { - "Data1": 8430524976668795556, - "Data2": -2305366048035869093, - "Data3": -3795994686096710004, - "Data4": -4916821313617455159 + "Data1": -7950054930748702975, + "Data2": 6465363889119136392, + "Data3": -4143786467884568428, + "Data4": -7359791184330635656 }, "Kind": "Components.EventHandler", "Name": "onblur", @@ -86723,22 +86719,18 @@ "Documentation": "Setsthe'@onblur'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onblur'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onblur'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onblur'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onblur'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -86758,10 +86750,10 @@ }, { "__Checksum": { - "Data1": 823588469738526950, - "Data2": -2639905821011695575, - "Data3": 3745317479415867861, - "Data4": -6803435630030024545 + "Data1": -4699592739833148788, + "Data2": -8331610815184386671, + "Data3": 4173905434627084587, + "Data4": -328988478052119607 }, "Kind": "Components.EventHandler", "Name": "onfocusin", @@ -86815,22 +86807,18 @@ "Documentation": "Setsthe'@onfocusin'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onfocusin'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onfocusin'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onfocusin'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onfocusin'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -86850,10 +86838,10 @@ }, { "__Checksum": { - "Data1": -2915493067333359384, - "Data2": -7808179576794946733, - "Data3": 8838413292386214059, - "Data4": -6656567956475474983 + "Data1": 4832732406522545188, + "Data2": 6876575770989611033, + "Data3": 3801586134737525481, + "Data4": 5803459775368156402 }, "Kind": "Components.EventHandler", "Name": "onfocusout", @@ -86907,22 +86895,18 @@ "Documentation": "Setsthe'@onfocusout'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onfocusout'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onfocusout'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onfocusout'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onfocusout'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -86942,10 +86926,10 @@ }, { "__Checksum": { - "Data1": -7749217032576547757, - "Data2": 1359313579227886558, - "Data3": -1565347552863178812, - "Data4": -9151838720095202730 + "Data1": -2456623862534754194, + "Data2": 4897916296463155188, + "Data3": 641005691947285359, + "Data4": -8838201390559360680 }, "Kind": "Components.EventHandler", "Name": "onmouseover", @@ -86999,22 +86983,18 @@ "Documentation": "Setsthe'@onmouseover'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onmouseover'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onmouseover'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onmouseover'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onmouseover'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -87034,10 +87014,10 @@ }, { "__Checksum": { - "Data1": 3805044649385605744, - "Data2": 1330495512312034731, - "Data3": -207062788823104004, - "Data4": -7254032872792986022 + "Data1": 6049076316800264400, + "Data2": -8058562634396256426, + "Data3": -2668176197574968240, + "Data4": -5490107775533555661 }, "Kind": "Components.EventHandler", "Name": "onmouseout", @@ -87091,22 +87071,18 @@ "Documentation": "Setsthe'@onmouseout'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onmouseout'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onmouseout'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onmouseout'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onmouseout'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -87126,10 +87102,10 @@ }, { "__Checksum": { - "Data1": -1290064918907079030, - "Data2": 3614315278037461247, - "Data3": -5962177275564879933, - "Data4": -3101339244330735233 + "Data1": 745056966200040031, + "Data2": -8118750236149352757, + "Data3": -2143126753721766364, + "Data4": 3180479463644345544 }, "Kind": "Components.EventHandler", "Name": "onmousemove", @@ -87183,22 +87159,18 @@ "Documentation": "Setsthe'@onmousemove'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onmousemove'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onmousemove'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onmousemove'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onmousemove'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -87218,10 +87190,10 @@ }, { "__Checksum": { - "Data1": 8288632757827964650, - "Data2": 3319231521160952657, - "Data3": -8206241842193692923, - "Data4": -5856838650341192421 + "Data1": -7813760438582330405, + "Data2": 3191338601767660698, + "Data3": 1598423061245711969, + "Data4": 3538887710525514946 }, "Kind": "Components.EventHandler", "Name": "onmousedown", @@ -87275,22 +87247,18 @@ "Documentation": "Setsthe'@onmousedown'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onmousedown'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onmousedown'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onmousedown'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onmousedown'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -87310,10 +87278,10 @@ }, { "__Checksum": { - "Data1": 5377310087166320980, - "Data2": -5362907431948510940, - "Data3": 7242659839978749927, - "Data4": -7388099734230073589 + "Data1": -8568747407739400930, + "Data2": -2739194467979803088, + "Data3": -494792239438407205, + "Data4": 4069383184054621234 }, "Kind": "Components.EventHandler", "Name": "onmouseup", @@ -87367,22 +87335,18 @@ "Documentation": "Setsthe'@onmouseup'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onmouseup'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onmouseup'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onmouseup'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onmouseup'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -87402,10 +87366,10 @@ }, { "__Checksum": { - "Data1": -5274194474505816046, - "Data2": 2445313260131206246, - "Data3": 5645654448992524202, - "Data4": -2508342585868321866 + "Data1": 2691366312267196551, + "Data2": 945764990463275536, + "Data3": -6633382773603334787, + "Data4": 9056029558432764453 }, "Kind": "Components.EventHandler", "Name": "onclick", @@ -87459,22 +87423,18 @@ "Documentation": "Setsthe'@onclick'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onclick'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onclick'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onclick'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onclick'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -87494,10 +87454,10 @@ }, { "__Checksum": { - "Data1": 7259570215880295955, - "Data2": 1332436525664594599, - "Data3": 1450286926672636262, - "Data4": 3141720851368242314 + "Data1": -5746034800709908768, + "Data2": 1384114053049548018, + "Data3": -762745928578686125, + "Data4": 3310133740194521339 }, "Kind": "Components.EventHandler", "Name": "ondblclick", @@ -87551,22 +87511,18 @@ "Documentation": "Setsthe'@ondblclick'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondblclick'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondblclick'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondblclick'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondblclick'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -87586,10 +87542,10 @@ }, { "__Checksum": { - "Data1": -1032233111498568896, - "Data2": -1463003093222249687, - "Data3": -5145208417790907709, - "Data4": 3855178197706097874 + "Data1": -6571673966820787306, + "Data2": -356722867657918075, + "Data3": -4323490984558370885, + "Data4": -2327808082380185750 }, "Kind": "Components.EventHandler", "Name": "onwheel", @@ -87643,22 +87599,18 @@ "Documentation": "Setsthe'@onwheel'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onwheel'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onwheel'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onwheel'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onwheel'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -87678,10 +87630,10 @@ }, { "__Checksum": { - "Data1": -7858556421249037653, - "Data2": -6141410279693543154, - "Data3": 2941900833216152627, - "Data4": -1812832413780417660 + "Data1": 7009791439294874418, + "Data2": -5518190968471865242, + "Data3": 996180290626419525, + "Data4": 4724612514121241554 }, "Kind": "Components.EventHandler", "Name": "onmousewheel", @@ -87735,22 +87687,18 @@ "Documentation": "Setsthe'@onmousewheel'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onmousewheel'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onmousewheel'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onmousewheel'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onmousewheel'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -87770,10 +87718,10 @@ }, { "__Checksum": { - "Data1": 8805438489510975465, - "Data2": -1591095352494804592, - "Data3": 3255738180138606738, - "Data4": -3915078897023176358 + "Data1": 8684766088183726974, + "Data2": -4179632678952881697, + "Data3": -1835629594978760273, + "Data4": 6806337382292419095 }, "Kind": "Components.EventHandler", "Name": "oncontextmenu", @@ -87827,22 +87775,18 @@ "Documentation": "Setsthe'@oncontextmenu'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oncontextmenu'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oncontextmenu'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oncontextmenu'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oncontextmenu'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -87862,10 +87806,10 @@ }, { "__Checksum": { - "Data1": 3902719168367878110, - "Data2": -5811756333130153191, - "Data3": 9189568861101096470, - "Data4": 6324757359655627123 + "Data1": -3936034570909442512, + "Data2": 8185574875338810261, + "Data3": -7294789916148375604, + "Data4": -7988381909870867183 }, "Kind": "Components.EventHandler", "Name": "ondrag", @@ -87919,22 +87863,18 @@ "Documentation": "Setsthe'@ondrag'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondrag'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondrag'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondrag'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondrag'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -87954,10 +87894,10 @@ }, { "__Checksum": { - "Data1": -69843521405893725, - "Data2": -1953700550382637308, - "Data3": 3860701881976810451, - "Data4": -7680997750779461464 + "Data1": 6612364046286108891, + "Data2": 7938084268625906938, + "Data3": -5496393027756177394, + "Data4": -8842852218074003515 }, "Kind": "Components.EventHandler", "Name": "ondragend", @@ -88011,22 +87951,18 @@ "Documentation": "Setsthe'@ondragend'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondragend'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondragend'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondragend'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondragend'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -88046,10 +87982,10 @@ }, { "__Checksum": { - "Data1": -442338404668426156, - "Data2": -7864036950792294558, - "Data3": -7805163980334074521, - "Data4": 8104272772457967678 + "Data1": -7157106690163754092, + "Data2": 2959549450549697234, + "Data3": -3573606193669284279, + "Data4": -4412809196265448223 }, "Kind": "Components.EventHandler", "Name": "ondragenter", @@ -88103,22 +88039,18 @@ "Documentation": "Setsthe'@ondragenter'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondragenter'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondragenter'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondragenter'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondragenter'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -88138,10 +88070,10 @@ }, { "__Checksum": { - "Data1": -1708319551221517620, - "Data2": -1583377979293159293, - "Data3": 1784485519516050604, - "Data4": -8591503985490143763 + "Data1": -3469870177517462699, + "Data2": 6312380037254605637, + "Data3": -3094073707890115628, + "Data4": 461245180926347400 }, "Kind": "Components.EventHandler", "Name": "ondragleave", @@ -88195,22 +88127,18 @@ "Documentation": "Setsthe'@ondragleave'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondragleave'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondragleave'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondragleave'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondragleave'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -88230,10 +88158,10 @@ }, { "__Checksum": { - "Data1": -1949782261608745449, - "Data2": -990245567430719335, - "Data3": 8830167923080017717, - "Data4": -5309014949500858893 + "Data1": 1198582670071088953, + "Data2": 3739268369360527671, + "Data3": 2931243054922686622, + "Data4": 1587176538678499991 }, "Kind": "Components.EventHandler", "Name": "ondragover", @@ -88287,22 +88215,18 @@ "Documentation": "Setsthe'@ondragover'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondragover'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondragover'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondragover'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondragover'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -88322,10 +88246,10 @@ }, { "__Checksum": { - "Data1": 5109744501300834063, - "Data2": 6635176055628656229, - "Data3": -7167847009040733106, - "Data4": -2971630293295814664 + "Data1": -5924328765303398517, + "Data2": -4895237971080167607, + "Data3": -1210778275634014654, + "Data4": -3517362703801785521 }, "Kind": "Components.EventHandler", "Name": "ondragstart", @@ -88379,22 +88303,18 @@ "Documentation": "Setsthe'@ondragstart'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondragstart'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondragstart'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondragstart'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondragstart'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -88414,10 +88334,10 @@ }, { "__Checksum": { - "Data1": 1866968899516010112, - "Data2": -516771436962940940, - "Data3": -5543930879313357734, - "Data4": -3363598394112225556 + "Data1": 3351120994073836432, + "Data2": -8078898051877844987, + "Data3": 9134138371014904605, + "Data4": -2854312192401876534 }, "Kind": "Components.EventHandler", "Name": "ondrop", @@ -88471,22 +88391,18 @@ "Documentation": "Setsthe'@ondrop'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondrop'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondrop'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondrop'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondrop'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -88506,10 +88422,10 @@ }, { "__Checksum": { - "Data1": -2634387557391753606, - "Data2": 3898396386489484857, - "Data3": 7741059142082729706, - "Data4": 4671273962518595672 + "Data1": 5077285199962410397, + "Data2": -9066896604787139986, + "Data3": -310554883975592190, + "Data4": -6214024301785119171 }, "Kind": "Components.EventHandler", "Name": "onkeydown", @@ -88563,22 +88479,18 @@ "Documentation": "Setsthe'@onkeydown'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onkeydown'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onkeydown'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onkeydown'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onkeydown'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -88598,10 +88510,10 @@ }, { "__Checksum": { - "Data1": 1634155129577632682, - "Data2": 1952298828880532412, - "Data3": -5052235295813504786, - "Data4": -6488354440344022663 + "Data1": -3451933020005154529, + "Data2": -2363288638095261372, + "Data3": -7408539997117023526, + "Data4": 5722579297602786118 }, "Kind": "Components.EventHandler", "Name": "onkeyup", @@ -88655,22 +88567,18 @@ "Documentation": "Setsthe'@onkeyup'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onkeyup'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onkeyup'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onkeyup'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onkeyup'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -88690,10 +88598,10 @@ }, { "__Checksum": { - "Data1": 4071805348238527324, - "Data2": 8385720450830088485, - "Data3": 3999819337871209884, - "Data4": 418073973360250527 + "Data1": -4372286476570551847, + "Data2": -1647204244638399910, + "Data3": -5434938110512986448, + "Data4": -1140738179753388870 }, "Kind": "Components.EventHandler", "Name": "onkeypress", @@ -88747,22 +88655,18 @@ "Documentation": "Setsthe'@onkeypress'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onkeypress'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onkeypress'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onkeypress'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onkeypress'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -88782,10 +88686,10 @@ }, { "__Checksum": { - "Data1": -8247717549650500847, - "Data2": 2146882530931952087, - "Data3": 3831053977962595099, - "Data4": 6636825332426791763 + "Data1": 7146818761235551508, + "Data2": 2204964737553865114, + "Data3": 9007368408570436325, + "Data4": 3503911248425216881 }, "Kind": "Components.EventHandler", "Name": "onchange", @@ -88839,22 +88743,18 @@ "Documentation": "Setsthe'@onchange'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.ChangeEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onchange'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onchange'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onchange'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onchange'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -88874,10 +88774,10 @@ }, { "__Checksum": { - "Data1": 6119321334682063753, - "Data2": -2917668901127492860, - "Data3": -5620366240557622589, - "Data4": 515510831182772401 + "Data1": -8041585676407528832, + "Data2": -177400542946692827, + "Data3": -7140067122791456683, + "Data4": 1767545638128224492 }, "Kind": "Components.EventHandler", "Name": "oninput", @@ -88931,22 +88831,18 @@ "Documentation": "Setsthe'@oninput'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.ChangeEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oninput'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oninput'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oninput'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oninput'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -88966,10 +88862,10 @@ }, { "__Checksum": { - "Data1": -5980847350661836422, - "Data2": -7362885130007323334, - "Data3": -1675850270429403138, - "Data4": 8158909530497579787 + "Data1": -976082742642820831, + "Data2": -8604211272281991176, + "Data3": 967936762894759607, + "Data4": 5234927576935575895 }, "Kind": "Components.EventHandler", "Name": "oninvalid", @@ -89023,22 +88919,18 @@ "Documentation": "Setsthe'@oninvalid'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oninvalid'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oninvalid'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oninvalid'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oninvalid'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -89058,10 +88950,10 @@ }, { "__Checksum": { - "Data1": 1989922220197860337, - "Data2": -3796404802385026813, - "Data3": 1329028126634292816, - "Data4": -3133685010156480949 + "Data1": -6808473964169166288, + "Data2": -7675912997442969349, + "Data3": -4604993777349514317, + "Data4": -1200989218310710916 }, "Kind": "Components.EventHandler", "Name": "onreset", @@ -89115,22 +89007,18 @@ "Documentation": "Setsthe'@onreset'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onreset'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onreset'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onreset'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onreset'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -89150,10 +89038,10 @@ }, { "__Checksum": { - "Data1": 1858131507673473118, - "Data2": 5994714014829699796, - "Data3": -6574428342137310325, - "Data4": -5591676989125636831 + "Data1": -4177885159442933292, + "Data2": -1129482810142213837, + "Data3": 7974408388185247885, + "Data4": -5301644591809156180 }, "Kind": "Components.EventHandler", "Name": "onselect", @@ -89207,22 +89095,18 @@ "Documentation": "Setsthe'@onselect'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onselect'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onselect'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onselect'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onselect'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -89242,10 +89126,10 @@ }, { "__Checksum": { - "Data1": -2223696147856243159, - "Data2": -9022720820020266765, - "Data3": 7935177454932127966, - "Data4": 8186887692245173061 + "Data1": 653332947246040897, + "Data2": 2539729174074297351, + "Data3": -2869441715872142527, + "Data4": 855425694007554639 }, "Kind": "Components.EventHandler", "Name": "onselectstart", @@ -89299,22 +89183,18 @@ "Documentation": "Setsthe'@onselectstart'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onselectstart'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onselectstart'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onselectstart'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onselectstart'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -89334,10 +89214,10 @@ }, { "__Checksum": { - "Data1": 6144381415924695902, - "Data2": 7896804902655487735, - "Data3": -6509696034842926531, - "Data4": 4678457929882002259 + "Data1": 6724679110949626691, + "Data2": -3214167320428175641, + "Data3": -1931798760997097090, + "Data4": 7126868194133096280 }, "Kind": "Components.EventHandler", "Name": "onselectionchange", @@ -89391,22 +89271,18 @@ "Documentation": "Setsthe'@onselectionchange'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onselectionchange'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onselectionchange'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onselectionchange'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onselectionchange'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -89426,10 +89302,10 @@ }, { "__Checksum": { - "Data1": 1727407653468790630, - "Data2": -6176405930740776499, - "Data3": 7748213785916741588, - "Data4": 8813775636034993496 + "Data1": -143199196837509125, + "Data2": 5054853454233546183, + "Data3": -3310055233570163481, + "Data4": -2308187971095117321 }, "Kind": "Components.EventHandler", "Name": "onsubmit", @@ -89483,22 +89359,18 @@ "Documentation": "Setsthe'@onsubmit'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onsubmit'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onsubmit'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onsubmit'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onsubmit'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -89518,10 +89390,10 @@ }, { "__Checksum": { - "Data1": 6575940329447258222, - "Data2": 7157087558402615574, - "Data3": 1145695654101013544, - "Data4": 2377685884591466828 + "Data1": -1409291538160157514, + "Data2": 1453422544186407654, + "Data3": -6886927143499914533, + "Data4": -2508829764354329485 }, "Kind": "Components.EventHandler", "Name": "onbeforecopy", @@ -89575,22 +89447,18 @@ "Documentation": "Setsthe'@onbeforecopy'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onbeforecopy'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onbeforecopy'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onbeforecopy'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onbeforecopy'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -89610,10 +89478,10 @@ }, { "__Checksum": { - "Data1": 4674042886525013836, - "Data2": 1329732957585107000, - "Data3": -6036310862024957907, - "Data4": 2422415128302731040 + "Data1": 8805652541231566631, + "Data2": 2735176127846968743, + "Data3": -3097557438953150336, + "Data4": -3240015581351425806 }, "Kind": "Components.EventHandler", "Name": "onbeforecut", @@ -89667,22 +89535,18 @@ "Documentation": "Setsthe'@onbeforecut'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onbeforecut'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onbeforecut'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onbeforecut'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onbeforecut'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -89702,10 +89566,10 @@ }, { "__Checksum": { - "Data1": -5852774768651832223, - "Data2": 4538705893863953177, - "Data3": 5673045195388966644, - "Data4": 5966914134646873615 + "Data1": -7424545839632137207, + "Data2": -3717057470883371788, + "Data3": 1467116517835997901, + "Data4": 3099527486472268172 }, "Kind": "Components.EventHandler", "Name": "onbeforepaste", @@ -89759,22 +89623,18 @@ "Documentation": "Setsthe'@onbeforepaste'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onbeforepaste'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onbeforepaste'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onbeforepaste'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onbeforepaste'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -89794,10 +89654,10 @@ }, { "__Checksum": { - "Data1": 6221077295942767942, - "Data2": -1283664406452945, - "Data3": -1670735785675630769, - "Data4": -2151311223746273823 + "Data1": -134848738593063519, + "Data2": -3651257906947580304, + "Data3": 1413675231712570498, + "Data4": 978684993046199366 }, "Kind": "Components.EventHandler", "Name": "oncopy", @@ -89851,22 +89711,18 @@ "Documentation": "Setsthe'@oncopy'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oncopy'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oncopy'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oncopy'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oncopy'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -89886,10 +89742,10 @@ }, { "__Checksum": { - "Data1": -2664198222099604208, - "Data2": -7608721198233500333, - "Data3": 5797619497849335232, - "Data4": 6286345071032460404 + "Data1": -7322064494069445117, + "Data2": 2494132458027238290, + "Data3": 8238429581458905756, + "Data4": -8507723274534037426 }, "Kind": "Components.EventHandler", "Name": "oncut", @@ -89943,22 +89799,18 @@ "Documentation": "Setsthe'@oncut'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oncut'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oncut'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oncut'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oncut'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -89978,10 +89830,10 @@ }, { "__Checksum": { - "Data1": 736079159728997635, - "Data2": 8535518054884220911, - "Data3": -7100156018478208815, - "Data4": 5463865902376397045 + "Data1": 8946132169626022491, + "Data2": -4579557400628748953, + "Data3": 5372107507482432022, + "Data4": -8345899503767181827 }, "Kind": "Components.EventHandler", "Name": "onpaste", @@ -90035,22 +89887,18 @@ "Documentation": "Setsthe'@onpaste'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpaste'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpaste'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpaste'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpaste'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -90070,10 +89918,10 @@ }, { "__Checksum": { - "Data1": 6457061051845891917, - "Data2": -3494829610118739305, - "Data3": -3994626537637656693, - "Data4": 3247268889530655347 + "Data1": -8787195935532179698, + "Data2": 2241067856970325518, + "Data3": 4183641674438244391, + "Data4": 2560561022760319543 }, "Kind": "Components.EventHandler", "Name": "ontouchcancel", @@ -90127,22 +89975,18 @@ "Documentation": "Setsthe'@ontouchcancel'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontouchcancel'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontouchcancel'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontouchcancel'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontouchcancel'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -90162,10 +90006,10 @@ }, { "__Checksum": { - "Data1": -7505690435477158310, - "Data2": 5853436023437666040, - "Data3": 4119909019455217512, - "Data4": 8598761293547088636 + "Data1": -2288049121236316193, + "Data2": -1871207230236988491, + "Data3": 6944367161041747027, + "Data4": 4953890562717020997 }, "Kind": "Components.EventHandler", "Name": "ontouchend", @@ -90219,22 +90063,18 @@ "Documentation": "Setsthe'@ontouchend'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontouchend'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontouchend'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontouchend'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontouchend'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -90254,10 +90094,10 @@ }, { "__Checksum": { - "Data1": -1412632958237881684, - "Data2": -2640847749406321725, - "Data3": -1698130247051517892, - "Data4": -6444758771132945927 + "Data1": 7854509324481108200, + "Data2": 6391013723596232050, + "Data3": -5142152930799601290, + "Data4": 3317349838530494190 }, "Kind": "Components.EventHandler", "Name": "ontouchmove", @@ -90311,22 +90151,18 @@ "Documentation": "Setsthe'@ontouchmove'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontouchmove'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontouchmove'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontouchmove'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontouchmove'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -90346,10 +90182,10 @@ }, { "__Checksum": { - "Data1": 8839797317742308664, - "Data2": -5495148564656745809, - "Data3": 1173633656926851590, - "Data4": 8728763649058014187 + "Data1": 5620939408186670455, + "Data2": 292692503247963677, + "Data3": 7923069958755785613, + "Data4": -8237117535436953139 }, "Kind": "Components.EventHandler", "Name": "ontouchstart", @@ -90403,22 +90239,18 @@ "Documentation": "Setsthe'@ontouchstart'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontouchstart'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontouchstart'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontouchstart'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontouchstart'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -90438,10 +90270,10 @@ }, { "__Checksum": { - "Data1": -2837312076003047356, - "Data2": -7932889034526648764, - "Data3": -2769101079459561325, - "Data4": -1100185680736720866 + "Data1": -5559870619942353257, + "Data2": -2515128103217133745, + "Data3": 3290008124799228189, + "Data4": -1605002053740442459 }, "Kind": "Components.EventHandler", "Name": "ontouchenter", @@ -90495,22 +90327,18 @@ "Documentation": "Setsthe'@ontouchenter'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontouchenter'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontouchenter'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontouchenter'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontouchenter'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -90530,10 +90358,10 @@ }, { "__Checksum": { - "Data1": -8091189013882848129, - "Data2": -7846778423678571724, - "Data3": 6255307043339232816, - "Data4": 6427348398407153864 + "Data1": -4678244826717681004, + "Data2": -7948292378089273635, + "Data3": 5890036056180196763, + "Data4": 3721163039413753076 }, "Kind": "Components.EventHandler", "Name": "ontouchleave", @@ -90587,22 +90415,18 @@ "Documentation": "Setsthe'@ontouchleave'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontouchleave'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontouchleave'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontouchleave'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontouchleave'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -90622,10 +90446,10 @@ }, { "__Checksum": { - "Data1": 415993672036093280, - "Data2": -8668508703215714818, - "Data3": 784899866586874480, - "Data4": -8567107284168532542 + "Data1": -1364523120345097441, + "Data2": 4878664492750009084, + "Data3": -6170575973861589773, + "Data4": 7328832883393461169 }, "Kind": "Components.EventHandler", "Name": "ongotpointercapture", @@ -90679,22 +90503,18 @@ "Documentation": "Setsthe'@ongotpointercapture'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ongotpointercapture'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ongotpointercapture'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ongotpointercapture'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ongotpointercapture'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -90714,10 +90534,10 @@ }, { "__Checksum": { - "Data1": 7098721715260484501, - "Data2": 116143890035694260, - "Data3": 3684980932803695607, - "Data4": -4023963302379634150 + "Data1": -7675427503204323266, + "Data2": -6069293883414311559, + "Data3": 8240861494710311248, + "Data4": 2255581679775309912 }, "Kind": "Components.EventHandler", "Name": "onlostpointercapture", @@ -90771,22 +90591,18 @@ "Documentation": "Setsthe'@onlostpointercapture'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onlostpointercapture'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onlostpointercapture'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onlostpointercapture'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onlostpointercapture'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -90806,10 +90622,10 @@ }, { "__Checksum": { - "Data1": -9201890617075919915, - "Data2": -6505988811227131980, - "Data3": 7641717011670816254, - "Data4": 6609676843536686403 + "Data1": -2838926228406491124, + "Data2": -6175772953967196640, + "Data3": 6588839912845184440, + "Data4": -1000730887297265878 }, "Kind": "Components.EventHandler", "Name": "onpointercancel", @@ -90863,22 +90679,18 @@ "Documentation": "Setsthe'@onpointercancel'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointercancel'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointercancel'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointercancel'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointercancel'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -90898,10 +90710,10 @@ }, { "__Checksum": { - "Data1": 209900182522808381, - "Data2": -1848820516353384699, - "Data3": 4553596890636230576, - "Data4": -2779104187906133052 + "Data1": 3380243718883495404, + "Data2": -2168791195024069717, + "Data3": 3925054206692295087, + "Data4": -1004234974649139214 }, "Kind": "Components.EventHandler", "Name": "onpointerdown", @@ -90955,22 +90767,18 @@ "Documentation": "Setsthe'@onpointerdown'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerdown'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerdown'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerdown'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerdown'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -90990,10 +90798,10 @@ }, { "__Checksum": { - "Data1": 5852712466649143171, - "Data2": -502514250729986017, - "Data3": -5371951725524337137, - "Data4": -1463805220398652030 + "Data1": -7417932853263868411, + "Data2": 2706070890709379533, + "Data3": -5315157247835577500, + "Data4": 2591120864616565474 }, "Kind": "Components.EventHandler", "Name": "onpointerenter", @@ -91047,22 +90855,18 @@ "Documentation": "Setsthe'@onpointerenter'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerenter'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerenter'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerenter'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerenter'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -91082,10 +90886,10 @@ }, { "__Checksum": { - "Data1": 7948665057543667596, - "Data2": 7377551071800625189, - "Data3": 4594357026577384788, - "Data4": 299108296194907774 + "Data1": -333723114949261493, + "Data2": 3543695049323708994, + "Data3": 2559258477814069936, + "Data4": -2480624330656796384 }, "Kind": "Components.EventHandler", "Name": "onpointerleave", @@ -91139,22 +90943,18 @@ "Documentation": "Setsthe'@onpointerleave'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerleave'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerleave'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerleave'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerleave'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -91174,10 +90974,10 @@ }, { "__Checksum": { - "Data1": 4696738615081803570, - "Data2": -2770216595962894099, - "Data3": 420187363159990071, - "Data4": -3305837022697634746 + "Data1": -4023832108436348501, + "Data2": -9171003223585055075, + "Data3": -5677085818387497176, + "Data4": 6785605268949744772 }, "Kind": "Components.EventHandler", "Name": "onpointermove", @@ -91231,22 +91031,18 @@ "Documentation": "Setsthe'@onpointermove'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointermove'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointermove'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointermove'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointermove'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -91266,10 +91062,10 @@ }, { "__Checksum": { - "Data1": 1733330871707643585, - "Data2": 7034275140063093959, - "Data3": -1516767377819973768, - "Data4": -2095444118658677917 + "Data1": -1524611642636099521, + "Data2": -2398126550182061268, + "Data3": -3412481245964591077, + "Data4": 4789876393151134327 }, "Kind": "Components.EventHandler", "Name": "onpointerout", @@ -91323,22 +91119,18 @@ "Documentation": "Setsthe'@onpointerout'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerout'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerout'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerout'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerout'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -91358,10 +91150,10 @@ }, { "__Checksum": { - "Data1": 392455559864674502, - "Data2": -1300698975880956216, - "Data3": 1514403290428071322, - "Data4": 8483952459864612909 + "Data1": 1764133925010105615, + "Data2": 6944910244968171030, + "Data3": 2174605378829256835, + "Data4": 3207961724796044038 }, "Kind": "Components.EventHandler", "Name": "onpointerover", @@ -91415,22 +91207,18 @@ "Documentation": "Setsthe'@onpointerover'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerover'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerover'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerover'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerover'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -91450,10 +91238,10 @@ }, { "__Checksum": { - "Data1": -9035359712820469796, - "Data2": 6827249671086803932, - "Data3": 2134014043941323397, - "Data4": -2615856535985300461 + "Data1": -6821842765712828994, + "Data2": -4226281608127149934, + "Data3": -7880739631936909349, + "Data4": -3414381712075622475 }, "Kind": "Components.EventHandler", "Name": "onpointerup", @@ -91507,22 +91295,18 @@ "Documentation": "Setsthe'@onpointerup'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerup'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerup'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerup'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerup'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -91542,10 +91326,10 @@ }, { "__Checksum": { - "Data1": -62156695952327807, - "Data2": -2435448061027673175, - "Data3": 4648351066821486611, - "Data4": -4383981014789477346 + "Data1": -3045675482182792335, + "Data2": -725540663764021536, + "Data3": 3223700190460777409, + "Data4": 5756747948724704098 }, "Kind": "Components.EventHandler", "Name": "oncanplay", @@ -91599,22 +91383,18 @@ "Documentation": "Setsthe'@oncanplay'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oncanplay'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oncanplay'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oncanplay'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oncanplay'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -91634,10 +91414,10 @@ }, { "__Checksum": { - "Data1": -3242382930146429555, - "Data2": 5363032895218637461, - "Data3": 1565328239365881090, - "Data4": 1428952368672493430 + "Data1": -8181871578001563542, + "Data2": 1826591734159521399, + "Data3": -7741062053213750151, + "Data4": -1182760005620748541 }, "Kind": "Components.EventHandler", "Name": "oncanplaythrough", @@ -91691,22 +91471,18 @@ "Documentation": "Setsthe'@oncanplaythrough'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oncanplaythrough'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oncanplaythrough'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oncanplaythrough'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oncanplaythrough'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -91726,10 +91502,10 @@ }, { "__Checksum": { - "Data1": -3275574996389441746, - "Data2": -2941468375201254531, - "Data3": -6507559727364234612, - "Data4": 1658012212925801712 + "Data1": 9159762585728613292, + "Data2": -5294162403467913170, + "Data3": 117370183853211654, + "Data4": -8924594526036229719 }, "Kind": "Components.EventHandler", "Name": "oncuechange", @@ -91783,22 +91559,18 @@ "Documentation": "Setsthe'@oncuechange'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oncuechange'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@oncuechange'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oncuechange'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@oncuechange'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -91818,10 +91590,10 @@ }, { "__Checksum": { - "Data1": 5563724846496257426, - "Data2": -6836723625743706240, - "Data3": -1523018127431113584, - "Data4": 1147684236555364310 + "Data1": -108522022600757672, + "Data2": 9047895504911954075, + "Data3": -3004984778560594811, + "Data4": -5571308925317578885 }, "Kind": "Components.EventHandler", "Name": "ondurationchange", @@ -91875,22 +91647,18 @@ "Documentation": "Setsthe'@ondurationchange'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondurationchange'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondurationchange'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondurationchange'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondurationchange'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -91910,10 +91678,10 @@ }, { "__Checksum": { - "Data1": -4117989507247391556, - "Data2": -6266059714749748648, - "Data3": 1185556269602263469, - "Data4": 1827712766870296087 + "Data1": -3191109992566101821, + "Data2": -2150100297240648704, + "Data3": -2370124475409828591, + "Data4": 450566494004535118 }, "Kind": "Components.EventHandler", "Name": "onemptied", @@ -91967,22 +91735,18 @@ "Documentation": "Setsthe'@onemptied'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onemptied'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onemptied'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onemptied'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onemptied'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -92002,10 +91766,10 @@ }, { "__Checksum": { - "Data1": -5562258275888176644, - "Data2": 5027902553451223016, - "Data3": 5622927410511554993, - "Data4": -8341812948189378444 + "Data1": 5188873233715447148, + "Data2": -2916738815401707685, + "Data3": -8430613452444614561, + "Data4": 3867636067106960859 }, "Kind": "Components.EventHandler", "Name": "onpause", @@ -92059,22 +91823,18 @@ "Documentation": "Setsthe'@onpause'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpause'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpause'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpause'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpause'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -92094,10 +91854,10 @@ }, { "__Checksum": { - "Data1": 5666149229720536364, - "Data2": -5427985744197123713, - "Data3": 3543309180713711412, - "Data4": -690116189493525407 + "Data1": 5632646633310707114, + "Data2": -2004270965309493673, + "Data3": -571071265288013124, + "Data4": -5387412698673117824 }, "Kind": "Components.EventHandler", "Name": "onplay", @@ -92151,22 +91911,18 @@ "Documentation": "Setsthe'@onplay'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onplay'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onplay'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onplay'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onplay'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -92186,10 +91942,10 @@ }, { "__Checksum": { - "Data1": -7609708809312053356, - "Data2": 8197953070475282418, - "Data3": -7123961644126352769, - "Data4": -5462761523027022096 + "Data1": -3214259889372672665, + "Data2": -3061681193101422080, + "Data3": -8978688402969784726, + "Data4": 1419243707579733380 }, "Kind": "Components.EventHandler", "Name": "onplaying", @@ -92243,22 +91999,18 @@ "Documentation": "Setsthe'@onplaying'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onplaying'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onplaying'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onplaying'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onplaying'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -92278,10 +92030,10 @@ }, { "__Checksum": { - "Data1": 4986479755537482731, - "Data2": 4688248930349452319, - "Data3": 8505709790992056616, - "Data4": -6294537318286110376 + "Data1": 3639812202865148481, + "Data2": 3947735091716626460, + "Data3": 131467721672026646, + "Data4": 1971418622805578794 }, "Kind": "Components.EventHandler", "Name": "onratechange", @@ -92335,22 +92087,18 @@ "Documentation": "Setsthe'@onratechange'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onratechange'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onratechange'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onratechange'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onratechange'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -92370,10 +92118,10 @@ }, { "__Checksum": { - "Data1": 4689324887844192143, - "Data2": 4948560403868094234, - "Data3": -4043157724457683427, - "Data4": -3089966481781743578 + "Data1": -6711155897990438040, + "Data2": 215022787691042145, + "Data3": 2257511852376788561, + "Data4": 7219471230970482625 }, "Kind": "Components.EventHandler", "Name": "onseeked", @@ -92427,22 +92175,18 @@ "Documentation": "Setsthe'@onseeked'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onseeked'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onseeked'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onseeked'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onseeked'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -92462,10 +92206,10 @@ }, { "__Checksum": { - "Data1": -6113521351366746335, - "Data2": 2075818371102296010, - "Data3": -6109793140510180474, - "Data4": 4154134789786617280 + "Data1": -975626354357934277, + "Data2": -569972674275297495, + "Data3": 321778095351961531, + "Data4": 5641105949806679865 }, "Kind": "Components.EventHandler", "Name": "onseeking", @@ -92519,22 +92263,18 @@ "Documentation": "Setsthe'@onseeking'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onseeking'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onseeking'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onseeking'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onseeking'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -92554,10 +92294,10 @@ }, { "__Checksum": { - "Data1": -7788605722852147874, - "Data2": 4769641620701076904, - "Data3": -4824095609068162385, - "Data4": -2132549363287227301 + "Data1": 8551069464608282310, + "Data2": -8500694245797738565, + "Data3": 5413174501748851231, + "Data4": 7189224547357492747 }, "Kind": "Components.EventHandler", "Name": "onstalled", @@ -92611,22 +92351,18 @@ "Documentation": "Setsthe'@onstalled'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onstalled'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onstalled'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onstalled'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onstalled'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -92646,10 +92382,10 @@ }, { "__Checksum": { - "Data1": 5771739206656666131, - "Data2": -7376265829217467602, - "Data3": -3007417288170673120, - "Data4": -213296142601627898 + "Data1": -8716539324389457730, + "Data2": 7629560137093173667, + "Data3": -5550944271325497898, + "Data4": -4258854524093193287 }, "Kind": "Components.EventHandler", "Name": "onstop", @@ -92703,22 +92439,18 @@ "Documentation": "Setsthe'@onstop'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onstop'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onstop'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onstop'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onstop'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -92738,10 +92470,10 @@ }, { "__Checksum": { - "Data1": 4014208764465425510, - "Data2": -8795069894002726771, - "Data3": -2414438856382285921, - "Data4": -6784708367520124955 + "Data1": -3307635867151641382, + "Data2": 1458343531669023242, + "Data3": -7604178372814465197, + "Data4": -8140998636961015275 }, "Kind": "Components.EventHandler", "Name": "onsuspend", @@ -92795,22 +92527,18 @@ "Documentation": "Setsthe'@onsuspend'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onsuspend'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onsuspend'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onsuspend'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onsuspend'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -92830,10 +92558,10 @@ }, { "__Checksum": { - "Data1": 1566407772098092771, - "Data2": -4741329287643563407, - "Data3": -7588930345514484840, - "Data4": 5858765750539620996 + "Data1": -5048811429771847686, + "Data2": 8436008766937675051, + "Data3": 2741470638531184907, + "Data4": -6444455413975791743 }, "Kind": "Components.EventHandler", "Name": "ontimeupdate", @@ -92887,22 +92615,18 @@ "Documentation": "Setsthe'@ontimeupdate'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontimeupdate'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontimeupdate'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontimeupdate'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontimeupdate'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -92922,10 +92646,10 @@ }, { "__Checksum": { - "Data1": 4337905593400500447, - "Data2": -7188483970728000437, - "Data3": 3933865123211424393, - "Data4": 1931396298609215332 + "Data1": 5075751616016691395, + "Data2": -696145718369758395, + "Data3": 7059609534261242701, + "Data4": -490082889918863415 }, "Kind": "Components.EventHandler", "Name": "onvolumechange", @@ -92979,22 +92703,18 @@ "Documentation": "Setsthe'@onvolumechange'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onvolumechange'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onvolumechange'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onvolumechange'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onvolumechange'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -93014,10 +92734,10 @@ }, { "__Checksum": { - "Data1": -2015864438753831532, - "Data2": 7516696556700275275, - "Data3": 5333282943845748055, - "Data4": -3934252647145183055 + "Data1": -7501802294604400000, + "Data2": -3625965255803750327, + "Data3": 1955356598152086536, + "Data4": 8983246261357243991 }, "Kind": "Components.EventHandler", "Name": "onwaiting", @@ -93071,22 +92791,18 @@ "Documentation": "Setsthe'@onwaiting'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onwaiting'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onwaiting'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onwaiting'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onwaiting'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -93106,10 +92822,10 @@ }, { "__Checksum": { - "Data1": -7222534431904859032, - "Data2": -5490267390442364996, - "Data3": 272393201202475006, - "Data4": 4175455797952361436 + "Data1": 7113408823953894580, + "Data2": -3385708258257047081, + "Data3": -5438728720618580624, + "Data4": -6568127681695805667 }, "Kind": "Components.EventHandler", "Name": "onloadstart", @@ -93163,22 +92879,18 @@ "Documentation": "Setsthe'@onloadstart'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onloadstart'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onloadstart'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onloadstart'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onloadstart'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -93198,10 +92910,10 @@ }, { "__Checksum": { - "Data1": -3972805844172084761, - "Data2": 6258556012803459140, - "Data3": -2302314203681407223, - "Data4": 224585508631981273 + "Data1": -6525671490676382978, + "Data2": 4959469022873450698, + "Data3": -1162444693447415375, + "Data4": 2208043797458242040 }, "Kind": "Components.EventHandler", "Name": "ontimeout", @@ -93255,22 +92967,18 @@ "Documentation": "Setsthe'@ontimeout'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontimeout'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ontimeout'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontimeout'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ontimeout'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -93290,10 +92998,10 @@ }, { "__Checksum": { - "Data1": 5092681659775326275, - "Data2": -4211811632728840163, - "Data3": 3800297630411921665, - "Data4": 2698773587831928219 + "Data1": 4229633964217994761, + "Data2": -2102011116319524402, + "Data3": -7556529433972524194, + "Data4": -5730129678864355507 }, "Kind": "Components.EventHandler", "Name": "onabort", @@ -93347,22 +93055,18 @@ "Documentation": "Setsthe'@onabort'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onabort'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onabort'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onabort'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onabort'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -93382,10 +93086,10 @@ }, { "__Checksum": { - "Data1": 2543693832465185050, - "Data2": 6100745303476802452, - "Data3": 5094833131838512363, - "Data4": -4927412547970242000 + "Data1": -9136669357741163771, + "Data2": 1911760616512839850, + "Data3": 7639489310527466486, + "Data4": -6787772486476911278 }, "Kind": "Components.EventHandler", "Name": "onload", @@ -93439,22 +93143,18 @@ "Documentation": "Setsthe'@onload'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onload'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onload'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onload'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onload'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -93474,10 +93174,10 @@ }, { "__Checksum": { - "Data1": 8064957833783505962, - "Data2": 8621069798582289949, - "Data3": -2563948753741938077, - "Data4": -3673411468146524780 + "Data1": 6411781117233724008, + "Data2": 1745164093169778459, + "Data3": 2922041960191452140, + "Data4": 774141106560927744 }, "Kind": "Components.EventHandler", "Name": "onloadend", @@ -93531,22 +93231,18 @@ "Documentation": "Setsthe'@onloadend'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onloadend'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onloadend'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onloadend'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onloadend'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -93566,10 +93262,10 @@ }, { "__Checksum": { - "Data1": -3333798807929921266, - "Data2": 3104388294537290247, - "Data3": -1568427053597294433, - "Data4": -2373093138868029120 + "Data1": 1843333705757442405, + "Data2": 7063607424992216512, + "Data3": -5153345452836997926, + "Data4": -9158592589777154168 }, "Kind": "Components.EventHandler", "Name": "onprogress", @@ -93623,22 +93319,18 @@ "Documentation": "Setsthe'@onprogress'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onprogress'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onprogress'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onprogress'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onprogress'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -93658,10 +93350,10 @@ }, { "__Checksum": { - "Data1": 5625660218632791144, - "Data2": -4725897650038834113, - "Data3": 7291843626728766151, - "Data4": -9188018969604862002 + "Data1": 5275261640806896168, + "Data2": -377935845478442165, + "Data3": 5493783007796022781, + "Data4": -8198217971144186335 }, "Kind": "Components.EventHandler", "Name": "onerror", @@ -93715,22 +93407,18 @@ "Documentation": "Setsthe'@onerror'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onerror'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onerror'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onerror'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onerror'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -93750,10 +93438,10 @@ }, { "__Checksum": { - "Data1": -6383227144410117950, - "Data2": -1366448872338212339, - "Data3": -7492188395538908919, - "Data4": 7985403807585090039 + "Data1": 1846646005057525569, + "Data2": 6275644902687431905, + "Data3": -6255807839277774010, + "Data4": -7267880071975957830 }, "Kind": "Components.EventHandler", "Name": "onactivate", @@ -93807,22 +93495,18 @@ "Documentation": "Setsthe'@onactivate'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onactivate'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onactivate'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onactivate'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onactivate'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -93842,10 +93526,10 @@ }, { "__Checksum": { - "Data1": 890724572266747579, - "Data2": -7474872103748698399, - "Data3": 6527173391204568601, - "Data4": 4023663115701219034 + "Data1": -2956012460807405167, + "Data2": -867632241710283175, + "Data3": -7911062764280315214, + "Data4": -7635907033254784455 }, "Kind": "Components.EventHandler", "Name": "onbeforeactivate", @@ -93899,22 +93583,18 @@ "Documentation": "Setsthe'@onbeforeactivate'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onbeforeactivate'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onbeforeactivate'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onbeforeactivate'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onbeforeactivate'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -93934,10 +93614,10 @@ }, { "__Checksum": { - "Data1": -6353229651997047848, - "Data2": -1646868707361881506, - "Data3": -4078132992215295063, - "Data4": -7882748028336309547 + "Data1": 5083621222632223664, + "Data2": -7615134300952047659, + "Data3": 3118125487024459121, + "Data4": 8454652953177990210 }, "Kind": "Components.EventHandler", "Name": "onbeforedeactivate", @@ -93991,22 +93671,18 @@ "Documentation": "Setsthe'@onbeforedeactivate'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onbeforedeactivate'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onbeforedeactivate'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onbeforedeactivate'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onbeforedeactivate'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -94026,10 +93702,10 @@ }, { "__Checksum": { - "Data1": -2685993657731987170, - "Data2": -9113038329640286068, - "Data3": 5291971126442420616, - "Data4": 4322899992879219543 + "Data1": -7416150203321873266, + "Data2": 67892427498583310, + "Data3": 5035973770082671911, + "Data4": 1963127784556408834 }, "Kind": "Components.EventHandler", "Name": "ondeactivate", @@ -94083,22 +93759,18 @@ "Documentation": "Setsthe'@ondeactivate'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondeactivate'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@ondeactivate'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondeactivate'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@ondeactivate'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -94118,10 +93790,10 @@ }, { "__Checksum": { - "Data1": 1730993684059802167, - "Data2": -717143247274833630, - "Data3": 2314236520825259211, - "Data4": 1070798041265634689 + "Data1": -4466175333291326729, + "Data2": 30107574859259056, + "Data3": 5067616611279907721, + "Data4": -2877928629764916929 }, "Kind": "Components.EventHandler", "Name": "onended", @@ -94175,22 +93847,18 @@ "Documentation": "Setsthe'@onended'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onended'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onended'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onended'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onended'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -94210,10 +93878,10 @@ }, { "__Checksum": { - "Data1": -1253093392532234222, - "Data2": 6592662108993411934, - "Data3": -4869495436838334096, - "Data4": -3863267574469215767 + "Data1": 1266843671011692775, + "Data2": -3391806959723457162, + "Data3": 2181819476764076762, + "Data4": -2306895156544048475 }, "Kind": "Components.EventHandler", "Name": "onfullscreenchange", @@ -94267,22 +93935,18 @@ "Documentation": "Setsthe'@onfullscreenchange'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onfullscreenchange'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onfullscreenchange'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onfullscreenchange'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onfullscreenchange'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -94302,10 +93966,10 @@ }, { "__Checksum": { - "Data1": 3789192794172112725, - "Data2": 8502530752637596355, - "Data3": 7598547233805599224, - "Data4": -8961693222999860490 + "Data1": 8170957982007637632, + "Data2": 5943610380447956352, + "Data3": -232353549138932172, + "Data4": 8280047298208669097 }, "Kind": "Components.EventHandler", "Name": "onfullscreenerror", @@ -94359,22 +94023,18 @@ "Documentation": "Setsthe'@onfullscreenerror'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onfullscreenerror'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onfullscreenerror'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onfullscreenerror'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onfullscreenerror'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -94394,10 +94054,10 @@ }, { "__Checksum": { - "Data1": -4070829643023784610, - "Data2": 8041544819808089290, - "Data3": 968618288055209453, - "Data4": 8326216634488637171 + "Data1": -2411726684098353984, + "Data2": -5802683937521213950, + "Data3": 6681577910692585143, + "Data4": 6516554411453905049 }, "Kind": "Components.EventHandler", "Name": "onloadeddata", @@ -94451,22 +94111,18 @@ "Documentation": "Setsthe'@onloadeddata'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onloadeddata'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onloadeddata'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onloadeddata'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onloadeddata'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -94486,10 +94142,10 @@ }, { "__Checksum": { - "Data1": -4793888904514075489, - "Data2": -1622530299869165988, - "Data3": 7066466872096282390, - "Data4": 5407242807192011206 + "Data1": 8448109721034244687, + "Data2": 4444578012429726208, + "Data3": 8058087262888006228, + "Data4": 1976552233714212259 }, "Kind": "Components.EventHandler", "Name": "onloadedmetadata", @@ -94543,22 +94199,18 @@ "Documentation": "Setsthe'@onloadedmetadata'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onloadedmetadata'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onloadedmetadata'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onloadedmetadata'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onloadedmetadata'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -94578,10 +94230,10 @@ }, { "__Checksum": { - "Data1": -900695056431472837, - "Data2": 6970927646127511881, - "Data3": 6896110048354240200, - "Data4": 9094125637607141381 + "Data1": 6230632528394100134, + "Data2": 1170920812939276168, + "Data3": 3428782354199001685, + "Data4": -1419987850355237211 }, "Kind": "Components.EventHandler", "Name": "onpointerlockchange", @@ -94635,22 +94287,18 @@ "Documentation": "Setsthe'@onpointerlockchange'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerlockchange'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerlockchange'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerlockchange'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerlockchange'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -94670,10 +94318,10 @@ }, { "__Checksum": { - "Data1": -6950255385777190652, - "Data2": 5512879101393325724, - "Data3": -141858432723609439, - "Data4": 4119505331899312660 + "Data1": -2777171276892945364, + "Data2": -384516344680759605, + "Data3": -6150855174947008331, + "Data4": -4246826583726816297 }, "Kind": "Components.EventHandler", "Name": "onpointerlockerror", @@ -94727,22 +94375,18 @@ "Documentation": "Setsthe'@onpointerlockerror'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerlockerror'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onpointerlockerror'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerlockerror'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onpointerlockerror'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -94762,10 +94406,10 @@ }, { "__Checksum": { - "Data1": 5964921096607217, - "Data2": 1593844922664504351, - "Data3": -8394692524280928641, - "Data4": 752604426278328927 + "Data1": 1575694811182832560, + "Data2": -7224428055139297008, + "Data3": 7606797203832047597, + "Data4": 824304385385201893 }, "Kind": "Components.EventHandler", "Name": "onreadystatechange", @@ -94819,22 +94463,18 @@ "Documentation": "Setsthe'@onreadystatechange'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onreadystatechange'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onreadystatechange'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onreadystatechange'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onreadystatechange'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -94854,10 +94494,10 @@ }, { "__Checksum": { - "Data1": 1825240108827567731, - "Data2": 448998282536408675, - "Data3": -5076417848973435724, - "Data4": -2094238378175347869 + "Data1": -2366130293720396115, + "Data2": -8252723281102890415, + "Data3": -6865574408519181629, + "Data4": -1510619801844755040 }, "Kind": "Components.EventHandler", "Name": "onscroll", @@ -94911,22 +94551,18 @@ "Documentation": "Setsthe'@onscroll'attributetotheprovidedstringordelegatevalue.Adelegatevalueshouldbeoftype'System.EventArgs'.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "preventDefault", - "TypeName": "System.Boolean", - "DisplayName": ":preventDefault", - "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onscroll'event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } + "PropertyName": "PreventDefault", + "TypeName": 1, + "Documentation": "Specifieswhethertocancel(ifcancelable)thedefaultactionthatbelongstothe'@onscroll'event." }, { + "Flags": 1, "Name": "stopPropagation", - "TypeName": "System.Boolean", - "DisplayName": ":stopPropagation", - "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onscroll'eventinthecapturingandbubblingphases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } + "PropertyName": "StopPropagation", + "TypeName": 1, + "Documentation": "Specifieswhethertopreventfurtherpropagationofthe'@onscroll'eventinthecapturingandbubblingphases." } ], "Metadata": { @@ -97796,10 +97432,10 @@ }, { "__Checksum": { - "Data1": 3532234170304194470, - "Data2": -6365854650530297078, - "Data3": 2024171196957327889, - "Data4": 1998078073931794223 + "Data1": 2030417771588122430, + "Data2": 4649382723659229669, + "Data3": -3918336093822036200, + "Data4": 4610720508231723798 }, "Kind": "Components.Bind", "Name": "Bind", @@ -97833,31 +97469,25 @@ "Documentation": "Bindstheprovidedexpressiontoanattributeandachangeevent,basedonthenamingofthebindattribute.Forexample:@bind-value=\"...\"and@bind-value:event=\"onchange\"willassignthecurrentvalueoftheexpressiontothe'value'attribute,andassignadelegatethatattemptstosetthevaluetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythecorrespondingbindattribute.Forexample:@bind-value:format=\"...\"willapplyaformatstringtothevaluespecifiedin@bind-value=\"...\".TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format" - } + "PropertyName": "Format", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythecorrespondingbindattribute.Forexample:@bind-value:format=\"...\"willapplyaformatstringtothevaluespecifiedin@bind-value=\"...\".TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-...'attribute.", - "Metadata": { - "Common.PropertyName": "Event" - } + "PropertyName": "Event", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-...'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -97876,10 +97506,10 @@ }, { "__Checksum": { - "Data1": -3936698396277004594, - "Data2": -4842815487738180796, - "Data3": -3520707988324247645, - "Data4": 250464048966873030 + "Data1": -1210505036186437714, + "Data2": -7315522048179997119, + "Data3": 1349016996544024302, + "Data4": -8316633923907749017 }, "Kind": "Components.Bind", "Name": "Bind", @@ -97909,31 +97539,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -97964,10 +97588,10 @@ }, { "__Checksum": { - "Data1": 1467258618629646184, - "Data2": 4969283301250973339, - "Data3": -5183087060536103681, - "Data4": 1820762931256756346 + "Data1": -1212939845715174819, + "Data2": 5188116788817344827, + "Data3": 1349099396914319995, + "Data4": -4521890797742595647 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -97997,31 +97621,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind-value'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind-value'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-value'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-value'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -98052,10 +97670,10 @@ }, { "__Checksum": { - "Data1": 6410559449461453400, - "Data2": 6946512473968276932, - "Data3": 6494172014477861112, - "Data4": 6691693794869229911 + "Data1": -362164550491707754, + "Data2": 2777284378238771303, + "Data3": -3366346204600779385, + "Data4": 8946851022927769159 }, "Kind": "Components.Bind", "Name": "Bind", @@ -98091,31 +97709,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'checked'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_checked" - } + "PropertyName": "Format_checked", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute.", - "Metadata": { - "Common.PropertyName": "Event_checked" - } + "PropertyName": "Event_checked", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -98147,10 +97759,10 @@ }, { "__Checksum": { - "Data1": 6846939376697341895, - "Data2": -4955061076717977021, - "Data3": -3269352225170519304, - "Data4": -312809781789491556 + "Data1": 725320005321615146, + "Data2": 1012471518868282571, + "Data3": 8498256487955384749, + "Data4": -6688041426864399971 }, "Kind": "Components.Bind", "Name": "Bind", @@ -98186,31 +97798,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -98242,10 +97848,10 @@ }, { "__Checksum": { - "Data1": -4810132408859521258, - "Data2": 8000847921990335224, - "Data3": -1692002091496255043, - "Data4": 2043341454659676918 + "Data1": 8680527777266706299, + "Data2": 1613590494683319693, + "Data3": -8729265923934647707, + "Data4": 8887843060352388478 }, "Kind": "Components.Bind", "Name": "Bind", @@ -98281,31 +97887,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -98337,10 +97937,10 @@ }, { "__Checksum": { - "Data1": -4089057318324881263, - "Data2": -4485724566842777278, - "Data3": -4244826918754315331, - "Data4": 5413345821528664433 + "Data1": -3951156008671269133, + "Data2": -7269429696171838567, + "Data3": -6304752799041863939, + "Data4": 5750399052233182741 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -98376,31 +97976,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind-value'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind-value'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-value'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-value'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -98432,10 +98026,10 @@ }, { "__Checksum": { - "Data1": -6719645206754578309, - "Data2": -4474790692035536367, - "Data3": -8384771174876465668, - "Data4": 5033394563471224858 + "Data1": -3671373402261864187, + "Data2": -3308318261959432649, + "Data3": 5889295602216036153, + "Data4": 4730920332648837364 }, "Kind": "Components.Bind", "Name": "Bind", @@ -98471,31 +98065,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -98527,10 +98115,10 @@ }, { "__Checksum": { - "Data1": 1748231122683437000, - "Data2": 5465018924473889714, - "Data3": -3566136092978853936, - "Data4": -7627628774082900812 + "Data1": -8198063170761176694, + "Data2": 2413893409913277124, + "Data3": -2258257473200775021, + "Data4": -5434674989322277612 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -98566,31 +98154,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind-value'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind-value'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-value'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-value'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -98622,10 +98204,10 @@ }, { "__Checksum": { - "Data1": 8957131748739002621, - "Data2": -7960612773210858890, - "Data3": 2800967126028325968, - "Data4": 5832931051261225957 + "Data1": -1787641582166330324, + "Data2": 607267097139183868, + "Data3": 5685325688047013584, + "Data4": 7959914804303944348 }, "Kind": "Components.Bind", "Name": "Bind", @@ -98661,31 +98243,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -98717,10 +98293,10 @@ }, { "__Checksum": { - "Data1": 6085525395778862324, - "Data2": -5512034180150733534, - "Data3": -4415074333325305102, - "Data4": -5236396504745422081 + "Data1": 678783425702656105, + "Data2": 8306043116854060449, + "Data3": -262824979775104703, + "Data4": 8814715819587985538 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -98756,31 +98332,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind-value'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind-value'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-value'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-value'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -98812,10 +98382,10 @@ }, { "__Checksum": { - "Data1": -6880657966635178915, - "Data2": -4675330225513356682, - "Data3": -4759659194323663177, - "Data4": 8475459617239895508 + "Data1": 2340433969139716888, + "Data2": 8984810464205449649, + "Data3": -6846547194378684933, + "Data4": 5090566316611756723 }, "Kind": "Components.Bind", "Name": "Bind", @@ -98851,31 +98421,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -98907,10 +98471,10 @@ }, { "__Checksum": { - "Data1": 4267886635187622237, - "Data2": 4517616376631292561, - "Data3": 7413915896123884357, - "Data4": 4952019002279031225 + "Data1": -145082677277093033, + "Data2": 1507680201851058644, + "Data3": 432970881947382418, + "Data4": -6701818064339445084 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -98946,31 +98510,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind-value'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind-value'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-value'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-value'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -99002,10 +98560,10 @@ }, { "__Checksum": { - "Data1": -4809974112740874242, - "Data2": 8740986366906673453, - "Data3": -7878609153740671320, - "Data4": 4659350916908111833 + "Data1": 3992603556555791750, + "Data2": 2227158943300699894, + "Data3": -3559342739536529791, + "Data4": -3316799628767781254 }, "Kind": "Components.Bind", "Name": "Bind", @@ -99041,31 +98599,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -99097,10 +98649,10 @@ }, { "__Checksum": { - "Data1": 767918669422888094, - "Data2": -9200250874664365808, - "Data3": 4168169921465251981, - "Data4": 7271146287100755752 + "Data1": 1441084740904999400, + "Data2": 4054802321038606973, + "Data3": -792948061075655411, + "Data4": -2122663307489725410 }, "Kind": "Components.Bind", "Name": "Bind_value", @@ -99136,31 +98688,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind-value'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind-value'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-value'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind-value'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -99192,10 +98738,10 @@ }, { "__Checksum": { - "Data1": -6595028919205744486, - "Data2": 8893636164341660165, - "Data3": 4797591988747440036, - "Data4": -4049343298246776643 + "Data1": -6542143710754663069, + "Data2": 3180225049241576418, + "Data3": 7666372933947722198, + "Data4": 8593994182272536861 }, "Kind": "Components.Bind", "Name": "Bind", @@ -99225,31 +98771,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": { @@ -99280,10 +98820,10 @@ }, { "__Checksum": { - "Data1": 3345597282898230265, - "Data2": -3241720259609830753, - "Data3": 183129237548057098, - "Data4": 5242084534092900265 + "Data1": 592080593764400075, + "Data2": -5297579682017099290, + "Data3": -203993226769686585, + "Data4": 5861745965761994617 }, "Kind": "Components.Bind", "Name": "Bind", @@ -99313,31 +98853,25 @@ "Documentation": "Bindstheprovidedexpressiontothe'value'attributeandachangeeventdelegatetothe'onchange'attribute.", "BoundAttributeParameters": [ { + "Flags": 1, "Name": "format", - "TypeName": "System.String", - "DisplayName": ":format", - "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } + "PropertyName": "Format_value", + "TypeName": 2, + "Documentation": "Specifiesaformattoconvertthevaluespecifiedbythe'@bind'attribute.TheformatstringcancurrentlyonlybeusedwithexpressionsoftypeDateTime." }, { + "Flags": 1, "Name": "event", - "TypeName": "System.String", - "DisplayName": ":event", - "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } + "PropertyName": "Event_value", + "TypeName": 2, + "Documentation": "Specifiestheeventhandlernametoattachforchangenotificationsforthevalueprovidedbythe'@bind'attribute." }, { + "Flags": 1, "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "DisplayName": ":culture", - "Documentation": "Specifiestheculturetouseforconversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } + "PropertyName": "Culture", + "TypeName": 3, + "Documentation": "Specifiestheculturetouseforconversions." } ], "Metadata": {