dcp-design-react 1.12.14 → 1.12.16
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/lib/anchor/style/index.less +101 -101
- package/lib/countup/style/index.less +22 -22
- package/lib/divider/style/index.less +68 -68
- package/lib/form/src/form.d.ts +1 -0
- package/lib/form/src/types.d.ts +3 -0
- package/lib/form/style/index.less +393 -392
- package/lib/index.d.ts +4 -0
- package/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/locale/index.js +5 -5
- package/lib/locale/lang/en.d.ts +5 -0
- package/lib/locale/lang/en.js +5 -0
- package/lib/locale/lang/zh-cn.d.ts +5 -0
- package/lib/locale/lang/zh-cn.js +5 -0
- package/lib/pivot-grid/style/grid-layout.less +507 -503
- package/lib/style/index.css +57 -16
- package/lib/style/index.less +1 -0
- package/lib/style/index.min.css +1 -1
- package/lib/style/mixins/reset.less +0 -6
- package/lib/table/src/context/index.d.ts +9 -2
- package/lib/table/src/hooks/useImperativeMethod.d.ts +1 -0
- package/lib/table/src/hooks/useTableCore.d.ts +10 -2
- package/lib/table/src/hooks/useTableState.d.ts +8 -2
- package/lib/table/src/table/props.d.ts +2 -0
- package/lib/table/src/table/types.d.ts +3 -1
- package/lib/table/style/header.less +303 -303
- package/lib/translate/index.d.ts +3 -0
- package/lib/translate/src/translate.d.ts +16 -0
- package/lib/translate/src/use-tooltip.d.ts +9 -0
- package/lib/translate/src/use-translation.d.ts +12 -0
- package/lib/translate/style/index.less +32 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -74,6 +74,8 @@ export type { ColorPickerProps as QmColorPickerProps } from './color-picker';
|
|
|
74
74
|
export { default as QmColorPicker } from './color-picker';
|
|
75
75
|
export type { PortalProps as QmPortalProps } from './portal';
|
|
76
76
|
export { default as QmPortal } from './portal';
|
|
77
|
+
export type { TranslateProps as QmTranslateProps } from './translate';
|
|
78
|
+
export { default as QmTranslate } from './translate';
|
|
77
79
|
export type { ConfigProviderProps as DcpConfigProviderProps } from './config-provider';
|
|
78
80
|
export { default as DcpConfigProvider } from './config-provider';
|
|
79
81
|
export type { ButtonProps as DcpButtonProps } from './button';
|
|
@@ -150,6 +152,8 @@ export type { ColorPickerProps as DcpColorPickerProps } from './color-picker';
|
|
|
150
152
|
export { default as DcpColorPicker } from './color-picker';
|
|
151
153
|
export type { PortalProps as DcpPortalProps } from './portal';
|
|
152
154
|
export { default as DcpPortal } from './portal';
|
|
155
|
+
export type { TranslateProps as DcpTranslateProps } from './translate';
|
|
156
|
+
export { default as DcpTranslate } from './translate';
|
|
153
157
|
export { default as pinyin } from './pinyin';
|
|
154
158
|
export { default as version } from './version';
|
|
155
159
|
export * from './antd';
|