Tweaked gitignore

gitignore removed all composer and npm files, so automated builds would fail
This commit is contained in:
Henry Whitaker
2020-04-12 21:24:03 +01:00
parent 698687f12d
commit ea5808047f
27863 changed files with 3399604 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
{
"name": "react-bootstrap/AbstractNav",
"private": true,
"main": "../cjs/AbstractNav.js",
"module": "../esm/AbstractNav.js"
}

View File

@@ -0,0 +1,6 @@
{
"name": "react-bootstrap/AbstractNavItem",
"private": true,
"main": "../cjs/AbstractNavItem.js",
"module": "../esm/AbstractNavItem.js"
}

20
conf/site/node_modules/react-bootstrap/Accordion.d.ts generated vendored Normal file
View File

@@ -0,0 +1,20 @@
import * as React from 'react';
import AccordionCollapse from './AccordionCollapse';
import AccordionToggle from './AccordionToggle';
import { BsPrefixComponent } from './helpers';
export interface AccordionProps {
activeKey?: string;
defaultActiveKey?: string;
}
declare class Accordion<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As, AccordionProps> {
static Toggle: typeof AccordionToggle;
static Collapse: typeof AccordionCollapse;
}
export default Accordion;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Accordion",
"private": true,
"main": "../cjs/Accordion.js",
"module": "../esm/Accordion.js",
"types": "../Accordion.d.ts"
}

View File

@@ -0,0 +1,18 @@
import * as React from 'react';
import Collapse, { CollapseProps } from './Collapse';
import { BsPrefixComponent } from './helpers';
export interface AccordionCollapseProps
extends CollapseProps,
React.HTMLAttributes<HTMLDivElement> {
eventKey: string;
}
declare class AccordionCollapse extends BsPrefixComponent<
typeof Collapse,
AccordionCollapseProps
> {}
export default AccordionCollapse;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/AccordionCollapse",
"private": true,
"main": "../cjs/AccordionCollapse.js",
"module": "../esm/AccordionCollapse.js",
"types": "../AccordionCollapse.d.ts"
}

View File

@@ -0,0 +1,6 @@
{
"name": "react-bootstrap/AccordionContext",
"private": true,
"main": "../cjs/AccordionContext.js",
"module": "../esm/AccordionContext.js"
}

View File

@@ -0,0 +1,19 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface AccordionToggleProps {
eventKey: string;
onClick?: (event?: React.SyntheticEvent) => void;
}
export function useAccordionToggle(
eventKey: string,
onClick: (event?: React.SyntheticEvent) => void,
): (event?: React.SyntheticEvent) => void;
declare class AccordionToggle<
As extends React.ElementType = 'button'
> extends BsPrefixComponent<As, AccordionToggleProps> {}
export default AccordionToggle;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/AccordionToggle",
"private": true,
"main": "../cjs/AccordionToggle.js",
"module": "../esm/AccordionToggle.js",
"types": "../AccordionToggle.d.ts"
}

39
conf/site/node_modules/react-bootstrap/Alert.d.ts generated vendored Normal file
View File

@@ -0,0 +1,39 @@
import * as React from 'react';
import SafeAnchor, { SafeAnchorProps } from './SafeAnchor';
import { BsPrefixComponent, BsPrefixComponentClass } from './helpers';
export class AlertLink<
// Need to use BsPrefixComponentClass to get proper type checking.
As extends React.ElementType = BsPrefixComponentClass<'a', SafeAnchorProps>
> extends BsPrefixComponent<As> {}
export class AlertHeading<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export interface AlertProps extends React.HTMLProps<HTMLDivElement> {
bsPrefix?: string;
variant?:
| 'primary'
| 'secondary'
| 'success'
| 'danger'
| 'warning'
| 'info'
| 'dark'
| 'light';
dismissible?: boolean;
show?: boolean;
onClose?: () => void;
closeLabel?: string;
transition?: React.ElementType;
}
declare const Alert: React.ForwardRefExoticComponent<AlertProps> & {
Link: typeof AlertLink;
Heading: typeof AlertHeading;
};
export default Alert;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Alert",
"private": true,
"main": "../cjs/Alert.js",
"module": "../esm/Alert.js",
"types": "../Alert.d.ts"
}

