skillgrid 0.0.30 → 0.0.31-dev-41587-bug-input.1190179

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.
@@ -1 +1,2 @@
1
- export { createRoundedCutoutRectanglePath } from './create-rounded-cutout-rectangle-path';
1
+ export { generateHash } from './generate-hash';
2
+ export { getIntInRange } from './get-int-in-range';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillgrid",
3
- "version": "0.0.30",
3
+ "version": "0.0.31-dev-41587-bug-input.1190179",
4
4
  "description": "Skillgrid Components Library",
5
5
  "keywords": [
6
6
  "react",
@@ -141,4 +141,4 @@
141
141
  "wrap-ansi": "7.0.0",
142
142
  "cliui": "7.0.4"
143
143
  }
144
- }
144
+ }
@@ -1,18 +0,0 @@
1
- /**
2
- * Создает SVG path для прямоугольника с вырезанным закругленным прямоугольником внутри
3
- * @returns Строка с данными пути для SVG
4
- */
5
- declare function createRoundedCutoutRectanglePath(outerWidth: number, outerHeight: number, innerX: number, innerY: number, innerWidth: number, innerHeight: number, radius: number): string;
6
- /**
7
- * @example
8
- const pathData = createRoundedCutoutRectanglePath(
9
- 200, // outerWidth
10
- 100, // outerHeight
11
- 50, // innerX
12
- 25, // innerY
13
- 100, // innerWidth
14
- 50, // innerHeight
15
- 10, // radius
16
- );
17
- */
18
- export { createRoundedCutoutRectanglePath };