@semcore/spin-container 5.0.0 → 5.0.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).
4
4
 
5
+ ## [5.0.3] - 2022-03-05
6
+
7
+ ### Changed
8
+
9
+ - Version patch update due to children dependencies update (`@semcore/animation` [1.4.0 ~> 1.4.1]).
10
+
11
+ ## [5.0.2] - 2021-02-28
12
+
13
+ ### Fixed
14
+
15
+ - [ts] correct types.
16
+
17
+ ## [5.0.1] - 2022-02-24
18
+
19
+ ### Added
20
+
21
+ - Added repository field to package.json file.
22
+
5
23
  ## [5.0.0] - 2022-02-22
6
24
 
7
25
  ### BREAK
@@ -1,6 +1,6 @@
1
1
  import { PropGetterFn, ReturnEl, CProps } from '@semcore/core';
2
2
  import { ISpinProps } from '@semcore/spin';
3
- import { IBoxProps } from '@semcore/flex-box';
3
+ import { Box, IBoxProps } from '@semcore/flex-box';
4
4
 
5
5
  export interface ISpinContainerProps extends IBoxProps, ISpinProps {
6
6
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@semcore/spin-container",
3
3
  "description": "SEMRush SpinContainer Component",
4
- "version": "5.0.0",
4
+ "version": "5.0.3",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/es6/index.js",
7
7
  "types": "lib/types/index.d.ts",
@@ -24,5 +24,10 @@
24
24
  },
25
25
  "jest": {
26
26
  "preset": "@semcore/jest-preset-ui"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/semrush/intergalactic.git",
31
+ "directory": "semcore/spin-container"
27
32
  }
28
33
  }
package/src/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { PropGetterFn, ReturnEl, CProps } from '@semcore/core';
2
2
  import { ISpinProps } from '@semcore/spin';
3
- import { IBoxProps } from '@semcore/flex-box';
3
+ import { Box, IBoxProps } from '@semcore/flex-box';
4
4
 
5
5
  export interface ISpinContainerProps extends IBoxProps, ISpinProps {
6
6
  /**