nectiasw 0.0.112 → 0.0.114

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.
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ import { ScheduleCardProps, HeaderProps } from './types';
3
+
4
+ export declare const ScheduleCard: React.FC<ScheduleCardProps>;
5
+ export declare const ScheduleHeader: React.FC<HeaderProps>;
@@ -0,0 +1,4 @@
1
+ import { ScheduleCardProps, HeaderProps } from './types';
2
+
3
+ export declare const Card: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, ScheduleCardProps>> & string;
4
+ export declare const Header: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, HeaderProps>> & string;
@@ -0,0 +1,12 @@
1
+ export interface ScheduleCardProps {
2
+ borderColor?: string;
3
+ bgColor?: string;
4
+ padding?: string;
5
+ children: React.ReactNode;
6
+ }
7
+ export interface HeaderProps {
8
+ display?: string;
9
+ justifyContent?: string;
10
+ alignItems?: string;
11
+ children: React.ReactNode;
12
+ }
@@ -17,6 +17,7 @@ export declare const PendingColumn: import('styled-components/dist/types').IStyl
17
17
  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;
18
18
  }, never>> & string;
19
19
  export type TotalHoursProps = {
20
+ prefix?: string;
20
21
  hours?: number;
21
22
  inputs?: number;
22
23
  pending?: number;
package/dist/index.d.ts CHANGED
@@ -63,6 +63,8 @@ export { ScrollSearch } from './components/Search/variants/ScrollSearch';
63
63
  export type { SearchItem, SearchProps, ScrollSearchProps, Client, PendingClientElement, Placeholder, } from './components/Search/types';
64
64
  export { Pagination } from './components/Pagination';
65
65
  export type { PaginationProps } from './components/Pagination/types';
66
+ export { ScheduleCard, ScheduleHeader, } from './components/Card/variants/Schedule';
67
+ export type { ScheduleCardProps, HeaderProps, } from './components/Card/variants/Schedule/types';
66
68
  export { Card, DangerTitle, AlertTitle, CheckTitle } from './components/Card';
67
69
  export type { CardProps, CardTitleProps } from './components/Card/types';
68
70
  export { Button } from './components/Button';