ant-design-blazor/components/core/JsInterop/JSInteropConstants.cs
XuRui 6a52961487 feat: add select component (#222)
* fix: other values may exist in FileAttributes

* feat: add javascript interop for select component

* feat: init select component

* docs: add menu item to select docs

* feat: implement dropdownRender for select component

* docs: init select docs

* fix: remove 3.0 iframe

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-06-14 18:54:14 +08:00

63 lines
2.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
namespace AntDesign
{
public static class JSInteropConstants
{
private const string FUNC_PREFIX = "AntDesign.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";
public static string backTop => $"{FUNC_PREFIX}BackTop";
public static string getFirstChildDomInfo => $"{FUNC_PREFIX}getFirstChildDomInfo";
public static string addClsToFirstChild => $"{FUNC_PREFIX}addClsToFirstChild";
public static string addDomEventListenerToFirstChild => $"{FUNC_PREFIX}addDomEventListenerToFirstChild";
public static string addElementToBody => $"{FUNC_PREFIX}addElementToBody";
public static string delElementFromBody => $"{FUNC_PREFIX}delElementFromBody";
public static string addElementTo => $"{FUNC_PREFIX}addElementTo";
public static string delElementFrom => $"{FUNC_PREFIX}delElementFrom";
public static string getActiveElement => $"{FUNC_PREFIX}getActiveElement";
public static string focusDialog => $"{FUNC_PREFIX}focusDialog";
public static string getWindow = $"{FUNC_PREFIX}getWindow";
public static string disableBodyScroll => $"{FUNC_PREFIX}disableBodyScroll";
public static string enableModalBodyScroll => $"{FUNC_PREFIX}enableModalBodyScroll";
public static string enableDrawerBodyScroll => $"{FUNC_PREFIX}enableDrawerBodyScroll";
public static string CreateIconFromfontCN => $"{FUNC_PREFIX}createIconFromfontCN";
public static string getScroll => $"{FUNC_PREFIX}getScroll";
public static string getInnerText => $"{FUNC_PREFIX}getInnerText";
}
}