linkmore-design 1.0.87 → 1.0.89
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/CHANGELOG.md +12 -0
- package/dist/AutoComplete/index.d.ts +1 -2
- package/dist/CardTable/hooks/usePagination.d.ts +1 -1
- package/dist/CardTable/utils.d.ts +1 -1
- package/dist/FullScreen/demos/basic.d.ts +2 -0
- package/dist/FullScreen/demos/useInModal.d.ts +2 -0
- package/dist/FullScreen/index.d.ts +10 -0
- package/dist/FullScreen/style/index.d.ts +1 -0
- package/dist/IconFont/index.d.ts +2 -1
- package/dist/LmEditTable/EditTable.d.ts +1 -0
- package/dist/LmFilter/components/CascaderFilter.d.ts +1 -1
- package/dist/LmFilter/components/CheckboxFilter.d.ts +1 -1
- package/dist/LmFilter/components/DateFilter.d.ts +1 -1
- package/dist/LmFilter/components/SelectFilter.d.ts +1 -1
- package/dist/LmSelect/useCheckboxOptions.d.ts +1 -1
- package/dist/_util/placements.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.umd.css +67982 -4472
- package/dist/index.umd.js +147751 -122041
- package/dist/index.umd.min.css +2 -2
- package/dist/index.umd.min.js +20 -20
- package/es/AutoComplete/index.d.ts +1 -2
- package/es/FullScreen/index.d.ts +10 -0
- package/es/FullScreen/index.js +26 -0
- package/es/FullScreen/style/index.css +521 -0
- package/es/FullScreen/style/index.d.ts +1 -0
- package/es/FullScreen/style/index.js +1 -0
- package/es/IconFont/index.d.ts +3 -0
- package/es/IconFont/index.js +3 -12
- package/es/LmEditTable/EditTable.d.ts +1 -0
- package/es/LmEditTable/EditTable.js +19 -10
- package/es/LmEditTable/style/index.css +1 -0
- package/es/LmSelect/useCheckboxOptions.d.ts +1 -1
- package/es/_util/placements.d.ts +1 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -1
- package/lib/AutoComplete/index.d.ts +1 -2
- package/lib/FullScreen/index.d.ts +10 -0
- package/lib/FullScreen/index.js +39 -0
- package/lib/FullScreen/style/index.css +521 -0
- package/lib/FullScreen/style/index.d.ts +1 -0
- package/lib/FullScreen/style/index.js +3 -0
- package/lib/IconFont/index.d.ts +3 -0
- package/lib/LmEditTable/EditTable.d.ts +1 -0
- package/lib/LmEditTable/EditTable.js +18 -10
- package/lib/LmEditTable/style/index.css +1 -0
- package/lib/LmSelect/useCheckboxOptions.d.ts +1 -1
- package/lib/_util/placements.d.ts +1 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +9 -1
- package/package.json +1 -1
package/CHANGELOG.md
ADDED
|
@@ -10,7 +10,6 @@ import * as React from 'react';
|
|
|
10
10
|
import type { BaseOptionType, DefaultOptionType, InternalSelectProps } from 'antd/es/select';
|
|
11
11
|
import type { InputStatus } from '../_util/statusUtils';
|
|
12
12
|
import { AutoComplete as AntdAutoComplete } from 'antd';
|
|
13
|
-
declare const Option: import("rc-select/lib/Option").OptionFC;
|
|
14
13
|
export interface DataSourceItemObject {
|
|
15
14
|
value: string;
|
|
16
15
|
text: string;
|
|
@@ -25,7 +24,7 @@ declare const RefAutoComplete: (<ValueType = any, OptionType extends BaseOptionT
|
|
|
25
24
|
} & {
|
|
26
25
|
ref?: React.Ref<BaseSelectRef>;
|
|
27
26
|
}) => React.ReactElement) & {
|
|
28
|
-
Option:
|
|
27
|
+
Option: import("rc-select/lib/Option").OptionFC;
|
|
29
28
|
AntdAutoComplete: typeof AntdAutoComplete;
|
|
30
29
|
};
|
|
31
30
|
export default RefAutoComplete;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IFullScreenProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
status?: boolean;
|
|
5
|
+
style?: React.CSSProperties;
|
|
6
|
+
children: any;
|
|
7
|
+
onClose: () => void;
|
|
8
|
+
}
|
|
9
|
+
declare const FullScreen: (props: IFullScreenProps) => any;
|
|
10
|
+
export default FullScreen;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import './index.less';
|
package/dist/IconFont/index.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -119,3 +119,5 @@ export { default as Descriptions } from './Descriptions';
|
|
|
119
119
|
export type { DescriptionsProps } from './Descriptions';
|
|
120
120
|
export { default as InputRange } from './InputRange';
|
|
121
121
|
export type { InputRangeProps } from './InputRange';
|
|
122
|
+
export { default as FullScreen } from './FullScreen';
|
|
123
|
+
export type { IFullScreenProps } from './FullScreen';
|