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
package/README.md
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
# React + TypeScript + Vite
|
|
2
|
-
|
|
3
|
-
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
|
4
|
-
|
|
5
|
-
Currently, two official plugins are available:
|
|
6
|
-
|
|
7
|
-
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
|
|
8
|
-
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
|
9
|
-
|
|
10
|
-
## Expanding the ESLint configuration
|
|
11
|
-
|
|
12
|
-
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
|
|
13
|
-
|
|
14
|
-
- Configure the top-level `parserOptions` property like this:
|
|
15
|
-
|
|
16
|
-
```js
|
|
17
|
-
export default {
|
|
18
|
-
// other rules...
|
|
19
|
-
parserOptions: {
|
|
20
|
-
ecmaVersion: 'latest',
|
|
21
|
-
sourceType: 'module',
|
|
22
|
-
project: ['./tsconfig.json', './tsconfig.node.json', './tsconfig.app.json'],
|
|
23
|
-
tsconfigRootDir: __dirname,
|
|
24
|
-
},
|
|
25
|
-
};
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
|
|
29
|
-
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
|
|
30
|
-
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list
|
|
1
|
+
# React + TypeScript + Vite
|
|
2
|
+
|
|
3
|
+
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
|
4
|
+
|
|
5
|
+
Currently, two official plugins are available:
|
|
6
|
+
|
|
7
|
+
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
|
|
8
|
+
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
|
9
|
+
|
|
10
|
+
## Expanding the ESLint configuration
|
|
11
|
+
|
|
12
|
+
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
|
|
13
|
+
|
|
14
|
+
- Configure the top-level `parserOptions` property like this:
|
|
15
|
+
|
|
16
|
+
```js
|
|
17
|
+
export default {
|
|
18
|
+
// other rules...
|
|
19
|
+
parserOptions: {
|
|
20
|
+
ecmaVersion: 'latest',
|
|
21
|
+
sourceType: 'module',
|
|
22
|
+
project: ['./tsconfig.json', './tsconfig.node.json', './tsconfig.app.json'],
|
|
23
|
+
tsconfigRootDir: __dirname,
|
|
24
|
+
},
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
|
|
29
|
+
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
|
|
30
|
+
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list
|
package/dist/App.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare function App(): import("react
|
|
1
|
+
declare function App(): import("react").JSX.Element;
|
|
2
2
|
export default App;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { AlertProps } from './types';
|
|
2
|
-
export declare const Alert: ({ icon: Icon, iconSize, iconColor, iconTextColor, content, className, }: AlertProps) => import("react
|
|
2
|
+
export declare const Alert: ({ icon: Icon, iconSize, iconColor, iconTextColor, content, className, }: AlertProps) => import("react").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ButtonProps } from './types';
|
|
2
2
|
type ButtonStyledProps = Pick<ButtonProps, 'fullWidth' | 'tabWithHover' | 'visuallyDisabled'>;
|
|
3
|
-
export declare const StyledButton: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
3
|
+
export declare const StyledButton: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "fullWidth" | "tabWithHover" | "visuallyDisabled"> & ButtonStyledProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "fullWidth" | "tabWithHover" | "visuallyDisabled"> & ButtonStyledProps, never>>> & string;
|
|
4
4
|
export {};
|
|
@@ -5,9 +5,9 @@ interface ButtonProps {
|
|
|
5
5
|
isActive: boolean;
|
|
6
6
|
onClick: () => void;
|
|
7
7
|
}
|
|
8
|
-
export declare const WeekdayButton: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
8
|
+
export declare const WeekdayButton: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, keyof ButtonProps> & ButtonProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, keyof ButtonProps> & ButtonProps, never>>> & string;
|
|
9
9
|
interface ButtonBarProps {
|
|
10
10
|
isMobile?: boolean;
|
|
11
11
|
}
|
|
12
|
-
export declare const ButtonBar: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
12
|
+
export declare const ButtonBar: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "isMobile"> & ButtonBarProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "isMobile"> & ButtonBarProps, never>>> & string;
|
|
13
13
|
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ScheduleCardProps, HeaderProps } from './types';
|
|
2
|
-
export declare const Card: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
3
|
-
export declare const Header: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
2
|
+
export declare const Card: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ScheduleCardProps> & ScheduleCardProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ScheduleCardProps> & ScheduleCardProps, never>>> & string;
|
|
3
|
+
export declare const Header: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof HeaderProps> & HeaderProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof HeaderProps> & HeaderProps, never>>> & string;
|
|
@@ -1,22 +1,41 @@
|
|
|
1
|
-
import
|
|
2
|
-
export declare const StyledCheckbox: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, Omit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & {
|
|
1
|
+
export declare const StyledCheckbox: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref" | "key" | keyof import('react').InputHTMLAttributes<HTMLInputElement>> & Omit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & {
|
|
3
2
|
ref?: ((instance: HTMLInputElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLInputElement> | null | undefined;
|
|
4
|
-
}>,
|
|
5
|
-
|
|
3
|
+
}, "type"> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref" | "key" | keyof import('react').InputHTMLAttributes<HTMLInputElement>> & Omit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & {
|
|
4
|
+
ref?: ((instance: HTMLInputElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLInputElement> | null | undefined;
|
|
5
|
+
}, "type">>> & string;
|
|
6
|
+
export declare const CheckboxIcon: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<Omit<Omit<import('react').SVGProps<SVGSVGElement>, "ref"> & {
|
|
7
|
+
title?: string;
|
|
8
|
+
titleId?: string;
|
|
9
|
+
} & import('react').RefAttributes<SVGSVGElement>, "ref"> & {
|
|
10
|
+
ref?: ((instance: SVGSVGElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<SVGSVGElement> | null | undefined;
|
|
11
|
+
}, "left" | "right" | "status" | "top"> & {
|
|
12
|
+
status?: boolean;
|
|
13
|
+
} & Pick<import('.').CheckboxProps, "left" | "right" | "top">, never> & Partial<Pick<import('styled-components').FastOmit<Omit<Omit<import('react').SVGProps<SVGSVGElement>, "ref"> & {
|
|
6
14
|
title?: string;
|
|
7
15
|
titleId?: string;
|
|
8
16
|
} & import('react').RefAttributes<SVGSVGElement>, "ref"> & {
|
|
9
17
|
ref?: ((instance: SVGSVGElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<SVGSVGElement> | null | undefined;
|
|
10
|
-
},
|
|
18
|
+
}, "left" | "right" | "status" | "top"> & {
|
|
19
|
+
status?: boolean;
|
|
20
|
+
} & Pick<import('.').CheckboxProps, "left" | "right" | "top">, never>>> & string & Omit<import('react').ForwardRefExoticComponent<Omit<import('react').SVGProps<SVGSVGElement>, "ref"> & {
|
|
11
21
|
title?: string;
|
|
12
22
|
titleId?: string;
|
|
13
23
|
} & import('react').RefAttributes<SVGSVGElement>>, keyof import('react').Component<any, {}, any>>;
|
|
14
|
-
export declare const CheckboxIconFilter: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
24
|
+
export declare const CheckboxIconFilter: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<Omit<Omit<import('react').SVGProps<SVGSVGElement>, "ref"> & {
|
|
25
|
+
title?: string;
|
|
26
|
+
titleId?: string;
|
|
27
|
+
} & import('react').RefAttributes<SVGSVGElement>, "ref"> & {
|
|
28
|
+
ref?: ((instance: SVGSVGElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<SVGSVGElement> | null | undefined;
|
|
29
|
+
}, "left" | "right" | "status" | "top"> & {
|
|
30
|
+
status?: boolean;
|
|
31
|
+
} & Pick<import('.').CheckboxProps, "left" | "right" | "top">, never> & Partial<Pick<import('styled-components').FastOmit<Omit<Omit<import('react').SVGProps<SVGSVGElement>, "ref"> & {
|
|
15
32
|
title?: string;
|
|
16
33
|
titleId?: string;
|
|
17
34
|
} & import('react').RefAttributes<SVGSVGElement>, "ref"> & {
|
|
18
35
|
ref?: ((instance: SVGSVGElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<SVGSVGElement> | null | undefined;
|
|
19
|
-
},
|
|
36
|
+
}, "left" | "right" | "status" | "top"> & {
|
|
37
|
+
status?: boolean;
|
|
38
|
+
} & Pick<import('.').CheckboxProps, "left" | "right" | "top">, never>>> & string & Omit<import('react').ForwardRefExoticComponent<Omit<import('react').SVGProps<SVGSVGElement>, "ref"> & {
|
|
20
39
|
title?: string;
|
|
21
40
|
titleId?: string;
|
|
22
41
|
} & import('react').RefAttributes<SVGSVGElement>>, keyof import('react').Component<any, {}, any>>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ColProps } from './types';
|
|
2
|
-
export declare const StyledCol: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
2
|
+
export declare const StyledCol: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ColProps> & ColProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ColProps> & ColProps, never>>> & string;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
export declare const Collapse: React.FunctionComponent<CollapseProps>;
|
|
3
|
-
export declare const StyledCollapse: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
3
|
+
export declare const StyledCollapse: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "width"> & {
|
|
4
4
|
width?: string;
|
|
5
|
-
}
|
|
5
|
+
}, never> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "width"> & {
|
|
6
|
+
width?: string;
|
|
7
|
+
}, never>>> & string;
|
|
6
8
|
export type CollapseProps = {
|
|
7
9
|
isOpen?: boolean;
|
|
8
10
|
title?: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
export declare const Counter: React.FunctionComponent<CounterProps>;
|
|
3
|
-
export declare const Circle: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
4
|
-
export declare const PassedDays: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never
|
|
3
|
+
export declare const Circle: 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 PassedDays: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>>> & string;
|
|
5
5
|
export type CounterProps = {
|
|
6
6
|
color?: string;
|
|
7
7
|
message?: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { default as Datepicker } from 'react-datepicker';
|
|
2
2
|
import { DatepickerProps } from '.';
|
|
3
|
-
export declare const StyledDatepicker: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').
|
|
4
|
-
export declare const StyledTableInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
5
|
-
export declare const StyledInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
6
|
-
export declare const StyledIcon: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
7
|
-
export declare const StyledHeader: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
8
|
-
export declare const StyledDay: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never
|
|
3
|
+
export declare const StyledDatepicker: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<(import('react-datepicker').DatePickerProps & import('react').RefAttributes<Datepicker>) & import('styled-components/dist/types').BaseObject, keyof DatepickerProps> & DatepickerProps, never> & Partial<Pick<import('styled-components').FastOmit<(import('react-datepicker').DatePickerProps & import('react').RefAttributes<Datepicker>) & import('styled-components/dist/types').BaseObject, keyof DatepickerProps> & DatepickerProps, never>>> & string & Omit<typeof Datepicker, keyof import('react').Component<any, {}, any>>;
|
|
4
|
+
export declare const StyledTableInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof DatepickerProps> & DatepickerProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof DatepickerProps> & DatepickerProps, never>>> & string;
|
|
5
|
+
export declare const StyledInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof DatepickerProps> & DatepickerProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof DatepickerProps> & DatepickerProps, never>>> & string;
|
|
6
|
+
export declare const StyledIcon: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, keyof DatepickerProps> & DatepickerProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, keyof DatepickerProps> & DatepickerProps, never>>> & string;
|
|
7
|
+
export declare const StyledHeader: 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;
|
|
8
|
+
export declare const StyledDay: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never> & Partial<Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>>> & string;
|
|
@@ -1,26 +1,31 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
2
|
export declare const SingleDeadlineChart: React.FC<SingleDeadlineChartProps>;
|
|
3
|
-
export declare const Container: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
4
|
-
export declare const Workline: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
5
|
-
export declare const NameContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
6
|
-
export declare const Name: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never
|
|
7
|
-
export declare const ChartContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
8
|
-
export declare const ChartItem: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
9
|
-
export declare const ChartMain: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
10
|
-
export declare const MetricsContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
11
|
-
export declare const NumbersContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
12
|
-
export declare const Since: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
13
|
-
export declare const Bar: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
14
|
-
export declare const StageContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
15
|
-
export declare const StageName: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
16
|
-
export declare const Untill: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
17
|
-
export declare const DeadlineColorDiv: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
3
|
+
export declare const Container: 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 Workline: 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;
|
|
5
|
+
export declare const NameContainer: 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 Name: 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;
|
|
7
|
+
export declare const ChartContainer: 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;
|
|
8
|
+
export declare const ChartItem: 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;
|
|
9
|
+
export declare const ChartMain: 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;
|
|
10
|
+
export declare const MetricsContainer: 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;
|
|
11
|
+
export declare const NumbersContainer: 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;
|
|
12
|
+
export declare const Since: 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;
|
|
13
|
+
export declare const Bar: 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;
|
|
14
|
+
export declare const StageContainer: 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;
|
|
15
|
+
export declare const StageName: 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;
|
|
16
|
+
export declare const Untill: 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;
|
|
17
|
+
export declare const DeadlineColorDiv: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "bgColor" | "widthPercent"> & {
|
|
18
18
|
bgColor: string;
|
|
19
19
|
widthPercent: number;
|
|
20
|
-
}
|
|
21
|
-
|
|
20
|
+
}, never> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "bgColor" | "widthPercent"> & {
|
|
21
|
+
bgColor: string;
|
|
22
|
+
widthPercent: number;
|
|
23
|
+
}, never>>> & string;
|
|
24
|
+
export declare const DeadlineContainerNumber: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "widthPercent"> & {
|
|
25
|
+
widthPercent: number;
|
|
26
|
+
}, never> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "widthPercent"> & {
|
|
22
27
|
widthPercent: number;
|
|
23
|
-
}
|
|
28
|
+
}, never>>> & string;
|
|
24
29
|
interface Deadline {
|
|
25
30
|
id: number;
|
|
26
31
|
name: string;
|
|
@@ -13,16 +13,22 @@ export declare const Section: React.FC<SectionProps & {
|
|
|
13
13
|
labelColor?: CommonTextProps['color'];
|
|
14
14
|
valueColor?: CommonTextProps['color'];
|
|
15
15
|
}>;
|
|
16
|
-
export declare const Container: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
17
|
-
export declare const Row: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
18
|
-
export declare const Item: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
16
|
+
export declare const Container: 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;
|
|
17
|
+
export declare const Row: 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;
|
|
18
|
+
export declare const Item: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "basis" | "wrap" | "single"> & {
|
|
19
19
|
single?: boolean;
|
|
20
20
|
wrap?: boolean;
|
|
21
21
|
basis?: string;
|
|
22
|
-
}
|
|
23
|
-
|
|
22
|
+
}, never> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "basis" | "wrap" | "single"> & {
|
|
23
|
+
single?: boolean;
|
|
24
|
+
wrap?: boolean;
|
|
25
|
+
basis?: string;
|
|
26
|
+
}, never>>> & string;
|
|
27
|
+
export declare const Content: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "justify"> & {
|
|
28
|
+
justify: string;
|
|
29
|
+
}, never> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "justify"> & {
|
|
24
30
|
justify: string;
|
|
25
|
-
}
|
|
31
|
+
}, never>>> & string;
|
|
26
32
|
export type DetailProps = {
|
|
27
33
|
title?: string;
|
|
28
34
|
initialValue?: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DragareaProps } from './types';
|
|
2
|
-
export declare const Dropzone: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
3
|
-
export declare const Message: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
4
|
-
export declare const Input: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, never
|
|
5
|
-
export declare const Label: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
2
|
+
export declare const Dropzone: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof DragareaProps> & DragareaProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof DragareaProps> & DragareaProps, never>>> & string;
|
|
3
|
+
export declare const Message: 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;
|
|
4
|
+
export declare const Input: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, never> & Partial<Pick<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, never>>> & string;
|
|
5
|
+
export declare const Label: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof DragareaProps> & DragareaProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof DragareaProps> & DragareaProps, never>>> & string;
|
|
@@ -10,8 +10,8 @@ interface EnterpriseProvider {
|
|
|
10
10
|
export declare const EnterpriseContext: import('react').Context<EnterpriseProvider | null>;
|
|
11
11
|
export declare const ProviderComponent: ({ children }: Readonly<{
|
|
12
12
|
children: React.ReactNode;
|
|
13
|
-
}>) => import("react
|
|
13
|
+
}>) => import("react").JSX.Element;
|
|
14
14
|
export declare function EnterpriseProvider({ children }: Readonly<{
|
|
15
15
|
children: React.ReactNode;
|
|
16
|
-
}>): import("react
|
|
16
|
+
}>): import("react").JSX.Element;
|
|
17
17
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FirstModalProps } from './types';
|
|
2
|
-
export declare const ModalBackground: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
3
|
-
export declare const ModalContent: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
4
|
-
export declare const Title: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never
|
|
5
|
-
export declare const Subtitle: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never
|
|
6
|
-
export declare const Actioners: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
2
|
+
export declare const ModalBackground: 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;
|
|
3
|
+
export declare const ModalContent: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof FirstModalProps> & FirstModalProps, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof FirstModalProps> & FirstModalProps, never>>> & string;
|
|
4
|
+
export declare const Title: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never> & Partial<Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>>> & string;
|
|
5
|
+
export declare const Subtitle: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never> & Partial<Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>>> & string;
|
|
6
|
+
export declare const Actioners: 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;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const FooterContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
2
|
-
export declare const Icons: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
1
|
+
export declare const FooterContainer: 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;
|
|
2
|
+
export declare const Icons: 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;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
export declare const LogoSVG: (props: React.SVGProps<SVGSVGElement>) =>
|
|
3
|
-
export declare const WorldSVG: (props: React.SVGProps<SVGSVGElement>) =>
|
|
4
|
-
export declare const LinkedinSVG: (props: React.SVGProps<SVGSVGElement>) =>
|
|
5
|
-
export declare const YoutubeSVG: (props: React.SVGProps<SVGSVGElement>) =>
|
|
2
|
+
export declare const LogoSVG: (props: React.SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
|
+
export declare const WorldSVG: (props: React.SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
4
|
+
export declare const LinkedinSVG: (props: React.SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
5
|
+
export declare const YoutubeSVG: (props: React.SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
@@ -7,14 +7,22 @@ interface StyledProps {
|
|
|
7
7
|
value?: string | number;
|
|
8
8
|
isError?: boolean;
|
|
9
9
|
}
|
|
10
|
-
export declare const StyledInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
11
|
-
export declare const StyledInputBold: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof StyledProps> & StyledProps, "
|
|
10
|
+
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;
|
|
11
|
+
export declare const StyledInputBold: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<import('styled-components').FastOmit<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>>, "as" | "forwardedAs"> & {
|
|
12
|
+
as?: import('styled-components').WebTarget | undefined;
|
|
13
|
+
forwardedAs?: import('styled-components').WebTarget | undefined;
|
|
14
|
+
}, "ref"> & {
|
|
12
15
|
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;
|
|
13
|
-
}, never
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
}, never> & Partial<Pick<Omit<import('styled-components').FastOmit<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>>, "as" | "forwardedAs"> & {
|
|
17
|
+
as?: import('styled-components').WebTarget | undefined;
|
|
18
|
+
forwardedAs?: import('styled-components').WebTarget | undefined;
|
|
19
|
+
}, "ref"> & {
|
|
20
|
+
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;
|
|
21
|
+
}, never>>> & string;
|
|
22
|
+
export declare const StyledInputAddon: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, never>>> & string;
|
|
23
|
+
export declare const StyledIconContainerAddon: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof InputProps> & InputProps, never> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof InputProps> & InputProps, never>>> & string;
|
|
24
|
+
export declare const StyledIconEdit: 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;
|
|
25
|
+
export declare const StyledIconDelete: 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;
|
|
18
26
|
export type InputProps = {
|
|
19
27
|
date?: Date;
|
|
20
28
|
value?: string;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
export declare const Container: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
1
|
+
export declare const Container: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "open"> & {
|
|
2
2
|
open: boolean;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
}, never> & Partial<Pick<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "open"> & {
|
|
4
|
+
open: boolean;
|
|
5
|
+
}, never>>> & string;
|
|
6
|
+
export declare const SidebarContainer: 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;
|
|
7
|
+
export declare const PageContainer: 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;
|
|
6
8
|
export declare const classes: {
|
|
7
9
|
grid: string;
|
|
8
10
|
open: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SucursalVirtualSVG: () => import("react
|
|
1
|
+
export declare const SucursalVirtualSVG: () => import("react").JSX.Element;
|
|
@@ -11,12 +11,12 @@ export type NavbarProps = {
|
|
|
11
11
|
/************************************************
|
|
12
12
|
* Styled Components para la versión escritorio y móvil
|
|
13
13
|
************************************************/
|
|
14
|
-
export declare const HeaderContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
15
|
-
export declare const HeaderMobile: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
16
|
-
export declare const UserContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
17
|
-
export declare const Logo: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, never
|
|
18
|
-
export declare const NameDiv: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
19
|
-
export declare const UserDropdown: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never
|
|
14
|
+
export declare const HeaderContainer: 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;
|
|
15
|
+
export declare const HeaderMobile: 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;
|
|
16
|
+
export declare const UserContainer: 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;
|
|
17
|
+
export declare const Logo: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, never>>> & string;
|
|
18
|
+
export declare const NameDiv: 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;
|
|
19
|
+
export declare const UserDropdown: 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;
|
|
20
20
|
export declare const Navbar: React.FunctionComponent<NavbarProps>;
|
|
21
21
|
export declare enum System {
|
|
22
22
|
SIGN = "Firma Digital",
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
export declare const RadioButton: React.FunctionComponent<RadioButtonProps>;
|
|
3
|
-
export declare const StyledRadioButton: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<
|
|
3
|
+
export declare const StyledRadioButton: import('styled-components/dist/types').IStyledComponentBase<"web", 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"> & {
|
|
4
4
|
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;
|
|
5
|
-
}>,
|
|
5
|
+
}, "type"> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref" | "key" | keyof React.InputHTMLAttributes<HTMLInputElement>> & Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & {
|
|
6
|
+
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;
|
|
7
|
+
}, "type">>> & string;
|
|
6
8
|
export type RadioButtonProps = {
|
|
7
9
|
className?: string;
|
|
8
10
|
name?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
export declare const Row: React.FC<RowProps>;
|
|
3
|
-
export declare const StyledRow: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
3
|
+
export declare const StyledRow: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof RowProps> & RowProps, never> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof RowProps> & RowProps, never>>> & string;
|
|
4
4
|
export interface RowProps {
|
|
5
5
|
unit?: 'px' | 'rem' | 'em' | '%';
|
|
6
6
|
border?: string;
|
|
@@ -4,9 +4,11 @@ type ExtendedSearch = {
|
|
|
4
4
|
dropdown?: boolean;
|
|
5
5
|
};
|
|
6
6
|
export declare const StyledSelect: React.ComponentType<Props & ExtendedSearch>;
|
|
7
|
-
export declare const SearchContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components
|
|
7
|
+
export declare const SearchContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "color"> & {
|
|
8
8
|
color?: string;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
}, never> & Partial<Pick<import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "color"> & {
|
|
10
|
+
color?: string;
|
|
11
|
+
}, never>>> & string;
|
|
12
|
+
export declare const StyledDropdown: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('../Dropdown').DropdownProps, never> & Partial<Pick<import('../Dropdown').DropdownProps, never>>> & string & Omit<React.FunctionComponent<import('../Dropdown').DropdownProps>, keyof React.Component<any, {}, any>>;
|
|
13
|
+
export declare const StyledDropdownContainer: 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;
|
|
12
14
|
export {};
|