22
conf/site/node_modules/react-bootstrap/Badge.d.ts generated vendored Normal file
View File

@@ -0,0 +1,22 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface BadgeProps {
bsPrefix?: string;
variant?:
| 'primary'
| 'secondary'
| 'success'
| 'danger'
| 'warning'
| 'info'
| 'light'
| 'dark';
pill?: boolean;
}
declare class Badge<
As extends React.ElementType = 'span'
> extends BsPrefixComponent<As, BadgeProps> {}
export default Badge;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Badge",
"private": true,
"main": "../cjs/Badge.js",
"module": "../esm/Badge.js",
"types": "../Badge.d.ts"
}

View File

@@ -0,0 +1,6 @@
{
"name": "react-bootstrap/BootstrapModalManager",
"private": true,
"main": "../cjs/BootstrapModalManager.js",
"module": "../esm/BootstrapModalManager.js"
}

18
conf/site/node_modules/react-bootstrap/Breadcrumb.d.ts generated vendored Normal file
View File

@@ -0,0 +1,18 @@
import * as React from 'react';
import BreadcrumbItem from './BreadcrumbItem';
import { BsPrefixComponent } from './helpers';
export interface BreadcrumbProps {
label?: string;
listProps?: React.OlHTMLAttributes<HTMLOListElement>;
}
declare class Breadcrumb<
As extends React.ElementType = 'nav'
> extends BsPrefixComponent<As, BreadcrumbProps> {
static Item: typeof BreadcrumbItem;
}
export default Breadcrumb;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Breadcrumb",
"private": true,
"main": "../cjs/Breadcrumb.js",
"module": "../esm/Breadcrumb.js",
"types": "../Breadcrumb.d.ts"
}

View File

@@ -0,0 +1,18 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface BreadcrumbItemProps {
active?: boolean;
href?: string;
linkAs?: React.ElementType;
target?: string;
title?: React.ReactNode;
linkProps?: React.LinkHTMLAttributes<HTMLLinkElement>;
}
declare class BreadcrumbItem<
As extends React.ElementType = 'li'
> extends BsPrefixComponent<As, BreadcrumbItemProps> {}
export default BreadcrumbItem;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/BreadcrumbItem",
"private": true,
"main": "../cjs/BreadcrumbItem.js",
"module": "../esm/BreadcrumbItem.js",
"types": "../BreadcrumbItem.d.ts"
}

36
conf/site/node_modules/react-bootstrap/Button.d.ts generated vendored Normal file
View File

@@ -0,0 +1,36 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface ButtonProps {
active?: boolean;
block?: boolean;
variant?:
| 'primary'
| 'secondary'
| 'success'
| 'danger'
| 'warning'
| 'info'
| 'dark'
| 'light'
| 'link'
| 'outline-primary'
| 'outline-secondary'
| 'outline-success'
| 'outline-danger'
| 'outline-warning'
| 'outline-info'
| 'outline-dark'
| 'outline-light';
size?: 'sm' | 'lg';
type?: 'button' | 'reset' | 'submit';
href?: string;
disabled?: boolean;
}
declare class Button<
As extends React.ElementType = 'button'
> extends BsPrefixComponent<As, ButtonProps> {}
export default Button;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Button",
"private": true,
"main": "../cjs/Button.js",
"module": "../esm/Button.js",
"types": "../Button.d.ts"
}

View File

@@ -0,0 +1,16 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface ButtonGroupProps {
role?: string;
size?: 'sm' | 'lg';
toggle?: boolean;
vertical?: boolean;
}
declare class ButtonGroup<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As, ButtonGroupProps> {}
export default ButtonGroup;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/ButtonGroup",
"private": true,
"main": "../cjs/ButtonGroup.js",
"module": "../esm/ButtonGroup.js",
"types": "../ButtonGroup.d.ts"
}

View File

@@ -0,0 +1,12 @@
import { BsPrefixComponent } from './helpers';
export interface ButtonToolbarProps {
role?: string;
}
declare class ButtonToolbar extends BsPrefixComponent<
'div',
ButtonToolbarProps
> {}
export default ButtonToolbar;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/ButtonToolbar",
"private": true,
"main": "../cjs/ButtonToolbar.js",
"module": "../esm/ButtonToolbar.js",
"types": "../ButtonToolbar.d.ts"
}

