Skip to content

Commit

Permalink
UI: add dark theme for Weka Home
Browse files Browse the repository at this point in the history
  • Loading branch information
mvoloshin0458 committed Jul 20, 2023
1 parent 5d384f4 commit 0cd47da
Show file tree
Hide file tree
Showing 15 changed files with 1,558 additions and 1,365 deletions.
8 changes: 4 additions & 4 deletions dist/cjs/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cjs/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/cjs/types/components/inputs/Checkbox/Checkbox.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { InputHTMLAttributes } from 'react';
import React from 'react';
import './checkbox.scss';
declare function Checkbox(props: InputHTMLAttributes<HTMLInputElement>): JSX.Element;
declare const Checkbox: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>;
export default Checkbox;
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { default as CheckboxComponent } from './Checkbox';
import React from 'react';
import { ComponentStory, ComponentMeta } from '@storybook/react';
declare const _default: ComponentMeta<typeof CheckboxComponent>;
declare const _default: ComponentMeta<React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>>;
export default _default;
export declare const Checkbox: ComponentStory<typeof CheckboxComponent>;
export declare const Checkbox: ComponentStory<React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>>;
8 changes: 4 additions & 4 deletions dist/esm/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/esm/types/components/inputs/Checkbox/Checkbox.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { InputHTMLAttributes } from 'react';
import React from 'react';
import './checkbox.scss';
declare function Checkbox(props: InputHTMLAttributes<HTMLInputElement>): JSX.Element;
declare const Checkbox: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>;
export default Checkbox;
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { default as CheckboxComponent } from './Checkbox';
import React from 'react';
import { ComponentStory, ComponentMeta } from '@storybook/react';
declare const _default: ComponentMeta<typeof CheckboxComponent>;
declare const _default: ComponentMeta<React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>>;
export default _default;
export declare const Checkbox: ComponentStory<typeof CheckboxComponent>;
export declare const Checkbox: ComponentStory<React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>>;
4 changes: 2 additions & 2 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference types="react" />
import React, { MouseEventHandler, ReactNode, ReactElement, InputHTMLAttributes, Dispatch, SetStateAction } from 'react';
import React, { MouseEventHandler, ReactNode, ReactElement, Dispatch, SetStateAction } from 'react';
import { UseFiltersColumnProps, Column as Column$1, Row, CellProps, UseExpandedRowProps, UseRowStateRowProps, Filters, UseRowStateCellProps, UseRowStateLocalState, CellValue } from 'react-table';
import * as luxon from 'luxon';
import { DateTime } from 'luxon';
Expand Down Expand Up @@ -53,7 +53,7 @@ interface InfoProps {
}
declare function Info({ data, extraClass }: InfoProps): JSX.Element;

declare function Checkbox(props: InputHTMLAttributes<HTMLInputElement>): JSX.Element;
declare const Checkbox: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>;

interface DataInfoProps {
label: string;
Expand Down
Loading

0 comments on commit 0cd47da

Please sign in to comment.