chime-ui 0.0.1-security → 101.5.1

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.

Potentially problematic release.


This version of chime-ui might be problematic. Click here for more details.

Files changed (107) hide show
  1. package/README.md +3 -3
  2. package/config/dev.env.js +37 -0
  3. package/config/hap.amend.js +29 -0
  4. package/config/index.js +8 -0
  5. package/config/prod.env.js +28 -0
  6. package/index.d.ts +130 -0
  7. package/index.js +1 -0
  8. package/package.json +44 -3
  9. package/src/index.html +12 -0
  10. package/src/lib/app.js +103 -0
  11. package/src/lib/axios/CHANGELOG.md +245 -0
  12. package/src/lib/axios/LICENSE +19 -0
  13. package/src/lib/axios/README.md +625 -0
  14. package/src/lib/axios/UPGRADE_GUIDE.md +162 -0
  15. package/src/lib/axios/dist/axios.js +1603 -0
  16. package/src/lib/axios/dist/axios.map +1 -0
  17. package/src/lib/axios/dist/axios.min.js +9 -0
  18. package/src/lib/axios/dist/axios.min.map +1 -0
  19. package/src/lib/axios/index.d.ts +131 -0
  20. package/src/lib/axios/index.js +1 -0
  21. package/src/lib/axios/lib/adapters/README.md +37 -0
  22. package/src/lib/axios/lib/adapters/http.js +237 -0
  23. package/src/lib/axios/lib/adapters/xhr.js +180 -0
  24. package/src/lib/axios/lib/axios.js +52 -0
  25. package/src/lib/axios/lib/cancel/Cancel.js +19 -0
  26. package/src/lib/axios/lib/cancel/CancelToken.js +57 -0
  27. package/src/lib/axios/lib/cancel/isCancel.js +5 -0
  28. package/src/lib/axios/lib/core/Axios.js +79 -0
  29. package/src/lib/axios/lib/core/InterceptorManager.js +52 -0
  30. package/src/lib/axios/lib/core/README.md +7 -0
  31. package/src/lib/axios/lib/core/createError.js +18 -0
  32. package/src/lib/axios/lib/core/dispatchRequest.js +86 -0
  33. package/src/lib/axios/lib/core/enhanceError.js +21 -0
  34. package/src/lib/axios/lib/core/settle.js +26 -0
  35. package/src/lib/axios/lib/core/transformData.js +20 -0
  36. package/src/lib/axios/lib/defaults.js +96 -0
  37. package/src/lib/axios/lib/helpers/README.md +7 -0
  38. package/src/lib/axios/lib/helpers/bind.js +11 -0
  39. package/src/lib/axios/lib/helpers/btoa.js +36 -0
  40. package/src/lib/axios/lib/helpers/buildURL.js +66 -0
  41. package/src/lib/axios/lib/helpers/combineURLs.js +14 -0
  42. package/src/lib/axios/lib/helpers/cookies.js +53 -0
  43. package/src/lib/axios/lib/helpers/deprecatedMethod.js +24 -0
  44. package/src/lib/axios/lib/helpers/isAbsoluteURL.js +14 -0
  45. package/src/lib/axios/lib/helpers/isURLSameOrigin.js +68 -0
  46. package/src/lib/axios/lib/helpers/normalizeHeaderName.js +12 -0
  47. package/src/lib/axios/lib/helpers/parseHeaders.js +53 -0
  48. package/src/lib/axios/lib/helpers/spread.js +27 -0
  49. package/src/lib/axios/lib/utils.js +303 -0
  50. package/src/lib/axios/modules/debug/CHANGELOG.md +395 -0
  51. package/src/lib/axios/modules/debug/LICENSE +19 -0
  52. package/src/lib/axios/modules/debug/README.md +437 -0
  53. package/src/lib/axios/modules/debug/dist/debug.js +886 -0
  54. package/src/lib/axios/modules/debug/node.js +1 -0
  55. package/src/lib/axios/modules/debug/package.json +96 -0
  56. package/src/lib/axios/modules/debug/src/browser.js +180 -0
  57. package/src/lib/axios/modules/debug/src/common.js +249 -0
  58. package/src/lib/axios/modules/debug/src/index.js +12 -0
  59. package/src/lib/axios/modules/debug/src/node.js +174 -0
  60. package/src/lib/axios/modules/follow-redirects/LICENSE +18 -0
  61. package/src/lib/axios/modules/follow-redirects/README.md +145 -0
  62. package/src/lib/axios/modules/follow-redirects/http.js +1 -0
  63. package/src/lib/axios/modules/follow-redirects/https.js +1 -0
  64. package/src/lib/axios/modules/follow-redirects/index.js +452 -0
  65. package/src/lib/axios/modules/follow-redirects/package.json +92 -0
  66. package/src/lib/axios/modules/is-buffer/LICENSE +21 -0
  67. package/src/lib/axios/modules/is-buffer/README.md +53 -0
  68. package/src/lib/axios/modules/is-buffer/index.js +21 -0
  69. package/src/lib/axios/modules/is-buffer/package.json +90 -0
  70. package/src/lib/axios/modules/is-buffer/test/basic.js +24 -0
  71. package/src/lib/axios/modules/ms/index.js +162 -0
  72. package/src/lib/axios/modules/ms/license.md +21 -0
  73. package/src/lib/axios/modules/ms/package.json +72 -0
  74. package/src/lib/axios/modules/ms/readme.md +60 -0
  75. package/src/lib/axios/package-lock.json +10437 -0
  76. package/src/lib/axios/package.json +111 -0
  77. package/src/lib/axios.min.js +10 -0
  78. package/src/lib/axiosRequest.js +84 -0
  79. package/src/lib/bmob.js +36 -0
  80. package/src/lib/common.js +227 -0
  81. package/src/lib/config.dev.js +62 -0
  82. package/src/lib/config.js +69 -0
  83. package/src/lib/dataType.js +17 -0
  84. package/src/lib/error.js +32 -0
  85. package/src/lib/file.js +250 -0
  86. package/src/lib/hapRequest.js +68 -0
  87. package/src/lib/hapStorage.js +62 -0
  88. package/src/lib/init.js +0 -0
  89. package/src/lib/nodestorage.js +14 -0
  90. package/src/lib/pay.js +19 -0
  91. package/src/lib/pointer.js +18 -0
  92. package/src/lib/query.js +689 -0
  93. package/src/lib/relation.js +45 -0
  94. package/src/lib/request.js +21 -0
  95. package/src/lib/sms.js +40 -0
  96. package/src/lib/socket.js +292 -0
  97. package/src/lib/storage.js +21 -0
  98. package/src/lib/user.js +225 -0
  99. package/src/lib/utf8md5.js +205 -0
  100. package/src/lib/utils.js +61 -0
  101. package/src/lib/webstorage.js +32 -0
  102. package/src/lib/wxRequest.js +88 -0
  103. package/src/lib/wxstorage.js +27 -0
  104. package/src/main.js +27 -0
  105. package/test/index.html +15 -0
  106. package/test/index.js +12 -0
  107. package/tsconfig.json +100 -0
