@umbraco-ui/uui-card-content-node 1.3.0-rc.0 → 1.3.0

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
@@ -92,7 +92,7 @@ UUICardContentNodeElement.styles = [
92
92
  }
93
93
 
94
94
  slot:not([name])::slotted(*) {
95
- font-size: var(--uui-type-small-size,var(--uui-size-4));
95
+ font-size: var(--uui-type-small-size,12px);
96
96
  line-height: calc(2 * var(--uui-size-3,9px));
97
97
  }
98
98
 
@@ -115,7 +115,7 @@ UUICardContentNodeElement.styles = [
115
115
 
116
116
  #open-part:hover {
117
117
  text-decoration: underline;
118
- color: var(--uui-color-interactive-emphasis,var(--uui-palette-violet-blue));
118
+ color: var(--uui-color-interactive-emphasis,#3544b1);
119
119
  }
120
120
 
121
121
  #name {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-card-content-node",
3
- "version": "1.3.0-rc.0",
3
+ "version": "1.3.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,18 +30,18 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-base": "1.3.0-rc.0",
34
- "@umbraco-ui/uui-card": "1.3.0-rc.0",
35
- "@umbraco-ui/uui-icon": "1.3.0-rc.0"
33
+ "@umbraco-ui/uui-base": "1.3.0",
34
+ "@umbraco-ui/uui-card": "1.3.0",
35
+ "@umbraco-ui/uui-icon": "1.3.0"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
39
- "clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js custom-elements.json",
39
+ "clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json",
40
40
  "analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
45
  "homepage": "https://uui.umbraco.com/?path=/story/uui-card-content-node",
46
- "gitHead": "45c3824056586d9817efb3f61dc0bef5478747f0"
46
+ "gitHead": "e662ac3be21cef08076d1dbb978748c2dd30e596"
47
47
  }