nectiasw 0.0.293 → 0.0.294
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -30
- package/dist/App.d.ts +1 -1
- package/dist/components/Alert/index.d.ts +1 -1
- package/dist/components/Button/styled.d.ts +1 -1
- package/dist/components/Button/variants/Weekday/styled.d.ts +2 -2
- package/dist/components/Card/variants/Schedule/styled.d.ts +2 -2
- package/dist/components/Checkbox/styled.d.ts +26 -7
- package/dist/components/Col/styled.d.ts +1 -1
- package/dist/components/Collapse/index.d.ts +4 -2
- package/dist/components/Counter/index.d.ts +2 -2
- package/dist/components/Datepicker/styled.d.ts +6 -6
- package/dist/components/DeadlineChart/index.d.ts +23 -18
- package/dist/components/Detail/index.d.ts +12 -6
- package/dist/components/Dragarea/styled.d.ts +4 -4
- package/dist/components/EnterprisesFilter/EnterpriseContext.d.ts +2 -2
- package/dist/components/EnterprisesFilter/index.d.ts +1 -1
- package/dist/components/FirstModal/styled.d.ts +5 -5
- package/dist/components/Footer/styled.d.ts +2 -2
- package/dist/components/Footer/svg.d.ts +4 -4
- package/dist/components/Input/index.d.ts +15 -7
- package/dist/components/Layout/styles.d.ts +6 -4
- package/dist/components/Modal/variant/svg.d.ts +1 -1
- package/dist/components/Navbar/index.d.ts +6 -6
- package/dist/components/RadioButton/index.d.ts +4 -2
- package/dist/components/Row/index.d.ts +1 -1
- package/dist/components/Search/styled.d.ts +6 -4
- package/dist/components/Search/variants/styled.d.ts +11 -9
- package/dist/components/Sidebar/Sidebar.stories.d.ts +2 -2
- package/dist/components/Switch/index.d.ts +9 -7
- package/dist/components/Table/styled.d.ts +23 -12
- package/dist/components/Table/svg.d.ts +1 -1
- package/dist/components/Tableinput/index.d.ts +2 -2
- package/dist/components/Textarea/styled.d.ts +1 -1
- package/dist/components/Timeline/styled.d.ts +3 -3
- package/dist/components/Tooltip/styled.d.ts +3 -3
- package/dist/components/Totalhours/index.d.ts +35 -11
- package/dist/index.es.js +12096 -11319
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +285 -282
- package/dist/index.umd.js.map +1 -1
- package/dist/providers/permissions/types.d.ts +3 -1
- package/dist/stories/Button.d.ts +2 -1
- package/dist/stories/Button.stories.d.ts +1 -1
- package/dist/stories/Header.d.ts +2 -1
- package/dist/stories/Header.stories.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +110 -110
|
@@ -8,14 +8,16 @@ type WithTheme = {
|
|
|
8
8
|
type SearchContainerProps = {
|
|
9
9
|
marginTop?: string;
|
|
10
10
|
};
|
|
11
|
-
export declare const SkeletonDropdownItem: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
12
|
-
export declare const SearchContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
13
|
-
export declare const SearchBar: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
14
|
-
export declare const SearchInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
11
|
+
export declare const SkeletonDropdownItem: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "width"> & SkeletonProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "width"> & SkeletonProps, never>>> & string;
|
|
12
|
+
export declare const SearchContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "marginTop"> & SearchContainerProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "marginTop"> & SearchContainerProps, never>>> & string;
|
|
13
|
+
export declare const SearchBar: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "theming"> & WithTheme, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "theming"> & WithTheme, never>>> & string;
|
|
14
|
+
export declare const SearchInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "theming" | "placeholderColor"> & WithTheme & {
|
|
15
15
|
placeholderColor: Color;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
export declare const
|
|
20
|
-
export declare const
|
|
16
|
+
}, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "theming" | "placeholderColor"> & WithTheme & {
|
|
17
|
+
placeholderColor: Color;
|
|
18
|
+
}, never>>> & string;
|
|
19
|
+
export declare const Dropdown: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
|
|
20
|
+
export declare const DropdownItem: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "theming"> & WithTheme, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "theming"> & WithTheme, never>>> & string;
|
|
21
|
+
export declare const Spacing: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "theming"> & WithTheme, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "theming"> & WithTheme, never>>> & string;
|
|
22
|
+
export declare const Loader: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "theming"> & WithTheme, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "theming"> & WithTheme, never>>> & string;
|
|
21
23
|
export {};
|
|
@@ -12,12 +12,12 @@ declare const meta: {
|
|
|
12
12
|
options: ({
|
|
13
13
|
path: string;
|
|
14
14
|
title: string;
|
|
15
|
-
icon: import("react
|
|
15
|
+
icon: import("react").JSX.Element;
|
|
16
16
|
except?: undefined;
|
|
17
17
|
} | {
|
|
18
18
|
path: string;
|
|
19
19
|
title: string;
|
|
20
|
-
icon: import("react
|
|
20
|
+
icon: import("react").JSX.Element;
|
|
21
21
|
except: (string | RegExp)[];
|
|
22
22
|
})[];
|
|
23
23
|
panel: {
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
export declare const Switch: React.FunctionComponent<SwitchProps>;
|
|
3
|
-
export declare const SwitchContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
4
|
-
export declare const SwitchLabel: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
5
|
-
export declare const CheckboxContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
6
|
-
export declare const CheckboxLabel: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, never
|
|
7
|
-
export declare const CheckboxInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
3
|
+
export declare const SwitchContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
|
|
4
|
+
export declare const SwitchLabel: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof SwitchProps> & SwitchProps, never> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof SwitchProps> & SwitchProps, never>>> & string;
|
|
5
|
+
export declare const CheckboxContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
|
|
6
|
+
export declare const CheckboxLabel: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, never>>> & string;
|
|
7
|
+
export declare const CheckboxInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref" | "key" | keyof React.InputHTMLAttributes<HTMLInputElement>> & Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & {
|
|
8
8
|
ref?: ((instance: HTMLInputElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLInputElement> | null | undefined;
|
|
9
|
-
}>,
|
|
10
|
-
|
|
9
|
+
}, keyof SwitchProps> & SwitchProps, "type"> & Partial<Pick<import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref" | "key" | keyof React.InputHTMLAttributes<HTMLInputElement>> & Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & {
|
|
10
|
+
ref?: ((instance: HTMLInputElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLInputElement> | null | undefined;
|
|
11
|
+
}, keyof SwitchProps> & SwitchProps, "type">>> & string;
|
|
12
|
+
export declare const CheckboxButton: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof SwitchProps> & SwitchProps, never> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof SwitchProps> & SwitchProps, never>>> & string;
|
|
11
13
|
export type SwitchProps = {
|
|
12
14
|
color?: string;
|
|
13
15
|
children?: React.ReactNode;
|
|
@@ -4,27 +4,38 @@ type StyledTheadProps = {
|
|
|
4
4
|
theadColor?: string;
|
|
5
5
|
index?: number;
|
|
6
6
|
};
|
|
7
|
-
export declare const Table: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
8
|
-
export declare const StyledThead: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
9
|
-
export declare const StyledTableHead: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
7
|
+
export declare const Table: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, keyof TableProps> & Partial<TableProps>, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, keyof TableProps> & Partial<TableProps>, never>>> & string;
|
|
8
|
+
export declare const StyledThead: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, keyof StyledTheadProps> & StyledTheadProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, keyof StyledTheadProps> & StyledTheadProps, never>>> & string;
|
|
9
|
+
export declare const StyledTableHead: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "fixedHeader" | "index" | keyof Heading> & Partial<Heading & {
|
|
10
10
|
index?: number;
|
|
11
11
|
fixedHeader?: boolean;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
}>, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "fixedHeader" | "index" | keyof Heading> & Partial<Heading & {
|
|
13
|
+
index?: number;
|
|
14
|
+
fixedHeader?: boolean;
|
|
15
|
+
}>, never>>> & string;
|
|
16
|
+
export declare const StyledTableRow: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, keyof TableRowProps> & TableRowProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, keyof TableRowProps> & TableRowProps, never>>> & string;
|
|
17
|
+
export declare const StyledTableData: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "index" | keyof TableDataProps> & Partial<TableDataProps & {
|
|
15
18
|
index?: number;
|
|
16
19
|
isFixed?: boolean;
|
|
17
20
|
right?: string;
|
|
18
|
-
}
|
|
19
|
-
|
|
21
|
+
}>, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "index" | keyof TableDataProps> & Partial<TableDataProps & {
|
|
22
|
+
index?: number;
|
|
23
|
+
isFixed?: boolean;
|
|
24
|
+
right?: string;
|
|
25
|
+
}>, never>>> & string;
|
|
26
|
+
export declare const Col: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, keyof TableColProps> & Partial<TableColProps>, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, keyof TableColProps> & Partial<TableColProps>, never>>> & string;
|
|
20
27
|
/**
|
|
21
28
|
* @description
|
|
22
29
|
* StatusColor is a styled component that renders a div with a background color.
|
|
23
30
|
*/
|
|
24
|
-
export declare const StatusColor: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
31
|
+
export declare const StatusColor: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "color"> & {
|
|
32
|
+
color?: string;
|
|
33
|
+
}, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "color"> & {
|
|
25
34
|
color?: string;
|
|
26
|
-
}
|
|
27
|
-
export declare const HeaderContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
35
|
+
}, never>>> & string;
|
|
36
|
+
export declare const HeaderContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "sortable"> & {
|
|
37
|
+
sortable?: boolean | undefined;
|
|
38
|
+
}, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "sortable"> & {
|
|
28
39
|
sortable?: boolean | undefined;
|
|
29
|
-
}
|
|
40
|
+
}, never>>> & string;
|
|
30
41
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SortIcon: () => import("react
|
|
1
|
+
export declare const SortIcon: () => import("react").JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { InputMode } from './types';
|
|
3
|
-
export declare const TableInput: React.MemoExoticComponent<(props: TableInputProps) =>
|
|
3
|
+
export declare const TableInput: React.MemoExoticComponent<(props: TableInputProps) => React.JSX.Element>;
|
|
4
4
|
interface StyledProps {
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
children?: React.ReactNode;
|
|
@@ -13,7 +13,7 @@ interface StyledProps {
|
|
|
13
13
|
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
14
14
|
onEnter?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
15
15
|
}
|
|
16
|
-
export declare const StyledInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
16
|
+
export declare const StyledInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof StyledProps> & StyledProps, never> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof StyledProps> & StyledProps, never>>> & string;
|
|
17
17
|
export type TableInputProps = {
|
|
18
18
|
value?: string | number;
|
|
19
19
|
fullWidth?: boolean;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TextAreaProps } from './index';
|
|
2
|
-
export declare const StyledTextArea: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
2
|
+
export declare const StyledTextArea: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, keyof TextAreaProps> & TextAreaProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, keyof TextAreaProps> & TextAreaProps, never>>> & string;
|
|
@@ -3,10 +3,10 @@ import { IDisclosureProps, TimelineDashedProps } from './types';
|
|
|
3
3
|
* @description
|
|
4
4
|
* Styled Disclosure Component API.
|
|
5
5
|
*/
|
|
6
|
-
export declare const StyledDisclosure: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
7
|
-
export declare const TimelineDashed: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
6
|
+
export declare const StyledDisclosure: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof IDisclosureProps> & IDisclosureProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof IDisclosureProps> & IDisclosureProps, never>>> & string;
|
|
7
|
+
export declare const TimelineDashed: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "lineHeight"> & TimelineDashedProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "lineHeight"> & TimelineDashedProps, never>>> & string;
|
|
8
8
|
/**
|
|
9
9
|
* @description
|
|
10
10
|
* TimeLineUnion Normal Stage API.
|
|
11
11
|
*/
|
|
12
|
-
export declare const TimelineUnion: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
12
|
+
export declare const TimelineUnion: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
|
|
@@ -16,7 +16,7 @@ type TooltipContainerProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare const arrow: (prop: TooltipProps["orientation"]) => import('styled-components').RuleSet<object> | undefined;
|
|
18
18
|
export declare const orientation: (prop: TooltipProps["orientation"]) => import('styled-components').RuleSet<object> | undefined;
|
|
19
|
-
export declare const TooltipContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
20
|
-
export declare const TooltipText: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
21
|
-
export declare const TooltipArrow: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
19
|
+
export declare const TooltipContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof TooltipContainerProps> & TooltipContainerProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof TooltipContainerProps> & TooltipContainerProps, never>>> & string;
|
|
20
|
+
export declare const TooltipText: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof TooltipTextProps> & TooltipTextProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof TooltipTextProps> & TooltipTextProps, never>>> & string;
|
|
21
|
+
export declare const TooltipArrow: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "orientation"> & TooltipArrowProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "orientation"> & TooltipArrowProps, never>>> & string;
|
|
22
22
|
export {};
|
|
@@ -1,20 +1,44 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
export declare const BaseColumn: React.FC<BaseColumnProps>;
|
|
3
3
|
export declare const TotalHours: React.FunctionComponent<TotalHoursProps>;
|
|
4
|
-
export declare const Container: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
5
|
-
export declare const Group: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
6
|
-
export declare const Column: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
7
|
-
export declare const Title: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never
|
|
8
|
-
export declare const Value: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never
|
|
9
|
-
export declare const HoursColumn: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "
|
|
4
|
+
export declare const Container: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "span"> & ContainerProps, never> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "span"> & ContainerProps, never>>> & string;
|
|
5
|
+
export declare const Group: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
|
|
6
|
+
export declare const Column: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
|
|
7
|
+
export declare const Title: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>>> & string;
|
|
8
|
+
export declare const Value: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>>> & string;
|
|
9
|
+
export declare const HoursColumn: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, "as" | "forwardedAs"> & {
|
|
10
|
+
as?: import('styled-components').WebTarget | undefined;
|
|
11
|
+
forwardedAs?: import('styled-components').WebTarget | undefined;
|
|
12
|
+
}, "ref"> & {
|
|
10
13
|
ref?: ((instance: HTMLDivElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
11
|
-
}, never
|
|
12
|
-
|
|
14
|
+
}, never> & Partial<Pick<Omit<import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, "as" | "forwardedAs"> & {
|
|
15
|
+
as?: import('styled-components').WebTarget | undefined;
|
|
16
|
+
forwardedAs?: import('styled-components').WebTarget | undefined;
|
|
17
|
+
}, "ref"> & {
|
|
13
18
|
ref?: ((instance: HTMLDivElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
14
|
-
},
|
|
15
|
-
export declare const
|
|
19
|
+
}, never>>> & string;
|
|
20
|
+
export declare const InputsColumn: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<Omit<import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, "as" | "forwardedAs"> & {
|
|
21
|
+
as?: import('styled-components').WebTarget | undefined;
|
|
22
|
+
forwardedAs?: import('styled-components').WebTarget | undefined;
|
|
23
|
+
}, "ref"> & {
|
|
16
24
|
ref?: ((instance: HTMLDivElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
17
|
-
}, never
|
|
25
|
+
}, "borderColor"> & StyledColumnProps, never> & Partial<Pick<import('styled-components').FastOmit<Omit<import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, "as" | "forwardedAs"> & {
|
|
26
|
+
as?: import('styled-components').WebTarget | undefined;
|
|
27
|
+
forwardedAs?: import('styled-components').WebTarget | undefined;
|
|
28
|
+
}, "ref"> & {
|
|
29
|
+
ref?: ((instance: HTMLDivElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
30
|
+
}, "borderColor"> & StyledColumnProps, never>>> & string;
|
|
31
|
+
export declare const PendingColumn: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, "as" | "forwardedAs"> & {
|
|
32
|
+
as?: import('styled-components').WebTarget | undefined;
|
|
33
|
+
forwardedAs?: import('styled-components').WebTarget | undefined;
|
|
34
|
+
}, "ref"> & {
|
|
35
|
+
ref?: ((instance: HTMLDivElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
36
|
+
}, never> & Partial<Pick<Omit<import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, "as" | "forwardedAs"> & {
|
|
37
|
+
as?: import('styled-components').WebTarget | undefined;
|
|
38
|
+
forwardedAs?: import('styled-components').WebTarget | undefined;
|
|
39
|
+
}, "ref"> & {
|
|
40
|
+
ref?: ((instance: HTMLDivElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
41
|
+
}, never>>> & string;
|
|
18
42
|
export type TotalHoursProps = {
|
|
19
43
|
prefix?: string;
|
|
20
44
|
hours?: number;
|