@logicflow/core 0.7.13 → 1.0.0-alpha.0
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/dist/logic-flow.es.js +74 -0
- package/dist/logic-flow.js +3 -3
- package/dist/style/index.css +0 -14
- package/package.json +8 -3
- package/types/model/BaseModel.d.ts +59 -0
- package/types/model/GraphModel.d.ts +2 -1
- package/types/model/node/BaseNodeModel.d.ts +51 -10
- package/types/model/node/CircleNodeModel.d.ts +5 -2
- package/types/model/node/PolygonNodeModel.d.ts +5 -0
- package/types/type/index.d.ts +21 -0
- package/types/view/node/BaseNode.d.ts +38 -29
- package/types/view/node/CircleNode.d.ts +16 -13
- package/types/view/node/DiamondNode.d.ts +16 -13
- package/types/view/node/EllipseNode.d.ts +15 -12
- package/types/view/node/PolygonNode.d.ts +35 -13
- package/types/view/node/RectNode.d.ts +16 -13
- package/CHANGELOG.md +0 -950
- package/LICENSE +0 -433
- package/dist/logic-flow-cjs.js +0 -2
- package/dist/logic-flow-cjs.js.LICENSE.txt +0 -23
- package/dist/logic-flow.js.LICENSE.txt +0 -23
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/*! *****************************************************************************
|
|
2
|
-
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
4
|
-
this file except in compliance with the License. You may obtain a copy of the
|
|
5
|
-
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
-
|
|
7
|
-
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
8
|
-
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
9
|
-
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
10
|
-
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
11
|
-
|
|
12
|
-
See the Apache Version 2.0 License for specific language governing permissions
|
|
13
|
-
and limitations under the License.
|
|
14
|
-
***************************************************************************** */
|
|
15
|
-
|
|
16
|
-
/** @license mobx-react v5.4.4
|
|
17
|
-
* index.module.js
|
|
18
|
-
*
|
|
19
|
-
* Copyright (c) 2015 Michel Weststrate.
|
|
20
|
-
*
|
|
21
|
-
* This source code is licensed under the MIT license found in the
|
|
22
|
-
* LICENSE file in the root directory of this source tree.
|
|
23
|
-
*/
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/*! *****************************************************************************
|
|
2
|
-
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
4
|
-
this file except in compliance with the License. You may obtain a copy of the
|
|
5
|
-
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
-
|
|
7
|
-
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
8
|
-
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
9
|
-
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
10
|
-
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
11
|
-
|
|
12
|
-
See the Apache Version 2.0 License for specific language governing permissions
|
|
13
|
-
and limitations under the License.
|
|
14
|
-
***************************************************************************** */
|
|
15
|
-
|
|
16
|
-
/** @license mobx-react v5.4.4
|
|
17
|
-
* index.module.js
|
|
18
|
-
*
|
|
19
|
-
* Copyright (c) 2015 Michel Weststrate.
|
|
20
|
-
*
|
|
21
|
-
* This source code is licensed under the MIT license found in the
|
|
22
|
-
* LICENSE file in the root directory of this source tree.
|
|
23
|
-
*/
|