amssui 1.0.109 → 1.0.110
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.
- package/es/button-modal/index.js +12 -35
- package/es/button-modal/style/index.js +1 -1
- package/es/menu-nav-icon-button/index.js +9 -16
- package/lib/button-modal/index.js +11 -45
- package/lib/button-modal/style/index.js +0 -1
- package/lib/index.js +0 -5
- package/lib/menu-nav-icon-button/index.js +10 -21
- package/lib/menu-nav-icon-button/style/index.js +0 -1
- package/package.json +6 -6
- package/LICENSE +0 -21
package/es/button-modal/index.js
CHANGED
|
@@ -2,39 +2,31 @@ var __assign = this && this.__assign || function () {
|
|
|
2
2
|
__assign = Object.assign || function (t) {
|
|
3
3
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
4
|
s = arguments[i];
|
|
5
|
-
|
|
6
5
|
for (var p in s) {
|
|
7
6
|
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
7
|
}
|
|
9
8
|
}
|
|
10
|
-
|
|
11
9
|
return t;
|
|
12
10
|
};
|
|
13
|
-
|
|
14
11
|
return __assign.apply(this, arguments);
|
|
15
12
|
};
|
|
16
|
-
|
|
17
13
|
var __rest = this && this.__rest || function (s, e) {
|
|
18
14
|
var t = {};
|
|
19
|
-
|
|
20
15
|
for (var p in s) {
|
|
21
16
|
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
22
17
|
}
|
|
23
|
-
|
|
24
18
|
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
25
19
|
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
26
20
|
}
|
|
27
21
|
return t;
|
|
28
22
|
};
|
|
29
|
-
|
|
30
23
|
var __read = this && this.__read || function (o, n) {
|
|
31
24
|
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
32
25
|
if (!m) return o;
|
|
33
26
|
var i = m.call(o),
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
27
|
+
r,
|
|
28
|
+
ar = [],
|
|
29
|
+
e;
|
|
38
30
|
try {
|
|
39
31
|
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
|
|
40
32
|
ar.push(r.value);
|
|
@@ -50,43 +42,34 @@ var __read = this && this.__read || function (o, n) {
|
|
|
50
42
|
if (e) throw e.error;
|
|
51
43
|
}
|
|
52
44
|
}
|
|
53
|
-
|
|
54
45
|
return ar;
|
|
55
46
|
};
|
|
56
|
-
|
|
57
47
|
import * as React from 'react';
|
|
58
48
|
import isFunction from 'lodash/isFunction';
|
|
59
|
-
import Dialog from
|
|
60
|
-
|
|
49
|
+
import Dialog from "react-vant/es/dialog";
|
|
61
50
|
var ButtonModal = function ButtonModal(props, ref) {
|
|
62
51
|
var _a = __read(React.useState(false), 2),
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
52
|
+
visible = _a[0],
|
|
53
|
+
setModalVisible = _a[1];
|
|
66
54
|
var children = props.children,
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
55
|
+
trigger = props.trigger,
|
|
56
|
+
onOpen = props.onOpen,
|
|
57
|
+
onClose = props.onClose,
|
|
58
|
+
onConfirm = props.onConfirm,
|
|
59
|
+
onCancel = props.onCancel,
|
|
60
|
+
restModalProps = __rest(props, ["children", "trigger", "onOpen", "onClose", "onConfirm", "onCancel"]);
|
|
74
61
|
var openModal = function openModal() {
|
|
75
62
|
if (onOpen) {
|
|
76
63
|
onOpen();
|
|
77
64
|
}
|
|
78
|
-
|
|
79
65
|
setModalVisible(true);
|
|
80
66
|
};
|
|
81
|
-
|
|
82
67
|
var closeModal = function closeModal() {
|
|
83
68
|
if (onClose) {
|
|
84
69
|
onClose();
|
|
85
70
|
}
|
|
86
|
-
|
|
87
71
|
setModalVisible(false);
|
|
88
72
|
};
|
|
89
|
-
|
|
90
73
|
var modalActionRef = React.useRef({
|
|
91
74
|
open: openModal,
|
|
92
75
|
close: closeModal
|
|
@@ -94,24 +77,19 @@ var ButtonModal = function ButtonModal(props, ref) {
|
|
|
94
77
|
React.useImperativeHandle(ref, function () {
|
|
95
78
|
return modalActionRef.current;
|
|
96
79
|
});
|
|
97
|
-
|
|
98
80
|
var handleModalOk = function handleModalOk(e) {
|
|
99
81
|
if (onConfirm) {
|
|
100
82
|
return onConfirm(e);
|
|
101
83
|
}
|
|
102
|
-
|
|
103
84
|
closeModal();
|
|
104
85
|
return false;
|
|
105
86
|
};
|
|
106
|
-
|
|
107
87
|
var handleModalCancel = function handleModalCancel(e) {
|
|
108
88
|
if (onCancel) {
|
|
109
89
|
onCancel(e);
|
|
110
90
|
}
|
|
111
|
-
|
|
112
91
|
closeModal();
|
|
113
92
|
};
|
|
114
|
-
|
|
115
93
|
var buttonNode = trigger && /*#__PURE__*/React.cloneElement(trigger, {
|
|
116
94
|
onClick: openModal
|
|
117
95
|
});
|
|
@@ -123,6 +101,5 @@ var ButtonModal = function ButtonModal(props, ref) {
|
|
|
123
101
|
modalAction: modalActionRef.current
|
|
124
102
|
})));
|
|
125
103
|
};
|
|
126
|
-
|
|
127
104
|
var ForwardRefButtonModal = /*#__PURE__*/React.forwardRef(ButtonModal);
|
|
128
105
|
export default ForwardRefButtonModal;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import
|
|
1
|
+
import "react-vant/es/dialog/style/index.css";
|
|
@@ -2,10 +2,9 @@ var __read = this && this.__read || function (o, n) {
|
|
|
2
2
|
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
3
3
|
if (!m) return o;
|
|
4
4
|
var i = m.call(o),
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
r,
|
|
6
|
+
ar = [],
|
|
7
|
+
e;
|
|
9
8
|
try {
|
|
10
9
|
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
|
|
11
10
|
ar.push(r.value);
|
|
@@ -21,24 +20,19 @@ var __read = this && this.__read || function (o, n) {
|
|
|
21
20
|
if (e) throw e.error;
|
|
22
21
|
}
|
|
23
22
|
}
|
|
24
|
-
|
|
25
23
|
return ar;
|
|
26
24
|
};
|
|
27
|
-
|
|
28
|
-
import { useControllableValue } from 'ahooks';
|
|
25
|
+
import useControllableValue from "ahooks/es/useControllableValue";
|
|
29
26
|
import classNames from 'classnames';
|
|
30
27
|
import React from 'react';
|
|
31
|
-
|
|
32
28
|
var MenuNavIconButton = function MenuNavIconButton(props) {
|
|
33
29
|
var _onClick = props.onClick,
|
|
34
|
-
|
|
35
|
-
|
|
30
|
+
className = props.className;
|
|
36
31
|
var _a = __read(useControllableValue(props, {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
32
|
+
valuePropName: 'status'
|
|
33
|
+
}), 2),
|
|
34
|
+
status = _a[0],
|
|
35
|
+
setStatus = _a[1];
|
|
42
36
|
return /*#__PURE__*/React.createElement("div", {
|
|
43
37
|
className: classNames('menu-nav-icon', {
|
|
44
38
|
open: status
|
|
@@ -58,5 +52,4 @@ var MenuNavIconButton = function MenuNavIconButton(props) {
|
|
|
58
52
|
className: "menu-nav-icon-bar"
|
|
59
53
|
})));
|
|
60
54
|
};
|
|
61
|
-
|
|
62
55
|
export default MenuNavIconButton;
|
|
@@ -4,22 +4,17 @@ var __assign = this && this.__assign || function () {
|
|
|
4
4
|
__assign = Object.assign || function (t) {
|
|
5
5
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
6
|
s = arguments[i];
|
|
7
|
-
|
|
8
7
|
for (var p in s) {
|
|
9
8
|
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10
9
|
}
|
|
11
10
|
}
|
|
12
|
-
|
|
13
11
|
return t;
|
|
14
12
|
};
|
|
15
|
-
|
|
16
13
|
return __assign.apply(this, arguments);
|
|
17
14
|
};
|
|
18
|
-
|
|
19
15
|
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
20
16
|
if (k2 === undefined) k2 = k;
|
|
21
17
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
22
|
-
|
|
23
18
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
24
19
|
desc = {
|
|
25
20
|
enumerable: true,
|
|
@@ -28,13 +23,11 @@ var __createBinding = this && this.__createBinding || (Object.create ? function
|
|
|
28
23
|
}
|
|
29
24
|
};
|
|
30
25
|
}
|
|
31
|
-
|
|
32
26
|
Object.defineProperty(o, k2, desc);
|
|
33
27
|
} : function (o, m, k, k2) {
|
|
34
28
|
if (k2 === undefined) k2 = k;
|
|
35
29
|
o[k2] = m[k];
|
|
36
30
|
});
|
|
37
|
-
|
|
38
31
|
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
39
32
|
Object.defineProperty(o, "default", {
|
|
40
33
|
enumerable: true,
|
|
@@ -43,40 +36,32 @@ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? fun
|
|
|
43
36
|
} : function (o, v) {
|
|
44
37
|
o["default"] = v;
|
|
45
38
|
});
|
|
46
|
-
|
|
47
39
|
var __importStar = this && this.__importStar || function (mod) {
|
|
48
40
|
if (mod && mod.__esModule) return mod;
|
|
49
41
|
var result = {};
|
|
50
42
|
if (mod != null) for (var k in mod) {
|
|
51
43
|
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
52
44
|
}
|
|
53
|
-
|
|
54
45
|
__setModuleDefault(result, mod);
|
|
55
|
-
|
|
56
46
|
return result;
|
|
57
47
|
};
|
|
58
|
-
|
|
59
48
|
var __rest = this && this.__rest || function (s, e) {
|
|
60
49
|
var t = {};
|
|
61
|
-
|
|
62
50
|
for (var p in s) {
|
|
63
51
|
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
64
52
|
}
|
|
65
|
-
|
|
66
53
|
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
67
54
|
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
68
55
|
}
|
|
69
56
|
return t;
|
|
70
57
|
};
|
|
71
|
-
|
|
72
58
|
var __read = this && this.__read || function (o, n) {
|
|
73
59
|
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
74
60
|
if (!m) return o;
|
|
75
61
|
var i = m.call(o),
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
62
|
+
r,
|
|
63
|
+
ar = [],
|
|
64
|
+
e;
|
|
80
65
|
try {
|
|
81
66
|
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
|
|
82
67
|
ar.push(r.value);
|
|
@@ -92,55 +77,42 @@ var __read = this && this.__read || function (o, n) {
|
|
|
92
77
|
if (e) throw e.error;
|
|
93
78
|
}
|
|
94
79
|
}
|
|
95
|
-
|
|
96
80
|
return ar;
|
|
97
81
|
};
|
|
98
|
-
|
|
99
82
|
var __importDefault = this && this.__importDefault || function (mod) {
|
|
100
83
|
return mod && mod.__esModule ? mod : {
|
|
101
84
|
"default": mod
|
|
102
85
|
};
|
|
103
86
|
};
|
|
104
|
-
|
|
105
87
|
Object.defineProperty(exports, "__esModule", {
|
|
106
88
|
value: true
|
|
107
89
|
});
|
|
108
|
-
|
|
109
90
|
var React = __importStar(require("react"));
|
|
110
|
-
|
|
111
91
|
var isFunction_1 = __importDefault(require("lodash/isFunction"));
|
|
112
|
-
|
|
113
92
|
var dialog_1 = __importDefault(require("react-vant/lib/dialog"));
|
|
114
|
-
|
|
115
93
|
var ButtonModal = function ButtonModal(props, ref) {
|
|
116
94
|
var _a = __read(React.useState(false), 2),
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
95
|
+
visible = _a[0],
|
|
96
|
+
setModalVisible = _a[1];
|
|
120
97
|
var children = props.children,
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
98
|
+
trigger = props.trigger,
|
|
99
|
+
onOpen = props.onOpen,
|
|
100
|
+
onClose = props.onClose,
|
|
101
|
+
onConfirm = props.onConfirm,
|
|
102
|
+
onCancel = props.onCancel,
|
|
103
|
+
restModalProps = __rest(props, ["children", "trigger", "onOpen", "onClose", "onConfirm", "onCancel"]);
|
|
128
104
|
var openModal = function openModal() {
|
|
129
105
|
if (onOpen) {
|
|
130
106
|
onOpen();
|
|
131
107
|
}
|
|
132
|
-
|
|
133
108
|
setModalVisible(true);
|
|
134
109
|
};
|
|
135
|
-
|
|
136
110
|
var closeModal = function closeModal() {
|
|
137
111
|
if (onClose) {
|
|
138
112
|
onClose();
|
|
139
113
|
}
|
|
140
|
-
|
|
141
114
|
setModalVisible(false);
|
|
142
115
|
};
|
|
143
|
-
|
|
144
116
|
var modalActionRef = React.useRef({
|
|
145
117
|
open: openModal,
|
|
146
118
|
close: closeModal
|
|
@@ -148,24 +120,19 @@ var ButtonModal = function ButtonModal(props, ref) {
|
|
|
148
120
|
React.useImperativeHandle(ref, function () {
|
|
149
121
|
return modalActionRef.current;
|
|
150
122
|
});
|
|
151
|
-
|
|
152
123
|
var handleModalOk = function handleModalOk(e) {
|
|
153
124
|
if (onConfirm) {
|
|
154
125
|
return onConfirm(e);
|
|
155
126
|
}
|
|
156
|
-
|
|
157
127
|
closeModal();
|
|
158
128
|
return false;
|
|
159
129
|
};
|
|
160
|
-
|
|
161
130
|
var handleModalCancel = function handleModalCancel(e) {
|
|
162
131
|
if (onCancel) {
|
|
163
132
|
onCancel(e);
|
|
164
133
|
}
|
|
165
|
-
|
|
166
134
|
closeModal();
|
|
167
135
|
};
|
|
168
|
-
|
|
169
136
|
var buttonNode = trigger && React.cloneElement(trigger, {
|
|
170
137
|
onClick: openModal
|
|
171
138
|
});
|
|
@@ -177,6 +144,5 @@ var ButtonModal = function ButtonModal(props, ref) {
|
|
|
177
144
|
modalAction: modalActionRef.current
|
|
178
145
|
})));
|
|
179
146
|
};
|
|
180
|
-
|
|
181
147
|
var ForwardRefButtonModal = React.forwardRef(ButtonModal);
|
|
182
148
|
exports["default"] = ForwardRefButtonModal;
|
package/lib/index.js
CHANGED
|
@@ -5,23 +5,18 @@ var __importDefault = this && this.__importDefault || function (mod) {
|
|
|
5
5
|
"default": mod
|
|
6
6
|
};
|
|
7
7
|
};
|
|
8
|
-
|
|
9
8
|
Object.defineProperty(exports, "__esModule", {
|
|
10
9
|
value: true
|
|
11
10
|
});
|
|
12
11
|
exports.MenuNavIconButton = exports.ButtonModal = void 0;
|
|
13
|
-
|
|
14
12
|
var button_modal_1 = require("./button-modal");
|
|
15
|
-
|
|
16
13
|
Object.defineProperty(exports, "ButtonModal", {
|
|
17
14
|
enumerable: true,
|
|
18
15
|
get: function get() {
|
|
19
16
|
return __importDefault(button_modal_1)["default"];
|
|
20
17
|
}
|
|
21
18
|
});
|
|
22
|
-
|
|
23
19
|
var menu_nav_icon_button_1 = require("./menu-nav-icon-button");
|
|
24
|
-
|
|
25
20
|
Object.defineProperty(exports, "MenuNavIconButton", {
|
|
26
21
|
enumerable: true,
|
|
27
22
|
get: function get() {
|
|
@@ -4,10 +4,9 @@ var __read = this && this.__read || function (o, n) {
|
|
|
4
4
|
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
5
5
|
if (!m) return o;
|
|
6
6
|
var i = m.call(o),
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
r,
|
|
8
|
+
ar = [],
|
|
9
|
+
e;
|
|
11
10
|
try {
|
|
12
11
|
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
|
|
13
12
|
ar.push(r.value);
|
|
@@ -23,36 +22,27 @@ var __read = this && this.__read || function (o, n) {
|
|
|
23
22
|
if (e) throw e.error;
|
|
24
23
|
}
|
|
25
24
|
}
|
|
26
|
-
|
|
27
25
|
return ar;
|
|
28
26
|
};
|
|
29
|
-
|
|
30
27
|
var __importDefault = this && this.__importDefault || function (mod) {
|
|
31
28
|
return mod && mod.__esModule ? mod : {
|
|
32
29
|
"default": mod
|
|
33
30
|
};
|
|
34
31
|
};
|
|
35
|
-
|
|
36
32
|
Object.defineProperty(exports, "__esModule", {
|
|
37
33
|
value: true
|
|
38
34
|
});
|
|
39
|
-
|
|
40
|
-
var ahooks_1 = require("ahooks");
|
|
41
|
-
|
|
35
|
+
var useControllableValue_1 = __importDefault(require("ahooks/lib/useControllableValue"));
|
|
42
36
|
var classnames_1 = __importDefault(require("classnames"));
|
|
43
|
-
|
|
44
37
|
var react_1 = __importDefault(require("react"));
|
|
45
|
-
|
|
46
38
|
var MenuNavIconButton = function MenuNavIconButton(props) {
|
|
47
39
|
var _onClick = props.onClick,
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
setStatus = _a[1];
|
|
55
|
-
|
|
40
|
+
className = props.className;
|
|
41
|
+
var _a = __read((0, useControllableValue_1["default"])(props, {
|
|
42
|
+
valuePropName: 'status'
|
|
43
|
+
}), 2),
|
|
44
|
+
status = _a[0],
|
|
45
|
+
setStatus = _a[1];
|
|
56
46
|
return react_1["default"].createElement("div", {
|
|
57
47
|
className: (0, classnames_1["default"])('menu-nav-icon', {
|
|
58
48
|
open: status
|
|
@@ -72,5 +62,4 @@ var MenuNavIconButton = function MenuNavIconButton(props) {
|
|
|
72
62
|
className: "menu-nav-icon-bar"
|
|
73
63
|
})));
|
|
74
64
|
};
|
|
75
|
-
|
|
76
65
|
exports["default"] = MenuNavIconButton;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amssui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.110",
|
|
4
4
|
"description": "react ui library",
|
|
5
5
|
"author": "jason <usochen@gmail.com>",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -30,10 +30,11 @@
|
|
|
30
30
|
"README.md"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@ahooksjs/use-url-state": "^
|
|
33
|
+
"@ahooksjs/use-url-state": "^3.1.9",
|
|
34
34
|
"a-icons": "^1.1.62",
|
|
35
|
-
"aa-utils": "^2.1.
|
|
36
|
-
"ahooks": "^3.0.8"
|
|
35
|
+
"aa-utils": "^2.1.23",
|
|
36
|
+
"ahooks": "^3.0.8",
|
|
37
|
+
"react-vant": "3.0.0"
|
|
37
38
|
},
|
|
38
39
|
"peerDependencies": {
|
|
39
40
|
"react": "^16.8.6 || ^17.0 || ^18.0",
|
|
@@ -47,6 +48,5 @@
|
|
|
47
48
|
"engines": {
|
|
48
49
|
"node": ">=10.0.0"
|
|
49
50
|
},
|
|
50
|
-
"license": "MIT"
|
|
51
|
-
"gitHead": "bf41a61bc29c0515cb310670dab1790cdc94c35e"
|
|
51
|
+
"license": "MIT"
|
|
52
52
|
}
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2020 assui
|
|
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.
|