86
conf/site/node_modules/react-bootstrap/Card.d.ts generated vendored Normal file
View File

@@ -0,0 +1,86 @@
import * as React from 'react';
import CardImg from './CardImg';
import { BsPrefixComponent } from './helpers';
export class CardTitle<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export class CardSubtitle<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export class CardBody<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export class CardLink<
As extends React.ElementType = 'a'
> extends BsPrefixComponent<As> {}
export class CardText<
As extends React.ElementType = 'p'
> extends BsPrefixComponent<As> {}
export class CardHeader<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export class CardFooter<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export class CardImgOverlay<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export interface CardProps {
bg?:
| 'primary'
| 'secondary'
| 'success'
| 'danger'
| 'warning'
| 'info'
| 'dark'
| 'light';
text?:
| 'primary'
| 'secondary'
| 'success'
| 'danger'
| 'warning'
| 'info'
| 'dark'
| 'light'
| 'white'
| 'muted';
border?:
| 'primary'
| 'secondary'
| 'success'
| 'danger'
| 'warning'
| 'info'
| 'dark'
| 'light';
body?: boolean;
}
declare class Card<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As, CardProps> {
static Img: typeof CardImg;
static Title: typeof CardTitle;
static Subtitle: typeof CardSubtitle;
static Body: typeof CardBody;
static Link: typeof CardLink;
static Text: typeof CardText;
static Header: typeof CardHeader;
static Footer: typeof CardFooter;
static ImgOverlay: typeof CardImgOverlay;
}
export default Card;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Card",
"private": true,
"main": "../cjs/Card.js",
"module": "../esm/Card.js",
"types": "../Card.d.ts"
}

View File

@@ -0,0 +1,9 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
declare class CardColumns<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export default CardColumns;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/CardColumns",
"private": true,
"main": "../cjs/CardColumns.js",
"module": "../esm/CardColumns.js",
"types": "../CardColumns.d.ts"
}

View File

@@ -0,0 +1,6 @@
{
"name": "react-bootstrap/CardContext",
"private": true,
"main": "../cjs/CardContext.js",
"module": "../esm/CardContext.js"
}

9
conf/site/node_modules/react-bootstrap/CardDeck.d.ts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
declare class CardDeck<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export default CardDeck;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/CardDeck",
"private": true,
"main": "../cjs/CardDeck.js",
"module": "../esm/CardDeck.js",
"types": "../CardDeck.d.ts"
}

View File

@@ -0,0 +1,9 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
declare class CardGroup<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export default CardGroup;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/CardGroup",
"private": true,
"main": "../cjs/CardGroup.js",
"module": "../esm/CardGroup.js",
"types": "../CardGroup.d.ts"
}

13
conf/site/node_modules/react-bootstrap/CardImg.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface CardImgProps {
variant?: 'top' | 'bottom';
}
declare class CardImg<
As extends React.ElementType = 'img'
> extends BsPrefixComponent<As, CardImgProps> {}
export default CardImg;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/CardImg",
"private": true,
"main": "../cjs/CardImg.js",
"module": "../esm/CardImg.js",
"types": "../CardImg.d.ts"
}

37
conf/site/node_modules/react-bootstrap/Carousel.d.ts generated vendored Normal file
View File

@@ -0,0 +1,37 @@
import * as React from 'react';
import CarouselCaption from './CarouselCaption';
import CarouselItem from './CarouselItem';
import { BsPrefixComponent } from './helpers';
export interface CarouselProps {
bsPrefix?: string;
slide?: boolean;
fade?: boolean;
controls?: boolean;
indicators?: boolean;
activeIndex?: number;
onSelect?: (eventKey: number, event: object | null) => void;
defaultActiveIndex?: number;
onSlide?: (eventKey: number, direction: 'left' | 'right') => void;
onSlid?: (eventKey: number, direction: 'left' | 'right') => void;
interval?: number | null;
keyboard?: boolean;
pause?: 'hover' | false;
wrap?: boolean;
touch?: boolean;
prevIcon?: React.ReactNode;
prevLabel?: React.ReactNode;
nextIcon?: React.ReactNode;
nextLabel?: React.ReactNode;
}
declare class Carousel<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As, CarouselProps> {
static Item: typeof CarouselItem;
static Caption: typeof CarouselCaption;
}
export default Carousel;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Carousel",
"private": true,
"main": "../cjs/Carousel.js",
"module": "../esm/Carousel.js",
"types": "../Carousel.d.ts"
}

