ant-design-blazor/components/core/JsInterop/JSInteropConstants.cs
James Yeung 2d801c6c53 feat: add component radio (#36)
* feat: add component radio

* feat: add radio-group
2020-03-25 00:32:26 +08:00

27 lines
782 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace AntBlazor
{
public static class JSInteropConstants
{
private const string FUNC_PREFIX = "antBlazor.interop.";
public static string getDomInfo => $"{FUNC_PREFIX}getDomInfo";
public static string getBoundingClientRect => $"{FUNC_PREFIX}getBoundingClientRect";
public static string addDomEventListener => $"{FUNC_PREFIX}addDomEventListener";
public static string matchMedia => $"{FUNC_PREFIX}matchMedia";
public static string copy => $"{FUNC_PREFIX}copy";
public static string log => $"{FUNC_PREFIX}log";
public static string focus => $"{FUNC_PREFIX}focus";
public static string blur => $"{FUNC_PREFIX}blur";
}
}