@kdcloudjs/table 1.0.1 → 1.0.4

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.
Files changed (207) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +34 -33
  3. package/dist/@kdcloudjs/table.css +1 -1
  4. package/dist/@kdcloudjs/table.css.map +1 -1
  5. package/dist/@kdcloudjs/table.js +6555 -3388
  6. package/dist/@kdcloudjs/table.js.map +1 -1
  7. package/dist/@kdcloudjs/table.min.css +1 -1
  8. package/dist/@kdcloudjs/table.min.js +32 -24
  9. package/dist/@kdcloudjs/table.min.js.map +1 -1
  10. package/es/_utils/hooks.js +1 -2
  11. package/es/_utils/numberUtil.js +3 -4
  12. package/es/locale/locale.js +1 -2
  13. package/es/table/base/calculations.js +3 -4
  14. package/es/table/base/empty.js +2 -2
  15. package/es/table/base/header.d.ts +6 -2
  16. package/es/table/base/header.js +41 -22
  17. package/es/table/base/helpers/SpanManager.js +1 -1
  18. package/es/table/base/helpers/TableDOMUtils.d.ts +3 -0
  19. package/es/table/base/helpers/TableDOMUtils.js +23 -5
  20. package/es/table/base/helpers/getRichVisibleRectsStream.d.ts +23 -0
  21. package/es/table/base/helpers/getRichVisibleRectsStream.js +216 -0
  22. package/es/table/base/html-table.d.ts +3 -1
  23. package/es/table/base/html-table.js +43 -26
  24. package/es/table/base/interfaces.d.ts +1 -0
  25. package/es/table/base/renderTemplates.d.ts +1 -0
  26. package/es/table/base/renderTemplates.js +344 -0
  27. package/es/table/base/styles.d.ts +24 -0
  28. package/es/table/base/styles.js +31 -9
  29. package/es/table/base/table.d.ts +12 -4
  30. package/es/table/base/table.js +183 -136
  31. package/es/table/base/utils.d.ts +6 -3
  32. package/es/table/base/utils.js +27 -6
  33. package/es/table/common-views.js +3 -3
  34. package/es/table/pipeline/features/autoFill.js +7 -1
  35. package/es/table/pipeline/features/columnDrag.js +168 -59
  36. package/es/table/pipeline/features/columnFilter.js +7 -9
  37. package/es/table/pipeline/features/columnResizeWidth.d.ts +3 -0
  38. package/es/table/pipeline/features/columnResizeWidth.js +11 -4
  39. package/es/table/pipeline/features/contextMenu.js +78 -31
  40. package/es/table/pipeline/features/filter/Filter.js +74 -37
  41. package/es/table/pipeline/features/index.d.ts +1 -0
  42. package/es/table/pipeline/features/index.js +2 -1
  43. package/es/table/pipeline/features/multiSelect.js +85 -79
  44. package/es/table/pipeline/features/rangeSelection.d.ts +10 -0
  45. package/es/table/pipeline/features/rangeSelection.js +231 -0
  46. package/es/table/pipeline/features/rowDetail.js +39 -16
  47. package/es/table/pipeline/features/rowGrouping.js +2 -1
  48. package/es/table/pipeline/features/singleSelect.js +4 -1
  49. package/es/table/pipeline/features/sort.js +2 -3
  50. package/es/table/pipeline/features/treeMode.js +4 -4
  51. package/es/table/pipeline/pipeline.d.ts +8 -0
  52. package/es/table/pipeline/pipeline.js +49 -5
  53. package/es/table/pivot/cross-table/buildCrossTable.js +1 -2
  54. package/es/table/pivot/cross-tree-table/buildCrossTreeTable.js +1 -2
  55. package/es/table/pivot/pivot-utils/builders.js +1 -2
  56. package/es/table/pivot/pivot-utils/convert-utils.js +5 -4
  57. package/es/table/transforms/autoWidth.js +1 -2
  58. package/es/table/transforms/sort.js +1 -2
  59. package/es/table/transforms/treeMode.js +1 -2
  60. package/es/table/utils/applyTransforms.js +1 -3
  61. package/es/table/utils/browserType.d.ts +6 -0
  62. package/es/table/utils/browserType.js +6 -0
  63. package/es/table/utils/buildTree.js +4 -5
  64. package/es/table/utils/collectNodes.js +1 -2
  65. package/es/table/utils/exportTableAsExcel.js +1 -2
  66. package/es/table/utils/getTreeDepth.js +1 -2
  67. package/es/table/utils/groupBy.js +1 -2
  68. package/es/table/utils/index.d.ts +1 -0
  69. package/es/table/utils/index.js +2 -1
  70. package/es/table/utils/layeredSort.js +5 -2
  71. package/es/table/utils/makeRecursiveMapper.js +4 -5
  72. package/es/table/utils/others.d.ts +1 -1
  73. package/es/table/utils/others.js +20 -14
  74. package/es/table/utils/traverseColumn.js +1 -2
  75. package/es/table/utils/tree-data-helpers/StrictTreeDataHelper.js +4 -5
  76. package/es/table/utils/tree-data-helpers/TreeDataHelper.js +4 -5
  77. package/lib/_utils/formatUtil.js +1 -1
  78. package/lib/_utils/hooks.js +2 -4
  79. package/lib/_utils/numberUtil.js +7 -9
  80. package/lib/_utils/usePopper.js +9 -1
  81. package/lib/config-provider/configProvider.js +9 -1
  82. package/lib/config-provider/index.js +5 -5
  83. package/lib/locale/index.js +14 -6
  84. package/lib/locale/locale.js +2 -4
  85. package/lib/table/base/calculations.js +4 -6
  86. package/lib/table/base/empty.js +11 -3
  87. package/lib/table/base/header.d.ts +6 -2
  88. package/lib/table/base/header.js +39 -19
  89. package/lib/table/base/helpers/SpanManager.js +1 -1
  90. package/lib/table/base/helpers/TableDOMUtils.d.ts +3 -0
  91. package/lib/table/base/helpers/TableDOMUtils.js +21 -5
  92. package/lib/table/base/helpers/getRichVisibleRectsStream.d.ts +23 -0
  93. package/lib/table/base/helpers/getRichVisibleRectsStream.js +246 -0
  94. package/lib/table/base/html-table.d.ts +3 -1
  95. package/lib/table/base/html-table.js +44 -26
  96. package/lib/table/base/index.js +4 -4
  97. package/lib/table/base/interfaces.d.ts +1 -0
  98. package/lib/table/base/renderTemplates.d.ts +1 -0
  99. package/lib/table/base/renderTemplates.js +370 -0
  100. package/lib/table/base/styles.d.ts +24 -0
  101. package/lib/table/base/styles.js +42 -13
  102. package/lib/table/base/table.d.ts +12 -4
  103. package/lib/table/base/table.js +191 -137
  104. package/lib/table/base/utils.d.ts +6 -3
  105. package/lib/table/base/utils.js +47 -10
  106. package/lib/table/common-views.js +3 -3
  107. package/lib/table/pipeline/features/autoFill.js +9 -2
  108. package/lib/table/pipeline/features/columnDrag.js +168 -59
  109. package/lib/table/pipeline/features/columnFilter.js +6 -9
  110. package/lib/table/pipeline/features/columnResizeWidth.d.ts +3 -0
  111. package/lib/table/pipeline/features/columnResizeWidth.js +21 -5
  112. package/lib/table/pipeline/features/contextMenu.js +89 -32
  113. package/lib/table/pipeline/features/filter/DefaultFilterContent.js +10 -2
  114. package/lib/table/pipeline/features/filter/Filter.js +88 -37
  115. package/lib/table/pipeline/features/filter/FilterPanel.js +10 -2
  116. package/lib/table/pipeline/features/filter/index.js +4 -4
  117. package/lib/table/pipeline/features/index.d.ts +1 -0
  118. package/lib/table/pipeline/features/index.js +37 -27
  119. package/lib/table/pipeline/features/multiSelect.js +81 -75
  120. package/lib/table/pipeline/features/rangeSelection.d.ts +10 -0
  121. package/lib/table/pipeline/features/rangeSelection.js +256 -0
  122. package/lib/table/pipeline/features/rowDetail.js +42 -16
  123. package/lib/table/pipeline/features/rowGrouping.js +3 -1
  124. package/lib/table/pipeline/features/singleSelect.js +4 -1
  125. package/lib/table/pipeline/features/sort.js +2 -4
  126. package/lib/table/pipeline/features/treeMode.js +6 -6
  127. package/lib/table/pipeline/index.js +11 -3
  128. package/lib/table/pipeline/pipeline.d.ts +8 -0
  129. package/lib/table/pipeline/pipeline.js +50 -7
  130. package/lib/table/pivot/cross-table/buildCrossTable.js +1 -3
  131. package/lib/table/pivot/cross-table/index.js +4 -4
  132. package/lib/table/pivot/cross-tree-table/buildCrossTreeTable.js +1 -3
  133. package/lib/table/pivot/pivot-utils/builders.js +2 -4
  134. package/lib/table/pivot/pivot-utils/convert-utils.js +7 -5
  135. package/lib/table/pivot/pivot-utils/index.js +4 -4
  136. package/lib/table/transforms/autoWidth.js +10 -4
  137. package/lib/table/transforms/columnResize.js +10 -2
  138. package/lib/table/transforms/index.js +32 -32
  139. package/lib/table/transforms/sort.js +10 -4
  140. package/lib/table/transforms/treeMode.js +9 -3
  141. package/lib/table/utils/applyTransforms.js +1 -5
  142. package/lib/table/utils/browserType.d.ts +6 -0
  143. package/lib/table/utils/browserType.js +13 -0
  144. package/lib/table/utils/buildTree.js +1 -3
  145. package/lib/table/utils/collectNodes.js +1 -3
  146. package/lib/table/utils/copyToClipboard.js +1 -1
  147. package/lib/table/utils/element.js +3 -3
  148. package/lib/table/utils/exportTableAsExcel.js +1 -3
  149. package/lib/table/utils/getTreeDepth.js +1 -3
  150. package/lib/table/utils/groupBy.js +1 -3
  151. package/lib/table/utils/index.d.ts +1 -0
  152. package/lib/table/utils/index.js +57 -49
  153. package/lib/table/utils/layeredSort.js +6 -2
  154. package/lib/table/utils/makeRecursiveMapper.js +1 -3
  155. package/lib/table/utils/others.d.ts +1 -1
  156. package/lib/table/utils/others.js +23 -18
  157. package/lib/table/utils/traverseColumn.js +1 -3
  158. package/lib/table/utils/tree-data-helpers/StrictTreeDataHelper.js +5 -7
  159. package/lib/table/utils/tree-data-helpers/TreeDataHelper.js +5 -7
  160. package/package.json +6 -2
  161. package/dist/kd-table.css +0 -422
  162. package/dist/kd-table.css.map +0 -1
  163. package/dist/kd-table.js +0 -38578
  164. package/dist/kd-table.js.map +0 -1
  165. package/dist/kd-table.min.css +0 -9
  166. package/dist/kd-table.min.js +0 -208
  167. package/dist/kd-table.min.js.map +0 -1
  168. package/es/table/base/helpers/__test__/visible-part.test.d.ts +0 -1
  169. package/es/table/base/helpers/__test__/visible-part.test.js +0 -28
  170. package/es/table/base/helpers/visible-part.d.ts +0 -23
  171. package/es/table/base/helpers/visible-part.js +0 -58
  172. package/es/table/pipeline/features/__test__/multiSelect.test.d.ts +0 -1
  173. package/es/table/pipeline/features/__test__/multiSelect.test.js +0 -152
  174. package/es/table/pipeline/features/__test__/rowDetail.test.d.ts +0 -1
  175. package/es/table/pipeline/features/__test__/rowDetail.test.js +0 -223
  176. package/es/table/pipeline/features/__test__/rowGrouping.test.d.ts +0 -1
  177. package/es/table/pipeline/features/__test__/rowGrouping.test.js +0 -120
  178. package/es/table/pipeline/features/__test__/singleSelect.test.d.ts +0 -1
  179. package/es/table/pipeline/features/__test__/singleSelect.test.js +0 -191
  180. package/es/table/pipeline/features/__test__/sort.test.d.ts +0 -1
  181. package/es/table/pipeline/features/__test__/sort.test.js +0 -213
  182. package/es/table/pipeline/features/__test__/tips.test.d.ts +0 -1
  183. package/es/table/pipeline/features/__test__/tips.test.js +0 -123
  184. package/es/table/pipeline/features/__test__/treeMode.test.d.ts +0 -1
  185. package/es/table/pipeline/features/__test__/treeMode.test.js +0 -202
  186. package/es/table/pipeline/features/filter/__test__/Filter.test.d.ts +0 -1
  187. package/es/table/pipeline/features/filter/__test__/Filter.test.js +0 -29
  188. package/lib/table/base/helpers/__test__/visible-part.test.d.ts +0 -1
  189. package/lib/table/base/helpers/__test__/visible-part.test.js +0 -31
  190. package/lib/table/base/helpers/visible-part.d.ts +0 -23
  191. package/lib/table/base/helpers/visible-part.js +0 -72
  192. package/lib/table/pipeline/features/__test__/multiSelect.test.d.ts +0 -1
  193. package/lib/table/pipeline/features/__test__/multiSelect.test.js +0 -163
  194. package/lib/table/pipeline/features/__test__/rowDetail.test.d.ts +0 -1
  195. package/lib/table/pipeline/features/__test__/rowDetail.test.js +0 -230
  196. package/lib/table/pipeline/features/__test__/rowGrouping.test.d.ts +0 -1
  197. package/lib/table/pipeline/features/__test__/rowGrouping.test.js +0 -129
  198. package/lib/table/pipeline/features/__test__/singleSelect.test.d.ts +0 -1
  199. package/lib/table/pipeline/features/__test__/singleSelect.test.js +0 -201
  200. package/lib/table/pipeline/features/__test__/sort.test.d.ts +0 -1
  201. package/lib/table/pipeline/features/__test__/sort.test.js +0 -218
  202. package/lib/table/pipeline/features/__test__/tips.test.d.ts +0 -1
  203. package/lib/table/pipeline/features/__test__/tips.test.js +0 -133
  204. package/lib/table/pipeline/features/__test__/treeMode.test.d.ts +0 -1
  205. package/lib/table/pipeline/features/__test__/treeMode.test.js +0 -206
  206. package/lib/table/pipeline/features/filter/__test__/Filter.test.d.ts +0 -1
  207. package/lib/table/pipeline/features/filter/__test__/Filter.test.js +0 -36
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright(C) 2021 Kingdee International Software Group (HK) Ltd. All rights reserved.
1
+ Copyright(C) 2022 Kingdee International Software Group (HK) Ltd. All rights reserved.
2
2
 