View File

@@ -0,0 +1,9 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
declare class CarouselCaption<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export default CarouselCaption;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/CarouselCaption",
"private": true,
"main": "../cjs/CarouselCaption.js",
"module": "../esm/CarouselCaption.js",
"types": "../CarouselCaption.d.ts"
}

View File

@@ -0,0 +1,5 @@
import { BsPrefixComponent } from './helpers';
declare class CarouselItem extends BsPrefixComponent<'div'> {}
export default CarouselItem;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/CarouselItem",
"private": true,
"main": "../cjs/CarouselItem.js",
"module": "../esm/CarouselItem.js",
"types": "../CarouselItem.d.ts"
}

View File

@@ -0,0 +1,10 @@
import * as React from 'react';
export interface CloseButtonProps {
label?: string;
onClick?: React.MouseEventHandler<CloseButton>;
}
declare class CloseButton extends React.Component<CloseButtonProps> {}
export default CloseButton;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/CloseButton",
"private": true,
"main": "../cjs/CloseButton.js",
"module": "../esm/CloseButton.js",
"types": "../CloseButton.d.ts"
}

36
conf/site/node_modules/react-bootstrap/Col.d.ts generated vendored Normal file
View File

@@ -0,0 +1,36 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
type NumberAttr =
| number
| '1'
| '2'
| '3'
| '4'
| '5'
| '6'
| '7'
| '8'
| '9'
| '10'
| '11'
| '12';
type ColSize = true | 'auto' | NumberAttr;
type ColSpec =
| ColSize
| { span?: ColSize; offset?: NumberAttr; order?: NumberAttr };
export interface ColProps {
xs?: ColSpec;
sm?: ColSpec;
md?: ColSpec;
lg?: ColSpec;
xl?: ColSpec;
}
declare class Col<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As, ColProps> {}
export default Col;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Col",
"private": true,
"main": "../cjs/Col.js",
"module": "../esm/Col.js",
"types": "../Col.d.ts"
}

23
conf/site/node_modules/react-bootstrap/Collapse.d.ts generated vendored Normal file
View File

@@ -0,0 +1,23 @@
import * as React from 'react';
import { TransitionCallbacks } from './helpers';
export interface CollapseProps
extends TransitionCallbacks,
React.ClassAttributes<Collapse> {
in?: boolean;
mountOnEnter?: boolean;
unmountOnExit?: boolean;
appear?: boolean;
timeout?: number;
dimension?: 'height' | 'width' | (() => 'height' | 'width');
getDimensionValue?: (
dimension: number,
element: React.ReactElement,
) => number;
role?: string;
}
declare class Collapse extends React.Component<CollapseProps> {}
export default Collapse;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Collapse",
"private": true,
"main": "../cjs/Collapse.js",
"module": "../esm/Collapse.js",
"types": "../Collapse.d.ts"
}

13
conf/site/node_modules/react-bootstrap/Container.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface ContainerProps {
fluid?: boolean | 'sm' | 'md' | 'lg' | 'xl';
}
declare class Container<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As, ContainerProps> {}
export default Container;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Container",
"private": true,
"main": "../cjs/Container.js",
"module": "../esm/Container.js",
"types": "../Container.d.ts"
}

40
conf/site/node_modules/react-bootstrap/Dropdown.d.ts generated vendored Normal file
View File

@@ -0,0 +1,40 @@
import * as React from 'react';
import DropdownItem from './DropdownItem';
import DropdownMenu from './DropdownMenu';
import DropdownToggle from './DropdownToggle';
import { BsPrefixComponent, SelectCallback } from './helpers';
export class DropdownDivider<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export class DropdownHeader<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export interface DropdownProps {
drop?: 'up' | 'left' | 'right' | 'down';
alignRight?: boolean;
show?: boolean;
flip?: boolean;
onToggle?: (
isOpen: boolean,
event: React.SyntheticEvent<Dropdown>,
metadata: { source: 'select' | 'click' | 'rootClose' | 'keydown' },
) => void;
onSelect?: SelectCallback;
}
declare class Dropdown<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As, DropdownProps> {
static Toggle: typeof DropdownToggle;
static Menu: typeof DropdownMenu;
static Item: typeof DropdownItem;
static Divider: typeof DropdownDivider;
static Header: typeof DropdownHeader;
}
export default Dropdown;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Dropdown",
"private": true,
"main": "../cjs/Dropdown.js",
"module": "../esm/Dropdown.js",
"types": "../Dropdown.d.ts"
}

