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.
- package/dist/Kit/DataDisplay/Avatar/types.d.ts +1 -1
- package/dist/Kit/DataDisplay/Card/types.d.ts +1 -1
- package/dist/Kit/DataDisplay/Collapse/types.d.ts +1 -1
- package/dist/Kit/DataDisplay/Image/types.d.ts +0 -5
- package/dist/Kit/DataDisplay/ItemList/types.d.ts +1 -1
- package/dist/Kit/DataDisplay/Tabs/types.d.ts +0 -12
- package/dist/Kit/DataDisplay/Tree/types.d.ts +1 -1
- package/dist/Kit/DataEntry/Checkbox/index.d.ts +1 -1
- package/dist/Kit/DataEntry/Input/types.d.ts +1 -1
- package/dist/Kit/DataEntry/Radio/Group.d.ts +1 -1
- package/dist/Kit/DataEntry/Select/types.d.ts +1 -1
- package/dist/Kit/DataEntry/Slider/types.d.ts +1 -1
- package/dist/Kit/Layout/Space/index.d.ts +1 -1
- package/dist/Kit/Layout/Space/types.d.ts +1 -1
- package/dist/index.es.js +634 -605
- package/dist/index.js +415 -403
- package/dist/theme/aristid/components/DataDisplay/Collapse/index.d.ts +1 -0
- package/dist/theme/aristid/components/DataDisplay/Image/index.d.ts +14 -0
- package/dist/theme/aristid/components/DataDisplay/ItemList/index.d.ts +49 -0
- package/dist/theme/aristid/components/DataDisplay/Tabs/index.d.ts +1 -0
- package/dist/theme/aristid/components/DataDisplay/Tree/index.d.ts +1 -0
- package/dist/theme/types/components/DataDisplay/Collapse/index.d.ts +29 -0
- package/dist/theme/types/components/DataDisplay/Image/index.d.ts +16 -0
- package/dist/theme/types/components/DataDisplay/ItemList/index.d.ts +51 -0
- package/dist/theme/types/components/DataDisplay/Tabs/index.d.ts +54 -0
- package/dist/theme/types/components/DataDisplay/Tree/index.d.ts +61 -0
- package/dist/theme/types/index.d.ts +14 -4
- package/package.json +16 -12
- package/dist/Kit/DataDisplay/Image/theme.d.ts +0 -3
- package/dist/Kit/DataDisplay/Tabs/theme.d.ts +0 -2
|
@@ -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/
|
|
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/
|
|
4
|
+
import {CheckboxChangeEvent} from 'antd/lib/checkbox';
|
|
5
5
|
import {MenuInfo} from '../../';
|
|
6
6
|
|
|
7
7
|
type AntdCollapseTypesToOmit = 'bordered' | 'expandIconPosition' | 'ghost';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {KitHTMLAttributes} from '../../../types';
|
|
2
2
|
import {ReactNode} from 'react';
|
|
3
|
-
import {CheckboxChangeEvent} from 'antd/
|
|
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 * as React from 'react';
|
|
2
2
|
import { KitCheckboxProps } from './types';
|
|
3
|
-
import { CheckboxGroupProps } from 'antd/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
3
|
+
import { SpaceCompactProps } from 'antd/lib/space/Compact';
|
|
4
4
|
type CompoundedComponent = React.FunctionComponent<KitSpaceProps> & {
|
|
5
5
|
Compact: React.FunctionComponent<SpaceCompactProps>;
|
|
6
6
|
};
|