aristid-ds 0.6.5 → 0.6.7

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.
Files changed (30) hide show
  1. package/dist/Kit/DataDisplay/Avatar/types.d.ts +1 -1
  2. package/dist/Kit/DataDisplay/Card/types.d.ts +1 -1
  3. package/dist/Kit/DataDisplay/Collapse/types.d.ts +1 -1
  4. package/dist/Kit/DataDisplay/Image/types.d.ts +0 -5
  5. package/dist/Kit/DataDisplay/ItemList/types.d.ts +1 -1
  6. package/dist/Kit/DataDisplay/Tabs/types.d.ts +0 -12
  7. package/dist/Kit/DataDisplay/Tree/types.d.ts +1 -1
  8. package/dist/Kit/DataEntry/Checkbox/index.d.ts +1 -1
  9. package/dist/Kit/DataEntry/Input/types.d.ts +1 -1
  10. package/dist/Kit/DataEntry/Radio/Group.d.ts +1 -1
  11. package/dist/Kit/DataEntry/Select/types.d.ts +1 -1
  12. package/dist/Kit/DataEntry/Slider/types.d.ts +1 -1
  13. package/dist/Kit/Layout/Space/index.d.ts +1 -1
  14. package/dist/Kit/Layout/Space/types.d.ts +1 -1
  15. package/dist/index.es.js +634 -605
  16. package/dist/index.js +415 -403
  17. package/dist/theme/aristid/components/DataDisplay/Collapse/index.d.ts +1 -0
  18. package/dist/theme/aristid/components/DataDisplay/Image/index.d.ts +14 -0
  19. package/dist/theme/aristid/components/DataDisplay/ItemList/index.d.ts +49 -0
  20. package/dist/theme/aristid/components/DataDisplay/Tabs/index.d.ts +1 -0
  21. package/dist/theme/aristid/components/DataDisplay/Tree/index.d.ts +1 -0
  22. package/dist/theme/types/components/DataDisplay/Collapse/index.d.ts +29 -0
  23. package/dist/theme/types/components/DataDisplay/Image/index.d.ts +16 -0
  24. package/dist/theme/types/components/DataDisplay/ItemList/index.d.ts +51 -0
  25. package/dist/theme/types/components/DataDisplay/Tabs/index.d.ts +54 -0
  26. package/dist/theme/types/components/DataDisplay/Tree/index.d.ts +61 -0
  27. package/dist/theme/types/index.d.ts +14 -4
  28. package/package.json +16 -12
  29. package/dist/Kit/DataDisplay/Image/theme.d.ts +0 -3
  30. package/dist/Kit/DataDisplay/Tabs/theme.d.ts +0 -2
@@ -1,5 +1,5 @@
1
1
  import {AvatarProps} from 'antd';
2
- import {GroupProps} from 'antd/es/avatar';
2
+ import {GroupProps} from 'antd/lib/avatar';
3
3
  import {KitHTMLAttributes} from '../../../types';
4
4
 
5
5
  type AntdAvatarTypesToOmit = '';
@@ -1,7 +1,7 @@
1
1
  import {KitHTMLAttributes} from '../../../types';
2
2
  import {KitTagProps} from '../../DataEntry/Tag/types';
3
3
  import {ReactNode} from 'react';
4
- import {CheckboxChangeEvent} from 'antd/es/checkbox';
4
+ import {CheckboxChangeEvent} from 'antd/lib/checkbox';
5
5
 
6
6
  export type cardColor = {
7
7
  label: string;
@@ -1,7 +1,7 @@
1
1
  import {CollapseProps} from 'antd';
2
2
  import {MouseEventHandler, ReactNode} from 'react';
3
3
  import {KitHTMLAttributes} from '../../../types';
4
- import {CheckboxChangeEvent} from 'antd/es/checkbox';
4
+ import {CheckboxChangeEvent} from 'antd/lib/checkbox';
5
5
  import {MenuInfo} from '../../';
6
6
 
7
7
  type AntdCollapseTypesToOmit = 'bordered' | 'expandIconPosition' | 'ghost';
@@ -7,8 +7,3 @@ export interface KitImageProps extends ImageProps, KitHTMLAttributes<HTMLDivElem
7
7
  bordered?: boolean;
8
8
  PreviewGroup?: ReactElement;
9
9
  }
