Skip to content

Commit

Permalink
fix: reference uui-card-block-type
Browse files Browse the repository at this point in the history
the component must be referenced uui/package.json to ensure it is being built and exported correctly from the uui package
  • Loading branch information
iOvergaard committed Dec 15, 2023
1 parent a161fe7 commit 26349e6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { defineElement } from '@umbraco-ui/uui-base/lib/registration';
import { css, html, nothing } from 'lit';
import { UUICardElement } from '@umbraco-ui/uui-card/lib';
import { styleMap } from 'lit/directives/style-map.js';
import { ifDefined } from 'lit/directives/if-defined.js';

import { css, html, nothing } from 'lit';
import { property } from 'lit/decorators.js';
import { ifDefined } from 'lit/directives/if-defined.js';
import { styleMap } from 'lit/directives/style-map.js';

export type BlockTypeIcon = {
name?: string;
Expand Down
2 changes: 1 addition & 1 deletion packages/uui/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export * from '@umbraco-ui/uui-breadcrumbs/lib';
export * from '@umbraco-ui/uui-button-group/lib';
export * from '@umbraco-ui/uui-button-inline-create/lib';
export * from '@umbraco-ui/uui-button/lib';
export * from '@umbraco-ui/uui-card-block-type/lib';
export * from '@umbraco-ui/uui-card-content-node/lib';
export * from '@umbraco-ui/uui-card-media/lib';
export * from '@umbraco-ui/uui-card-user/lib';
Expand Down Expand Up @@ -79,4 +80,3 @@ export * from '@umbraco-ui/uui-toast-notification-layout/lib';
export * from '@umbraco-ui/uui-toast-notification/lib';
export * from '@umbraco-ui/uui-toggle/lib';
export * from '@umbraco-ui/uui-visually-hidden/lib';
export * from '@umbraco-ui/uui-card-block-type/lib';
1 change: 1 addition & 0 deletions packages/uui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"@umbraco-ui/uui-button-group": "1.6.0-rc.2",
"@umbraco-ui/uui-button-inline-create": "1.6.0-rc.2",
"@umbraco-ui/uui-card": "1.6.0-rc.2",
"@umbraco-ui/uui-card-block-type": "1.6.0-rc.2",
"@umbraco-ui/uui-card-content-node": "1.6.0-rc.2",
"@umbraco-ui/uui-card-media": "1.6.0-rc.2",
"@umbraco-ui/uui-card-user": "1.6.0-rc.2",
Expand Down
3 changes: 3 additions & 0 deletions packages/uui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
{
"path": "../uui-card"
},
{
"path": "../uui-card-block-type"
},
{
"path": "../uui-card-content-node"
},
Expand Down

0 comments on commit 26349e6

Please sign in to comment.