@adaptabletools/adaptable 11.1.1-canary.1 → 11.1.2

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 (74) hide show
  1. package/README.md +6 -4
  2. package/agGrid.d.ts +2 -2
  3. package/base.css +6 -6
  4. package/bundle.cjs.js +97 -97
  5. package/index.css +7 -6
  6. package/package.json +2 -2
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -1
  10. package/src/AdaptableOptions/LayoutOptions.d.ts +11 -0
  11. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +9 -13
  12. package/src/Api/Implementation/EventApiImpl.js +2 -1
  13. package/src/Api/Implementation/GridApiImpl.js +9 -10
  14. package/src/Api/Implementation/InternalApiImpl.js +1 -1
  15. package/src/Api/Implementation/LayoutApiImpl.js +7 -1
  16. package/src/Api/Implementation/UserInterfaceApiImpl.js +3 -1
  17. package/src/Api/QueryLanguageApi.d.ts +6 -6
  18. package/src/Redux/Store/AdaptableStore.js +1 -1
  19. package/src/Strategy/CalculatedColumnModule.js +5 -0
  20. package/src/Strategy/FreeTextColumnModule.js +1 -1
  21. package/src/Strategy/Interface/IModule.d.ts +2 -1
  22. package/src/Strategy/LayoutModule.d.ts +23 -0
  23. package/src/Strategy/LayoutModule.js +70 -0
  24. package/src/Strategy/Utilities/getFlashingCellStyleViewItems.d.ts +1 -0
  25. package/src/Strategy/Utilities/getFlashingCellStyleViewItems.js +2 -1
  26. package/src/Utilities/Constants/DocumentationLinkConstants.js +1 -1
  27. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +3 -0
  28. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
  29. package/src/Utilities/Emitter.d.ts +1 -1
  30. package/src/Utilities/Emitter.js +3 -6
  31. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +1 -1
  32. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +1 -1
  33. package/src/Utilities/Helpers/StyleHelper.d.ts +1 -0
  34. package/src/Utilities/Helpers/StyleHelper.js +13 -1
  35. package/src/View/AdaptableViewFactory.js +2 -4
  36. package/src/View/ColorPicker.d.ts +4 -2
  37. package/src/View/ColorPicker.js +16 -4
  38. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +24 -19
  39. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +3 -1
  40. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +23 -15
  41. package/src/View/Components/Popups/WindowPopups/WindowPopups.d.ts +2 -0
  42. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +9 -5
  43. package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +1 -0
  44. package/src/View/Components/Popups/WindowPopups/windowFactory.js +4 -1
  45. package/src/View/Components/RangesComponent.js +4 -6
  46. package/src/View/Components/StyleComponent.js +6 -9
  47. package/src/View/Components/ValueSelector/index.d.ts +1 -0
  48. package/src/View/Components/ValueSelector/index.js +1 -1
  49. package/src/View/Dashboard/CustomToolbarWrapper.js +9 -1
  50. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +2 -3
  51. package/src/View/GridInfo/AdaptableObjectsSummary.d.ts +2 -0
  52. package/src/View/GridInfo/AdaptableObjectsSummary.js +26 -0
  53. package/src/View/GridInfo/GridInfoPopup.js +11 -3
  54. package/src/View/Layout/LayoutEditorStandalonePopup.js +3 -4
  55. package/src/View/Layout/LayoutRadioSelector.d.ts +5 -0
  56. package/src/View/Layout/LayoutRadioSelector.js +18 -0
  57. package/src/View/Query/ExpandedQueryPopup.d.ts +2 -18
  58. package/src/View/Query/ExpandedQueryPopup.js +42 -57
  59. package/src/View/Query/QueryViewPanel.js +8 -5
  60. package/src/agGrid/ActionColumnRenderer.d.ts +1 -6
  61. package/src/agGrid/ActionColumnRenderer.js +50 -59
  62. package/src/agGrid/Adaptable.d.ts +3 -1
  63. package/src/agGrid/Adaptable.js +63 -27
  64. package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +2 -0
  65. package/src/agGrid/editors/AdaptableNumberEditor/index.js +16 -2
  66. package/src/components/ExpressionEditor/index.js +0 -1
  67. package/src/components/OverlayTrigger/index.js +1 -0
  68. package/src/components/Radio/index.d.ts +1 -1
  69. package/src/components/Radio/index.js +2 -2
  70. package/src/metamodel/adaptable.metamodel.js +17 -10
  71. package/src/types.d.ts +5 -0
  72. package/version.d.ts +1 -1
  73. package/version.js +1 -1
  74. package/LICENSE.md +0 -264