@@ -0,0 +1,162 @@
1
+ # Upgrade Guide
2
+
3
+ ### 0.15.x -> 0.16.0
4
+
5
+ #### `Promise` Type Declarations
6
+
7
+ The `Promise` type declarations have been removed from the axios typings in favor of the built-in type declarations. If you use axios in a TypeScript project that targets `ES5`, please make sure to include the `es2015.promise` lib. Please see [this post](https://blog.mariusschulz.com/2016/11/25/typescript-2-0-built-in-type-declarations) for details.
8
+
9
+ ### 0.13.x -> 0.14.0
10
+
11
+ #### TypeScript Definitions
12
+
13
+ The axios TypeScript definitions have been updated to match the axios API and use the ES2015 module syntax.
14
+
15
+ Please use the following `import` statement to import axios in TypeScript:
16
+
17
+ ```typescript
18
+ import axios from 'axios';
19
+
20
+ axios.get('/foo')
21
+ .then(response => console.log(response))
22
+ .catch(error => console.log(error));
23
+ ```
24
+
25
+ #### `agent` Config Option
26
+
27
+ The `agent` config option has been replaced with two new options: `httpAgent` and `httpsAgent`. Please use them instead.
28
+
29
+ ```js
30
+ {
31
+ // Define a custom agent for HTTP
32
+ httpAgent: new http.Agent({ keepAlive: true }),
33
+ // Define a custom agent for HTTPS
34
+ httpsAgent: new https.Agent({ keepAlive: true })
35
+ }
36
+ ```
37
+
38
+ #### `progress` Config Option
39
+
40
+ The `progress` config option has been replaced with the `onUploadProgress` and `onDownloadProgress` options.
41
+
42
+ ```js
43
+ {
44
+ // Define a handler for upload progress events
45
+ onUploadProgress: function (progressEvent) {
46
+ // ...
47
+ },
48
+
49
+ // Define a handler for download progress events
50
+ onDownloadProgress: function (progressEvent) {
51
+ // ...
52
+ }
53
+ }
54
+ ```
55
+
56
+ ### 0.12.x -> 0.13.0
57
+
58
+ The `0.13.0` release contains several changes to custom adapters and error handling.
59
+
60
+ #### Error Handling
61
+
62
+ Previous to this release an error could either be a server response with bad status code or an actual `Error`. With this release Promise will always reject with an `Error`. In the case that a response was received, the `Error` will also include the response.
63
+
64
+ ```js
65
+ axios.get('/user/12345')
66
+ .catch((error) => {
67
+ console.log(error.message);
68
+ console.log(error.code); // Not always specified
69
+ console.log(error.config); // The config that was used to make the request
70
+ console.log(error.response); // Only available if response was received from the server
71
+ });
72
+ ```
73
+
74
+ #### Request Adapters
75
+
76
+ This release changes a few things about how request adapters work. Please take note if you are using your own custom adapter.
77
+
78
+ 1. Response transformer is now called outside of adapter.
79
+ 2. Request adapter returns a `Promise`.
80
+
81
+ This means that you no longer need to invoke `transformData` on response data. You will also no longer receive `resolve` and `reject` as arguments in your adapter.
82
+
83
+ Previous code:
84
+
85
+ ```js
86
+ function myAdapter(resolve, reject, config) {
87
+ var response = {
88
+ data: transformData(
89
+ responseData,
90
+ responseHeaders,
91
+ config.transformResponse
92
+ ),
93
+ status: request.status,
94
+ statusText: request.statusText,
95
+ headers: responseHeaders
96
+ };
97
+ settle(resolve, reject, response);
98
+ }
99
+ ```
100
+
101
+ New code:
102
+
103
+ ```js
104
+ function myAdapter(config) {
105
+ return new Promise(function (resolve, reject) {
106
+ var response = {
107
+ data: responseData,
108
+ status: request.status,
109
+ statusText: request.statusText,
110
+ headers: responseHeaders
111
+ };
112
+ settle(resolve, reject, response);
113
+ });
114
+ }
115
+ ```
116
+
117
+ See the related commits for more details:
118
+ - [Response transformers](https://github.com/axios/axios/commit/10eb23865101f9347570552c04e9d6211376e25e)
119
+ - [Request adapter Promise](https://github.com/axios/axios/commit/157efd5615890301824e3121cc6c9d2f9b21f94a)
120
+
121
+ ### 0.5.x -> 0.6.0
122
+
123
+ The `0.6.0` release contains mostly bug fixes, but there are a couple things to be aware of when upgrading.
124
+
125
+ #### ES6 Promise Polyfill
126
+
127
+ Up until the `0.6.0` release ES6 `Promise` was being polyfilled using [es6-promise](https://github.com/jakearchibald/es6-promise). With this release, the polyfill has been removed, and you will need to supply it yourself if your environment needs it.
128
+
129
+ ```js
130
+ require('es6-promise').polyfill();
131
+ var axios = require('axios');
132
+ ```
133
+
134
+ This will polyfill the global environment, and only needs to be done once.
135
+
136
+ #### `axios.success`/`axios.error`
137
+
138
+ The `success`, and `error` aliases were deprectated in [0.4.0](https://github.com/axios/axios/blob/master/CHANGELOG.md#040-oct-03-2014). As of this release they have been removed entirely. Instead please use `axios.then`, and `axios.catch` respectively.
139
+
140
+ ```js
141
+ axios.get('some/url')
142
+ .then(function (res) {
143
+ /* ... */
144
+ })
145
+ .catch(function (err) {
146
+ /* ... */
147
+ });
148
+ ```
149
+
150
+ #### UMD
151
+
152
+ Previous versions of axios shipped with an AMD, CommonJS, and Global build. This has all been rolled into a single UMD build.
153
+
154
+ ```js
155
+ // AMD
156
+ require(['bower_components/axios/dist/axios'], function (axios) {
157
+ /* ... */
158
+ });
159
+
160
+ // CommonJS
161
+ var axios = require('axios/dist/axios');
162
+ ```