@jiaozhiye/qm-design-react 1.4.0-beta.2 → 1.4.0-beta.21
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/_utils/types.d.ts +7 -1
- package/lib/_utils/util.d.ts +0 -1
- package/lib/anchor/src/anchor-nav.d.ts +1 -1
- package/lib/anchor/src/anchor.d.ts +3 -1
- package/lib/anchor/style/index.less +61 -21
- package/lib/antd/compact.less +11 -0
- package/lib/antd/index.less +11 -1
- package/lib/button/src/button.d.ts +6 -5
- package/lib/collapse/src/collapse.d.ts +1 -0
- package/lib/countup/style/index.less +22 -22
- package/lib/divider/style/index.less +54 -54
- package/lib/drawer/style/index.less +2 -2
- package/lib/form/src/context.d.ts +4 -1
- package/lib/form/src/form-cascader.d.ts +1 -1
- package/lib/form/src/form-checkbox-group.d.ts +1 -1
- package/lib/form/src/form-multiple-tree-table-helper.d.ts +2 -2
- package/lib/form/src/form-radio.d.ts +1 -1
- package/lib/form/src/form-select.d.ts +1 -1
- package/lib/form/src/form-tree-select.d.ts +1 -1
- package/lib/form/src/form.d.ts +14 -14
- package/lib/form/src/types.d.ts +25 -15
- package/lib/form/src/utils.d.ts +7 -3
- package/lib/form/style/index.less +19 -8
- package/lib/hooks/useDebounce.d.ts +3 -0
- package/lib/index.esm.js +2 -2
- package/lib/index.full.js +1 -1
- package/lib/index.js +2 -2
- package/lib/locale/index.js +5 -5
- package/lib/locale/lang/en.d.ts +4 -0
- package/lib/locale/lang/en.js +6 -2
- package/lib/locale/lang/zh-cn.d.ts +4 -0
- package/lib/locale/lang/zh-cn.js +6 -2
- package/lib/modal/style/index.less +2 -2
- package/lib/print/src/LodopFuncs.d.ts +1 -1
- package/lib/print/src/preview.d.ts +1 -1
- package/lib/print/src/print.d.ts +1 -1
- package/lib/print/style/index.less +175 -175
- package/lib/range-table-helper/style/index.less +5 -1
- package/lib/search-helper/style/index.less +1 -1
- package/lib/search-tree/src/search-tree.d.ts +6 -0
- package/lib/search-tree/style/index.less +14 -1
- package/lib/spin/style/index.less +3 -5
- package/lib/split/style/index.less +1 -1
- package/lib/style/compact.css +645 -685
- package/lib/style/compact.less +4 -3
- package/lib/style/compact.min.css +1 -1
- package/lib/style/index.css +109 -58
- package/lib/style/index.less +36 -36
- package/lib/style/index.min.css +1 -1
- package/lib/style/mixins/reset.less +1 -2
- package/lib/style/themes/compact.less +3 -280
- package/lib/style/themes/default.less +2 -1
- package/lib/table/src/context/index.d.ts +3 -3
- package/lib/table/src/edit/InputNumber.d.ts +2 -0
- package/lib/table/src/hooks/useImperativeMethod.d.ts +2 -1
- package/lib/table/src/hooks/useTableCore.d.ts +1 -0
- package/lib/table/src/hooks/useTableEffect.d.ts +3 -0
- package/lib/table/src/hooks/useTableLayout.d.ts +2 -2
- package/lib/table/src/table/props.d.ts +15 -9
- package/lib/table/src/table/types.d.ts +28 -10
- package/lib/table/src/utils/index.d.ts +3 -2
- package/lib/table/style/clipboard.less +1 -0
- package/lib/table/style/export.less +1 -1
- package/lib/table/style/fast-search.less +3 -2
- package/lib/table/style/size.less +1 -0
- package/lib/table/style/table.less +374 -374
- package/lib/tabs/src/tab-pane.d.ts +1 -0
- package/lib/tabs/src/tabs.d.ts +6 -1
- package/lib/tree-helper/style/index.less +1 -1
- package/lib/tree-table-helper/style/index.less +1 -1
- package/lib/upload-file/src/upload-file.d.ts +4 -9
- package/package.json +6 -7
- package/lib/form/src/form-item-layout.d.ts +0 -3
package/lib/style/compact.less
CHANGED
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
* @Author: 焦质晔
|
|
3
3
|
* @Date: 2022-11-26 21:14:37
|
|
4
4
|
* @Last Modified by: 焦质晔
|
|
5
|
-
* @Last Modified time:
|
|
5
|
+
* @Last Modified time: 2023-03-28 11:52:53
|
|
6
6
|
*/
|
|
7
|
-
@import '../antd/
|
|
8
|
-
@import './
|
|
7
|
+
@import '../antd/compact.less';
|
|
8
|
+
@import './themes/default.less';
|
|
9
9
|
@import './themes/compact.less';
|
|
10
|
+
@import './reset.less';
|