tntd 3.1.6 → 3.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,73 @@
1
+ /*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+
7
+ /*!
8
+ Copyright (c) 2018 Jed Watson.
9
+ Licensed under the MIT License (MIT), see
10
+ http://jedwatson.github.io/classnames
11
+ */
12
+
13
+ /*!
14
+ Copyright (c) 2017 Jed Watson.
15
+ Licensed under the MIT License (MIT), see
16
+ http://jedwatson.github.io/classnames
17
+ */
18
+
19
+ /*!
20
+ * JavaScript Cookie v2.2.1
21
+ * https://github.com/js-cookie/js-cookie
22
+ *
23
+ * Copyright 2006, 2015 Klaus Hartl & Fagner Brack
24
+ * Released under the MIT license
25
+ */
26
+
27
+ /*!
28
+ * cookie
29
+ * Copyright(c) 2012-2014 Roman Shtylman
30
+ * Copyright(c) 2015 Douglas Christopher Wilson
31
+ * MIT Licensed
32
+ */
33
+
34
+ /*!
35
+ * screenfull
36
+ * v5.2.0 - 2021-11-03
37
+ * (c) Sindre Sorhus; MIT License
38
+ */
39
+
40
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
41
+
42
+ /**
43
+ * @license
44
+ * Lodash (Custom Build) <https://lodash.com/>
45
+ * Build: `lodash modularize exports="es" -o ./`
46
+ * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
47
+ * Released under MIT license <https://lodash.com/license>
48
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
49
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
50
+ */
51
+
52
+ /**
53
+ * @license React
54
+ * react-is.production.min.js
55
+ *
56
+ * Copyright (c) Facebook, Inc. and its affiliates.
57
+ *
58
+ * This source code is licensed under the MIT license found in the
59
+ * LICENSE file in the root directory of this source tree.
60
+ */
61
+
62
+ /** @license React v16.13.1
63
+ * react-is.production.min.js
64
+ *
65
+ * Copyright (c) Facebook, Inc. and its affiliates.
66
+ *
67
+ * This source code is licensed under the MIT license found in the
68
+ * LICENSE file in the root directory of this source tree.
69
+ */
70
+
71
+ //! moment.js
72
+
73
+ //! moment.js locale configuration
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "tntd",
3
- "version": "3.1.6",
3
+ "version": "3.1.7",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "start": "heft start --storybook",
7
- "build": "heft build --clean && npm run build:es && npm run build:cjs && npm run post:build",
7
+ "build": "heft build --clean && npm run build:es && npm run build:cjs && npm run post:build && npm run build:umd",
8
8
  "build:es": "ES_MODULE=true babel es --presets @babel/preset-env --out-dir es",
9
9
  "build:cjs": "babel es --presets @babel/preset-env --out-dir lib",
10
+ "build:umd": "webpack --config webpack.umd.config.js",
10
11
  "post:build": "node ./scripts/postbuild.js",
11
12
  "build:watch": "heft build --clean --watch",
12
13
  "watch": "rush build:watch --changed-projects-only --to-except tntd",
@@ -38,6 +39,7 @@
38
39
  "react-color": "^2.17.2",
39
40
  "lodash": "~4.17.21",
40
41
  "color-alpha": "~1.1.3",
42
+ "copy-to-clipboard": "^3.2.0",
41
43
  "rc-segmented": "~2.2.2",
42
44
  "rc-field-form": "~1.34.0",
43
45
  "scroll-into-view-if-needed": "^2.2.25",
@@ -45,10 +47,13 @@
45
47
  "@ant-design/colors": "^3.1.0",
46
48
  "rc-resize-observer": "~1.4.0",
47
49
  "react-resizable": "~3.0.4",
50
+ "eventemitter3": "^4.0.0",
51
+ "universal-cookie": "^4.0.4",
48
52
  "@types/react-resizable": "~3.0.8"
49
53
  },
50
54
  "devDependencies": {
51
55
  "@react-types/shared": "^3.10.1",
56
+ "@types/node": "~16.18.0",
52
57
  "@types/react": "~16.14.23",
53
58
  "@types/react-dom": "~16.9.14",
54
59
  "@types/styled-components": "~5.1.26",
@@ -69,9 +74,19 @@
69
74
  "@types/lodash-es": "~4.17.6",
70
75
  "@types/lodash": "~4.14.191",
71
76
  "babel-plugin-lodash": "~3.3.4",
77
+ "babel-plugin-import": "~1.13.8",
72
78
  "@babel/cli": "~7.21.0",
73
79
  "@babel/core": "~7.21.0",
74
80
  "@babel/preset-env": "~7.20.2",
81
+ "@babel/preset-react": "~7.22.0",
82
+ "@babel/preset-typescript": "~7.22.0",
83
+ "babel-loader": "~9.1.3",
84
+ "css-loader": "~6.8.0",
85
+ "less": "~3.12.0",
86
+ "less-loader": "~8.1.0",
87
+ "mini-css-extract-plugin": "~2.7.6",
88
+ "webpack": "~5.88.0",
89
+ "webpack-cli": "~5.1.0",
75
90
  "moment": "~2.29.4"
76
91
  },
77
92
  "peerDependencies": {
@@ -106,11 +121,13 @@
106
121
  "files": [
107
122
  "lib",
108
123
  "es",
124
+ "dist",
109
125
  "themes",
110
126
  "LICENSE",
111
127
  "README.md"
112
128
  ],
113
129
  "main": "lib/index.js",
114
130
  "module": "es/index.js",
131
+ "unpkg": "dist/antd.min.js",
115
132
  "typings": "lib/index.d.ts"
116
- }
133
+ }