@jiaozhiye/qm-design-react 1.7.5 → 1.7.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/lib/index.d.ts +2 -0
- package/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/scrollbar/style/index.less +16 -2
- package/lib/style/index.css +15 -2
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/hooks/useTableEffect.d.ts +1 -0
- package/lib/transition/index.d.ts +3 -0
- package/lib/transition/src/tools.d.ts +13 -0
- package/lib/transition/src/transition.d.ts +12 -0
- package/lib/transition/src/types.d.ts +25 -0
- package/lib/transition/src/useTransition.d.ts +2 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -54,6 +54,8 @@ export type { QmRangeTableHelperProps } from './range-table-helper';
|
|
|
54
54
|
export { default as QmRangeTableHelper } from './range-table-helper';
|
|
55
55
|
export type { QmPrintProps } from './print';
|
|
56
56
|
export { default as QmPrint } from './print';
|
|
57
|
+
export type { QmTransitionProps } from './transition';
|
|
58
|
+
export { default as QmTransition } from './transition';
|
|
57
59
|
export { default as pinyin } from './pinyin';
|
|
58
60
|
export { default as version } from './version';
|
|
59
61
|
export * from './antd';
|