10
-
11
- export interface themeProps {
12
- borderRadius: number;
13
- borderColor: string;
14
- }
@@ -1,6 +1,6 @@
1
1
  import {KitHTMLAttributes} from '../../../types';
2
2
  import {ReactNode} from 'react';
3
- import {CheckboxChangeEvent} from 'antd/es/checkbox';
3
+ import {CheckboxChangeEvent} from 'antd/lib/checkbox';
4
4
 
5
5
  export interface KitItemListProps extends KitHTMLAttributes<HTMLDivElement> {
6
6
  title?: string;
@@ -2,15 +2,3 @@ import type {TabsProps} from 'antd';
2
2
  import {KitHTMLAttributes} from '../../../types';
3
3
 
4
4
  export interface KitTabsProps extends TabsProps, KitHTMLAttributes<HTMLDivElement> {}
5
-
6
- export interface KitTabsThemeProps {
7
- extra: {
8
- borderRadius: number;
9
- borderColor: string;
10
- padding: string;
11
- height: number;
12
- color: string;
13
- verticalMargin: number;
14
- horizontalMargin: number;
15
- };
16
- }
@@ -1,6 +1,6 @@
1
1
  import type {BasicDataNode} from 'rc-tree';
2
2
  import {TreeProps} from 'antd';
3
- import {DataNode} from 'antd/es/tree';
3
+ import {DataNode} from 'antd/lib/tree';
4
4
  import {KitHTMLAttributes} from '../../../types';
5
5
 
6
6
  type AntdTreeTypesToOmit =
@@ -1,6 +1,6 @@
1
1
  import type * as React from 'react';
2
2
  import { KitCheckboxProps } from './types';
3
- import { CheckboxGroupProps } from 'antd/es/checkbox';
3
+ import { CheckboxGroupProps } from 'antd/lib/checkbox';
4
4
  export type { CheckboxChangeEvent } from 'antd/lib/checkbox/Checkbox';
5
5
  export type { CheckboxGroupProps, CheckboxOptionType } from 'antd/lib/checkbox/Group';
6
6
  type CompoundedComponent = React.ForwardRefExoticComponent<KitCheckboxProps> & {
@@ -1,5 +1,5 @@
1
1
  import {InputProps} from 'antd';
2
- import {PasswordProps, TextAreaProps} from 'antd/es/input';
2
+ import {PasswordProps, TextAreaProps} from 'antd/lib/input';
3
3
  import {KitHTMLAttributes} from '../../../types';
4
4
 
5
5
  type AntdInputTypesToOmit = 'styles' | 'type' | 'bordered' | 'size' | 'addonBefore' | 'addonAfter';
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- import type { RadioGroupProps } from 'antd/es/radio/interface';
2
+ import type { RadioGroupProps } from 'antd/lib/radio/interface';
3
3
  declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<RadioGroupProps & React.RefAttributes<HTMLDivElement>>>;
4
4
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import {SelectProps} from 'antd';
2
- import {BaseOptionType, DefaultOptionType} from 'antd/es/select';
2
+ import {BaseOptionType, DefaultOptionType} from 'antd/lib/select';
3
3
  import type {OptionProps} from 'rc-select/lib/Option';
4
4
  import {KitHTMLAttributes} from '../../../types';
5
5
  import {ReactNode} from 'react';
@@ -1,5 +1,5 @@
1
1
  import {SliderSingleProps} from 'antd';
2
- import {SliderMarks, SliderRangeProps} from 'antd/es/slider';
2
+ import {SliderMarks, SliderRangeProps} from 'antd/lib/slider';
3
3
 
4
4
  type AntdSliderTypesToOmit = 'vertical' | 'trackStyle' | 'railStyle' | 'handleStyle' | 'marks';
5
5
 
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import type { KitSpaceProps } from './types';
3
- import { SpaceCompactProps } from 'antd/es/space/Compact';
3
+ import { SpaceCompactProps } from 'antd/lib/space/Compact';
4
4
  type CompoundedComponent = React.FunctionComponent<KitSpaceProps> & {
5
5
  Compact: React.FunctionComponent<SpaceCompactProps>;
6
6
  };
@@ -1,5 +1,5 @@
1
1
  import type {SpaceProps} from 'antd';
2
- import type {SpaceSize} from 'antd/es/space';
2
+ import type {SpaceSize} from 'antd/lib/space';
3
3
  import {CSSProperties, ReactNode} from 'react';
4
4
  import {KitHTMLAttributes} from '../../../types';
5
5