@kdcloudjs/table 1.2.2-canary.18 → 1.2.2-canary.20

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 (212) hide show
  1. package/LICENSE +568 -568
  2. package/README.md +111 -111
  3. package/dist/@kdcloudjs/table.css +1 -1
  4. package/dist/@kdcloudjs/table.js +3908 -3253
  5. package/dist/@kdcloudjs/table.js.map +1 -1
  6. package/dist/kd-ui-complete.less +777 -777
  7. package/es/_utils/formatUtil.js +1 -5
  8. package/es/_utils/hooks.js +3 -3
  9. package/es/_utils/usePopper.d.ts +1 -1
  10. package/es/_utils/usePopper.js +26 -26
  11. package/es/locale/locale.js +6 -7
  12. package/es/style/color/colors.less +1 -1
  13. package/es/style/core/index.less +1 -1
  14. package/es/style/core/motion/other.less +27 -27
  15. package/es/style/core/motion/slide.less +53 -53
  16. package/es/style/core/motion.less +1 -1
  17. package/es/style/core/reset.less +185 -185
  18. package/es/style/index.less +1 -1
  19. package/es/style/mixins/index.less +18 -18
  20. package/es/style/mixins/overlay.less +21 -21
  21. package/es/style/mixins/reset.less +12 -12
  22. package/es/style/themes/default.less +445 -445
  23. package/es/table/base/calculations.js +3 -3
  24. package/es/table/base/colgroup.d.ts +2 -2
  25. package/es/table/base/empty.d.ts +1 -1
  26. package/es/table/base/empty.js +2 -2
  27. package/es/table/base/globalStyleComponent.d.ts +2 -2
  28. package/es/table/base/globalStyleComponent.js +6 -8
  29. package/es/table/base/header.d.ts +2 -2
  30. package/es/table/base/header.js +5 -7
  31. package/es/table/base/helpers/FastScrollManager.js +1 -2
  32. package/es/table/base/helpers/SpanManager.js +1 -2
  33. package/es/table/base/helpers/TableDOMUtils.js +5 -6
  34. package/es/table/base/helpers/__test__/TableDOMUtils.test.js +2 -2
  35. package/es/table/base/html-table.d.ts +2 -2
  36. package/es/table/base/html-table.js +16 -8
  37. package/es/table/base/loading.d.ts +1 -1
  38. package/es/table/base/loading.js +2 -2
  39. package/es/table/base/renderTemplates.js +16 -16
  40. package/es/table/base/table.d.ts +1 -1
  41. package/es/table/base/table.js +17 -21
  42. package/es/table/base/utils.js +3 -3
  43. package/es/table/common-views.d.ts +4 -4
  44. package/es/table/pipeline/features/colGroupExtendable.js +17 -4
  45. package/es/table/pipeline/features/columnDrag.js +21 -2
  46. package/es/table/pipeline/features/columnFilter.js +1 -3
  47. package/es/table/pipeline/features/columnHover.js +16 -11
  48. package/es/table/pipeline/features/columnRangeHover.js +18 -17
  49. package/es/table/pipeline/features/columnResizeWidth.js +2 -2
  50. package/es/table/pipeline/features/contextMenu.js +4 -6
  51. package/es/table/pipeline/features/featureApi/RowDragApi.js +1 -2
  52. package/es/table/pipeline/features/filter/DefaultFilterContent.d.ts +2 -2
  53. package/es/table/pipeline/features/filter/DefaultFilterContent.js +4 -5
  54. package/es/table/pipeline/features/filter/DefaultFilterIcon.d.ts +2 -2
  55. package/es/table/pipeline/features/filter/Filter.d.ts +1 -1
  56. package/es/table/pipeline/features/filter/Filter.js +2 -3
  57. package/es/table/pipeline/features/filter/FilterPanel.d.ts +2 -2
  58. package/es/table/pipeline/features/mergeCellHover.js +21 -15
  59. package/es/table/pipeline/features/rangeSelection.js +12 -10
  60. package/es/table/pipeline/features/rowDetail.js +5 -3
  61. package/es/table/pipeline/features/rowDrag.js +2 -3
  62. package/es/table/pipeline/features/rowGrouping.js +9 -8
  63. package/es/table/pipeline/features/sort.js +6 -7
  64. package/es/table/pipeline/features/tips.js +4 -4
  65. package/es/table/pipeline/features/treeMode.js +5 -5
  66. package/es/table/pipeline/features/treeSelect.js +2 -2
  67. package/es/table/pipeline/pipeline.js +1 -2
  68. package/es/table/pivot/cross-table/buildCrossTable.js +6 -8
  69. package/es/table/pivot/cross-table/cross-table.d.ts +1 -1
  70. package/es/table/pivot/cross-table/cross-table.js +1 -3
  71. package/es/table/pivot/cross-tree-table/buildCrossTreeTable.js +8 -10
  72. package/es/table/pivot/cross-tree-table/cross-tree-table.d.ts +1 -1
  73. package/es/table/pivot/cross-tree-table/cross-tree-table.js +8 -11
  74. package/es/table/pivot/pivot-utils/builders.js +3 -3
  75. package/es/table/pivot/pivot-utils/convert-utils.js +3 -3
  76. package/es/table/style/index.less +1 -1
  77. package/es/table/transforms/autoWidth.js +3 -3
  78. package/es/table/transforms/columnResize.js +3 -5
  79. package/es/table/transforms/sort.js +6 -8
  80. package/es/table/transforms/tips.js +4 -4
  81. package/es/table/transforms/treeMode.js +10 -12
  82. package/es/table/utils/buildTree.js +3 -3
  83. package/es/table/utils/collectNodes.js +3 -3
  84. package/es/table/utils/exportTableAsExcel.js +3 -3
  85. package/es/table/utils/getTreeDepth.js +3 -3
  86. package/es/table/utils/groupBy.js +3 -3
  87. package/es/table/utils/makeRecursiveMapper.js +3 -3
  88. package/es/table/utils/mergeCellProps.js +0 -1
  89. package/es/table/utils/others.js +3 -3
  90. package/es/table/utils/traverseColumn.js +3 -3
  91. package/es/table/utils/tree-data-helpers/StrictTreeDataHelper.js +7 -8
  92. package/es/table/utils/tree-data-helpers/TreeDataHelper.js +4 -5
  93. package/lib/_utils/arrayUtil.js +2 -3
  94. package/lib/_utils/formatUtil.js +1 -5
  95. package/lib/_utils/hooks.js +3 -3
  96. package/lib/_utils/index.js +2 -3
  97. package/lib/_utils/type.js +3 -5
  98. package/lib/_utils/usePopper.d.ts +1 -1
  99. package/lib/_utils/usePopper.js +30 -34
  100. package/lib/config-provider/ConfigContext.js +1 -2
  101. package/lib/config-provider/compDefaultProps.js +1 -2
  102. package/lib/config-provider/configProvider.js +2 -4
  103. package/lib/config-provider/defaultConfig.js +1 -2
  104. package/lib/config-provider/index.js +1 -2
  105. package/lib/locale/index.js +2 -4
  106. package/lib/locale/locale.js +10 -14
  107. package/lib/locale/zh-CN.js +1 -2
  108. package/lib/style/color/colors.less +1 -1
  109. package/lib/style/components.less +1 -1
  110. package/lib/style/core/index.less +1 -1
  111. package/lib/style/core/motion/other.less +27 -27
  112. package/lib/style/core/motion/slide.less +53 -53
  113. package/lib/style/core/motion.less +1 -1
  114. package/lib/style/core/reset.less +185 -185
  115. package/lib/style/index.less +1 -1
  116. package/lib/style/mixins/index.less +18 -18
  117. package/lib/style/mixins/overlay.less +21 -21
  118. package/lib/style/mixins/reset.less +12 -12
  119. package/lib/style/themes/default.less +445 -445
  120. package/lib/table/base/BlankComponent.js +4 -7
  121. package/lib/table/base/calculations.js +3 -3
  122. package/lib/table/base/colgroup.d.ts +2 -2
  123. package/lib/table/base/empty.d.ts +1 -1
  124. package/lib/table/base/empty.js +3 -4
  125. package/lib/table/base/globalStyleComponent.d.ts +2 -2
  126. package/lib/table/base/globalStyleComponent.js +9 -13
  127. package/lib/table/base/header.d.ts +2 -2
  128. package/lib/table/base/header.js +5 -7
  129. package/lib/table/base/helpers/FastScrollManager.js +3 -5
  130. package/lib/table/base/helpers/SpanManager.js +3 -5
  131. package/lib/table/base/helpers/TableDOMUtils.js +7 -9
  132. package/lib/table/base/helpers/__test__/TableDOMUtils.test.js +2 -2
  133. package/lib/table/base/helpers/getRichVisibleRectsStream.js +1 -2
  134. package/lib/table/base/html-table.d.ts +2 -2
  135. package/lib/table/base/html-table.js +16 -8
  136. package/lib/table/base/loading.d.ts +1 -1
  137. package/lib/table/base/loading.js +2 -2
  138. package/lib/table/base/renderTemplates.js +17 -18
  139. package/lib/table/base/styles.js +9 -18
  140. package/lib/table/base/table.d.ts +1 -1
  141. package/lib/table/base/table.js +28 -32
  142. package/lib/table/base/utils.js +13 -22
  143. package/lib/table/common-views.d.ts +4 -4
  144. package/lib/table/common-views.js +4 -8
  145. package/lib/table/internals.js +2 -3
  146. package/lib/table/pipeline/const.js +2 -3
  147. package/lib/table/pipeline/features/autoFill.js +3 -6
  148. package/lib/table/pipeline/features/colGroupExtendable.js +19 -7
  149. package/lib/table/pipeline/features/columnDrag.js +21 -2
  150. package/lib/table/pipeline/features/columnFilter.js +1 -3
  151. package/lib/table/pipeline/features/columnHover.js +16 -11
  152. package/lib/table/pipeline/features/columnRangeHover.js +18 -17
  153. package/lib/table/pipeline/features/columnResizeWidth.js +6 -10
  154. package/lib/table/pipeline/features/contextMenu.js +5 -8
  155. package/lib/table/pipeline/features/featureApi/RowDragApi.js +3 -5
  156. package/lib/table/pipeline/features/filter/DefaultFilterContent.d.ts +2 -2
  157. package/lib/table/pipeline/features/filter/DefaultFilterContent.js +6 -9
  158. package/lib/table/pipeline/features/filter/DefaultFilterIcon.d.ts +2 -2
  159. package/lib/table/pipeline/features/filter/Filter.d.ts +1 -1
  160. package/lib/table/pipeline/features/filter/Filter.js +4 -7
  161. package/lib/table/pipeline/features/filter/FilterPanel.d.ts +2 -2
  162. package/lib/table/pipeline/features/filter/FilterPanel.js +2 -4
  163. package/lib/table/pipeline/features/filter/util.js +2 -3
  164. package/lib/table/pipeline/features/footerDataSource.js +1 -2
  165. package/lib/table/pipeline/features/mergeCellHover.js +21 -15
  166. package/lib/table/pipeline/features/rangeSelection.js +14 -14
  167. package/lib/table/pipeline/features/rowDetail.js +5 -3
  168. package/lib/table/pipeline/features/rowDrag.js +5 -9
  169. package/lib/table/pipeline/features/rowGrouping.js +9 -8
  170. package/lib/table/pipeline/features/sort.js +6 -7
  171. package/lib/table/pipeline/features/tips.js +4 -4
  172. package/lib/table/pipeline/features/treeMode.js +7 -9
  173. package/lib/table/pipeline/features/treeSelect.js +2 -2
  174. package/lib/table/pipeline/index.js +1 -2
  175. package/lib/table/pipeline/pipeline.js +2 -4
  176. package/lib/table/pivot/cross-table/buildCrossTable.js +6 -8
  177. package/lib/table/pivot/cross-table/constants.js +1 -2
  178. package/lib/table/pivot/cross-table/cross-table.d.ts +1 -1
  179. package/lib/table/pivot/cross-table/cross-table.js +3 -6
  180. package/lib/table/pivot/cross-tree-table/buildCrossTreeTable.js +8 -10
  181. package/lib/table/pivot/cross-tree-table/cross-tree-table.d.ts +1 -1
  182. package/lib/table/pivot/cross-tree-table/cross-tree-table.js +9 -13
  183. package/lib/table/pivot/pivot-utils/builders.js +3 -3
  184. package/lib/table/pivot/pivot-utils/convert-utils.js +3 -3
  185. package/lib/table/style/index.less +1 -1
  186. package/lib/table/transforms/autoWidth.js +4 -5
  187. package/lib/table/transforms/columnResize.js +4 -7
  188. package/lib/table/transforms/sort.js +7 -10
  189. package/lib/table/transforms/tips.js +4 -4
  190. package/lib/table/transforms/treeMode.js +11 -14
  191. package/lib/table/use/useResizeObserver.js +1 -2
  192. package/lib/table/utils/browserType.js +2 -4
  193. package/lib/table/utils/buildTree.js +3 -3
  194. package/lib/table/utils/collectNodes.js +3 -3
  195. package/lib/table/utils/console.js +2 -3
  196. package/lib/table/utils/copyToClipboard.js +1 -2
  197. package/lib/table/utils/exportTableAsExcel.js +3 -3
  198. package/lib/table/utils/getTreeDepth.js +3 -3
  199. package/lib/table/utils/groupBy.js +3 -3
  200. package/lib/table/utils/keyCode.js +1 -2
  201. package/lib/table/utils/makeRecursiveMapper.js +3 -3
  202. package/lib/table/utils/mergeCellProps.js +0 -1
  203. package/lib/table/utils/others.js +4 -5
  204. package/lib/table/utils/proto.js +1 -2
  205. package/lib/table/utils/selectColumn.js +2 -4
  206. package/lib/table/utils/traverseColumn.js +3 -3
  207. package/lib/table/utils/tree-data-helpers/StrictTreeDataHelper.js +9 -11
  208. package/lib/table/utils/tree-data-helpers/TreeDataHelper.js +6 -8
  209. package/package.json +219 -219
  210. package/dist/@kdcloudjs/table.min.css +0 -9
  211. package/dist/@kdcloudjs/table.min.js +0 -217
  212. package/dist/@kdcloudjs/table.min.js.map +0 -1