View File

@@ -0,0 +1,27 @@
import * as React from 'react';
import Dropdown from './Dropdown';
import DropdownToggle from './DropdownToggle';
import { ReplaceProps } from './helpers';
type PropsFromToggle = Partial<
Pick<
React.ComponentPropsWithRef<typeof DropdownToggle>,
'href' | 'size' | 'variant' | 'disabled'
>
>;
export interface DropdownButtonProps extends PropsFromToggle {
id: string;
title: React.ReactNode;
menuRole?: string;
rootCloseEvent?: 'click' | 'mousedown';
bsPrefix?: string;
}
declare class DropdownButton extends React.Component<
ReplaceProps<typeof Dropdown, DropdownButtonProps>
> {}
export default DropdownButton;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/DropdownButton",
"private": true,
"main": "../cjs/DropdownButton.js",
"module": "../esm/DropdownButton.js",
"types": "../DropdownButton.d.ts"
}

View File

@@ -0,0 +1,25 @@
import * as React from 'react';
import SafeAnchor, { SafeAnchorProps } from './SafeAnchor';
import {
BsPrefixComponent,
SelectCallback,
BsPrefixComponentClass,
} from './helpers';
export interface DropdownItemProps {
active?: boolean;
disabled?: boolean;
eventKey?: string;
href?: string;
onClick?: React.MouseEventHandler<this>;
onSelect?: SelectCallback;
}
declare class DropdownItem<
// Need to use BsPrefixComponentClass to get proper type checking.
As extends React.ElementType = BsPrefixComponentClass<'a', SafeAnchorProps>
> extends BsPrefixComponent<As, DropdownItemProps> {}
export default DropdownItem;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/DropdownItem",
"private": true,
"main": "../cjs/DropdownItem.js",
"module": "../esm/DropdownItem.js",
"types": "../DropdownItem.d.ts"
}

View File

@@ -0,0 +1,18 @@
import * as React from 'react';
import { BsPrefixComponent, SelectCallback } from './helpers';
export interface DropdownMenuProps {
show?: boolean;
flip?: boolean;
alignRight?: boolean;
onSelect?: SelectCallback;
rootCloseEvent?: 'click' | 'mousedown';
popperConfig?: object;
}
declare class DropdownMenu<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As, DropdownMenuProps> {}
export default DropdownMenu;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/DropdownMenu",
"private": true,
"main": "../cjs/DropdownMenu.js",
"module": "../esm/DropdownMenu.js",
"types": "../DropdownMenu.d.ts"
}

View File

@@ -0,0 +1,18 @@
import * as React from 'react';
import Button, { ButtonProps } from './Button';
import { BsPrefixComponent, BsPrefixComponentClass } from './helpers';
export interface DropdownToggleProps {
id: string;
split?: boolean;
childBsPrefix?: string;
}
declare class DropdownToggle<
// Need to use BsPrefixComponentClass to get proper type checking.
As extends React.ElementType = BsPrefixComponentClass<'button', ButtonProps>
> extends BsPrefixComponent<As, DropdownToggleProps> {}
export default DropdownToggle;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/DropdownToggle",
"private": true,
"main": "../cjs/DropdownToggle.js",
"module": "../esm/DropdownToggle.js",
"types": "../DropdownToggle.d.ts"
}

View File

@@ -0,0 +1,6 @@
{
"name": "react-bootstrap/ElementChildren",
"private": true,
"main": "../cjs/ElementChildren.js",
"module": "../esm/ElementChildren.js"
}

