@graphysdk/react 1.8.1-beta.1787150640613 → 2.0.0-beta.1786389736654
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/README.md +30 -28
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +7 -3
- package/dist/index.mjs +9 -23
- package/package.json +4 -5
- package/dist/authoring.d.ts +0 -3
- package/licenses/PolyForm-Free-Trial-1.0.0.md +0 -93
- package/licenses/PolyForm-NonCommercial-1.0.0.md +0 -131
- package/licenses/PolyForm-Small-Business-1.0.0.md +0 -121
package/README.md
CHANGED
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
# @graphysdk/react
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
The recommended, batteries-included React entry point for Graphy.
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install @graphysdk/react
|
|
9
|
-
```
|
|
5
|
+
## Docs
|
|
10
6
|
|
|
11
|
-
|
|
7
|
+
- [Quickstart](https://docs.graphy.dev/sdk-next/quickstart)
|
|
8
|
+
- [Provider and renderer](https://docs.graphy.dev/sdk-next/rendering/provider-and-renderer)
|
|
12
9
|
|
|
13
|
-
|
|
10
|
+
It re-exports the `@graphysdk/react-renderer` surface across the same two entry points — the read-only main entry and `/editable` — with one opinionated default: the **provenance mark is shown by default**.
|
|
14
11
|
|
|
15
12
|
```tsx
|
|
16
|
-
import { GraphProvider, GraphRenderer
|
|
13
|
+
import { GraphProvider, GraphRenderer } from '@graphysdk/react';
|
|
14
|
+
import { createSpec, pipe, geom, scale } from '@graphysdk/viz-engine';
|
|
17
15
|
|
|
18
16
|
const input = pipe(createSpec({ x: 'month', y: 'revenue' }), geom.bar(), scale.x(), scale.y());
|
|
19
17
|
|
|
@@ -26,12 +24,14 @@ export function Chart({ data }) {
|
|
|
26
24
|
}
|
|
27
25
|
```
|
|
28
26
|
|
|
29
|
-
##
|
|
27
|
+
## Entry points
|
|
30
28
|
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
Two entries, mirroring `@graphysdk/react-renderer`'s own split:
|
|
30
|
+
|
|
31
|
+
- **`@graphysdk/react`** — the read-only surface: `GraphProvider`, `GraphRenderer`, hooks, slots, theme, and types. This is where the batteries-included `GraphProvider` lives.
|
|
32
|
+
- **`@graphysdk/react/editable`** — the editing surface: `EditableGraphRenderer`, `EditorPanel`, its sections, and the default controls. Kept separate so a read-only embed never bundles the editor or its stylesheet.
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
The provenance default lives on `GraphProvider`, so editable mode inherits it — mount the editor inside the same provider:
|
|
35
35
|
|
|
36
36
|
```tsx
|
|
37
37
|
import { GraphProvider } from '@graphysdk/react';
|
|
@@ -46,11 +46,20 @@ export function EditableChart({ data, input, isEditing }) {
|
|
|
46
46
|
}
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
##
|
|
49
|
+
## Which package should I use?
|
|
50
50
|
|
|
51
|
-
|
|
52
|
-
|
|
51
|
+
- **`@graphysdk/react` (this package)** — start here. The provenance mark is on by default; everything else is identical to the renderer.
|
|
52
|
+
- **`@graphysdk/react-renderer`** — the neutral, unopinionated layer. The mark is **off** by default. Reach for it directly when embedding into another product or building your own opinionated wrapper.
|
|
53
|
+
|
|
54
|
+
Both share the same API (same two entry points), so moving between them is a one-line import change.
|
|
53
55
|
|
|
56
|
+
## Turning the mark off
|
|
57
|
+
|
|
58
|
+
The mark is a developer config flag, never a paywall. Opt out per chart with either API:
|
|
59
|
+
|
|
60
|
+
```tsx
|
|
61
|
+
// Low-level spec config
|
|
62
|
+
import { config } from '@graphysdk/viz-engine';
|
|
54
63
|
const input = pipe(
|
|
55
64
|
createSpec({ x: 'month', y: 'revenue' }),
|
|
56
65
|
geom.bar(),
|
|
@@ -58,17 +67,10 @@ const input = pipe(
|
|
|
58
67
|
);
|
|
59
68
|
```
|
|
60
69
|
|
|
61
|
-
|
|
70
|
+
```tsx
|
|
71
|
+
// High-level GraphConfig API
|
|
72
|
+
import { convertGraphConfig } from '@graphysdk/viz-engine/graph-config';
|
|
73
|
+
const input = convertGraphConfig({ type: 'column', content: { isBrandMarkHidden: true } }, data);
|
|
74
|
+
```
|
|
62
75
|
|
|
63
76
|
An explicit setting always wins over this package's default.
|
|
64
|
-
|
|
65
|
-
## Licence
|
|
66
|
-
|
|
67
|
-
This package is available under PolyForm Noncommercial, Small Business, or a 32-day Free Trial. Free Trial is local or internal evaluation only — it does not cover a public page. See [what you can do under the trial](https://docs.graphy.dev/licence/evaluation).
|
|
68
|
-
|
|
69
|
-
- [`@graphysdk/react-renderer`](https://www.npmjs.com/package/@graphysdk/react-renderer) — same React components, mark off by default
|
|
70
|
-
- [`@graphysdk/viz-engine`](https://www.npmjs.com/package/@graphysdk/viz-engine) — the engine alone, for non-React hosts
|
|
71
|
-
|
|
72
|
-
## Support
|
|
73
|
-
|
|
74
|
-
Questions and community help: [Discord](https://discord.gg/yGmYCjkSr).
|
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});let
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});let n=require("react"),t=require("@graphysdk/react-renderer"),i=require("@graphysdk/viz-engine"),a=require("react/jsx-runtime");function u(e){const r=e.config.content;return r?.isBrandMarkVisible!==void 0||r?.brandMark?.enabled!==void 0?e:(0,i.updateSpec)(e,{config:{content:{isBrandMarkVisible:!0,brandMark:{enabled:!0}}}})}var o=e=>{const r=(0,n.useMemo)(()=>u(e.input),[e.input]);return(0,a.jsx)(t.GraphProvider,{...e,input:r})};exports.GraphProvider=o;Object.keys(t).forEach(function(e){e!=="default"&&!Object.prototype.hasOwnProperty.call(exports,e)&&Object.defineProperty(exports,e,{enumerable:!0,get:function(){return t[e]}})});
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* `@graphysdk/react` —
|
|
3
|
-
*
|
|
2
|
+
* `@graphysdk/react` — the recommended, batteries-included React entry point.
|
|
3
|
+
*
|
|
4
|
+
* This main entry mirrors the `@graphysdk/react-renderer` read-only (`.`) surface, but swaps in a
|
|
5
|
+
* `GraphProvider` whose Made with Graphy provenance badge is on by default. The editing surface
|
|
6
|
+
* lives at the `@graphysdk/react/editable` subpath (mirroring `@graphysdk/react-renderer/editable`),
|
|
7
|
+
* kept separate so a read-only embed never pulls in the editor. The low-level `@graphysdk/react-renderer`
|
|
8
|
+
* stays mark-free by default for embedders and advanced integrators.
|
|
4
9
|
*/
|
|
5
|
-
export * from './authoring';
|
|
6
10
|
export { GraphProvider } from './graph-provider';
|
|
7
11
|
export * from '@graphysdk/react-renderer';
|
package/dist/index.mjs
CHANGED
|
@@ -1,36 +1,22 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { jsx as
|
|
1
|
+
import { useMemo as e } from "react";
|
|
2
|
+
import { GraphProvider as n } from "@graphysdk/react-renderer";
|
|
3
|
+
import { updateSpec as i } from "@graphysdk/viz-engine";
|
|
4
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
5
5
|
export * from "@graphysdk/react-renderer";
|
|
6
6
|
function a(r) {
|
|
7
7
|
const t = r.config.content;
|
|
8
|
-
return t?.isBrandMarkVisible !== void 0 || t?.brandMark?.enabled !== void 0 ? r :
|
|
8
|
+
return t?.isBrandMarkVisible !== void 0 || t?.brandMark?.enabled !== void 0 ? r : i(r, { config: { content: {
|
|
9
9
|
isBrandMarkVisible: !0,
|
|
10
10
|
brandMark: { enabled: !0 }
|
|
11
11
|
} } });
|
|
12
12
|
}
|
|
13
|
-
var
|
|
14
|
-
const t =
|
|
15
|
-
return /* @__PURE__ */
|
|
13
|
+
var c = (r) => {
|
|
14
|
+
const t = e(() => a(r.input), [r.input]);
|
|
15
|
+
return /* @__PURE__ */ o(n, {
|
|
16
16
|
...r,
|
|
17
17
|
input: t
|
|
18
18
|
});
|
|
19
19
|
};
|
|
20
20
|
export {
|
|
21
|
-
|
|
22
|
-
d as annotation,
|
|
23
|
-
p as config,
|
|
24
|
-
m as coord,
|
|
25
|
-
s as createSpec,
|
|
26
|
-
f as geom,
|
|
27
|
-
u as highlight,
|
|
28
|
-
l as mapping,
|
|
29
|
-
h as pipe,
|
|
30
|
-
g as scale,
|
|
31
|
-
k as stat,
|
|
32
|
-
M as style,
|
|
33
|
-
b as styles,
|
|
34
|
-
v as token,
|
|
35
|
-
x as transform
|
|
21
|
+
c as GraphProvider
|
|
36
22
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphysdk/react",
|
|
3
3
|
"author": "Graphy",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "Batteries-included React chart SDK for Graphy (provenance mark on by default)",
|
|
5
5
|
"homepage": "https://docs.graphy.dev/sdk-next/quickstart",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
7
7
|
"keywords": [
|
|
@@ -11,14 +11,13 @@
|
|
|
11
11
|
"visualization",
|
|
12
12
|
"grammar-of-graphics"
|
|
13
13
|
],
|
|
14
|
-
"version": "
|
|
14
|
+
"version": "2.0.0-beta.1786389736654",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"sideEffects": false,
|
|
17
17
|
"types": "./dist/index.d.ts",
|
|
18
18
|
"files": [
|
|
19
19
|
"dist",
|
|
20
20
|
"LICENSE.md",
|
|
21
|
-
"licenses",
|
|
22
21
|
"README.md"
|
|
23
22
|
],
|
|
24
23
|
"exports": {
|
|
@@ -34,8 +33,8 @@
|
|
|
34
33
|
}
|
|
35
34
|
},
|
|
36
35
|
"dependencies": {
|
|
37
|
-
"@graphysdk/react-renderer": "
|
|
38
|
-
"@graphysdk/viz-engine": "
|
|
36
|
+
"@graphysdk/react-renderer": "2.0.0-beta.1786389736654",
|
|
37
|
+
"@graphysdk/viz-engine": "2.0.0-beta.1786389736654"
|
|
39
38
|
},
|
|
40
39
|
"peerDependencies": {
|
|
41
40
|
"react": "^19.0.0"
|
package/dist/authoring.d.ts
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
/** Viz-engine builders and types for the `@graphysdk/react` entry. */
|
|
2
|
-
export type { Data, Spec, SpecInput } from '@graphysdk/viz-engine';
|
|
3
|
-
export { annotation, config, coord, createSpec, geom, highlight, mapping, pipe, scale, stat, style, styles, token, transform, } from '@graphysdk/viz-engine';
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
# PolyForm Free Trial License 1.0.0
|
|
2
|
-
|
|
3
|
-
<https://polyformproject.org/licenses/free-trial/1.0.0>
|
|
4
|
-
|
|
5
|
-
## Acceptance
|
|
6
|
-
|
|
7
|
-
In order to get any license under these terms, you must agree
|
|
8
|
-
to them as both strict obligations and conditions to all
|
|
9
|
-
your licenses.
|
|
10
|
-
|
|
11
|
-
## Copyright License
|
|
12
|
-
|
|
13
|
-
The licensor grants you a copyright license for the software
|
|
14
|
-
to do everything you might do with the software that would
|
|
15
|
-
otherwise infringe the licensor's copyright in it for any
|
|
16
|
-
permitted purpose. However, you may only make changes or
|
|
17
|
-
new works based on the software according to [Changes and New
|
|
18
|
-
Works License](#changes-and-new-works-license), and you may
|
|
19
|
-
not distribute copies of the software.
|
|
20
|
-
|
|
21
|
-
## Changes and New Works License
|
|
22
|
-
|
|
23
|
-
The licensor grants you an additional copyright license to
|
|
24
|
-
make changes and new works based on the software for any
|
|
25
|
-
permitted purpose.
|
|
26
|
-
|
|
27
|
-
## Patent License
|
|
28
|
-
|
|
29
|
-
The licensor grants you a patent license for the software that
|
|
30
|
-
covers patent claims the licensor can license, or becomes able
|
|
31
|
-
to license, that you would infringe by using the software.
|
|
32
|
-
|
|
33
|
-
## Fair Use
|
|
34
|
-
|
|
35
|
-
You may have "fair use" rights for the software under the
|
|
36
|
-
law. These terms do not limit them.
|
|
37
|
-
|
|
38
|
-
## Free Trial
|
|
39
|
-
|
|
40
|
-
Use to evaluate whether the software suits a particular
|
|
41
|
-
application for less than 32 consecutive calendar days, on
|
|
42
|
-
behalf of you or your company, is use for a permitted purpose.
|
|
43
|
-
|
|
44
|
-
## No Other Rights
|
|
45
|
-
|
|
46
|
-
These terms do not allow you to sublicense or transfer any of
|
|
47
|
-
your licenses to anyone else, or prevent the licensor from
|
|
48
|
-
granting licenses to anyone else. These terms do not imply
|
|
49
|
-
any other licenses.
|
|
50
|
-
|
|
51
|
-
## Patent Defense
|
|
52
|
-
|
|
53
|
-
If you make any written claim that the software infringes or
|
|
54
|
-
contributes to infringement of any patent, your patent license
|
|
55
|
-
for the software granted under these terms ends immediately. If
|
|
56
|
-
your company makes such a claim, your patent license ends
|
|
57
|
-
immediately for work on behalf of your company.
|
|
58
|
-
|
|
59
|
-
## Violations
|
|
60
|
-
|
|
61
|
-
If you violate any of these terms, or do anything with the
|
|
62
|
-
software not covered by your licenses, all your licenses
|
|
63
|
-
end immediately.
|
|
64
|
-
|
|
65
|
-
## No Liability
|
|
66
|
-
|
|
67
|
-
_**As far as the law allows, the software comes as is, without
|
|
68
|
-
any warranty or condition, and the licensor will not be liable
|
|
69
|
-
to you for any damages arising out of these terms or the use
|
|
70
|
-
or nature of the software, under any kind of legal claim.**_
|
|
71
|
-
|
|
72
|
-
## Definitions
|
|
73
|
-
|
|
74
|
-
The **licensor** is the individual or entity offering these
|
|
75
|
-
terms, and the **software** is the software the licensor makes
|
|
76
|
-
available under these terms.
|
|
77
|
-
|
|
78
|
-
**You** refers to the individual or entity agreeing to these
|
|
79
|
-
terms.
|
|
80
|
-
|
|
81
|
-
**Your company** is any legal entity, sole proprietorship,
|
|
82
|
-
or other kind of organization that you work for, plus all
|
|
83
|
-
organizations that have control over, are under the control of,
|
|
84
|
-
or are under common control with that organization. **Control**
|
|
85
|
-
means ownership of substantially all the assets of an entity,
|
|
86
|
-
or the power to direct its management and policies by vote,
|
|
87
|
-
contract, or otherwise. Control can be direct or indirect.
|
|
88
|
-
|
|
89
|
-
**Your licenses** are all the licenses granted to you for the
|
|
90
|
-
software under these terms.
|
|
91
|
-
|
|
92
|
-
**Use** means anything you do with the software requiring one
|
|
93
|
-
of your licenses.
|
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
# PolyForm Noncommercial License 1.0.0
|
|
2
|
-
|
|
3
|
-
<https://polyformproject.org/licenses/noncommercial/1.0.0>
|
|
4
|
-
|
|
5
|
-
## Acceptance
|
|
6
|
-
|
|
7
|
-
In order to get any license under these terms, you must agree
|
|
8
|
-
to them as both strict obligations and conditions to all
|
|
9
|
-
your licenses.
|
|
10
|
-
|
|
11
|
-
## Copyright License
|
|
12
|
-
|
|
13
|
-
The licensor grants you a copyright license for the
|
|
14
|
-
software to do everything you might do with the software
|
|
15
|
-
that would otherwise infringe the licensor's copyright
|
|
16
|
-
in it for any permitted purpose. However, you may
|
|
17
|
-
only distribute the software according to [Distribution
|
|
18
|
-
License](#distribution-license) and make changes or new works
|
|
19
|
-
based on the software according to [Changes and New Works
|
|
20
|
-
License](#changes-and-new-works-license).
|
|
21
|
-
|
|
22
|
-
## Distribution License
|
|
23
|
-
|
|
24
|
-
The licensor grants you an additional copyright license
|
|
25
|
-
to distribute copies of the software. Your license
|
|
26
|
-
to distribute covers distributing the software with
|
|
27
|
-
changes and new works permitted by [Changes and New Works
|
|
28
|
-
License](#changes-and-new-works-license).
|
|
29
|
-
|
|
30
|
-
## Notices
|
|
31
|
-
|
|
32
|
-
You must ensure that anyone who gets a copy of any part of
|
|
33
|
-
the software from you also gets a copy of these terms or the
|
|
34
|
-
URL for them above, as well as copies of any plain-text lines
|
|
35
|
-
beginning with `Required Notice:` that the licensor provided
|
|
36
|
-
with the software. For example:
|
|
37
|
-
|
|
38
|
-
> Required Notice: Copyright Graphy Technologies Ltd. (https://graphy.dev)
|
|
39
|
-
|
|
40
|
-
## Changes and New Works License
|
|
41
|
-
|
|
42
|
-
The licensor grants you an additional copyright license to
|
|
43
|
-
make changes and new works based on the software for any
|
|
44
|
-
permitted purpose.
|
|
45
|
-
|
|
46
|
-
## Patent License
|
|
47
|
-
|
|
48
|
-
The licensor grants you a patent license for the software that
|
|
49
|
-
covers patent claims the licensor can license, or becomes able
|
|
50
|
-
to license, that you would infringe by using the software.
|
|
51
|
-
|
|
52
|
-
## Noncommercial Purposes
|
|
53
|
-
|
|
54
|
-
Any noncommercial purpose is a permitted purpose.
|
|
55
|
-
|
|
56
|
-
## Personal Uses
|
|
57
|
-
|
|
58
|
-
Personal use for research, experiment, and testing for
|
|
59
|
-
the benefit of public knowledge, personal study, private
|
|
60
|
-
entertainment, hobby projects, amateur pursuits, or religious
|
|
61
|
-
observance, without any anticipated commercial application,
|
|
62
|
-
is use for a permitted purpose.
|
|
63
|
-
|
|
64
|
-
## Noncommercial Organizations
|
|
65
|
-
|
|
66
|
-
Use by any charitable organization, educational institution,
|
|
67
|
-
public research organization, public safety or health
|
|
68
|
-
organization, environmental protection organization,
|
|
69
|
-
or government institution is use for a permitted purpose
|
|
70
|
-
regardless of the source of funding or obligations resulting
|
|
71
|
-
from the funding.
|
|
72
|
-
|
|
73
|
-
## Fair Use
|
|
74
|
-
|
|
75
|
-
You may have "fair use" rights for the software under the
|
|
76
|
-
law. These terms do not limit them.
|
|
77
|
-
|
|
78
|
-
## No Other Rights
|
|
79
|
-
|
|
80
|
-
These terms do not allow you to sublicense or transfer any of
|
|
81
|
-
your licenses to anyone else, or prevent the licensor from
|
|
82
|
-
granting licenses to anyone else. These terms do not imply
|
|
83
|
-
any other licenses.
|
|
84
|
-
|
|
85
|
-
## Patent Defense
|
|
86
|
-
|
|
87
|
-
If you make any written claim that the software infringes or
|
|
88
|
-
contributes to infringement of any patent, your patent license
|
|
89
|
-
for the software granted under these terms ends immediately. If
|
|
90
|
-
your company makes such a claim, your patent license ends
|
|
91
|
-
immediately for work on behalf of your company.
|
|
92
|
-
|
|
93
|
-
## Violations
|
|
94
|
-
|
|
95
|
-
The first time you are notified in writing that you have
|
|
96
|
-
violated any of these terms, or done anything with the software
|
|
97
|
-
not covered by your licenses, your licenses can nonetheless
|
|
98
|
-
continue if you come into full compliance with these terms,
|
|
99
|
-
and take practical steps to correct past violations, within
|
|
100
|
-
32 days of receiving notice. Otherwise, all your licenses
|
|
101
|
-
end immediately.
|
|
102
|
-
|
|
103
|
-
## No Liability
|
|
104
|
-
|
|
105
|
-
_**As far as the law allows, the software comes as is, without
|
|
106
|
-
any warranty or condition, and the licensor will not be liable
|
|
107
|
-
to you for any damages arising out of these terms or the use
|
|
108
|
-
or nature of the software, under any kind of legal claim.**_
|
|
109
|
-
|
|
110
|
-
## Definitions
|
|
111
|
-
|
|
112
|
-
The **licensor** is the individual or entity offering these
|
|
113
|
-
terms, and the **software** is the software the licensor makes
|
|
114
|
-
available under these terms.
|
|
115
|
-
|
|
116
|
-
**You** refers to the individual or entity agreeing to these
|
|
117
|
-
terms.
|
|
118
|
-
|
|
119
|
-
**Your company** is any legal entity, sole proprietorship,
|
|
120
|
-
or other kind of organization that you work for, plus all
|
|
121
|
-
organizations that have control over, are under the control of,
|
|
122
|
-
or are under common control with that organization. **Control**
|
|
123
|
-
means ownership of substantially all the assets of an entity,
|
|
124
|
-
or the power to direct its management and policies by vote,
|
|
125
|
-
contract, or otherwise. Control can be direct or indirect.
|
|
126
|
-
|
|
127
|
-
**Your licenses** are all the licenses granted to you for the
|
|
128
|
-
software under these terms.
|
|
129
|
-
|
|
130
|
-
**Use** means anything you do with the software requiring one
|
|
131
|
-
of your licenses.
|
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
# PolyForm Small Business License 1.0.0
|
|
2
|
-
|
|
3
|
-
<https://polyformproject.org/licenses/small-business/1.0.0>
|
|
4
|
-
|
|
5
|
-
## Acceptance
|
|
6
|
-
|
|
7
|
-
In order to get any license under these terms, you must agree
|
|
8
|
-
to them as both strict obligations and conditions to all
|
|
9
|
-
your licenses.
|
|
10
|
-
|
|
11
|
-
## Copyright License
|
|
12
|
-
|
|
13
|
-
The licensor grants you a copyright license for the
|
|
14
|
-
software to do everything you might do with the software
|
|
15
|
-
that would otherwise infringe the licensor's copyright
|
|
16
|
-
in it for any permitted purpose. However, you may
|
|
17
|
-
only distribute the software according to [Distribution
|
|
18
|
-
License](#distribution-license) and make changes or new works
|
|
19
|
-
based on the software according to [Changes and New Works
|
|
20
|
-
License](#changes-and-new-works-license).
|
|
21
|
-
|
|
22
|
-
## Distribution License
|
|
23
|
-
|
|
24
|
-
The licensor grants you an additional copyright license
|
|
25
|
-
to distribute copies of the software. Your license
|
|
26
|
-
to distribute covers distributing the software with
|
|
27
|
-
changes and new works permitted by [Changes and New Works
|
|
28
|
-
License](#changes-and-new-works-license).
|
|
29
|
-
|
|
30
|
-
## Notices
|
|
31
|
-
|
|
32
|
-
You must ensure that anyone who gets a copy of any part of
|
|
33
|
-
the software from you also gets a copy of these terms or the
|
|
34
|
-
URL for them above, as well as copies of any plain-text lines
|
|
35
|
-
beginning with `Required Notice:` that the licensor provided
|
|
36
|
-
with the software. For example:
|
|
37
|
-
|
|
38
|
-
> Required Notice: Copyright Graphy Technologies Ltd. (https://graphy.dev)
|
|
39
|
-
|
|
40
|
-
## Changes and New Works License
|
|
41
|
-
|
|
42
|
-
The licensor grants you an additional copyright license to
|
|
43
|
-
make changes and new works based on the software for any
|
|
44
|
-
permitted purpose.
|
|
45
|
-
|
|
46
|
-
## Patent License
|
|
47
|
-
|
|
48
|
-
The licensor grants you a patent license for the software that
|
|
49
|
-
covers patent claims the licensor can license, or becomes able
|
|
50
|
-
to license, that you would infringe by using the software.
|
|
51
|
-
|
|
52
|
-
## Fair Use
|
|
53
|
-
|
|
54
|
-
You may have "fair use" rights for the software under the
|
|
55
|
-
law. These terms do not limit them.
|
|
56
|
-
|
|
57
|
-
## Small Business
|
|
58
|
-
|
|
59
|
-
Use of the software for the benefit of your company is use for
|
|
60
|
-
a permitted purpose if your company has fewer than 100 total
|
|
61
|
-
individuals working as employees and independent contractors,
|
|
62
|
-
and less than 1,000,000 USD (2019) total revenue in the prior
|
|
63
|
-
tax year. Adjust this revenue threshold for inflation according
|
|
64
|
-
to the United States Bureau of Labor Statistics' consumer price
|
|
65
|
-
index for all urban consumers, U.S. city average, for all items,
|
|
66
|
-
not seasonally adjusted, with 1982–1984=100 reference base.
|
|
67
|
-
|
|
68
|
-
## No Other Rights
|
|
69
|
-
|
|
70
|
-
These terms do not allow you to sublicense or transfer any of
|
|
71
|
-
your licenses to anyone else, or prevent the licensor from
|
|
72
|
-
granting licenses to anyone else. These terms do not imply
|
|
73
|
-
any other licenses.
|
|
74
|
-
|
|
75
|
-
## Patent Defense
|
|
76
|
-
|
|
77
|
-
If you make any written claim that the software infringes or
|
|
78
|
-
contributes to infringement of any patent, your patent license
|
|
79
|
-
for the software granted under these terms ends immediately. If
|
|
80
|
-
your company makes such a claim, your patent license ends
|
|
81
|
-
immediately for work on behalf of your company.
|
|
82
|
-
|
|
83
|
-
## Violations
|
|
84
|
-
|
|
85
|
-
The first time you are notified in writing that you have
|
|
86
|
-
violated any of these terms, or done anything with the software
|
|
87
|
-
not covered by your licenses, your licenses can nonetheless
|
|
88
|
-
continue if you come into full compliance with these terms,
|
|
89
|
-
and take practical steps to correct past violations, within
|
|
90
|
-
32 days of receiving notice. Otherwise, all your licenses
|
|
91
|
-
end immediately.
|
|
92
|
-
|
|
93
|
-
## No Liability
|
|
94
|
-
|
|
95
|
-
_**As far as the law allows, the software comes as is, without
|
|
96
|
-
any warranty or condition, and the licensor will not be liable
|
|
97
|
-
to you for any damages arising out of these terms or the use
|
|
98
|
-
or nature of the software, under any kind of legal claim.**_
|
|
99
|
-
|
|
100
|
-
## Definitions
|
|
101
|
-
|
|
102
|
-
The **licensor** is the individual or entity offering these
|
|
103
|
-
terms, and the **software** is the software the licensor makes
|
|
104
|
-
available under these terms.
|
|
105
|
-
|
|
106
|
-
**You** refers to the individual or entity agreeing to these
|
|
107
|
-
terms.
|
|
108
|
-
|
|
109
|
-
**Your company** is any legal entity, sole proprietorship,
|
|
110
|
-
or other kind of organization that you work for, plus all
|
|
111
|
-
organizations that have control over, are under the control of,
|
|
112
|
-
or are under common control with that organization. **Control**
|
|
113
|
-
means ownership of substantially all the assets of an entity,
|
|
114
|
-
or the power to direct its management and policies by vote,
|
|
115
|
-
contract, or otherwise. Control can be direct or indirect.
|
|
116
|
-
|
|
117
|
-
**Your licenses** are all the licenses granted to you for the
|
|
118
|
-
software under these terms.
|
|
119
|
-
|
|
120
|
-
**Use** means anything you do with the software requiring one
|
|
121
|
-
of your licenses.
|