@umbraco-ui/uui-card-user 1.3.0-rc.0 → 1.3.0-rc.1

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.
@@ -97,8 +97,8 @@
97
97
  "description": "fires when the media card is selected"
98
98
  },
99
99
  {
100
- "name": "unselected",
101
- "description": "fires when the media card is unselected"
100
+ "name": "deselected",
101
+ "description": "fires when the media card is deselected"
102
102
  }
103
103
  ],
104
104
  "slots": [
package/lib/index.js CHANGED
@@ -52,7 +52,7 @@ UUICardUserElement.styles = [
52
52
  }
53
53
 
54
54
  slot:not([name])::slotted(*) {
55
- font-size: var(--uui-type-small-size,var(--uui-size-4));
55
+ font-size: var(--uui-type-small-size,12px);
56
56
  line-height: var(--uui-size-6,18px);
57
57
  }
58
58
 
@@ -112,7 +112,7 @@ UUICardUserElement.styles = [
112
112
 
113
113
  #open-part:hover {
114
114
  text-decoration: underline;
115
- color: var(--uui-color-interactive-emphasis,var(--uui-palette-violet-blue));
115
+ color: var(--uui-color-interactive-emphasis,#3544b1);
116
116
  }
117
117
  `
118
118
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-card-user",
3
- "version": "1.3.0-rc.0",
3
+ "version": "1.3.0-rc.1",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -31,18 +31,18 @@
31
31
  "custom-elements.json"
32
32
  ],
33
33
  "dependencies": {
34
- "@umbraco-ui/uui-avatar": "1.3.0-rc.0",
35
- "@umbraco-ui/uui-base": "1.3.0-rc.0",
36
- "@umbraco-ui/uui-card": "1.3.0-rc.0"
34
+ "@umbraco-ui/uui-avatar": "1.3.0-rc.1",
35
+ "@umbraco-ui/uui-base": "1.3.0-rc.1",
36
+ "@umbraco-ui/uui-card": "1.3.0-rc.1"
37
37
  },
38
38
  "scripts": {
39
39
  "build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
40
- "clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js custom-elements.json",
40
+ "clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json",
41
41
  "analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
46
  "homepage": "https://uui.umbraco.com/?path=/story/uui-card-user",
47
- "gitHead": "45c3824056586d9817efb3f61dc0bef5478747f0"
47
+ "gitHead": "0c517175884931aa0bc0d8f05974852a7704626e"
48
48
  }