skillgrid 0.0.30 → 0.0.31
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/components/Avatar/Avatar.type.d.ts +2 -0
- package/dist/index.cjs.js +11 -11
- package/dist/index.css +1 -1
- package/dist/index.es.js +1588 -1629
- package/dist/lib/index.d.ts +2 -1
- package/package.json +1 -1
- package/dist/lib/create-rounded-cutout-rectangle-path.d.ts +0 -18
- package/dist/lib/create-rounded-cutout-rectangle-path.test.d.ts +0 -1
package/dist/lib/index.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { generateHash } from './generate-hash';
|
|
2
|
+
export { getIntInRange } from './get-int-in-range';
|
package/package.json
CHANGED
|
@@ -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 };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|