@uigraph/sdk 1.2.11 → 1.2.13
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/LICENSE +2 -2
- package/README.md +9 -9
- package/dist/index.cjs +747 -112
- package/dist/index.d.cts +92 -1
- package/dist/index.d.mts +92 -1
- package/dist/index.mjs +737 -113
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -5,10 +5,10 @@ License text copyright © 2017 MariaDB Corporation Ab, All Rights Reserved.
|
|
|
5
5
|
|
|
6
6
|
Parameters
|
|
7
7
|
|
|
8
|
-
Licensor:
|
|
8
|
+
Licensor: UIGraph, Inc.
|
|
9
9
|
Licensed Work: The software made available under this License in this
|
|
10
10
|
repository (the "Licensed Work"). The Licensed Work is
|
|
11
|
-
(c)
|
|
11
|
+
(c) UIGraph, Inc.
|
|
12
12
|
Additional Use Grant: You may make non-production use of the Licensed Work
|
|
13
13
|
free of charge, including for development, testing,
|
|
14
14
|
evaluation, and internal proof-of-concept purposes.
|
package/README.md
CHANGED
|
@@ -54,14 +54,14 @@ const ast = new SqlToAstParser(dialect).parse(sql)
|
|
|
54
54
|
|
|
55
55
|
## Package entry points
|
|
56
56
|
|
|
57
|
-
| Import
|
|
58
|
-
|
|
59
|
-
| `@uigraph/sdk`
|
|
60
|
-
| `@uigraph/sdk/browser`
|
|
61
|
-
| `@uigraph/sdk/headless`
|
|
62
|
-
| `@uigraph/sdk/aws-icons`
|
|
63
|
-
| `@uigraph/sdk/azure-icons`
|
|
64
|
-
| `@uigraph/sdk/animated-nodes` | Animated node icon metadata
|
|
57
|
+
| Import | Use when |
|
|
58
|
+
| ----------------------------- | --------------------------------------- |
|
|
59
|
+
| `@uigraph/sdk` | Full SDK (Node.js or bundlers) |
|
|
60
|
+
| `@uigraph/sdk/browser` | Browser environments |
|
|
61
|
+
| `@uigraph/sdk/headless` | Server-side conversion without DOM APIs |
|
|
62
|
+
| `@uigraph/sdk/aws-icons` | AWS icon metadata |
|
|
63
|
+
| `@uigraph/sdk/azure-icons` | Azure icon metadata |
|
|
64
|
+
| `@uigraph/sdk/animated-nodes` | Animated node icon metadata |
|
|
65
65
|
|
|
66
66
|
```ts
|
|
67
67
|
import { convertMermaidToReactFlow } from '@uigraph/sdk/browser'
|
|
@@ -99,7 +99,7 @@ This project is licensed under the [Business Source License 1.1](LICENSE) (BUSL-
|
|
|
99
99
|
|
|
100
100
|
- **Source available today** — you can read, modify, and redistribute the code under the terms of the license.
|
|
101
101
|
- **Non-production use** — free for development, testing, evaluation, and internal proof-of-concept.
|
|
102
|
-
- **Production use** — requires a commercial license from
|
|
102
|
+
- **Production use** — requires a commercial license from UIGraph. Production use means any use that supports the ongoing operation of your business or organization.
|
|
103
103
|
- **Future open source** — each version automatically converts to [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0) four years after it is first published under BUSL.
|
|
104
104
|
|
|
105
105
|
BUSL is not an OSI-approved open source license during the initial term. For commercial licensing questions, open an issue or contact the maintainers.
|