isomorfeus-preact 10.5.8 → 10.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -11
  3. data/lib/isomorfeus/preact_view_helper.rb +2 -2
  4. data/lib/nano_css.rb +1 -1
  5. data/lib/preact/component/native_component_constructor.rb +2 -2
  6. data/lib/preact/version.rb +1 -1
  7. data/node_modules/.package-lock.json +6 -6
  8. data/node_modules/preact/compat/dist/compat.js +1 -1
  9. data/node_modules/preact/compat/dist/compat.js.map +1 -1
  10. data/node_modules/preact/compat/dist/compat.mjs +1 -1
  11. data/node_modules/preact/compat/dist/compat.mjs.map +1 -1
  12. data/node_modules/preact/compat/dist/compat.module.js +1 -1
  13. data/node_modules/preact/compat/dist/compat.module.js.map +1 -1
  14. data/node_modules/preact/compat/dist/compat.umd.js +1 -1
  15. data/node_modules/preact/compat/dist/compat.umd.js.map +1 -1
  16. data/node_modules/preact/compat/src/index.d.ts +2 -1
  17. data/node_modules/preact/compat/src/render.js +15 -8
  18. data/node_modules/preact/debug/dist/debug.js.map +1 -1
  19. data/node_modules/preact/debug/dist/debug.mjs.map +1 -1
  20. data/node_modules/preact/debug/dist/debug.module.js.map +1 -1
  21. data/node_modules/preact/debug/dist/debug.umd.js.map +1 -1
  22. data/node_modules/preact/devtools/dist/devtools.js +1 -1
  23. data/node_modules/preact/devtools/dist/devtools.js.map +1 -1
  24. data/node_modules/preact/devtools/dist/devtools.mjs +1 -1
  25. data/node_modules/preact/devtools/dist/devtools.mjs.map +1 -1
  26. data/node_modules/preact/devtools/dist/devtools.module.js +1 -1
  27. data/node_modules/preact/devtools/dist/devtools.module.js.map +1 -1
  28. data/node_modules/preact/devtools/dist/devtools.umd.js +1 -1
  29. data/node_modules/preact/devtools/dist/devtools.umd.js.map +1 -1
  30. data/node_modules/preact/devtools/src/devtools.js +1 -1
  31. data/node_modules/preact/dist/index.d.ts +1295 -0
  32. data/node_modules/preact/dist/preact.js +1 -1
  33. data/node_modules/preact/dist/preact.js.map +1 -1
  34. data/node_modules/preact/dist/preact.min.js +1 -1
  35. data/node_modules/preact/dist/preact.min.js.map +1 -1
  36. data/node_modules/preact/dist/preact.mjs +1 -1
  37. data/node_modules/preact/dist/preact.mjs.map +1 -1
  38. data/node_modules/preact/dist/preact.module.js +1 -1
  39. data/node_modules/preact/dist/preact.module.js.map +1 -1
  40. data/node_modules/preact/dist/preact.umd.js +1 -1
  41. data/node_modules/preact/dist/preact.umd.js.map +1 -1
  42. data/node_modules/preact/hooks/dist/hooks.js +1 -1
  43. data/node_modules/preact/hooks/dist/hooks.js.map +1 -1
  44. data/node_modules/preact/hooks/dist/hooks.mjs +1 -1
  45. data/node_modules/preact/hooks/dist/hooks.mjs.map +1 -1
  46. data/node_modules/preact/hooks/dist/hooks.module.js +1 -1
  47. data/node_modules/preact/hooks/dist/hooks.module.js.map +1 -1
  48. data/node_modules/preact/hooks/dist/hooks.umd.js +1 -1
  49. data/node_modules/preact/hooks/dist/hooks.umd.js.map +1 -1
  50. data/node_modules/preact/hooks/src/index.d.ts +12 -6
  51. data/node_modules/preact/hooks/src/index.js +1 -8
  52. data/node_modules/preact/jsx-runtime/dist/jsxRuntime.mjs.map +1 -0
  53. data/node_modules/preact/package.json +19 -8
  54. data/node_modules/preact/src/create-element.js +2 -1
  55. data/node_modules/preact/src/diff/children.js +7 -19
  56. data/node_modules/preact/src/diff/index.js +5 -3
  57. data/node_modules/preact/src/index.d.ts +1 -1
  58. data/node_modules/preact/src/jsx.d.ts +45 -2
  59. data/node_modules/preact/test-utils/dist/testUtils.mjs.map +1 -1
  60. data/node_modules/wouter-preact/cjs/index.js +1 -1
  61. data/node_modules/wouter-preact/cjs/use-location.js +6 -6
  62. data/node_modules/wouter-preact/index.js +1 -1
  63. data/node_modules/wouter-preact/package.json +1 -1
  64. data/node_modules/wouter-preact/use-location.js +6 -6
  65. data/package.json +2 -2
  66. metadata +27 -30
  67. data/node_modules/preact/compat/LICENSE +0 -21
  68. data/node_modules/preact/debug/LICENSE +0 -21
  69. data/node_modules/preact/devtools/LICENSE +0 -21
  70. data/node_modules/preact/hooks/LICENSE +0 -21
  71. data/node_modules/preact/jsx-runtime/LICENSE +0 -21