17
conf/site/node_modules/react-bootstrap/Fade.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import * as React from 'react';
import { TransitionCallbacks } from './helpers';
export interface FadeProps
extends TransitionCallbacks,
React.ClassAttributes<Fade> {
in?: boolean;
mountOnEnter?: boolean;
unmountOnExit?: boolean;
appear?: boolean;
timeout?: number;
}
declare class Fade extends React.Component<FadeProps> {}
export default Fade;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Fade",
"private": true,
"main": "../cjs/Fade.js",
"module": "../esm/Fade.js",
"types": "../Fade.d.ts"
}

14
conf/site/node_modules/react-bootstrap/Feedback.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface FeedbackProps {
bsPrefix?: never;
type?: 'valid' | 'invalid';
}
declare class Feedback<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As, FeedbackProps> {}
export default Feedback;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Feedback",
"private": true,
"main": "../cjs/Feedback.js",
"module": "../esm/Feedback.js",
"types": "../Feedback.d.ts"
}

15
conf/site/node_modules/react-bootstrap/Figure.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
import * as React from 'react';
import FigureCaption from './FigureCaption';
import FigureImage from './FigureImage';
import { BsPrefixComponent } from './helpers';
declare class Figure<
As extends React.ElementType = 'figure'
> extends BsPrefixComponent<As> {
static Image: typeof FigureImage;
static Caption: typeof FigureCaption;
}
export default Figure;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Figure",
"private": true,
"main": "../cjs/Figure.js",
"module": "../esm/Figure.js",
"types": "../Figure.d.ts"
}

View File

@@ -0,0 +1,9 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
declare class FigureCaption<
As extends React.ElementType = 'figcaption'
> extends BsPrefixComponent<As> {}
export default FigureCaption;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/FigureCaption",
"private": true,
"main": "../cjs/FigureCaption.js",
"module": "../esm/FigureCaption.js",
"types": "../FigureCaption.d.ts"
}

View File

@@ -0,0 +1,5 @@
import Image from './Image';
declare class FigureImage extends Image {}
export default FigureImage;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/FigureImage",
"private": true,
"main": "../cjs/FigureImage.js",
"module": "../esm/FigureImage.js",
"types": "../FigureImage.d.ts"
}

34
conf/site/node_modules/react-bootstrap/Form.d.ts generated vendored Normal file
View File

@@ -0,0 +1,34 @@
import * as React from 'react';
import FormCheck from './FormCheck';
import FormFile from './FormFile';
import FormControl from './FormControl';
import FormGroup from './FormGroup';
import FormLabel from './FormLabel';
import FormText from './FormText';
import { BsPrefixComponent } from './helpers';
export class FormRow<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export interface FormProps {
innerRef?: React.LegacyRef<this>;
inline?: boolean;
validated?: boolean;
}
declare class Form<
As extends React.ElementType = 'form'
> extends BsPrefixComponent<As, FormProps> {
static Row: typeof FormRow;
static Group: typeof FormGroup;
static Control: typeof FormControl;
static Check: typeof FormCheck;
static File: typeof FormFile;
static Label: typeof FormLabel;
static Text: typeof FormText;
}
export default Form;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Form",
"private": true,
"main": "../cjs/Form.js",
"module": "../esm/Form.js",
"types": "../Form.d.ts"
}

28
conf/site/node_modules/react-bootstrap/FormCheck.d.ts generated vendored Normal file
View File

@@ -0,0 +1,28 @@
import * as React from 'react';
import FormCheckInput from './FormCheckInput';
import FormCheckLabel from './FormCheckLabel';
import { BsPrefixComponent } from './helpers';
export interface FormCheckProps {
bsCustomPrefix?: string;
innerRef?: React.LegacyRef<this>;
id?: string;
inline?: boolean;
disabled?: boolean;
title?: string;
label?: React.ReactNode;
custom?: boolean;
type?: 'checkbox' | 'radio' | 'switch';
isValid?: boolean;
isInvalid?: boolean;
feedback?: React.ReactNode;
}
declare class FormCheck<
As extends React.ElementType = 'input'
> extends BsPrefixComponent<As, FormCheckProps> {
static Input: typeof FormCheckInput;
static Label: typeof FormCheckLabel;
}
export default FormCheck;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/FormCheck",
"private": true,
"main": "../cjs/FormCheck.js",
"module": "../esm/FormCheck.js",
"types": "../FormCheck.d.ts"
}

