@symbo.ls/avatar 2.11.523 → 3.0.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.
Files changed (3) hide show
  1. package/index.js +1 -1
  2. package/package.json +3 -5
  3. package/symbols.js +3 -3
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict'
2
2
 
3
3
  export const Avatar = {
4
- extend: 'Img',
4
+ extends: 'Img',
5
5
  props: {
6
6
  display: 'block',
7
7
  avatarType: 'adventurer-neutral',
package/package.json CHANGED
@@ -1,13 +1,11 @@
1
1
  {
2
2
  "name": "@symbo.ls/avatar",
3
- "version": "2.11.523",
3
+ "version": "3.0.2",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
- "gitHead": "08e5b257605d1475f4628529f8e35373d87eb369",
6
+ "gitHead": "c4dacc88fa3a65574680d11e320307dd2a22e6e9",
7
7
  "dependencies": {
8
- "@symbo.ls/atoms": "^2.11.523",
9
- "@symbo.ls/button": "^2.11.523",
10
- "@symbo.ls/indicator": "^2.11.480"
8
+ "@symbo.ls/atoms": "^3.0.2"
11
9
  },
12
10
  "source": "src/index.js"
13
11
  }
package/symbols.js CHANGED
@@ -7,13 +7,13 @@ const key = 'Avatar'
7
7
  const title = 'Avatar'
8
8
  const description = ''
9
9
  const category = ['Atoms']
10
- const extend = 'Avatar'
10
+ const _extends = 'Avatar'
11
11
 
12
12
  const state = {}
13
13
  const props = {}
14
14
 
15
15
  const value = {
16
- extend: Avatar
16
+ extends: Avatar
17
17
  }
18
18
 
19
19
  const code = ''
@@ -27,7 +27,7 @@ export default {
27
27
  title,
28
28
  description,
29
29
  category,
30
- extend,
30
+ extends: _extends,
31
31
 
32
32
  value,
33
33
  code,