@linkurious/ogma-linkurious-parser 4.1.7 → 4.1.8
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/index.cjs +4 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +5 -5
- package/dist/index.mjs +4082 -0
- package/dist/index.mjs.map +1 -0
- package/dist/ogma/features/nodeGrouping.d.ts +15 -1
- package/dist/tools/ogmaTool.d.ts +3 -1
- package/package.json +23 -21
- package/dist/captions/captions.js +0 -115
- package/dist/captions/captions.js.map +0 -1
- package/dist/filters/filters.js +0 -167
- package/dist/filters/filters.js.map +0 -1
- package/dist/index.js +0 -56
- package/dist/index.js.map +0 -1
- package/dist/ogma/features/OgmaStore.js +0 -37
- package/dist/ogma/features/OgmaStore.js.map +0 -1
- package/dist/ogma/features/captions.js +0 -117
- package/dist/ogma/features/captions.js.map +0 -1
- package/dist/ogma/features/nodeGrouping.js +0 -283
- package/dist/ogma/features/nodeGrouping.js.map +0 -1
- package/dist/ogma/features/reactive.js +0 -132
- package/dist/ogma/features/reactive.js.map +0 -1
- package/dist/ogma/features/selectors.js +0 -97
- package/dist/ogma/features/selectors.js.map +0 -1
- package/dist/ogma/features/styles.js +0 -689
- package/dist/ogma/features/styles.js.map +0 -1
- package/dist/ogma/features/transformations.js +0 -86
- package/dist/ogma/features/transformations.js.map +0 -1
- package/dist/ogma/index.js +0 -326
- package/dist/ogma/index.js.map +0 -1
- package/dist/styles/edgeAttributes.js +0 -115
- package/dist/styles/edgeAttributes.js.map +0 -1
- package/dist/styles/itemAttributes.js +0 -133
- package/dist/styles/itemAttributes.js.map +0 -1
- package/dist/styles/nodeAttributes.js +0 -228
- package/dist/styles/nodeAttributes.js.map +0 -1
- package/dist/styles/styleRule.js +0 -194
- package/dist/styles/styleRule.js.map +0 -1
- package/dist/styles/styleRules.js +0 -292
- package/dist/styles/styleRules.js.map +0 -1
- package/dist/tools/colorPalette.js +0 -145
- package/dist/tools/colorPalette.js.map +0 -1
- package/dist/tools/ogmaTool.js +0 -86
- package/dist/tools/ogmaTool.js.map +0 -1
- package/dist/tools/tools.js +0 -409
- package/dist/tools/tools.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export { Edge, EdgeList, Node, NodeList, EdgeId, NodeId, RawEdge, RawItem, RawNode, PropertyPath, Item, ItemId, EdgeStyle, PixelSize, EdgeExtremity, EdgeType, GeoModeOptions, EdgesDataEvent, NodesDataEvent, NodesDragEndEvent, NodesEvent } from '@linkurious/ogma';
|
|
1
|
+
export type { Edge, EdgeList, Node, NodeList, EdgeId, NodeId, RawEdge, RawItem, RawNode, PropertyPath, Item, ItemId, EdgeStyle, PixelSize, EdgeExtremity, EdgeType, GeoModeOptions, EdgesDataEvent, NodesDataEvent, NodesDragEndEvent, NodesEvent } from '@linkurious/ogma';
|
|
2
2
|
export { Captions } from './captions/captions';
|
|
3
3
|
export { ItemAttributes, BASE_GREY, PALETTE } from './styles/itemAttributes';
|
|
4
4
|
export { EdgeAttributes } from './styles/edgeAttributes';
|
|
5
5
|
export { NodeAttributes } from './styles/nodeAttributes';
|
|
6
6
|
export { StyleRule, StyleRuleType } from './styles/styleRule';
|
|
7
|
-
export { StyleRules, StyleType
|
|
8
|
-
export { StylesViz, StylesConfig, FILTER_OPACITY } from './ogma/features/styles';
|
|
7
|
+
export { type Legend, StyleRules, StyleType } from './styles/styleRules';
|
|
8
|
+
export { StylesViz, type StylesConfig, FILTER_OPACITY } from './ogma/features/styles';
|
|
9
9
|
export { TransformationsViz } from './ogma/features/transformations';
|
|
10
|
-
export { CaptionsViz, CaptionState } from './ogma/features/captions';
|
|
11
|
-
export { OgmaState } from './ogma/features/reactive';
|
|
10
|
+
export { CaptionsViz, type CaptionState } from './ogma/features/captions';
|
|
11
|
+
export type { OgmaState } from './ogma/features/reactive';
|
|
12
12
|
export { OgmaTools } from './tools/ogmaTool';
|
|
13
13
|
export { HTML_COLORS } from './tools/colorPalette';
|
|
14
14
|
export { Filters } from './filters/filters';
|