Variable uiComponentConst

uiComponent: {
    badge: ((args) => ComponentInput);
    container: ((args) => ComponentInput);
    copyButton: ((args) => ComponentInput);
    divider: ((args) => ComponentInput);
    linkButton: ((args) => ComponentInput);
    plainText: ((args) => ComponentInput);
    row: ((args) => ComponentInput);
    spacer: ((args) => ComponentInput);
    text: ((args) => ComponentInput);
} = ...

Type declaration

  • badge: ((args) => ComponentInput)
      • (args): ComponentInput
      • Returns a ComponentInput which can be used with the API.

        Parameters

        • args: {
              color?: "BLUE" | "GREEN" | "GREY" | "RED" | "YELLOW";
              label: string;
          }
          • Optional color?: "BLUE" | "GREEN" | "GREY" | "RED" | "YELLOW"
          • label: string

        Returns ComponentInput

  • container: ((args) => ComponentInput)
  • copyButton: ((args) => ComponentInput)
      • (args): ComponentInput
      • Returns a ComponentInput which can be used with the API.

        Parameters

        • args: {
              tooltip?: string;
              value: string;
          }
          • Optional tooltip?: string
          • value: string

        Returns ComponentInput

  • divider: ((args) => ComponentInput)
      • (args): ComponentInput
      • Returns a ComponentInput which can be used with the API.

        Parameters

        • args: {
              spacingSize?: "L" | "M" | "S" | "XL" | "XS";
          }
          • Optional spacingSize?: "L" | "M" | "S" | "XL" | "XS"

        Returns ComponentInput

  • linkButton: ((args) => ComponentInput)
      • (args): ComponentInput
      • Returns a ComponentInput which can be used with the API.

        Parameters

        • args: {
              label: string;
              url: string;
          }
          • label: string
          • url: string

        Returns ComponentInput

  • plainText: ((args) => ComponentInput)
      • (args): ComponentInput
      • Returns a ComponentInput which can be used with the API.

        Parameters

        • args: {
              color?: "ERROR" | "MUTED" | "NORMAL" | "SUCCESS" | "WARNING";
              size?: "L" | "M" | "S";
              text: string;
          }
          • Optional color?: "ERROR" | "MUTED" | "NORMAL" | "SUCCESS" | "WARNING"
          • Optional size?: "L" | "M" | "S"
          • text: string

        Returns ComponentInput

  • row: ((args) => ComponentInput)
  • spacer: ((args) => ComponentInput)
      • (args): ComponentInput
      • Returns a ComponentInput which can be used with the API.

        Parameters

        • args: {
              size?: "L" | "M" | "S" | "XL" | "XS";
          }
          • Optional size?: "L" | "M" | "S" | "XL" | "XS"

        Returns ComponentInput

  • text: ((args) => ComponentInput)
      • (args): ComponentInput
      • Returns a ComponentInput which can be used with the API.

        Parameters

        • args: {
              color?: "ERROR" | "MUTED" | "NORMAL" | "SUCCESS" | "WARNING";
              size?: "L" | "M" | "S";
              text: string;
          }
          • Optional color?: "ERROR" | "MUTED" | "NORMAL" | "SUCCESS" | "WARNING"
          • Optional size?: "L" | "M" | "S"
          • text: string

        Returns ComponentInput

Generated using TypeDoc