View File

@@ -0,0 +1,18 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface FormCheckInputProps {
id?: string;
type?: 'checkbox' | 'radio';
isStatic?: boolean;
isValid?: boolean;
isInvalid?: boolean;
innerRef?: React.LegacyRef<this>;
}
declare class FormCheckInput<
As extends React.ElementType = 'input'
> extends BsPrefixComponent<As, FormCheckInputProps> {}
export default FormCheckInput;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/FormCheckInput",
"private": true,
"main": "../cjs/FormCheckInput.js",
"module": "../esm/FormCheckInput.js",
"types": "../FormCheckInput.d.ts"
}

View File

@@ -0,0 +1,15 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface FormCheckLabelProps {
htmlFor?: string;
innerRef?: React.LegacyRef<this>;
}
declare class FormCheckLabel extends BsPrefixComponent<
'label',
FormCheckLabelProps
> {}
export default FormCheckLabel;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/FormCheckLabel",
"private": true,
"main": "../cjs/FormCheckLabel.js",
"module": "../esm/FormCheckLabel.js",
"types": "../FormCheckLabel.d.ts"
}

View File

@@ -0,0 +1,6 @@
{
"name": "react-bootstrap/FormContext",
"private": true,
"main": "../cjs/FormContext.js",
"module": "../esm/FormContext.js"
}

View File

@@ -0,0 +1,31 @@
import * as React from 'react';
import Feedback from './Feedback';
import { BsPrefixComponent } from './helpers';
type FormControlElement =
| HTMLInputElement
| HTMLSelectElement
| HTMLTextAreaElement;
export interface FormControlProps {
innerRef?: React.LegacyRef<FormControlElement>;
size?: 'sm' | 'lg';
plaintext?: boolean;
readOnly?: boolean;
disabled?: boolean;
value?: string | string[] | number;
onChange?: React.FormEventHandler<FormControlElement>;
custom?: boolean;
type?: string;
id?: string;
isValid?: boolean;
isInvalid?: boolean;
}
declare class FormControl<
As extends React.ElementType = 'input'
> extends BsPrefixComponent<As, FormControlProps> {
static Feedback: typeof Feedback;
}
export default FormControl;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/FormControl",
"private": true,
"main": "../cjs/FormControl.js",
"module": "../esm/FormControl.js",
"types": "../FormControl.d.ts"
}

25
conf/site/node_modules/react-bootstrap/FormFile.d.ts generated vendored Normal file
View File

@@ -0,0 +1,25 @@
import * as React from 'react';
import FormFileInput from './FormFileInput';
import FormFileLabel from './FormFileLabel';
import { BsPrefixComponent } from './helpers';
export interface FormFileProps {
bsCustomPrefix?: string;
id?: string;
disabled?: boolean;
label?: React.ReactNode;
custom?: boolean;
isValid?: boolean;
isInvalid?: boolean;
feedback?: React.ReactNode;
lang?: string;
}
declare class FormFile<
As extends React.ElementType = 'input'
> extends BsPrefixComponent<As, FormFileProps> {
static Input: typeof FormFileInput;
static Label: typeof FormFileLabel;
}
export default FormFile;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/FormFile",
"private": true,
"main": "../cjs/FormFile.js",
"module": "../esm/FormFile.js",
"types": "../FormFile.d.ts"
}

View File

@@ -0,0 +1,16 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface FormFileInputProps {
id?: string;
isValid?: boolean;
isInvalid?: boolean;
lang?: string;
}
declare class FormFileInput<
As extends React.ElementType = 'input'
> extends BsPrefixComponent<As, FormFileInputProps> {}
export default FormFileInput;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/FormFileInput",
"private": true,
"main": "../cjs/FormFileInput.js",
"module": "../esm/FormFileInput.js",
"types": "../FormFileInput.d.ts"
}

View File

@@ -0,0 +1,14 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface FormFileLabelProps {
htmlFor?: string;
}
declare class FormFileLabel extends BsPrefixComponent<
'label',
FormFileLabelProps
> {}
export default FormFileLabel;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/FormFileLabel",
"private": true,
"main": "../cjs/FormFileLabel.js",
"module": "../esm/FormFileLabel.js",
"types": "../FormFileLabel.d.ts"
}