@@ -9,11 +9,11 @@ const eventReplaceState = "replaceState";
9
9
  export const events = [eventPopstate, eventPushState, eventReplaceState];
10
10
 
11
11
  export default ({ base = "" } = {}) => {
12
- const [pathAndSearch, update] = useState(() => ({
12
+ const [{ path, search }, update] = useState(() => ({
13
13
  path: currentPathname(base),
14
14
  search: location.search,
15
15
  })); // @see https://reactjs.org/docs/hooks-reference.html#lazy-initial-state
16
- const prevHash = useRef(pathAndSearch.path + pathAndSearch.search);
16
+ const prevHash = useRef(path + search);
17
17
 
18
18
  useEffect(() => {
19
19
  // this function checks if the location has been changed since the
@@ -27,18 +27,18 @@ export default ({ base = "" } = {}) => {
27
27
 
28
28
  if (prevHash.current !== hash) {
29
29
  prevHash.current = hash;
30
- update({ path: pathname, search: search });
30
+ update({ path: pathname, search });
31
31
  }
32
32
  };
33
33
 
34
- events.map((e) => addEventListener(e, checkForUpdates));
34
+ events.forEach((e) => addEventListener(e, checkForUpdates));
35
35
 
36
36
  // it's possible that an update has occurred between render and the effect handler,
37
37
  // so we run additional check on mount to catch these updates. Based on:
38
38
  // https://gist.github.com/bvaughn/e25397f70e8c65b0ae0d7c90b731b189
39
39
  checkForUpdates();
40
40
 
41
- return () => events.map((e) => removeEventListener(e, checkForUpdates));
41
+ return () => events.forEach((e) => removeEventListener(e, checkForUpdates));
42
42
  }, [base]);
43
43
 
44
44
  // the 2nd argument of the `useLocation` return value is a function
@@ -57,7 +57,7 @@ export default ({ base = "" } = {}) => {
57
57
  [base]
58
58
  );
59
59
 
60
- return [pathAndSearch.path, navigate];
60
+ return [path, navigate];
61
61
  };
62
62
 
63
63
  // While History API does have `popstate` event, the only
data/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "isomorfeus-preact",
3
3
  "dependencies": {
4
- "preact": "10.5.14",
4
+ "preact": "10.6.0",
5
5
  "preact-render-to-string": "5.1.19",
6
- "wouter-preact": "^2.7.4"
6
+ "wouter-preact": "2.7.5"
7
7
  }
8
8
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isomorfeus-preact
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.5.8
4
+ version: 10.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Biedermann
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-19 00:00:00.000000000 Z
11
+ date: 2021-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -30,28 +30,28 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 3.13.7
33
+ version: 3.13.9
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 3.13.7
40
+ version: 3.13.9
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: opal
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 1.2.0
47
+ version: 1.3.2
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 1.2.0
54
+ version: 1.3.2
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: opal-activesupport
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -72,82 +72,82 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 0.2.1
75
+ version: 0.2.4
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 0.2.1
82
+ version: 0.2.4
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: isomorfeus-asset-manager
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 0.12.8
89
+ version: 0.13.8
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 0.12.8
96
+ version: 0.13.8
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: isomorfeus-redux
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: 4.1.6
103
+ version: 4.1.9
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: 4.1.6
110
+ version: 4.1.9
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: isomorfeus-speednode
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: 0.4.2
117
+ version: 0.4.7
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: 0.4.2
124
+ version: 0.4.7
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: dalli
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - ">="
129
+ - - "~>"
130
130
  - !ruby/object:Gem::Version
131
131
  version: 2.7.11
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - ">="
136
+ - - "~>"
137
137
  - !ruby/object:Gem::Version
138
138
  version: 2.7.11
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: redis
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - ">="
143
+ - - "~>"
144
144
  - !ruby/object:Gem::Version
145
145
  version: 4.4.0
146
146
  type: :runtime
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
- - - ">="
150
+ - - "~>"
151
151
  - !ruby/object:Gem::Version
152
152
  version: 4.4.0
153
153
  - !ruby/object:Gem::Dependency
@@ -170,14 +170,14 @@ dependencies:
170
170
  requirements:
171
171
  - - "~>"
172
172
  - !ruby/object:Gem::Version
173
- version: 0.5.2
173
+ version: 0.5.5
174
174
  type: :development
175
175
  prerelease: false
176
176
  version_requirements: !ruby/object:Gem::Requirement
177
177
  requirements:
178
178
  - - "~>"
179
179
  - !ruby/object:Gem::Version
180
- version: 0.5.2
180
+ version: 0.5.5
181
181
  - !ruby/object:Gem::Dependency
182
182
  name: rake
183
183
  requirement: !ruby/object:Gem::Requirement
@@ -198,14 +198,14 @@ dependencies:
198
198
  requirements:
199
199
  - - "~>"
200
200
  - !ruby/object:Gem::Version
201
- version: '3.8'
201
+ version: '3.10'
202
202
  type: :development
203
203
  prerelease: false
204
204
  version_requirements: !ruby/object:Gem::Requirement
205
205
  requirements:
206
206
  - - "~>"
207
207
  - !ruby/object:Gem::Version
208
- version: '3.8'
208
+ version: '3.10'
209
209
  description: Write Preact Components in Ruby.
210
210
  email:
211
211
  - jan@kursator.com
@@ -311,7 +311,6 @@ files:
311
311
  - node_modules/preact-render-to-string/typings.json
312
312
  - node_modules/preact/LICENSE
313
313
  - node_modules/preact/README.md
314
- - node_modules/preact/compat/LICENSE
315
314
  - node_modules/preact/compat/dist/compat.js
316
315
  - node_modules/preact/compat/dist/compat.js.map
317
316
  - node_modules/preact/compat/dist/compat.mjs
@@ -346,7 +345,6 @@ files:
346
345
  - node_modules/preact/compat/src/suspense.js
347
346
  - node_modules/preact/compat/src/util.js
348
347
  - node_modules/preact/compat/test-utils.js
349
- - node_modules/preact/debug/LICENSE
350
348
  - node_modules/preact/debug/dist/debug.js
351
349
  - node_modules/preact/debug/dist/debug.js.map
352
350
  - node_modules/preact/debug/dist/debug.mjs
@@ -365,7 +363,6 @@ files:
365
363
  - node_modules/preact/debug/src/index.js
366
364
  - node_modules/preact/debug/src/internal.d.ts
367
365
  - node_modules/preact/debug/src/util.js
368
- - node_modules/preact/devtools/LICENSE
369
366
  - node_modules/preact/devtools/dist/devtools.js
370
367
  - node_modules/preact/devtools/dist/devtools.js.map
371
368
  - node_modules/preact/devtools/dist/devtools.mjs
@@ -380,6 +377,7 @@ files:
380
377
  - node_modules/preact/devtools/src/devtools.js
381
378
  - node_modules/preact/devtools/src/index.d.ts
382
379
  - node_modules/preact/devtools/src/index.js
380
+ - node_modules/preact/dist/index.d.ts
383
381
  - node_modules/preact/dist/preact.js
384
382
  - node_modules/preact/dist/preact.js.map
385
383
  - node_modules/preact/dist/preact.min.js
@@ -390,7 +388,6 @@ files:
390
388
  - node_modules/preact/dist/preact.module.js.map
391
389
  - node_modules/preact/dist/preact.umd.js
392
390
  - node_modules/preact/dist/preact.umd.js.map
393
- - node_modules/preact/hooks/LICENSE
394
391
  - node_modules/preact/hooks/dist/hooks.js
395
392
  - node_modules/preact/hooks/dist/hooks.js.map
396
393
  - node_modules/preact/hooks/dist/hooks.mjs
@@ -405,10 +402,10 @@ files:
405
402
  - node_modules/preact/hooks/src/index.d.ts
406
403
  - node_modules/preact/hooks/src/index.js
407
404
  - node_modules/preact/hooks/src/internal.d.ts
408
- - node_modules/preact/jsx-runtime/LICENSE
409
405
  - node_modules/preact/jsx-runtime/dist/jsxRuntime.js
410
406
  - node_modules/preact/jsx-runtime/dist/jsxRuntime.js.map
411
407
  - node_modules/preact/jsx-runtime/dist/jsxRuntime.mjs
408
+ - node_modules/preact/jsx-runtime/dist/jsxRuntime.mjs.map
412
409
  - node_modules/preact/jsx-runtime/dist/jsxRuntime.modern.js
413
410
  - node_modules/preact/jsx-runtime/dist/jsxRuntime.modern.js.map
414
411
  - node_modules/preact/jsx-runtime/dist/jsxRuntime.module.js
@@ -494,7 +491,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
494
491
  - !ruby/object:Gem::Version
495
492
  version: '0'
496
493
  requirements: []
497
- rubygems_version: 3.2.15
494
+ rubygems_version: 3.2.22
498
495
  signing_key:
499
496
  specification_version: 4
500
497
  summary: Preact for the Isomorfeus Framework Project.
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2015-present Jason Miller
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2015-present Jason Miller
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2015-present Jason Miller
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2015-present Jason Miller
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2015-present Jason Miller
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.