@frybynite/image-cloud 0.8.0 → 0.8.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.
package/dist/index.d.ts CHANGED
@@ -1021,6 +1021,7 @@ export declare interface LayoutConfig {
1021
1021
  responsive?: ResponsiveBreakpoints;
1022
1022
  targetCoverage?: number;
1023
1023
  densityFactor?: number;
1024
+ radial?: RadialAlgorithmConfig;
1024
1025
  grid?: GridAlgorithmConfig;
1025
1026
  spiral?: SpiralAlgorithmConfig;
1026
1027
  cluster?: ClusterAlgorithmConfig;
@@ -1148,6 +1149,10 @@ declare interface Point {
1148
1149
  y: number;
1149
1150
  }
1150
1151
 
1152
+ declare interface RadialAlgorithmConfig {
1153
+ tightness: number;
1154
+ }
1155
+
1151
1156
  declare interface RadialLayoutOptions extends Partial<LayoutConfig> {
1152
1157
  fixedHeight?: number;
1153
1158
  }
package/dist/react.d.ts CHANGED
@@ -1021,6 +1021,7 @@ export declare interface LayoutConfig {
1021
1021
  responsive?: ResponsiveBreakpoints;
1022
1022
  targetCoverage?: number;
1023
1023
  densityFactor?: number;
1024
+ radial?: RadialAlgorithmConfig;
1024
1025
  grid?: GridAlgorithmConfig;
1025
1026
  spiral?: SpiralAlgorithmConfig;
1026
1027
  cluster?: ClusterAlgorithmConfig;
@@ -1148,6 +1149,10 @@ declare interface Point {
1148
1149
  y: number;
1149
1150
  }
1150
1151
 
1152
+ declare interface RadialAlgorithmConfig {
1153
+ tightness: number;
1154
+ }
1155
+
1151
1156
  declare interface RadialLayoutOptions extends Partial<LayoutConfig> {
1152
1157
  fixedHeight?: number;
1153
1158
  }