13
conf/site/node_modules/react-bootstrap/FormGroup.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface FormGroupProps {
innerRef?: React.LegacyRef<this>;
controlId?: string;
}
declare class FormGroup<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As, FormGroupProps> {}
export default FormGroup;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/FormGroup",
"private": true,
"main": "../cjs/FormGroup.js",
"module": "../esm/FormGroup.js",
"types": "../FormGroup.d.ts"
}

27
conf/site/node_modules/react-bootstrap/FormLabel.d.ts generated vendored Normal file
View File

@@ -0,0 +1,27 @@
import * as React from 'react';
import { ColProps } from './Col';
import { BsPrefixComponent } from './helpers';
interface FormLabelBaseProps {
htmlFor?: string;
innerRef?: React.LegacyRef<this>;
srOnly?: boolean;
}
export interface FormLabelOwnProps extends FormLabelBaseProps {
column?: false;
}
export interface FormLabelWithColProps extends FormLabelBaseProps, ColProps {
column: true;
}
export type FormLabelProps = FormLabelWithColProps | FormLabelOwnProps;
declare class FormLabel<
As extends React.ElementType = 'label'
> extends BsPrefixComponent<As, FormLabelProps> {}
export default FormLabel;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/FormLabel",
"private": true,
"main": "../cjs/FormLabel.js",
"module": "../esm/FormLabel.js",
"types": "../FormLabel.d.ts"
}

14
conf/site/node_modules/react-bootstrap/FormText.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface FormTextProps {
innerRef?: React.LegacyRef<this>;
muted?: boolean;
}
declare class FormText<
As extends React.ElementType = 'small'
> extends BsPrefixComponent<As, FormTextProps> {}
export default FormText;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/FormText",
"private": true,
"main": "../cjs/FormText.js",
"module": "../esm/FormText.js",
"types": "../FormText.d.ts"
}

12
conf/site/node_modules/react-bootstrap/Image.d.ts generated vendored Normal file
View File

@@ -0,0 +1,12 @@
import { BsPrefixComponent } from './helpers';
export interface ImageProps {
fluid?: boolean;
rounded?: boolean;
roundedCircle?: boolean;
thumbnail?: boolean;
}
declare class Image extends BsPrefixComponent<'img', ImageProps> {}
export default Image;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Image",
"private": true,
"main": "../cjs/Image.js",
"module": "../esm/Image.js",
"types": "../Image.d.ts"
}

35
conf/site/node_modules/react-bootstrap/InputGroup.d.ts generated vendored Normal file
View File

@@ -0,0 +1,35 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export class InputGroupAppend<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export class InputGroupPrepend<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As> {}
export class InputGroupText<
As extends React.ElementType = 'span'
> extends BsPrefixComponent<As> {}
export class InputGroupCheckbox extends BsPrefixComponent<'input'> {}
export class InputGroupRadio extends BsPrefixComponent<'input'> {}
export interface InputGroupProps {
size?: 'sm' | 'lg';
}
declare class InputGroup<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As, InputGroupProps> {
static Append: typeof InputGroupAppend;
static Prepend: typeof InputGroupPrepend;
static Text: typeof InputGroupText;
static Checkbox: typeof InputGroupCheckbox;
static Radio: typeof InputGroupRadio;
}
export default InputGroup;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/InputGroup",
"private": true,
"main": "../cjs/InputGroup.js",
"module": "../esm/InputGroup.js",
"types": "../InputGroup.d.ts"
}

13
conf/site/node_modules/react-bootstrap/Jumbotron.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface JumbotronProps {
fluid?: boolean;
}
declare class Jumbotron<
As extends React.ElementType = 'div'
> extends BsPrefixComponent<As, JumbotronProps> {}
export default Jumbotron;

View File

@@ -0,0 +1,7 @@
{
"name": "react-bootstrap/Jumbotron",
"private": true,
"main": "../cjs/Jumbotron.js",
"module": "../esm/Jumbotron.js",
"types": "../Jumbotron.d.ts"
}

21
conf/site/node_modules/react-bootstrap/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2014-present Stephen J. Collings, Matthew Honnibal, Pieter Vanderwerff
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Some files were not shown because too many files have changed in this diff Show More