Documentation
    Preparing search index...
    "export=": {
        checkbox_group: (__namedParameters: CheckBoxGroupOpts) => string;
        dropdown_checkboxes: (
            __namedParameters: {
                btnClass: string;
                btnLabel: string;
                checked: Record<string, boolean>;
                items: (string | { label: string; value: string })[];
                onChange?: string;
            },
        ) => string;
        isdef: (x: any) => boolean;
        pagination: (opts: PaginationOpts) => string;
        radio_group: (opts: RadioGroupOpts) => string;
        search_bar: (name: string, v: string | number, param2?: any) => string;
        select_options: (
            v: any,
            hdr: any,
            force_required?: boolean,
            neutral_label?: string,
            sort?: boolean,
        ) => string[];
    }

    Type Declaration

    • checkbox_group: (__namedParameters: CheckBoxGroupOpts) => string
    • isdef: (x: any) => boolean

      checks if x is defined

    • pagination: (opts: PaginationOpts) => string
    • radio_group: (opts: RadioGroupOpts) => string
    • select_options: (
          v: any,
          hdr: any,
          force_required?: boolean,
          neutral_label?: string,
          sort?: boolean,
      ) => string[]