@@ -15,7 +15,7 @@ exports.ADAPTABLE_METAMODEL = {
15
15
  {
16
16
  "name": "actionColumnButton",
17
17
  "kind": "unknown",
18
- "description": "Button to display in the Column",
18
+ "description": "Button (or list of buttons) to display in the Column",
19
19
  "uiLabel": "Action Column Button"
20
20
  },
21
21
  {
@@ -8365,6 +8365,13 @@ exports.ADAPTABLE_METAMODEL = {
8365
8365
  "isOptional": true,
8366
8366
  "gridInfo": "item",
8367
8367
  "defaultValue": "false"
8368
+ },
8369
+ {
8370
+ "name": "view",
8371
+ "kind": "unknown",
8372
+ "description": "Options to customize how layout items are shown in Settings Panel",
8373
+ "uiLabel": "View",
8374
+ "isOptional": true
8368
8375
  }
8369
8376
  ]
8370
8377
  },
@@ -9495,24 +9502,24 @@ exports.ADAPTABLE_METAMODEL = {
9495
9502
  "QueryLanguageApi": {
9496
9503
  "name": "QueryLanguageApi",
9497
9504
  "kind": "Interface",
9498
- "description": "Manages AdapTableQL (Query Language)",
9505
+ "description": "Functions related to AdapTableQL (the Adaptable Query Language)",
9499
9506
  "properties": [
9500
9507
  {
9501
9508
  "name": "getAdaptableQueryExpression",
9502
9509
  "kind": "function",
9503
- "description": "Returns the Expression string of the given AdaptableQuery, which may be either a Boolean, an AggregatedBoolean, a Scalar, an AggregatedScalar or an ObservableExpression expression",
9510
+ "description": "Returns the Expression string of the given AdaptableQuery: can be Boolean, AggregatedBoolean, Scalar, AggregatedScalar or Observable Expression",
9504
9511
  "uiLabel": "Get Adaptable Query Expression"
9505
9512
  },
9506
9513
  {
9507
9514
  "name": "getASTForExpression",
9508
9515
  "kind": "function",
9509
- "description": "Runs the AST that AdapTableQL creates for a expression - useful when evaluating remotely",
9516
+ "description": "Runs the AST that AdapTableQL creates for an Expression - useful when evaluating remotely",
9510
9517
  "uiLabel": "Get AST For Expression"
9511
9518
  },
9512
9519
  {
9513
9520
  "name": "getColumnsFromExpression",
9514
9521
  "kind": "function",
9515
- "description": "Returns all Columns referenced in a QueryExpression",
9522
+ "description": "Returns all Columns referenced in an Expression",
9516
9523
  "uiLabel": "Get Columns From Expression"
9517
9524
  },
9518
9525
  {
@@ -11486,14 +11493,14 @@ exports.ADAPTABLE_METAMODEL = {
11486
11493
  {
11487
11494
  "name": "bulkUpdatePermittedValues",
11488
11495
  "kind": "unknown",
11489
- "description": "Custom column values for editing via bulk-update. When not defined it defaults to permittedValues.",
11496
+ "description": "Custom column values for editing via bulk-update; when not defined defaults to permittedValues",
11490
11497
  "uiLabel": "Bulk Update Permitted Values",
11491
11498
  "isOptional": true
11492
11499
  },
11493
11500
  {
11494
11501
  "name": "colorPalette",
11495
11502
  "kind": "unknown",
11496
- "description": "Colours to display in Colour Picker (in place of AdapTable's default set)",
11503
+ "description": "Colours to display in Colour Picker (in place of AdapTable's default set); can be hardcoded list or function",
11497
11504
  "uiLabel": "Color Palette",
11498
11505
  "isOptional": true
11499
11506
  },
@@ -11507,7 +11514,7 @@ exports.ADAPTABLE_METAMODEL = {
11507
11514
  {
11508
11515
  "name": "customSortPermittedValues",
11509
11516
  "kind": "unknown",
11510
- "description": "Custom column values for defining custom sort. When not defined it defaults to permittedValues.",
11517
+ "description": "Custom column values for defining Custom Sort; when not defined defaults to permittedValues",
11511
11518
  "uiLabel": "Custom Sort Permitted Values",
11512
11519
  "isOptional": true
11513
11520
  },
@@ -11530,14 +11537,14 @@ exports.ADAPTABLE_METAMODEL = {
11530
11537
  {
11531
11538
  "name": "editLookUpItems",
11532
11539
  "kind": "unknown",
11533
- "description": "Dropdown values displayed when column is being edited. When not defined it defaults to permittedValues.",
11540
+ "description": "Dropdown values displayed when column is being edited; when not defined defaults to permittedValues",
11534
11541
  "uiLabel": "Edit Look Up Items",
11535
11542
  "isOptional": true
11536
11543
  },
11537
11544
  {
11538
11545
  "name": "filterPermittedValues",
11539
11546
  "kind": "unknown",
11540
- "description": "Dropdown values for filter options inside floating and header filter. When not defined it defaults to permittedValues.",
11547
+ "description": "Custom column values for 'IN' filter; when not defined defaults to permittedValues",
11541
11548
  "uiLabel": "Filter Permitted Values",
11542
11549
  "isOptional": true
11543
11550
  },
package/src/types.d.ts CHANGED
@@ -1,5 +1,10 @@
1
1
  export type { ExpressionFunction, ExpressionFunctionDocBlock, ExpressionFunctionHandler, ExpressionContext, ExpressionFunctionMap, } from './../src/parser/src/types';
2
2
  export type { AdaptableNoCodeWizardOptions, IAdaptableNoCodeWizard, } from './AdaptableInterfaces/AdaptableNoCodeWizard';
3
+ export type { BooleanFunctionName } from './Utilities/ExpressionFunctions/booleanExpressionFunctions';
4
+ export type { ScalarFunctionName } from './Utilities/ExpressionFunctions/scalarExpressionFunctions';
5
+ export type { ObservableFunctionName } from './Utilities/ExpressionFunctions/observableExpressionFunctions';
6
+ export type { AggregationFunctionName } from './Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions';
7
+ export type { AggregatedScalarFunctionName } from './Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions';
3
8
  export type { AdaptableOptions } from './AdaptableOptions/AdaptableOptions';
4
9
  export { AdaptablePlugin } from './AdaptableOptions/AdaptablePlugin';
5
10
  export type { ContainerOptions } from './AdaptableOptions/ContainerOptions';
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "11.1.1-canary.1";
1
+ declare const _default: "11.1.2";
2
2
  export default _default;
package/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '11.1.1-canary.1'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '11.1.2'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
package/LICENSE.md DELETED
@@ -1,264 +0,0 @@
1
- End User Licence Agreement
2
- This End User Licence Agreement (“Licence”) is a legal agreement between you the client (“Client” or “you”), and Traders Tools Limited (“TTL”) relating to the use of TTL’s Adaptable™ software Adaptable.NET (for use in WPF and WinForms applications) or Adaptable.JS (for use in HTML5 applications) (together, the “Software”).
3
-
4
- By accepting the terms of this Licence or downloading, installing, copying, or otherwise using the Software, you represent and warrant that you are an authorized representative of Client and have the authority to bind Client to the terms of this Licence.
5
- If you do not accept the terms of this Licence, you must not download, install, copy, or otherwise use the Software and TTL will not grant a licence of the Software to you. In such an event, please contact the TTL as soon as possible to obtain a refund of any amounts paid for the Software.
6
-
7
- TTL provides the following:
8
-
9
- • Developer Licence: you may use the source code to Adaptable.JS to modify and adapt the Software under a free developer licence.
10
-
11
- • User Licence: you may only use the Software in a production environment if you have executed a Sales Order with TTL and paid the applicable annual licence fees.
12
-
13
- • Support: The annual user licence fee includes extensive online help to support users and client support teams working with them. In addition, the annual user licence fee includes unlimited support for the first month after the contract period has started, and up to a further 20 queries per year to Adaptable support team. Additional support, over and above these levels, can be provided if required but will attract an additional fee. Support services will be supplied under and subject to the terms and conditions of TTL’s Support Schedule for the time being in force..
14
-
15
- 1. LICENCE
16
-
17
- 1.1 Developer Licence: In consideration of Client agreeing to and complying with the terms of this Licence TTL hereby grants to Client a non-exclusive, non-transferable licence to use the source code version of Adaptable.JS to copy, modify, adapt, merge, translate, disassemble, decompile, recompile or reverse engineer Adaptable.JS, create derivative works based on the whole of or any part of Adaptable.JS and incorporate Adaptable.JS into other products.
18
-
19
- 1.2 User Licence: In consideration of Client paying the applicable annual licence fees to TTL and agreeing to and complying with the terms of this Licence TTL hereby grants to Client, for the user licence term as set out in the Sales Order, a non-exclusive, non-transferable licence to use the object code version of the Software at the Client’s site(s) set out in the Sales Order.
20
-
21
- 1.3 The annual licence fee includes unlimited use of both versions of the Software. However, the annual licence fee does not include any AG Grid licences which will need to be purchased separately from AG Grid.
22
-
23
- 1.4 The user licence shall be effective upon its first installation or use of the Software, and shall continue for the licence term set out in the Sales Order subject to termination under clause 14.1.
24
-
25
- 2. RESTRICTIONS
26
-
27
- 2.1 Client acknowledges that all intellectual property rights in the Software are, and shall remain, the property of TTL or the relevant third-party owners (as the case may be) and that Client shall have no rights in or to the Software other than the right to use it in accordance with the express terms of this Licence.
28
-
29
- 2.2 TTL acknowledges that all intellectual property rights in any modifications to the Software or derivatives thereof made by Client under a developer licence shall belong to Client, subject to TTL’s ownership of the underlying Software.
30
-
31
- 2.3 Client shall at all times comply with the following licence restrictions in exercising the rights granted in clause 1:
32
-
33
- 2.3.1 ensure that the number of persons using the Software does not exceed the number set out in the Sales Order;
34
-
35
- 2.3.2 pay for any additional users in accordance with TTL’s standard rate card of licence fees then current;
36
-
37
- 2.3.3 keep a complete and accurate record of Client's users of the Software, and produce such record to TTL on request from time to time;
38
-
39
- 2.3.1 effect and maintain adequate security measures to safeguard the Software from unauthorised access, use or copying by any person;
40
-
41
- 2.3.2 notify TTL as soon as it becomes aware of any unauthorized use of the Software by any person.
42
-
43
- 2.3.3 Client shall not rent, lease, or transfer the Software to any third party, nor use it to operate a rental, leasing, or service bureau business or any similar hosting or subscription arrangement.
44
-
45
- 2.3.4 Client may use the Software only for its internal business purposes as described in the Sales Order.
46
-
47
- 2.3.5 Client shall not conceal, modify, remove, or destroy in any way any proprietary markings on or in the Software including without limitation any copyright notices or confidential legends placed upon or contained within the Software.
48
-
49
- 2.4 Client may permit outsourcers, consultants, contractors, auditors, disaster recovery service providers, hosted service providers, distributors, agents, representatives, and other third parties providing services to Client (each, an “Agent”) to use the Software, but solely for the benefit of Client. Client shall procure that each such Agent (other than an auditor) shall agree (i) to use the Software solely for the benefit of Client, and (ii) not to disclose the Software to any other third party, without Client’s prior written approval. Client shall be responsible for the compliance by such Agents with the terms and conditions of the Licence.
50
-
51
- 2.5 Client shall inform its employees and Agents who use the Software of the terms and conditions governing such use, and shall be responsible for their compliance with the terms of this Licence.
52
-
53
- 2.6 Client shall permit TTL to inspect and have access to the Client’s site(s) set out in the Sales Order (and to the computer equipment located there) or any other premises at or on which the Software is being kept or used, and have access to any records kept in connection with this Licence, for the purposes of ensuring that Client is complying with the terms of this Licence, provided that TTL provides reasonable advance notice to Client of such inspection, which shall take place during normal business hours.
54
-
55
- 2.7 Save as expressly set out in this Licence, Client shall not acquire any title, rights of ownership, intellectual property rights of whatever nature in the Software and all rights in and to the Software not expressly granted under this Licence are reserved by TTL and/or its suppliers.
56
-
57
- 3. FEES
58
-
59
- 3.1 For a user licence Client shall pay to TTL the annual licence fees as set out in the Sales Order.
60
-
61
- 3.2 The annual licence fee will be invoiced according to the following schedule:
62
-
63
- 3.2.1 25% on signature of the Sales Order;
64
-
65
- 3.2.2 25% when the user licence period formally starts (i.e. on deployment to the first end user);
66
-
67
- 3.2.3 50% in either quarterly or monthly instalments from 6 months after the user licence period starts.
68
-
69
- 3.3 Thereafter, annual licence fees will be invoiced in advance on either a quarterly or monthly basis.
70
-
71
- 3.4 All payments are due within 30 days of invoice.
72
-
73
- 3.5 All sums payable under this Licence are exclusive of VAT or any relevant local sales taxes, for which Client shall be responsible.
74
-
75
- 3.6 If Client fails to make any payment due to TTL under this Licence by the due date for payment, then, without limiting TTL's remedies under clause 14, Client shall pay interest on the overdue amount at the rate of 4% per annum above the Bank of England's base rate from time to time. Such interest shall accrue on a daily basis from the due date until actual payment of the overdue amount, whether before or after judgment. Client shall pay the interest together with the overdue amount.
76
-
77
- 4. UPDATES
78
-
79
- 4.1 Under the annual user licence fee includes not less than four scheduled quarterly updates through the duration of user licence period, as well as ad-hoc releases for urgent bug fixes. Client shall install all such updates as soon as reasonably practicable after receipt.
80
-
81
- 4.2 TTL shall provide support for all AG Grid major version releases within a maximum period of three months of the update.
82
-
83
- 5. THIRD PARTY SOFTWARE
84
-
85
- 5.1 Save as set out in clause 22, no third party software shall be deemed to be incorporated within the Software for the purposes of this Licence (except where expressly provided to the contrary in the Sales Order) and use of any third party software shall be subject to the third party software vendor’s end user licence terms.
86
-
87
- 5.2 Client shall indemnify and hold TTL harmless against any liabilities, costs, damages and losses which TTL may suffer or incur as a result of any unauthorised use by Client of any third party software or any breach by Client of any third party end user licence terms howsoever arising. TTL may treat any such unauthorised use or breach as a breach of this Licence.
88
-
89
- 6. SUPPORT
90
-
91
- 6.1 TTL is not obligated to provide any technical or other support services for the Software unless Client is subscribing for (and has paid the applicable fees in full for) support services.
92
-
93
- 6.2 Where Client has subscribed to receive support services, Client agrees that such support services will be supplied under and subject to the terms and conditions of TTL’s Support Schedule for the time being in force..
94
-
95
- 7. LIMITED WARRANTY
96
-
97
- 7.1 Subject to the Client paying the applicable annual user licence fees to TTL, TTL warrants that the Software will perform substantially in accordance with the accompanying documentation for a period of thirty (30) days from the date of Client’s receipt of the Software.
98
-
99
- 7.2 TTL does not warrant that the use of the Software will be free from interruption or error-free.
100
-
101
- 7.3 Client accepts responsibility for the selection of the Software to achieve its intended results and acknowledges that the Software has not been developed or configured to meet the individual requirements of Client.
102
-
103
- 7.4 Client’s exclusive remedy for any breach of the foregoing limited warranty shall be, at TTL’s option, either (a) return of the price paid by Client for the non-conforming portion of the Software, or (b) repair or replacement the non-conforming portion of the Software. This limited warranty shall not apply if failure of the Software has resulted from accident, abuse, or misuse by anyone other than TTL.
104
-
105
- 8. DISCLAIMER
106
-
107
- 8.1 Except as expressly stated in this Licence, all warranties, conditions and terms, whether express or implied by statute, common law or otherwise, including the implied conditions, warranties or other terms as to satisfactory quality, fitness for purpose, non-infringement or the use of reasonable skill and care, are hereby excluded to the extent permitted by law.
108
-
109
- 8.2 Client is solely responsible for ensuring that the Software interoperates and intermediates properly with any third-party software or hardware, and TTL expressly disclaims any liability with respect to any failure of the Software to interoperate or intermediate with such third-party software or hardware.
110
-
111
- 9. LIMITATION OF LIABILITY
112
-
113
- 9.1 Neither party excludes or limits liability to the other party for:
114
-
115
- 9.1.1 fraud or fraudulent misrepresentation;
116
-
117
- 9.1.2 death or personal injury caused by negligence; or
118
-
119
- 9.1.3 any other liability which may not be excluded by law.
120
-
121
- 9.2 TTL shall not in any circumstances be liable whether contract, tort (including negligence or breach of statutory duty), misrepresentation (whether innocent or negligent), restitution or otherwise, for any:
122
-
123
- 9.2.1 loss of profits, loss of business, depletion of goodwill and/or similar losses (direct or indirect); or
124
-
125
- 9.2.2 loss or corruption of data or information, or
126
-
127
- 9.2.3 special, indirect or consequential loss costs, damages, charges or expenses however.
128
-
129
- 9.3 TTL’s total aggregate liability in contract, tort (including negligence or breach of statutory duty), misrepresentation (whether innocent or negligent), restitution or otherwise, arising under or in connection with this Licence shall in no event exceed the fees paid by Client for the Software licensed under this Licence.
130
-
131
- 10. INTELLECTUAL PROPERTY RIGHTS INDEMNITY
132
-
133
- 10.1 TTL shall defend Client from and against any claim or action that the possession or use of the Software in accordance with this Licence infringes any intellectual property right of a third party (“IPR Claim”) and shall be responsible for any losses, damages, costs (including reasonable legal fees) and expenses incurred by or awarded against Client as a result of, or in connection with, such IPR Claim, provided that, if any third party makes an IPR Claim, or notifies an intention to make an IPR Claim against Client, Client shall:
134
-
135
- 10.1.1 give written notice of the IPR Claim to TTL as soon as reasonably practicable;
136
-
137
- 10.1.2 not make any admission of liability in relation to the IPR Claim without the prior written consent of TTL;
138
-
139
- 10.1.3 at TTL’s request and expense, allow TTL to conduct the defence of the IPR Claim including settlement; and
140
-
141
- 10.1.4 at TTL’s expense, co-operate and assist to a reasonable extent with TTL’s defence of the IPR Claim.
142
-
143
- 10.2 Clause 10.1 shall not apply to:
144
-
145
- 10.2.1 use or combination of the Software with other software not provided by TTL where the alleged infringement arises out of or relates to such use or combination; or
146
-
147
- 10.2.2 the extent that the Software has been modified by Client or anyone other than by TTL;
148
-
149
- 10.2.3 use of a non-current release of the Software;
150
-
151
- 10.2.4 claims caused by Client’s negligence, abuse, misuse, or misapplication of the Software.
152
-
153
- 10.3 If any IPR Claim is made, or in TTL’s reasonable opinion is likely to be made, against Client, TTL may at its sole option and expense:
154
-
155
- 10.3.1 procure for Client the right to continuing using the Software in accordance with this Licence;
156
-
157
- 10.3.2 modify the Software so that it ceases to be infringing;
158
-
159
- 10.3.3 replace the Software (wholly or in part) with non-infringing software; or
160
-
161
- 10.3.4 terminate this Licence immediately by notice in writing to Client and refund any fees paid by Client as at the date of termination (less a reasonable sum in respect of Client's use of the Software to the date of termination) on return of the Software and all copies thereof.
162
-
163
- 10.4 This clause 10 constitutes Client's exclusive remedy and the TTL’s only liability in respect of IPR Claims and, for the avoidance of doubt, is subject to clause 9.
164
-
165
- 11. RESTRICTED RIGHTS
166
-
167
- 11.1 Client shall not shall export, directly or indirectly, any technical data acquired from TTL under this Licence (or any products, including software, incorporating any such data) in breach of any applicable laws or regulations (Export Control Laws), including United States export laws and regulations, to any country for which the government or any agency thereof at the time of export requires an export licence or other governmental approval without first obtaining such licence or approval.
168
-
169
- 11.2 Client undertakes: (a) contractually to oblige any third party to whom it discloses or transfers any such data or products to make an undertaking to it in similar terms to the one set out above; and (b) if requested, to provide TTL with any reasonable assistance to enable it to perform any activity required by any competent government or agency in any relevant jurisdiction for the purpose of compliance with any Export Control Laws.
170
-
171
- 12. CONFIDENTIALITY
172
-
173
- 12.1 Client acknowledges and agrees that the Software and all proprietary technology, know-how and documentation related to the Software, constitute confidential proprietary information of TTL. Accordingly, Client shall not disclose to any person or entity any information about the Software or other TTL confidential information that is furnished to or otherwise becomes known to Client, except that Client may disclose such information on a need to know basis to its employees who are obligated to maintain the confidentiality of such information.
174
-
175
- 12.2 Client’s obligation to maintain the confidentiality of such information shall not apply to information which:
176
-
177
- 12.2.1 was known to Client before receiving such information;
178
-
179
- 12.2.2 is in the public domain;
180
-
181
- 12.2.3 is received by Client from a third party who was legally entitled to make an unrestricted disclosure, or
182
-
183
- 12.2.4 Client can show to the reasonable satisfaction of TTL that such information has been developed independently to TTL’s confidential information.
184
-
185
- 13. COMPLIANCE WITH LAWS
186
-
187
- 13.1 Client shall comply with all applicable laws, regulations, rules, ordinances, and orders regarding its use of the Software.
188
-
189
- 14. TERMINATION
190
-
191
- 14.1 TTL may terminate this Licence by written notice to Client with immediate effect, if Client:
192
-
193
- 14.1.1 fails to pay any amount due under this Licence on the due date for payment and remains in default 14 days after being notified in writing to make that payment;
194
-
195
- 14.1.2 commits a breach of any term of this Licence (other than failure to pay any amounts due under this Licence) and (if that breach is remediable) fails to remedy that breach within a period of 30 days after being notified in writing to do so;
196
-
197
- 14.1.3 becomes subject to any voluntary arrangement, is unable to pay its debts within the meaning of Section 123 of the Insolvency Act 1986, has a receiver, manager, administrator or administrative receiver appointed over its assets, undertakings or income, has passed a resolution for its winding-up, or has a petition presented to any Court for its winding-up or for an administration order or suffers any similar or analogous proceedings in any jurisdiction;
198
-
199
- 14.1.4 has any distraint, execution or other process levied or enforced on any of its property; or
200
-
201
- 14.1.5 is dissolved or ceases or threatens to cease to trade.
202
-
203
- 14.2 Following termination of this Licence, Client shall, upon TTL’s written notice, immediately cease to use of the Software.
204
-
205
- 14.3 Termination of this Licence shall not affect any rights, remedies, obligations or liabilities of the parties that have accrued up to the date of termination, including the right to claim damages in respect of any breach of this Licence which existed at or before the date of termination.
206
-
207
- 14.4 On termination for any reason all rights granted to Client under this Licence shall cease and Client shall immediately destroy or return to TTL all copies of the Software then in its possession, custody or control and, in the case of destruction, certify to TTL that it has done so.
208
-
209
- 14.5 The provisions of clauses 2, 8, 9, 10, 11 and 12 of this Licence shall survive its termination, howsoever arising.
210
-
211
- 15. ASSIGNMENT
212
-
213
- 15.1 Client may not assign, subcontract or deal in any way with, any of its rights or obligations under this Licence without TTL’s prior written consent. Any attempted assignment not in accordance with this Licence shall be void. Subject to the foregoing, the rights and obligations of the parties under this Licence shall be binding upon and inure to the benefit of their successors and permitted assigns.
214
-
215
- 16. ENTIRE AGREEMENT
216
-
217
- 16.1 This Licence constitutes the entire agreement and understanding between the parties with respect to the subject matter hereof and supersedes all prior or contemporaneous written, electronic, or oral communications, representations, agreements, or understandings between the parties with respect thereto.
218
-
219
- 16.2 Client acknowledges that, in entering into this Licence, it does not rely on any statement, representation, assurance or warranty (whether it was made negligently or innocently) of any person (whether a party to this Licence or not) (Representation) other than as expressly set out in this Licence.
220
-
221
- 16.3 Client agrees that the only rights and remedies available to it arising out of or in connection with a Representation shall be for breach of contract. Nothing in this clause shall limit or exclude any liability for fraud
222
-
223
- 16.4 No provisions in any purchase order or other business forms proposed or submitted by Client will supersede the terms and conditions of this Licence.
224
-
225
- 17. VARIATIONS
226
-
227
- 17.1 No variation of this Licence shall be effective unless it is in writing and signed by the parties (or their authorised representatives).
228
-
229
- 18. WAIVER
230
-
231
- 18.1 The failure or delay of TTL to insist upon strict adherence to provisions of this Licence shall in no way constitute a waiver of the relevant provisions or any subsequent breach.
232
-
233
- 19. INVALIDITY
234
-
235
- 19.1 In the event any provision of this Licence is held invalid or unenforceable by a court of competent jurisdiction, the remainder of this Licence shall remain valid and enforceable according to its terms.
236
-
237
- 20. THIRD PARTY RIGHTS
238
-
239
- 20.1 A person who is not a party to this Licence shall not have any rights under the Contracts (Rights of Third Parties) Act 1999 to enforce any term of this Licence, but this does not affect any right or remedy of a third party which exists, or is available, apart from that Act.
240
-
241
- 21. GOVERNING LAW
242
-
243
- 21.1 This Licence and any dispute or claim arising out of or in connection with it or its subject matter or formation shall be governed by and construed in accordance with the laws of England and Wales.
244
-
245
- 21.2 The parties irrevocably agree that the courts of England and Wales shall have exclusive jurisdiction to settle any dispute or claim that arises out of or in connection with this Licence or its subject matter or formation.
246
-
247
- 22. THIRD PARTY COMPONENTS
248
-
249
- 22.1 The Software includes components of software code and redistributables that are licensed under the following licenses, permissions, and notices:
250
-
251
- 22.1.1 DevExpress - the EULA for DevExpress products can be found here: http://www.devexpress.com/Support/LicensingFAQ.xml
252
-
253
- 22.1.2 Infragistics - the EULA for Infragistics products can be found here: http://www.infragistics.com/legal/license/igultimate-la
254
-
255
- 22.1.3 Xceed - the EULA for Xceed products can be found here: https://xceed.com/xceed-software-license-agreement/
256
-
257
- 22.1.4 Telerik - the EULA for Telerik Keno professional products can be found here: http://www.telerik.com/purchase/license-agreement/kendo-ui-professional
258
-
259
- 22.1.5 ag-Grid – Licencing details can be found here: https://www.ag-grid.com/license-pricing.php
260
-
261
- 22.1.6 OpenFin (Hypergrid) – Licencing details can be found here: https://raw.githubusercontent.com/openfin/fin-hypergrid/master/LICENSE
262
-
263
- 22.2 A complete list of third party components and redistributables that are included in the Software is available upon request. Such third party components and redistributables are provided "AS IS", the contributors give no express or implied condition, warranty, guarantee or indemnity and they are excluded from any condition, warranty, guarantee or indemnity provided by TTL under this Licence. All copyright and other intellectual property rights in and to such third party components and redistributables, any accompanying printed materials and any copies thereof are owned by the respective contributor.
264
-