3
3
  kdcloudjs/table is licensed under the Apache License Version 2.0, except for the third-party components listed below.
4
4
 
package/README.md CHANGED
@@ -3,7 +3,7 @@ order: 0
3
3
  title: 介绍
4
4
  ---
5
5
  # Table of KDesign
6
- 基于金蝶 KDesign 规范实现的 React 表格组件。
6
+ 基于金蝶 KDesign 规范实现的 React 表格组件。
7
7
 
8
8
  ## 官网介绍
9
9
  [https://react.kingdee.design/components/table](https://react.kingdee.design/components/table)
@@ -19,10 +19,40 @@ $ npm install @kdcloudjs/kdesign --save
19
19
  $ yarn add @kdcloudjs/kdesign
20
20
  ```
21
21
 
22
+
23
+ ### 示例
24
+
25
+ ```js
26
+ import React, { useState } from 'react'
27
+ import reactDom from 'react-dom'
28
+ import { Table } from '@kdcloudjs/kdesign'
29
+ import '@kdcloudjs/kdesign/dist/kdesign.css'
30
+
31
+
32
+ const dataSource = [
33
+ { prov: '湖北省', confirm: 54406, cure: 4793, dead: 1457, t: '2020-02-15 19:52:02' },
34
+ { prov: '广东省', confirm: 1294, cure: 409, dead: 2, t: '2020-02-15 19:52:02' },
35
+ { prov: '河南省', confirm: 1212, cure: 390, dead: 13, t: '2020-02-15 19:52:02' },
36
+ { prov: '浙江省', confirm: 1162, cure: 428, dead: 0, t: '2020-02-15 19:52:02' },
37
+ { prov: '湖南省', confirm: 1001, cure: 417, dead: 2, t: '2020-02-15 19:52:02' }
38
+ ]
39
+
40
+ const columns = [
41
+ { code: 'prov', name: '省份', width: 150, features: { sortable: true, filterable: true } },
42
+ { code: 'confirm', name: '确诊', width: 100, align: 'right', features: { sortable: true, filterable: true } },
43
+ { code: 'cure', name: '治愈', width: 100, align: 'right', features: { sortable: true, filterable: true } },
44
+ { code: 'dead', name: '死亡', width: 100, align: 'right', features: { sortable: true, filterable: true } },
45
+ { code: 't', name: '更新时间', width: 180, features: { sortable: true, filterable: true } }
46
+ ]
47
+
48
+ reactDom.render((
49
+ <Table dataSource={dataSource} columns={columns} />
50
+ ), document.getElementById('root'))
51
+ ```
52
+
22
53
  ### 浏览器引入
23
54
 
24
55
  在浏览器中使用 `script` 和 `link` 标签直接引入文件,并使用全局变量 `kdesign`。
25
- 目前尚未将文件上传至 `cdn` 需要手动将 `dist` 目录下的 `kdesign.min.js` 和 `kdesign.min.css` 文件拷贝至项目。
26
56
 
27
57
  使用:
28
58
  ```html
@@ -35,8 +65,8 @@ $ yarn add @kdcloudjs/kdesign
35
65
  <script src="https://cdn.staticfile.org/react-dom/16.14.0/umd/react-dom.development.js"></script>
36
66
  <script src="https://cdn.staticfile.org/babel-standalone/6.26.0/babel.min.js"></script>
37
67
 
38
- <script src="kdesign.min.js 目录地址"></script>
39
- <link rel="stylesheet" href="kdesign.min.css 目录地址">
68
+ <script src="https://unpkg.com/@kdcloudjs/kdesign@latest/dist/kdesign.min.js"></script>
69
+ <link rel="stylesheet" href="https://unpkg.com/@kdcloudjs/kdesign@latest/dist/kdesign.min.css">
40
70
  </head>
41
71
  <body>
42
72
  <div id="root"></div>
@@ -69,35 +99,6 @@ document.getElementById('root')
69
99
  </html>
70
100
  ```
71
101
 
72
- ## 示例
73
-
74
- ```js
75
- import React, { useState } from 'react'
76
- import reactDom from 'react-dom'
77
- import { Table } from '@kdcloudjs/kdesign'
78
- import '@kdcloudjs/kdesign/dist/kdesign.css'
79
-
80
-
81
- const dataSource = [
82
- { prov: '湖北省', confirm: 54406, cure: 4793, dead: 1457, t: '2020-02-15 19:52:02' },
83
- { prov: '广东省', confirm: 1294, cure: 409, dead: 2, t: '2020-02-15 19:52:02' },
84
- { prov: '河南省', confirm: 1212, cure: 390, dead: 13, t: '2020-02-15 19:52:02' },
85
- { prov: '浙江省', confirm: 1162, cure: 428, dead: 0, t: '2020-02-15 19:52:02' },
86
- { prov: '湖南省', confirm: 1001, cure: 417, dead: 2, t: '2020-02-15 19:52:02' }
87
- ]
88
-
89
- const columns = [
90
- { code: 'prov', name: '省份', width: 150, features: { sortable: true, filterable: true } },
91
- { code: 'confirm', name: '确诊', width: 100, align: 'right', features: { sortable: true, filterable: true } },
92
- { code: 'cure', name: '治愈', width: 100, align: 'right', features: { sortable: true, filterable: true } },
93
- { code: 'dead', name: '死亡', width: 100, align: 'right', features: { sortable: true, filterable: true } },
94
- { code: 't', name: '更新时间', width: 180, features: { sortable: true, filterable: true } }
95
- ]
96
-
97
- reactDom.render((
98
- <Table dataSource={dataSource} columns={columns} />
99
- ), document.getElementById('root'))
100
- ```
101
102
  ## 兼容环境
102
103
  | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="IE / Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>IE / Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari-ios/safari-ios_48x48.png" alt="iOS Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>iOS Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/samsung-internet/samsung-internet_48x48.png" alt="Samsung" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Samsung | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/opera/opera_48x48.png" alt="Opera" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Opera |
103
104
  | --------- | --------- | --------- | --------- | --------- | --------- | --------- |
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/table v1.0.1
3
+ * @kdcloudjs/table v1.0.4
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -1 +1 @@
1
- {"version":3,"sources":["webpack://kdui/components/style/index.less","webpack://kdui/./components/style/core/motion/other.less","webpack://kdui/./components/style/core/motion/slide.less","webpack://kdui/./components/style/core/reset.less"],"names":[],"mappings":";;;;;;;;AAAA,yCAAyC;AACzC,uCAAuC;AACvC,wCAAwC;AACxC,sCAAsC;AACtC,0CAA0C;AAC1C;;CAEC;AACD,wCAAwC;AACxC,8CAA8C;AAC9C,4CAA4C;AAC5C,0CAA0C;AAC1C,wCAAwC;AACxC,4CAA4C;AAC5C,0CAA0C;AAC1C,0CAA0C;AAC1C,wCAAwC;AACxC,yCAAyC;AACzC,uCAAuC;AACvC,+CAA+C;AAC/C,6CAA6C;AAC7C,4CAA4C;AAC5C,0CAA0C;AAC1C,yCAAyC;AACzC,uCAAuC;AACvC,wCAAwC;AACxC,sCAAsC;AACtC,8CAA8C;AAC9C,4CAA4C;AAC5C,2CAA2C;AAC3C,yCAAyC;AACzC,4CAA4C;AAC5C,0CAA0C;AAC1C,8CAA8C;AAC9C,4CAA4C;AAC5C,4CAA4C;AAC5C,0CAA0C;AAC1C,wCAAwC;AACxC,sCAAsC;AACtC,0CAA0C;AAC1C,wCAAwC;AACxC,wCAAwC;AACxC,sCAAsC;AACtC,4CAA4C;AAC5C,0CAA0C;AAC1C,2CAA2C;AAC3C,yCAAyC;AACzC,4CAA4C;AAC5C,0CAA0C;AAC1C,yCAAyC;AACzC,uCAAuC;AACvC,8CAA8C;AAC9C,4CAA4C;AAC5C,yCAAyC;AACzC,uCAAuC;AACvC,yCAAyC;AACzC,uCAAuC;AACvC,sCAAsC;AACtC,oCAAoC;AC1DpC;EACE;IACE;YAAA;ED4DF;AACF;AC/DA;EACE;IACE;YAAA;ED4DF;AACF;ACzDA;EACE;IACI;YAAA;ED2DJ;AACF;AC9DA;EACE;IACI;YAAA;ED2DJ;AACF;ACxDA;EACE;IACI;ED0DJ;AACF;AC7DA;EACE;IACI;ED0DJ;AACF;ACvDA;EACE;IACE;YAAA;IACA;EDyDF;ECvDA;IACE;YAAA;IACA;EDyDF;AACF;ACjEA;EACE;IACE;YAAA;IACA;EDyDF;ECvDA;IACE;YAAA;IACA;EDyDF;AACF;AEnFA;EACE;IACE;YAAA;IACA;YAAA;IACA;EFqFF;EEnFA;IACE;YAAA;IACA;YAAA;IACA;EFqFF;AACF;AE/FA;EACE;IACE;YAAA;IACA;YAAA;IACA;EFqFF;EEnFA;IACE;YAAA;IACA;YAAA;IACA;EFqFF;AACF;AElFA;EACE;IACE;YAAA;IACA;YAAA;IACA;EFoFF;EElFA;IACE;YAAA;IACA;YAAA;IACA;EFoFF;AACF;AE9FA;EACE;IACE;YAAA;IACA;YAAA;IACA;EFoFF;EElFA;IACE;YAAA;IACA;YAAA;IACA;EFoFF;AACF;AEjFA;EACE;IACE;YAAA;IACA;EFmFF;EEjFA;IACE;YAAA;EFmFF;EEjFA;IACE;YAAA;IACA;YAAA;IACA;EFmFF;AACF;AE/FA;EACE;IACE;YAAA;IACA;EFmFF;EEjFA;IACE;YAAA;EFmFF;EEjFA;IACE;YAAA;IACA;YAAA;IACA;EFmFF;AACF;AEhFA;EACE;IACE;YAAA;IACA;YAAA;IACA;EFkFF;EEhFA;IACE;YAAA;IACA;YAAA;IACA;EFkFF;AACF;AE5FA;EACE;IACE;YAAA;IACA;YAAA;IACA;EFkFF;EEhFA;IACE;YAAA;IACA;YAAA;IACA;EFkFF;AACF;AACA,2EAA2E;AAC3E,0CAA0C;AAC1C;+EAC+E;AAC/E;+EAC+E;AAC/E;;EAEE;AGlID;;EACA;EACA;EACA;EACA;AHqID;AGjIA;;;;;;EACC;AHwID;AGrIA;EACC;UAAA;AHuID;AACA;;EAEE;AGnIF;EACE;AHqIF;AACA;+EAC+E;AAC/E;EACE;AGhIF;EACE;EACA;AHkIF;AACA;;;EAGE;AG/HF;;;;;EAKE;EHiIA,MAAM;AACR;AACA;;;EAGE;AG9HF;;EHiIE,MAAM;EG/HN;AHiIF;AACA;;;EAGE;AG7HF;;EHgIE,MAAM;EG9HN;AHgIF;AACA;;EAEE;AG5HF;;;;EAIE;AH8HF;AACA;;EAEE;AG1HF;;;;EAIE;EACA;AH4HF;AACA;;EAEE;AGxHF;;;;EAIE;AH0HF;AACA;;EAEE;AGtHF;EACE;AHwHF;AACA;;EAEE;AGpHF;EACE;AHsHF;AACA;;;EAGE;AGlHF;;EAEE;UAAA;EHoHA,MAAM;EGnHN;EHqHA,MAAM;AACR;AACA;;EAEE;AGlHF;;EAEE;AHoHF;AACA;;;EAGE;AGhHF;EACE;EHkHA,MAAM;EGjHN;EHmHA,MAAM;AACR;AACA;;EAEE;AGhHF;EACE;AHkHF;AACA;+EAC+E;AAC/E;;EAEE;AG5GF;EACE;AH8GF;AACA;;EAEE;AG1GF;EACE;AH4GF","file":"@kdcloudjs/table.css","sourcesContent":["/* ----------- color ——————---- start */\n/* ----------- color ——————---- end */\n/* ----------- font ——————---- start */\n/* ----------- font ——————---- end */\n/* ----------- zIndex ——————---- start */\n/*\n 普通组件内部自身层级应设置在0-100间\n*/\n/* ----------- zIndex ——————---- end */\n/* ----------- transition ——————---- start */\n/* ----------- transition ——————---- end */\n/* ----------- Button ——————---- start */\n/* ----------- Button ——————---- end */\n/* ----------- Collapse ——————---- start */\n/* ----------- Collapse ——————---- end */\n/* ----------- Switch ——————---- start */\n/* ----------- Switch ——————---- end */\n/* ----------- Input ——————---- start */\n/* ----------- Input ——————---- end */\n/* ----------- InputNumber ——————---- start */\n/* ----------- InputNumber ——————---- end */\n/* ----------- checkbox ——————---- start */\n/* ----------- checkbox ——————---- end */\n/* ----------- Radio ——————---- start */\n/* ----------- Radio ——————---- end */\n/* ----------- icon ——————---- start */\n/* ----------- icon ——————---- end */\n/* ----------- Popconfirm ——————---- start */\n/* ----------- Popconfirm ——————---- end */\n/* ----------- Popover ——————---- start */\n/* ----------- Popover ——————---- end */\n/* ----------- Progress ——————---- start */\n/* ----------- Progress ——————---- end */\n/* ----------- Pagination ——————---- start */\n/* ----------- Pagination ——————---- end */\n/* ----------- Timeline ——————---- start */\n/* ----------- Timeline ——————---- end */\n/* ----------- Tabs ——————---- start */\n/* ----------- Tabs ——————---- end */\n/* ----------- Select ——————---- start */\n/* ----------- Select ——————---- end */\n/* ----------- Rate ——————---- start */\n/* ----------- Rate ——————---- end */\n/* ----------- Dropdown ——————---- start */\n/* ----------- Dropdown ——————---- end */\n/* ----------- Tooltip ——————---- start */\n/* ----------- Tooltip ——————---- end */\n/* ----------- Transfer ——————---- start */\n/* ----------- Transfer ——————---- end */\n/* ----------- Alert ——————---- start */\n/* ----------- Alert ——————---- end */\n/* ----------- Split-Panel ——————---- start */\n/* ----------- Split-Panel ——————---- end */\n/* ----------- Modal ——————---- start */\n/* ----------- Modal ——————---- end */\n/* ----------- Steps ——————---- start */\n/* ----------- Steps ——————---- end */\n/* ----------- Tag ——————---- start */\n/* ----------- Tag ——————---- end */\n@keyframes loadingcircle {\n 100% {\n transform: rotate(360deg);\n }\n}\n@keyframes waveEffect {\n 100% {\n box-shadow: 0 0 0 6px #5582f3;\n }\n}\n@keyframes fadeEffect {\n 100% {\n opacity: 0;\n }\n}\n@keyframes kdRadioEffect {\n 0% {\n transform: translateY(-50%) scale(0.5);\n opacity: 0;\n }\n 100% {\n transform: translateY(-50%) scale(1);\n opacity: 1;\n }\n}\n@keyframes kdSlideDownIn {\n 0% {\n transform: scaleY(0.8);\n transform-origin: 50% 0%;\n opacity: 0;\n }\n 100% {\n transform: scaleY(1);\n transform-origin: 50% 0%;\n opacity: 1;\n }\n}\n@keyframes kdSlideDownOut {\n 0% {\n transform: scaleY(1);\n transform-origin: 50% 0%;\n opacity: 1;\n }\n 100% {\n transform: scaleY(0.9);\n transform-origin: 50% 0%;\n opacity: 0;\n }\n}\n@keyframes kdSlideUpIn {\n 0% {\n transform-origin: 50% 100%;\n opacity: 0;\n }\n 5% {\n transform: scaleY(0.8);\n }\n 100% {\n transform: scaleY(1);\n transform-origin: 50% 100%;\n opacity: 1;\n }\n}\n@keyframes kdSlideUpOut {\n 0% {\n transform: scaleY(1);\n transform-origin: 50% 100%;\n opacity: 1;\n }\n 100% {\n transform: scaleY(0.9);\n transform-origin: 50% 100%;\n opacity: 0;\n }\n}\n/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n/* normalize.css 和现有产品的结合版本, 根据兼容性进行了调整 */\n/* Document\n ========================================================================== */\n/* Sections\n ========================================================================== */\n/**\n * Remove the margin in all browsers.\n */\nhtml,\nbody {\n height: 100%;\n padding: 0;\n margin: 0;\n font-size: 12px;\n}\nhtml,\nbody,\ninput,\ntextarea,\nselect,\nbutton {\n font-family: \"Microsoft YaHei\", \"PingFangSC-Regular\", \"Helvetica Neue\", Helvetica, Arial, \"Hiragino Sans GB\", \"WenQuanYi Micro Hei\", sans-serif;\n}\nbody {\n box-sizing: border-box;\n}\n/**\n * Remove the gray background on active links in IE 10.\n */\na {\n background-color: transparent;\n}\n/* Forms\n ========================================================================== */\n/**\n */\ninput {\n padding: 0;\n margin: 0;\n}\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n margin: 0;\n /* 2 */\n}\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\nbutton,\ninput {\n /* 1 */\n overflow: visible;\n}\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\nbutton,\nselect {\n /* 1 */\n text-transform: none;\n}\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n/**\n * Remove the inner border and padding in Firefox.\n */\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n/**\n * Restore the focus styles unset by the previous rule.\n */\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\nprogress {\n vertical-align: baseline;\n}\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\ntextarea {\n overflow: auto;\n}\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box;\n /* 1 */\n padding: 0;\n /* 2 */\n}\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n[type=\"search\"] {\n -webkit-appearance: textfield;\n /* 1 */\n outline-offset: -2px;\n /* 2 */\n}\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n/* Misc\n ========================================================================== */\n/**\n * Add the correct display in IE 10+.\n */\ntemplate {\n display: none;\n}\n/**\n * Add the correct display in IE 10.\n */\n[hidden] {\n display: none;\n}\n","@keyframes loadingcircle {\n 100% {\n transform: rotate(360deg);\n }\n}\n\n@keyframes waveEffect {\n 100% {\n box-shadow: 0 0 0 6px @theme-color;\n }\n}\n\n@keyframes fadeEffect {\n 100% {\n opacity: 0;\n }\n}\n\n@keyframes kdRadioEffect {\n 0% {\n transform: translateY(-50%) scale(0.5);\n opacity: 0;\n }\n 100% {\n transform: translateY(-50%) scale(1);\n opacity: 1;\n }\n}","@keyframes kdSlideDownIn {\n 0% {\n transform: scaleY(0.8);\n transform-origin: 50% 0%;\n opacity: 0;\n }\n 100% {\n transform: scaleY(1);\n transform-origin: 50% 0%;\n opacity: 1;\n }\n}\n\n@keyframes kdSlideDownOut {\n 0% {\n transform: scaleY(1);\n transform-origin: 50% 0%;\n opacity: 1;\n }\n 100% {\n transform: scaleY(0.9);\n transform-origin: 50% 0%;\n opacity: 0;\n }\n}\n\n@keyframes kdSlideUpIn {\n 0% {\n transform-origin: 50% 100%;\n opacity: 0;\n }\n 5% {\n transform: scaleY(0.8);\n }\n 100% {\n transform: scaleY(1);\n transform-origin: 50% 100%;\n opacity: 1;\n }\n}\n\n@keyframes kdSlideUpOut {\n 0% {\n transform: scaleY(1);\n transform-origin: 50% 100%;\n opacity: 1;\n }\n 100% {\n transform: scaleY(0.9);\n transform-origin: 50% 100%;\n opacity: 0;\n }\n}\n","/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* normalize.css 和现有产品的结合版本, 根据兼容性进行了调整 */\n/* Document\n ========================================================================== */\n\n/* Sections\n ========================================================================== */\n\n/**\n * Remove the margin in all browsers.\n */\n html,body {\n\theight: 100%;\n\tpadding: 0;\n\tmargin: 0;\n\tfont-size:12px;\n\n}\n\nhtml,body,input, textarea, select, button{\n\tfont-family:\"Microsoft YaHei\",\"PingFangSC-Regular\",\"Helvetica Neue\", Helvetica, Arial,\"Hiragino Sans GB\",\"WenQuanYi Micro Hei\", sans-serif;\n}\n\nbody {\n\tbox-sizing: border-box;\n}\n\n/**\n * Remove the gray background on active links in IE 10.\n */\n\na {\n background-color: transparent;\n}\n\n\n/* Forms\n ========================================================================== */\n\n/**\n */\ninput {\n padding: 0;\n margin: 0;\n}\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n margin: 0; /* 2 */\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n vertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n\n/* Misc\n ========================================================================== */\n\n/**\n * Add the correct display in IE 10+.\n */\n\ntemplate {\n display: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n\n[hidden] {\n display: none;\n}"],"sourceRoot":""}
1
+ {"version":3,"sources":["webpack://KDTable/components/style/index.less","webpack://KDTable/./components/style/core/motion/other.less","webpack://KDTable/./components/style/core/motion/slide.less","webpack://KDTable/./components/style/core/reset.less"],"names":[],"mappings":"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","file":"@kdcloudjs/table.css","sourcesContent":["/* ----------- color ——————---- start */\n/* ----------- color ——————---- end */\n/* ----------- font ——————---- start */\n/* ----------- font ——————---- end */\n/* ----------- zIndex ——————---- start */\n/*\n 普通组件内部自身层级应设置在0-100间\n*/\n/* ----------- zIndex ——————---- end */\n/* ----------- transition ——————---- start */\n/* ----------- transition ——————---- end */\n/* ----------- Button ——————---- start */\n/* ----------- Button ——————---- end */\n/* ----------- Collapse ——————---- start */\n/* ----------- Collapse ——————---- end */\n/* ----------- Switch ——————---- start */\n/* ----------- Switch ——————---- end */\n/* ----------- Input ——————---- start */\n/* ----------- Input ——————---- end */\n/* ----------- InputNumber ——————---- start */\n/* ----------- InputNumber ——————---- end */\n/* ----------- checkbox ——————---- start */\n/* ----------- checkbox ——————---- end */\n/* ----------- Radio ——————---- start */\n/* ----------- Radio ——————---- end */\n/* ----------- icon ——————---- start */\n/* ----------- icon ——————---- end */\n/* ----------- Popconfirm ——————---- start */\n/* ----------- Popconfirm ——————---- end */\n/* ----------- Popover ——————---- start */\n/* ----------- Popover ——————---- end */\n/* ----------- Progress ——————---- start */\n/* ----------- Progress ——————---- end */\n/* ----------- Pagination ——————---- start */\n/* ----------- Pagination ——————---- end */\n/* ----------- Timeline ——————---- start */\n/* ----------- Timeline ——————---- end */\n/* ----------- Tabs ——————---- start */\n/* ----------- Tabs ——————---- end */\n/* ----------- Select ——————---- start */\n/* ----------- Select ——————---- end */\n/* ----------- Rate ——————---- start */\n/* ----------- Rate ——————---- end */\n/* ----------- Dropdown ——————---- start */\n/* ----------- Dropdown ——————---- end */\n/* ----------- Tooltip ——————---- start */\n/* ----------- Tooltip ——————---- end */\n/* ----------- Transfer ——————---- start */\n/* ----------- Transfer ——————---- end */\n/* ----------- Alert ——————---- start */\n/* ----------- Alert ——————---- end */\n/* ----------- Split-Panel ——————---- start */\n/* ----------- Split-Panel ——————---- end */\n/* ----------- Modal ——————---- start */\n/* ----------- Modal ——————---- end */\n/* ----------- Steps ——————---- start */\n/* ----------- Steps ——————---- end */\n/* ----------- Tag ——————---- start */\n/* ----------- Tag ——————---- end */\n@keyframes loadingcircle {\n 100% {\n transform: rotate(360deg);\n }\n}\n@keyframes waveEffect {\n 100% {\n box-shadow: 0 0 0 6px #5582f3;\n }\n}\n@keyframes fadeEffect {\n 100% {\n opacity: 0;\n }\n}\n@keyframes kdRadioEffect {\n 0% {\n transform: translateY(-50%) scale(0.5);\n opacity: 0;\n }\n 100% {\n transform: translateY(-50%) scale(1);\n opacity: 1;\n }\n}\n@keyframes kdSlideDownIn {\n 0% {\n transform: scaleY(0.8);\n transform-origin: 50% 0%;\n opacity: 0;\n }\n 100% {\n transform: scaleY(1);\n transform-origin: 50% 0%;\n opacity: 1;\n }\n}\n@keyframes kdSlideDownOut {\n 0% {\n transform: scaleY(1);\n transform-origin: 50% 0%;\n opacity: 1;\n }\n 100% {\n transform: scaleY(0.9);\n transform-origin: 50% 0%;\n opacity: 0;\n }\n}\n@keyframes kdSlideUpIn {\n 0% {\n transform-origin: 50% 100%;\n opacity: 0;\n }\n 5% {\n transform: scaleY(0.8);\n }\n 100% {\n transform: scaleY(1);\n transform-origin: 50% 100%;\n opacity: 1;\n }\n}\n@keyframes kdSlideUpOut {\n 0% {\n transform: scaleY(1);\n transform-origin: 50% 100%;\n opacity: 1;\n }\n 100% {\n transform: scaleY(0.9);\n transform-origin: 50% 100%;\n opacity: 0;\n }\n}\n/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n/* normalize.css 和现有产品的结合版本, 根据兼容性进行了调整 */\n/* Document\n ========================================================================== */\n/* Sections\n ========================================================================== */\n/**\n * Remove the margin in all browsers.\n */\nhtml,\nbody {\n height: 100%;\n padding: 0;\n margin: 0;\n font-size: 12px;\n}\nhtml,\nbody,\ninput,\ntextarea,\nselect,\nbutton {\n font-family: \"Microsoft YaHei\", \"PingFangSC-Regular\", \"Helvetica Neue\", Helvetica, Arial, \"Hiragino Sans GB\", \"WenQuanYi Micro Hei\", sans-serif;\n}\nbody {\n box-sizing: border-box;\n}\n/**\n * Remove the gray background on active links in IE 10.\n */\na {\n background-color: transparent;\n}\n/* Forms\n ========================================================================== */\n/**\n */\ninput {\n padding: 0;\n margin: 0;\n}\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n margin: 0;\n /* 2 */\n}\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\nbutton,\ninput {\n /* 1 */\n overflow: visible;\n}\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\nbutton,\nselect {\n /* 1 */\n text-transform: none;\n}\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n/**\n * Remove the inner border and padding in Firefox.\n */\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n/**\n * Restore the focus styles unset by the previous rule.\n */\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\nprogress {\n vertical-align: baseline;\n}\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\ntextarea {\n overflow: auto;\n}\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box;\n /* 1 */\n padding: 0;\n /* 2 */\n}\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n[type=\"search\"] {\n -webkit-appearance: textfield;\n /* 1 */\n outline-offset: -2px;\n /* 2 */\n}\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n/* Misc\n ========================================================================== */\n/**\n * Add the correct display in IE 10+.\n */\ntemplate {\n display: none;\n}\n/**\n * Add the correct display in IE 10.\n */\n[hidden] {\n display: none;\n}\n","@keyframes loadingcircle {\n 100% {\n transform: rotate(360deg);\n }\n}\n\n@keyframes waveEffect {\n 100% {\n box-shadow: 0 0 0 6px @theme-color;\n }\n}\n\n@keyframes fadeEffect {\n 100% {\n opacity: 0;\n }\n}\n\n@keyframes kdRadioEffect {\n 0% {\n transform: translateY(-50%) scale(0.5);\n opacity: 0;\n }\n 100% {\n transform: translateY(-50%) scale(1);\n opacity: 1;\n }\n}","@keyframes kdSlideDownIn {\n 0% {\n transform: scaleY(0.8);\n transform-origin: 50% 0%;\n opacity: 0;\n }\n 100% {\n transform: scaleY(1);\n transform-origin: 50% 0%;\n opacity: 1;\n }\n}\n\n@keyframes kdSlideDownOut {\n 0% {\n transform: scaleY(1);\n transform-origin: 50% 0%;\n opacity: 1;\n }\n 100% {\n transform: scaleY(0.9);\n transform-origin: 50% 0%;\n opacity: 0;\n }\n}\n\n@keyframes kdSlideUpIn {\n 0% {\n transform-origin: 50% 100%;\n opacity: 0;\n }\n 5% {\n transform: scaleY(0.8);\n }\n 100% {\n transform: scaleY(1);\n transform-origin: 50% 100%;\n opacity: 1;\n }\n}\n\n@keyframes kdSlideUpOut {\n 0% {\n transform: scaleY(1);\n transform-origin: 50% 100%;\n opacity: 1;\n }\n 100% {\n transform: scaleY(0.9);\n transform-origin: 50% 100%;\n opacity: 0;\n }\n}\n","/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* normalize.css 和现有产品的结合版本, 根据兼容性进行了调整 */\n/* Document\n ========================================================================== */\n\n/* Sections\n ========================================================================== */\n\n/**\n * Remove the margin in all browsers.\n */\n html,body {\n\theight: 100%;\n\tpadding: 0;\n\tmargin: 0;\n\tfont-size:12px;\n\n}\n\nhtml,body,input, textarea, select, button{\n\tfont-family:\"Microsoft YaHei\",\"PingFangSC-Regular\",\"Helvetica Neue\", Helvetica, Arial,\"Hiragino Sans GB\",\"WenQuanYi Micro Hei\", sans-serif;\n}\n\nbody {\n\tbox-sizing: border-box;\n}\n\n/**\n * Remove the gray background on active links in IE 10.\n */\n\na {\n background-color: transparent;\n}\n\n\n/* Forms\n ========================================================================== */\n\n/**\n */\ninput {\n padding: 0;\n margin: 0;\n}\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n margin: 0; /* 2 */\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n vertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n\n/* Misc\n ========================================================================== */\n\n/**\n * Add the correct display in IE 10+.\n */\n\ntemplate {\n display: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n\n[hidden] {\n display: none;\n}"],"sourceRoot":""}