dt-shared-front 1.1.138 → 1.1.139

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.
@@ -4,9 +4,14 @@ export interface IBreadcrumbsPath {
4
4
  isBack?: boolean;
5
5
  isCurrent?: boolean;
6
6
  }
7
+ export declare enum EBreadcrumbsVariant {
8
+ arrow = "arrows",
9
+ slash = "slash"
10
+ }
7
11
  interface IBreadcrumbsProps {
8
12
  paths: IBreadcrumbsPath[];
13
+ variant?: keyof typeof EBreadcrumbsVariant;
9
14
  onBack?: (path: string) => void;
10
15
  }
11
- export declare const Breadcrumbs: ({ paths, onBack }: IBreadcrumbsProps) => JSX.Element;
16
+ export declare const Breadcrumbs: ({ paths, onBack, variant }: IBreadcrumbsProps) => JSX.Element;
12
17
  export {};
@@ -26,7 +26,7 @@ declare const AntDatePicker: import("antd/lib/date-picker/generatePicker/interfa
26
26
  TimePicker: import("antd/lib/date-picker/generatePicker/interface").PickerComponentClass<Omit<Omit<import("rc-picker/lib/Picker").PickerTimeProps<Date>, "locale" | "generateConfig" | "hideHeader" | "components"> & {
27
27
  locale?: import("antd/lib/date-picker/generatePicker").PickerLocale;
28
28
  size?: import("antd/lib/button").ButtonSize;
29
- placement?: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
29
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
30
30
  bordered?: boolean;
31
31
  status?: "" | "error" | "warning";
32
32
  } & {
@@ -37,7 +37,7 @@ declare const AntDatePicker: import("antd/lib/date-picker/generatePicker/interfa
37
37
  QuarterPicker: import("antd/lib/date-picker/generatePicker/interface").PickerComponentClass<Omit<Omit<import("rc-picker/lib/Picker").PickerTimeProps<Date>, "locale" | "generateConfig" | "hideHeader" | "components"> & {
38
38
  locale?: import("antd/lib/date-picker/generatePicker").PickerLocale;
39
39
  size?: import("antd/lib/button").ButtonSize;
40
- placement?: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
40
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
41
41
  bordered?: boolean;
42
42
  status?: "" | "error" | "warning";
43
43
  } & {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export declare type IDividerProps = {
2
3
  width?: string;
3
4
  height?: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export declare type ILoaderLineProps = {
2
3
  active?: boolean;
3
4
  children?: JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { RadioGroupProps } from 'antd';
2
3
  declare type IRadioProps<T> = Omit<RadioGroupProps, 'options' | 'onChange' | 'value'> & {
3
4
  options: T[] | T;
@@ -26,7 +26,7 @@ declare const AntDatePicker: import("antd/lib/date-picker/generatePicker/interfa
26
26
  TimePicker: import("antd/lib/date-picker/generatePicker/interface").PickerComponentClass<Omit<Omit<import("rc-picker/lib/Picker").PickerTimeProps<Date>, "locale" | "generateConfig" | "hideHeader" | "components"> & {
27
27
  locale?: import("antd/lib/date-picker/generatePicker").PickerLocale;
28
28
  size?: import("antd/lib/button").ButtonSize;
29
- placement?: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
29
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
30
30
  bordered?: boolean;
31
31
  status?: "" | "error" | "warning";
32
32
  } & {
@@ -37,7 +37,7 @@ declare const AntDatePicker: import("antd/lib/date-picker/generatePicker/interfa
37
37
  QuarterPicker: import("antd/lib/date-picker/generatePicker/interface").PickerComponentClass<Omit<Omit<import("rc-picker/lib/Picker").PickerTimeProps<Date>, "locale" | "generateConfig" | "hideHeader" | "components"> & {
38
38
  locale?: import("antd/lib/date-picker/generatePicker").PickerLocale;
39
39
  size?: import("antd/lib/button").ButtonSize;
40
- placement?: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
40
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
41
41
  bordered?: boolean;
42
42
  status?: "" | "error" | "warning";
43
43
  } & {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { ETagButtonSize, ETagButtonVariant } from './tag-button';
2
3
  interface ITagButtonGroupProps<T> {
3
4
  variant?: keyof typeof ETagButtonVariant;