@umbraco-ui/uui-card 1.10.0 → 1.11.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.
@@ -4,6 +4,7 @@
4
4
  {
5
5
  "name": "uui-card",
6
6
  "path": "./lib/uui-card.element.ts",
7
+ "description": "Card is a Component that provides the basics for a Card component. This can be extended in code to match a certain need.",
7
8
  "attributes": [
8
9
  {
9
10
  "name": "disabled",
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
  declare const UUICardElement_base: (new (...args: any[]) => import("@umbraco-ui/uui-base/lib/mixins").SelectOnlyMixinInterface) & (new (...args: any[]) => import("@umbraco-ui/uui-base/lib/mixins").SelectableMixinInterface) & typeof LitElement;
3
3
  /**
4
+ * Card is a Component that provides the basics for a Card component. This can be extended in code to match a certain need.
4
5
  * @element uui-card
5
6
  * @fires {UUICardEvent} open - fires when the card title is clicked.
6
7
  * @description - Base card component to be extended by specific card elements.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-card",
3
- "version": "1.10.0",
3
+ "version": "1.11.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,7 +30,7 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-base": "1.10.0"
33
+ "@umbraco-ui/uui-base": "1.11.0"
34
34
  },
35
35
  "scripts": {
36
36
  "build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
@@ -41,5 +41,5 @@
41
41
  "access": "public"
42
42
  },
43
43
  "homepage": "https://uui.umbraco.com/?path=/story/uui-card",
44
- "gitHead": "fc19b5d3cd80cf4205ec56d14403ae0e926d6aed"
44
+ "gitHead": "414ce88901f82c5fc7d6be942779047bb34a1407"
45
45
  }