Variable OneDefaultSlotsConst

OneDefaultSlots: {
    Button: ((__namedParameters: IButtonSlot) => Element);
    CheckBox: ((__namedParameters: ICheckBoxSlot) => Element);
    Choose: ((__namedParameters: IChooseSlot) => Element);
    Combo: ((__namedParameters: IComboSlot) => Element);
    Complete: ((__namedParameters: ICompleteSlot) => Element);
    Date: ((Date: IDateSlot) => Element);
    Dict: ((__namedParameters: IDictSlot) => Element);
    File: ((props: IFileSlot) => Element);
    Icon: ((__namedParameters: IIconSlot) => Element);
    Items: ((Items: IItemsSlot) => Element);
    Line: ((Line: ILineSlot) => Element);
    Progress: ((props: IProgressSlot) => Element);
    Radio: ((__namedParameters: IRadioSlot) => Element);
    Rating: ((__namedParameters: IRatingSlot) => Element);
    Slider: ((__namedParameters: ISliderSlot) => Element);
    Switch: ((props: ISwitchSlot) => Element);
    Text: ((__namedParameters: ITextSlot) => Element);
    Time: ((__namedParameters: ITimeSlot) => Element);
    Tree: ((Tree: ITreeSlot) => Element);
    Typography: ((props: ITypographySlot) => Element);
    YesNo: ((__namedParameters: IYesNoSlot) => Element);
} = ...

Type declaration

  • Button: ((__namedParameters: IButtonSlot) => Element)
      • (__namedParameters): Element
      • Represents a button component.

        Parameters

        • __namedParameters: IButtonSlot

        Returns Element

  • CheckBox: ((__namedParameters: ICheckBoxSlot) => Element)
      • (__namedParameters): Element
      • Represents a checkbox component.

        Parameters

        • __namedParameters: ICheckBoxSlot

        Returns Element

        • The rendered checkbox component.
  • Choose: ((__namedParameters: IChooseSlot) => Element)
      • (__namedParameters): Element
      • Represents a Choose variable.

        Parameters

        • __namedParameters: IChooseSlot

        Returns Element

  • Combo: ((__namedParameters: IComboSlot) => Element)
      • (__namedParameters): Element
      • Represents a Combo component.

        Parameters

        • __namedParameters: IComboSlot

        Returns Element

        The Combo component.

  • Complete: ((__namedParameters: ICompleteSlot) => Element)
      • (__namedParameters): Element
      • Represents a complete field component with various options and functionality.

        Parameters

        • __namedParameters: ICompleteSlot

        Returns Element

  • Date: ((Date: IDateSlot) => Element)
      • (Date): Element
      • Represents a Date component.

        Parameters

        • Date: IDateSlot

          The options for the Date component.

        Returns Element

  • Dict: ((__namedParameters: IDictSlot) => Element)
      • (__namedParameters): Element
      • Parameters

        • __namedParameters: IDictSlot

        Returns Element

  • File: ((props: IFileSlot) => Element)
      • (props): Element
      • FileField component is a form field for selecting and displaying a file.

        Parameters

        • props: IFileSlot

          The input props for the FileField component.

        Returns Element

        • Returns the JSX element of the FileField component.
  • Icon: ((__namedParameters: IIconSlot) => Element)
      • (__namedParameters): Element
      • Represents an icon component.

        Parameters

        • __namedParameters: IIconSlot

        Returns Element

  • Items: ((Items: IItemsSlot) => Element)
      • (Items): Element
      • Parameters

        • Items: IItemsSlot

          The main function that renders the Autocomplete component.

        Returns Element

        The Autocomplete component.

  • Line: ((Line: ILineSlot) => Element)
      • (Line): Element
      • Represents a line component with optional title and transparency options.

        Parameters

        • Line: ILineSlot

          The configuration object for the line component.

        Returns Element

        • The rendered line component.
  • Progress: ((props: IProgressSlot) => Element)
      • (props): Element
      • Represents a progress component.

        Parameters

        • props: IProgressSlot

          The properties for the Progress component.

        Returns Element

        • The Progress component.
  • Radio: ((__namedParameters: IRadioSlot) => Element)
      • (__namedParameters): Element
      • Represents a radio component.

        Parameters

        • __namedParameters: IRadioSlot

        Returns Element

  • Rating: ((__namedParameters: IRatingSlot) => Element)
      • (__namedParameters): Element
      • Represents a Rating component.

        Parameters

        • __namedParameters: IRatingSlot

        Returns Element

  • Slider: ((__namedParameters: ISliderSlot) => Element)
      • (__namedParameters): Element
      • Represents a slider component.

        Parameters

        • __namedParameters: ISliderSlot

        Returns Element

  • Switch: ((props: ISwitchSlot) => Element)
      • (props): Element
      • Represents a Switch component.

        Parameters

        • props: ISwitchSlot

          The properties of the Switch component.

        Returns Element

        • The rendered Switch component.
  • Text: ((__namedParameters: ITextSlot) => Element)
      • (__namedParameters): Element
      • Variable representing a text input component with various properties and functionalities.

        Parameters

        • __namedParameters: ITextSlot

        Returns Element

  • Time: ((__namedParameters: ITimeSlot) => Element)
      • (__namedParameters): Element
      • Represents a Time variable.

        Parameters

        • __namedParameters: ITimeSlot

        Returns Element

  • Tree: ((Tree: ITreeSlot) => Element)
      • (Tree): Element
      • Creates a Tree component with customizable options.

        Parameters

        • Tree: ITreeSlot

          The Tree component.

        Returns Element

        The Tree component.

  • Typography: ((props: ITypographySlot) => Element)
      • (props): Element
      • Typography component.

        Parameters

        • props: ITypographySlot

          The props for the Typography component.

        Returns Element

        The rendered Typography component.

  • YesNo: ((__namedParameters: IYesNoSlot) => Element)
      • (__namedParameters): Element
      • Represents a YesNoField component.

        Parameters

        • __namedParameters: IYesNoSlot

        Returns Element

A list of default slots for a component.