package/LICENSE CHANGED
@@ -1,568 +1,568 @@
1
- Copyright(C) 2022 Kingdee International Software Group (HK) Ltd. All rights reserved.
2
-
3
- kdcloudjs/table is licensed under the Apache License Version 2.0, except for the third-party components listed below.
4
-
5
- A copy of the Apache License Version 2.0 is included in this file.
6
-
7
- Other dependencies and licenses:
8
-
9
- Open Source Software Licensed Under the MIT License:
10
- --------------------------------------------------------------------
11
- ali-react-table
12
- Copyright (c) 2020 Alibaba
13
-
14
- @babel/polyfill
15
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
16
-
17
- @babel/runtime
18
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
19
-
20
- @babel/runtime-corejs3
21
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
22
-
23
- classnames
24
- Copyright (c) 2018 Jed Watson
25
-
26
- core-js
27
- Copyright (c) 2014-2021 Denis Pushkarev
28
-
29
- css-vars-ponyfill
30
- Copyright (c) 2018 John Hildenbiddle
31
-
32
- lodash
33
- Copyright JS Foundation and other contributors <https://js.foundation/>
34
- Based on Underscore.js, copyright Jeremy Ashkenas,
35
-
36
- regenerator-runtime
37
- Copyright (c) 2014-present, Facebook, Inc.
38
-
39
- resize-observer-polyfill
40
- Copyright (c) 2016 Denis Rul
41
-
42
- styled-components
43
- Copyright (c) 2016-present Glen Maddern and Maximilian Stoiber
44
-
45
- @babel/core
46
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
47
-
48
- @babel/plugin-proposal-export-namespace-from
49
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
50
-
51
- @babel/plugin-proposal-private-methods
52
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
53
-
54
- @babel/plugin-transform-object-assign
55
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
56
-
57
- @babel/plugin-transform-runtime
58
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
59
-
60
- @babel/preset-env
61
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
62
-
63
- @babel/preset-react
64
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
65
-
66
- @babel/preset-typescript
67
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
68
-
69
- @commitlint/config-conventional
70
- Copyright (c) 2016 - present Mario Nebl
71
-
72
- @testing-library/react-hooks
73
- Copyright (c) 2019 Michael Peyper
74
-
75
- @types/classnames
76
- Copyright (c) Microsoft Corporation.
77
-
78
- @types/enzyme
79
- Copyright (c) Microsoft Corporation.
80
-
81
- @types/jest
82
- Copyright (c) Microsoft Corporation.
83
-
84
- @types/jest-image-snapshot
85
- Copyright (c) Microsoft Corporation.
86
-
87
- @types/lodash
88
- Copyright (c) Microsoft Corporation.
89
-
90
- @types/puppeteer
91
- Copyright (c) Microsoft Corporation.
92
-
93
- @types/react
94
- Copyright (c) Microsoft Corporation.
95
-
96
- @types/react-dom
97
- Copyright (c) Microsoft Corporation.
98
-
99
- @typescript-eslint/eslint-plugin
100
- Copyright JS Foundation and other contributors, https://js.foundation
101
-
102
- algoliasearch
103
- Copyright (c) Algolia support@algolia.com
104
-
105
- autoprefixer
106
- Copyright 2013 Andrey Sitnik <andrey@sitnik.ru>
107
-
108
-
109
- babel-loader
110
- Copyright (c) 2014-2019 Luís Couto <hello@luiscouto.pt>
111
-
112
- babel-eslint
113
- Copyright (c) 2014-2016 Sebastian McKenzie <sebmck@gmail.com>
114
-
115
- babel-plugin-add-react-displayname
116
- https://github.com/opbeat/babel-plugin-add-react-displayname
117
-
118
- babel-plugin-transform-class-properties
119
-
120
- bisheng
121
- Copyright (c) 2016 Benjy Cui
122
-
123
- bisheng-plugin-description
124
- Copyright (c) 2016 Benjy Cui
125
-
126
- bisheng-plugin-toc
127
- Copyright (c) 2016 Benjy Cui
128
-
129
- case-sensitive-paths-webpack-plugin
130
- Copyright (c) 2018 Michael Pratt
131
-
132
- chalk
133
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
134
-
135
- commitlint
136
- Copyright (c) 2016 - present Mario Nebl
137
-
138
- cross-env
139
- Copyright (c) 2017 Kent C. Dodds
140
-
141
-
142
- css-loader
143
- Copyright JS Foundation and other contributors
144
-
145
- cz-customizable
146
- Copyright (c) 2016 Leonardo Correa
147
-
148
- dekko
149
- Copyright (c) 2016 Benjy Cui
150
-
151
- enzyme
152
- Copyright (c) 2015 Airbnb, Inc. and contributors
153
-
154
- enzyme-adapter-react-16
155
- Copyright (c) 2015 Airbnb, Inc. and contributors
156
-
157
- enzyme-to-json
158
- Copyright (c) 2016 Adrien Antoine adriantoine@gmail.com
159
-
160
- esbuild-webpack-plugin
161
-
162
- eslint
163
- Copyright OpenJS Foundation and other contributors, <www.openjsf.org>
164
-
165
- eslint-config-prettier
166
- Copyright (c) 2017, 2018, 2019, 2020, 2021 Simon Lydell and contributors
167
-
168
- eslint-config-standard
169
- Copyright (c) Feross Aboukhadijeh
170
-
171
- eslint-loader
172
- Copyright JS Foundation and other contributors
173
-
174
- eslint-plugin-babel
175
- Copyright (c) 2014-2015 Jason Quense <jason@quense.me>
176
-
177
- eslint-plugin-import
178
- opyright (c) 2015 Ben Mosher
179
-
180
- eslint-plugin-jest
181
- Copyright (c) 2018 Jonathan Kim
182
-
183
- eslint-plugin-jsx-a11y
184
- The MIT License (MIT) Copyright (c) 2016 Ethan Cohen
185
-
186
- eslint-plugin-markdown
187
- opyright JS Foundation and other contributors, https://js.foundation
188
-
189
- eslint-plugin-node
190
- Copyright (c) 2015 Toru Nagashima
191
-
192
- eslint-plugin-prettier
193
- opyright © 2017 Andres Suarez and Teddy Katz
194
-
195
- eslint-plugin-react
196
- Copyright (c) 2014 Yannick Croissant
197
-
198
- eslint-plugin-react-hooks
199
- Copyright (c) Facebook, Inc. and its affiliates.
200
-
201
- eslint-plugin-standard
202
- Copyright (c) 2015 Jamund Ferguson
203
-
204
- file-loader
205
- Copyright JS Foundation and other contributors
206
-
207
- gulp
208
- Copyright (c) 2013-2018 Blaine Bublitz <blaine.bublitz@gmail.com>, Eric Schoffstall <yo@contra.io> and other contributors
209
-
210
- gulp-babel
211
- Copyright © 2014-2018 Sindre Sorhus sindresorhus@gmail.com (sindresorhus.com)
212
-
213
- gulp-strip-code
214
- Copyright (c) 2014 Massimiliano Zoffoli
215
-
216
- gulp-typescript
217
- Copyright (c) 2020 Ivo Gabe de Wolff
218
-
219
- husky
220
- Copyright (c) 2021 typicode
221
-
222
- identity-obj-proxy
223
- Copyright (c) 2015 Keyan Zhang
224
-
225
- intersection-observer
226
- All Reports in this Repository are licensed by Contributors under the W3C Software and Document License. Contributions to Specifications are made under the W3C CLA.
227
-
228
- jest
229
- Copyright (c) Facebook, Inc. and its affiliates.
230
-
231
- jest-environment-enzyme
232
- Copyright (c) 2016 Blaine Kasten
233
-
234
- jest-enzyme
235
- Copyright (c) 2016 Blaine Kasten
236
-
237
- jest-stare
238
- Copyright (c) 2018
239
-
240
- jsonml.js
241
- https://www.npmjs.com/~benjycui
242
-
243
- less-loader
244
- Copyright JS Foundation and other contributors
245
-
246
- less-vars-to-js
247
- https://github.com/michaeltaranto
248
-
249
- lint-staged
250
- Copyright (c) 2016 Andrey Okonetchnikov
251
-
252
- merge2
253
- Copyright (c) 2014-2020 Teambition
254
-
255
- mini-css-extract-plugin
256
- Copyright JS Foundation and other contributors
257
-
258
- mockdate
259
- opyright (c) 2014 Bob Lauer
260
-
261
- node-fetch
262
- opyright (c) 2016 - 2020 Node Fetch Team
263
-
264
- np
265
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
266
-
267
- optimize-css-assets-webpack-plugin
268
- Copyright (c) 2016 Nuno Rodrigues
269
-
270
- post-loader
271
- Copyright (c) egoist <0x142857@gmail.com> (https://egoistian.com)
272
-
273
- postcss
274
- Copyright 2013 Andrey Sitnik <andrey@sitnik.ru>
275
-
276
-
277
- prettier
278
- Copyright © James Long and contributors
279
-
280
- react
281
- Copyright (c) Facebook, Inc. and its affiliates.
282
-
283
-
284
- react-dom
285
- Copyright (c) Facebook, Inc. and its affiliates.
286
-
287
-
288
- react-live
289
- Copyright (c) 2013
290
-
291
- scrollama
292
- Copyright (c) 2017 Russell Goldenberg
293
-
294
- simple-git
295
- Copyright (c) 2015 Steve King
296
-
297
- stylelint
298
- Copyright (c) 2015 - present Maxime Thirouin, David Clark & Richard Hallows
299
-
300
- stylelint-config-prettier
301
- Copyright (c) Shannon Moeller <me@shannonmoeller.com> (shannonmoeller.com)
302
- Copyright (c) Hugo Dias <mail@hugodias.me> (https://hugodias.me)
303
- Copyright (c) 2017 Simon Lydell
304
-
305
- stylelint-config-standard
306
- Copyright (c) 2015 - present stylelint authors
307
-
308
- stylelint-declaration-block-no-ignored-properties
309
- Copyright (c) 2018 Krister Kari
310
-
311
- through2
312
- Copyright (c) Rod Vagg (the "Original Author") and additional contributors
313
-
314
- ts-jest
315
- copyright (c) 2016-2018
316
-
317
- uglifyjs-webpack-plugin
318
- Copyright JS Foundation and other contributors
319
-
320
- url-loader
321
- Copyright JS Foundation and other contributors
322
-
323
- webpack-bundle-analyzer
324
- Copyright JS Foundation and other contributors
325
-
326
- webpack-cli
327
- Copyright JS Foundation and other contributors
328
-
329
- webpack-dev-server
330
- Copyright JS Foundation and other contributors
331
-
332
- webpack-filter-warnings-plugin
333
- Copyright (c) 2017 Matt Lewis
334
-
335
- webpack-merge
336
- Copyright (c) 2015 Juho Vepsalainen
337
-
338
- webpackbar
339
- Copyright JS Foundation and other contributors
340
-
341
-
342
-
343
-
344
- Terms of the MIT License:
345
- ---------------------------------------------------
346
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
347
- to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
348
- and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
349
-
350
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
351
-
352
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
353
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
354
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
355
- IN THE SOFTWARE.
356
-
357
-
358
-
359
- Open Source Software Licensed Under the BSD-2-Clause License:
360
- --------------------------------------------------------------------
361
- @typescript-eslint/parser
362
- Copyright JS Foundation and other contributors, https://js.foundation
363
-
364
- omit.js
365
- opyright (c) 2016 Benjy Cui
366
-
367
- Terms of the BSD-2-Clause License:
368
- ---------------------------------------------------
369
- Redistribution and use in source and binary forms, with or without
370
- modification, are permitted provided that the following conditions are met:
371
-
372
- * Redistributions of source code must retain the above copyright
373
- notice, this list of conditions and the following disclaimer.
374
- * Redistributions in binary form must reproduce the above copyright
375
- notice, this list of conditions and the following disclaimer in the
376
- documentation and/or other materials provided with the distribution.
377
-
378
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
379
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
380
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
381
- ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
382
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
383
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
384
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
385
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
386
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
387
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
388
-
389
-
390
-
391
- Open Source Software Licensed Under the BSD-3-Clause License:
392
- --------------------------------------------------------------------
393
- eslint-config-prettier-standard
394
- Copyright (c) 2017, Nick Petruzzelli
395
-
396
- Terms of the BSD-3-Clause License:
397
- ---------------------------------------------------
398
- Redistribution and use in source and binary forms, with or without
399
- modification, are permitted provided that the following conditions are met:
400
-
401
- * Redistributions of source code must retain the above copyright notice, this
402
- list of conditions and the following disclaimer.
403
-
404
- * Redistributions in binary form must reproduce the above copyright notice,
405
- this list of conditions and the following disclaimer in the documentation
406
- and/or other materials provided with the distribution.
407
-
408
- * Neither the name of the copyright holder nor the names of its
409
- contributors may be used to endorse or promote products derived from
410
- this software without specific prior written permission.
411
-
412
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
413
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
414
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
415
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
416
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
417
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
418
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
419
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
420
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
421
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
422
-
423
-
424
-
425
- Open Source Software Licensed Under the ISC License:
426
- --------------------------------------------------------------------
427
- conventional-changelog-cli
428
- Copyright © conventional-changelog team
429
-
430
- eslint-plugin-promise
431
- Copyright (c) 2020, Jamund Ferguson
432
-
433
- rimraf
434
- Copyright (c) Isaac Z. Schlueter and Contributors
435
-
436
- standard-version
437
- Copyright (c) 2016, Contributors
438
-
439
- Terms of the ISC License:
440
- ---------------------------------------------------
441
- Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
442
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
443
-
444
-
445
-
446
- Open Source Software Licensed Under the Apache-2.0 License License:
447
- --------------------------------------------------------------------
448
- rxjs
449
- https://github.com/ReactiveX/rxjs/
450
-
451
- jest-image-snapshot
452
- https://americanexpress.io
453
-
454
- less
455
- https://github.com/less
456
-
457
- less-plugin-npm-import
458
- https://github.com/less
459
-
460
- typescript
461
- https://github.com/microsoft/TypeScript
462
-
463
- terms of the Apache License Version 2.0:
464
- --------------------------------------------------------------------
465
- Apache License
466
-
467
- Version 2.0, January 2004
468
-
469
- http://www.apache.org/licenses/
470
-
471
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
472
- 1. Definitions.
473
-
474
- "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
475
-
476
- "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
477
-
478
- "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that
479
- entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity,
480
- whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
481
-
482
- "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
483
-
484
- "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and
485
- configuration files.
486
-
487
- "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object
488
- code, generated documentation, and conversions to other media types.
489
-
490
- "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that
491
- is included in or attached to the work (an example is provided in the Appendix below).
492
-
493
- "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial
494
- revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License,
495
- Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative
496
- Works thereof.
497
-
498
- "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or
499
- Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal
500
- Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal,
501
- or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source
502
- code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the
503
- Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
504
-
505
- "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently
506
- incorporated within the Work.
507
-
508
- 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide,
509
- non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform,
510
- sublicense, and distribute the Work and such Derivative Works in Source or Object form.
511
-
512
- 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide,
513
- non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell,
514
- sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are
515
- necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was
516
- submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work
517
- or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You
518
- under this License for that Work shall terminate as of the date such litigation is filed.
519
-
520
- 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications,
521
- and in Source or Object form, provided that You meet the following conditions:
522
-
523
- You must give any other recipients of the Work or Derivative Works a copy of this License; and
524
-
525
- You must cause any modified files to carry prominent notices stating that You changed the files; and
526
-
527
- You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from
528
- the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
529
-
530
- If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy
531
- of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in
532
- at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation,
533
- if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally
534
- appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices
535
- within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution
536
- notices cannot be construed as modifying the License.
537
-
538
- You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction,
539
- or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise
540
- complies with the conditions stated in this License.
541
-
542
- 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to
543
- the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing
544
- herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
545
-
546
- 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as
547
- required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
548
-
549
- 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its
550
- Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties
551
- or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the
552
- appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
553
-
554
- 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by
555
- applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including
556
- any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability
557
- to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other
558
- commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
559
-
560
- 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for,
561
- acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such
562
- obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to
563
- indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your
564
- accepting any such warranty or additional liability.
565
-
566
- END OF TERMS AND CONDITIONS
567
-
568
-
1
+ Copyright(C) 2022 Kingdee International Software Group (HK) Ltd. All rights reserved.
2
+
3
+ kdcloudjs/table is licensed under the Apache License Version 2.0, except for the third-party components listed below.
4
+
5
+ A copy of the Apache License Version 2.0 is included in this file.
6
+
7
+ Other dependencies and licenses:
8
+
9
+ Open Source Software Licensed Under the MIT License:
10
+ --------------------------------------------------------------------
11
+ ali-react-table
12
+ Copyright (c) 2020 Alibaba
13
+
14
+ @babel/polyfill
15
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
16
+
17
+ @babel/runtime
18
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
19
+
20
+ @babel/runtime-corejs3
21
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
22
+
23
+ classnames
24
+ Copyright (c) 2018 Jed Watson
25
+
26
+ core-js
27
+ Copyright (c) 2014-2021 Denis Pushkarev
28
+
29
+ css-vars-ponyfill
30
+ Copyright (c) 2018 John Hildenbiddle
31
+
32
+ lodash
33
+ Copyright JS Foundation and other contributors <https://js.foundation/>
34
+ Based on Underscore.js, copyright Jeremy Ashkenas,
35
+
36
+ regenerator-runtime
37
+ Copyright (c) 2014-present, Facebook, Inc.
38
+
39
+ resize-observer-polyfill
40
+ Copyright (c) 2016 Denis Rul
41
+
42
+ styled-components
43
+ Copyright (c) 2016-present Glen Maddern and Maximilian Stoiber
44
+
45
+ @babel/core
46
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
47
+
48
+ @babel/plugin-proposal-export-namespace-from
49
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
50
+
51
+ @babel/plugin-proposal-private-methods
52
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
53
+
54
+ @babel/plugin-transform-object-assign
55
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
56
+
57
+ @babel/plugin-transform-runtime
58
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
59
+
60
+ @babel/preset-env
61
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
62
+
63
+ @babel/preset-react
64
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
65
+
66
+ @babel/preset-typescript
67
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
68
+
69
+ @commitlint/config-conventional
70
+ Copyright (c) 2016 - present Mario Nebl
71
+
72
+ @testing-library/react-hooks
73
+ Copyright (c) 2019 Michael Peyper
74
+
75
+ @types/classnames
76
+ Copyright (c) Microsoft Corporation.
77
+
78
+ @types/enzyme
79
+ Copyright (c) Microsoft Corporation.
80
+
81
+ @types/jest
82
+ Copyright (c) Microsoft Corporation.
83
+
84
+ @types/jest-image-snapshot
85
+ Copyright (c) Microsoft Corporation.
86
+
87
+ @types/lodash
88
+ Copyright (c) Microsoft Corporation.
89
+
90
+ @types/puppeteer
91
+ Copyright (c) Microsoft Corporation.
92
+
93
+ @types/react
94
+ Copyright (c) Microsoft Corporation.
95
+
96
+ @types/react-dom
97
+ Copyright (c) Microsoft Corporation.
98
+
99
+ @typescript-eslint/eslint-plugin
100
+ Copyright JS Foundation and other contributors, https://js.foundation
101
+
102
+ algoliasearch
103
+ Copyright (c) Algolia support@algolia.com
104
+
105
+ autoprefixer
106
+ Copyright 2013 Andrey Sitnik <andrey@sitnik.ru>
107
+
108
+
109
+ babel-loader
110
+ Copyright (c) 2014-2019 Luís Couto <hello@luiscouto.pt>
111
+
112
+ babel-eslint
113
+ Copyright (c) 2014-2016 Sebastian McKenzie <sebmck@gmail.com>
114
+
115
+ babel-plugin-add-react-displayname
116
+ https://github.com/opbeat/babel-plugin-add-react-displayname
117
+
118
+ babel-plugin-transform-class-properties
119
+
120
+ bisheng
121
+ Copyright (c) 2016 Benjy Cui
122
+
123
+ bisheng-plugin-description
124
+ Copyright (c) 2016 Benjy Cui
125
+
126
+ bisheng-plugin-toc
127
+ Copyright (c) 2016 Benjy Cui
128
+
129
+ case-sensitive-paths-webpack-plugin
130
+ Copyright (c) 2018 Michael Pratt
131
+
132
+ chalk
133
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
134
+
135
+ commitlint
136
+ Copyright (c) 2016 - present Mario Nebl
137
+
138
+ cross-env
139
+ Copyright (c) 2017 Kent C. Dodds
140
+
141
+
142
+ css-loader
143
+ Copyright JS Foundation and other contributors
144
+
145
+ cz-customizable
146
+ Copyright (c) 2016 Leonardo Correa
147
+
148
+ dekko
149
+ Copyright (c) 2016 Benjy Cui
150
+
151
+ enzyme
152
+ Copyright (c) 2015 Airbnb, Inc. and contributors
153
+
154
+ enzyme-adapter-react-16
155
+ Copyright (c) 2015 Airbnb, Inc. and contributors
156
+
157
+ enzyme-to-json
158
+ Copyright (c) 2016 Adrien Antoine adriantoine@gmail.com
159
+
160
+ esbuild-webpack-plugin
161
+
162
+ eslint
163
+ Copyright OpenJS Foundation and other contributors, <www.openjsf.org>
164
+
165
+ eslint-config-prettier
166
+ Copyright (c) 2017, 2018, 2019, 2020, 2021 Simon Lydell and contributors
167
+
168
+ eslint-config-standard
169
+ Copyright (c) Feross Aboukhadijeh
170
+
171
+ eslint-loader
172
+ Copyright JS Foundation and other contributors
173
+
174
+ eslint-plugin-babel
175
+ Copyright (c) 2014-2015 Jason Quense <jason@quense.me>
176
+
177
+ eslint-plugin-import
178
+ opyright (c) 2015 Ben Mosher
179
+
180
+ eslint-plugin-jest
181
+ Copyright (c) 2018 Jonathan Kim
182
+
183
+ eslint-plugin-jsx-a11y
184
+ The MIT License (MIT) Copyright (c) 2016 Ethan Cohen
185
+
186
+ eslint-plugin-markdown
187
+ opyright JS Foundation and other contributors, https://js.foundation
188
+
189
+ eslint-plugin-node
190
+ Copyright (c) 2015 Toru Nagashima
191
+
192
+ eslint-plugin-prettier
193
+ opyright © 2017 Andres Suarez and Teddy Katz
194
+
195
+ eslint-plugin-react
196
+ Copyright (c) 2014 Yannick Croissant
197
+
198
+ eslint-plugin-react-hooks
199
+ Copyright (c) Facebook, Inc. and its affiliates.
200
+
201
+ eslint-plugin-standard
202
+ Copyright (c) 2015 Jamund Ferguson
203
+
204
+ file-loader
205
+ Copyright JS Foundation and other contributors
206
+
207
+ gulp
208
+ Copyright (c) 2013-2018 Blaine Bublitz <blaine.bublitz@gmail.com>, Eric Schoffstall <yo@contra.io> and other contributors
209
+
210
+ gulp-babel
211
+ Copyright © 2014-2018 Sindre Sorhus sindresorhus@gmail.com (sindresorhus.com)
212
+
213
+ gulp-strip-code
214
+ Copyright (c) 2014 Massimiliano Zoffoli
215
+
216
+ gulp-typescript
217
+ Copyright (c) 2020 Ivo Gabe de Wolff
218
+
219
+ husky
220
+ Copyright (c) 2021 typicode
221
+
222
+ identity-obj-proxy
223
+ Copyright (c) 2015 Keyan Zhang
224
+
225
+ intersection-observer
226
+ All Reports in this Repository are licensed by Contributors under the W3C Software and Document License. Contributions to Specifications are made under the W3C CLA.
227
+
228
+ jest
229
+ Copyright (c) Facebook, Inc. and its affiliates.
230
+
231
+ jest-environment-enzyme
232
+ Copyright (c) 2016 Blaine Kasten
233
+
234
+ jest-enzyme
235
+ Copyright (c) 2016 Blaine Kasten
236
+
237
+ jest-stare
238
+ Copyright (c) 2018
239
+
240
+ jsonml.js
241
+ https://www.npmjs.com/~benjycui
242
+
243
+ less-loader
244
+ Copyright JS Foundation and other contributors
245
+
246
+ less-vars-to-js
247
+ https://github.com/michaeltaranto
248
+
249
+ lint-staged
250
+ Copyright (c) 2016 Andrey Okonetchnikov
251
+
252
+ merge2
253
+ Copyright (c) 2014-2020 Teambition
254
+
255
+ mini-css-extract-plugin
256
+ Copyright JS Foundation and other contributors
257
+
258
+ mockdate
259
+ opyright (c) 2014 Bob Lauer
260
+
261
+ node-fetch
262
+ opyright (c) 2016 - 2020 Node Fetch Team
263
+
264
+ np
265
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
266
+
267
+ optimize-css-assets-webpack-plugin
268
+ Copyright (c) 2016 Nuno Rodrigues
269
+
270
+ post-loader
271
+ Copyright (c) egoist <0x142857@gmail.com> (https://egoistian.com)
272
+
273
+ postcss
274
+ Copyright 2013 Andrey Sitnik <andrey@sitnik.ru>
275
+
276
+
277
+ prettier
278
+ Copyright © James Long and contributors
279
+
280
+ react
281
+ Copyright (c) Facebook, Inc. and its affiliates.
282
+
283
+
284
+ react-dom
285
+ Copyright (c) Facebook, Inc. and its affiliates.
286
+
287
+
288
+ react-live
289
+ Copyright (c) 2013
290
+
291
+ scrollama
292
+ Copyright (c) 2017 Russell Goldenberg
293
+
294
+ simple-git
295
+ Copyright (c) 2015 Steve King
296
+
297
+ stylelint
298
+ Copyright (c) 2015 - present Maxime Thirouin, David Clark & Richard Hallows
299
+
300
+ stylelint-config-prettier
301
+ Copyright (c) Shannon Moeller <me@shannonmoeller.com> (shannonmoeller.com)
302
+ Copyright (c) Hugo Dias <mail@hugodias.me> (https://hugodias.me)
303
+ Copyright (c) 2017 Simon Lydell
304
+
305
+ stylelint-config-standard
306
+ Copyright (c) 2015 - present stylelint authors
307
+
308
+ stylelint-declaration-block-no-ignored-properties
309
+ Copyright (c) 2018 Krister Kari
310
+
311
+ through2
312
+ Copyright (c) Rod Vagg (the "Original Author") and additional contributors
313
+
314
+ ts-jest
315
+ copyright (c) 2016-2018
316
+
317
+ uglifyjs-webpack-plugin
318
+ Copyright JS Foundation and other contributors
319
+
320
+ url-loader
321
+ Copyright JS Foundation and other contributors
322
+
323
+ webpack-bundle-analyzer
324
+ Copyright JS Foundation and other contributors
325
+
326
+ webpack-cli
327
+ Copyright JS Foundation and other contributors
328
+
329
+ webpack-dev-server
330
+ Copyright JS Foundation and other contributors
331
+
332
+ webpack-filter-warnings-plugin
333
+ Copyright (c) 2017 Matt Lewis
334
+
335
+ webpack-merge
336
+ Copyright (c) 2015 Juho Vepsalainen
337
+
338
+ webpackbar
339
+ Copyright JS Foundation and other contributors
340
+
341
+
342
+
343
+
344
+ Terms of the MIT License:
345
+ ---------------------------------------------------
346
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
347
+ to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
348
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
349
+
350
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
351
+
352
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
353
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
354
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
355
+ IN THE SOFTWARE.
356
+
357
+
358
+
359
+ Open Source Software Licensed Under the BSD-2-Clause License:
360
+ --------------------------------------------------------------------
361
+ @typescript-eslint/parser
362
+ Copyright JS Foundation and other contributors, https://js.foundation
363
+
364
+ omit.js
365
+ opyright (c) 2016 Benjy Cui
366
+
367
+ Terms of the BSD-2-Clause License:
368
+ ---------------------------------------------------
369
+ Redistribution and use in source and binary forms, with or without
370
+ modification, are permitted provided that the following conditions are met:
371
+
372
+ * Redistributions of source code must retain the above copyright
373
+ notice, this list of conditions and the following disclaimer.
374
+ * Redistributions in binary form must reproduce the above copyright
375
+ notice, this list of conditions and the following disclaimer in the
376
+ documentation and/or other materials provided with the distribution.
377
+
378
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
379
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
380
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
381
+ ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
382
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
383
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
384
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
385
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
386
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
387
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
388
+
389
+
390
+
391
+ Open Source Software Licensed Under the BSD-3-Clause License:
392
+ --------------------------------------------------------------------
393
+ eslint-config-prettier-standard
394
+ Copyright (c) 2017, Nick Petruzzelli
395
+
396
+ Terms of the BSD-3-Clause License:
397
+ ---------------------------------------------------
398
+ Redistribution and use in source and binary forms, with or without
399
+ modification, are permitted provided that the following conditions are met:
400
+
401
+ * Redistributions of source code must retain the above copyright notice, this
402
+ list of conditions and the following disclaimer.
403
+
404
+ * Redistributions in binary form must reproduce the above copyright notice,
405
+ this list of conditions and the following disclaimer in the documentation
406
+ and/or other materials provided with the distribution.
407
+
408
+ * Neither the name of the copyright holder nor the names of its
409
+ contributors may be used to endorse or promote products derived from
410
+ this software without specific prior written permission.
411
+
412
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
413
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
414
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
415
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
416
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
417
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
418
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
419
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
420
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
421
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
422
+
423
+
424
+
425
+ Open Source Software Licensed Under the ISC License:
426
+ --------------------------------------------------------------------
427
+ conventional-changelog-cli
428
+ Copyright © conventional-changelog team
429
+
430
+ eslint-plugin-promise
431
+ Copyright (c) 2020, Jamund Ferguson
432
+
433
+ rimraf
434
+ Copyright (c) Isaac Z. Schlueter and Contributors
435
+
436
+ standard-version
437
+ Copyright (c) 2016, Contributors
438
+
439
+ Terms of the ISC License:
440
+ ---------------------------------------------------
441
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
442
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
443
+
444
+
445
+
446
+ Open Source Software Licensed Under the Apache-2.0 License License:
447
+ --------------------------------------------------------------------
448
+ rxjs
449
+ https://github.com/ReactiveX/rxjs/
450
+
451
+ jest-image-snapshot
452
+ https://americanexpress.io
453
+
454
+ less
455
+ https://github.com/less
456
+
457
+ less-plugin-npm-import
458
+ https://github.com/less
459
+
460
+ typescript
461
+ https://github.com/microsoft/TypeScript
462
+
463
+ terms of the Apache License Version 2.0:
464
+ --------------------------------------------------------------------
465
+ Apache License
466
+
467
+ Version 2.0, January 2004
468
+
469
+ http://www.apache.org/licenses/
470
+
471
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
472
+ 1. Definitions.
473
+
474
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
475
+
476
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
477
+
478
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that
479
+ entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity,
480
+ whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
481
+
482
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
483
+
484
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and
485
+ configuration files.
486
+
487
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object
488
+ code, generated documentation, and conversions to other media types.
489
+
490
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that
491
+ is included in or attached to the work (an example is provided in the Appendix below).
492
+
493
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial
494
+ revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License,
495
+ Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative
496
+ Works thereof.
497
+
498
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or
499
+ Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal
500
+ Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal,
501
+ or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source
502
+ code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the
503
+ Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
504
+
505
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently
506
+ incorporated within the Work.
507
+
508
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide,
509
+ non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform,
510
+ sublicense, and distribute the Work and such Derivative Works in Source or Object form.
511
+
512
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide,
513
+ non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell,
514
+ sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are
515
+ necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was
516
+ submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work
517
+ or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You
518
+ under this License for that Work shall terminate as of the date such litigation is filed.
519
+
520
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications,
521
+ and in Source or Object form, provided that You meet the following conditions:
522
+
523
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
524
+
525
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
526
+
527
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from
528
+ the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
529
+
530
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy
531
+ of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in
532
+ at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation,
533
+ if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally
534
+ appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices
535
+ within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution
536
+ notices cannot be construed as modifying the License.
537
+
538
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction,
539
+ or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise
540
+ complies with the conditions stated in this License.
541
+
542
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to
543
+ the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing
544
+ herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
545
+
546
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as
547
+ required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
548
+
549
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its
550
+ Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties
551
+ or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the
552
+ appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
553
+
554
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by
555
+ applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including
556
+ any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability
557
+ to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other
558
+ commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
559
+
560
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for,
561
+ acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such
562
+ obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to
563
+ indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your
564
+ accepting any such warranty or additional liability.
565
+
566
+ END OF TERMS AND CONDITIONS
567
+
568
+