Skip to content

Commit 4c0ae77

Browse files
committed
Revert "fix missing type and event class"
This reverts commit 0b41b8c.
1 parent 5524560 commit 4c0ae77

File tree

4 files changed

+3
-30
lines changed

4 files changed

+3
-30
lines changed

src/components/basics/uui-card-grid/uui-card-grid.element.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { property } from 'lit/decorators';
55
* @element uui-card-grid
66
*
77
*/
8-
import { CardType } from '../uui-card/UuiCardType';
8+
import { CardType } from '../../../type/CardType';
99
export class UUICardGridElement extends LitElement {
1010
static styles = [
1111
css`
@@ -23,7 +23,6 @@ export class UUICardGridElement extends LitElement {
2323
`,
2424
];
2525

26-
// TODO: consider wether we should tread all cards the same, to provide the flexibility to combine as we like.
2726
@property({ reflect: true })
2827
type: CardType = null;
2928

src/components/basics/uui-card/UuiCardType.ts

-19
This file was deleted.

src/components/basics/uui-card/uui-card.element.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { LitElement, html, css, unsafeCSS } from 'lit';
22
import { property, query } from 'lit/decorators';
3-
import { CardType, CardTypeNames } from './UuiCardType';
4-
import { UUICardEvent } from './uui-card.event';
3+
import { CardType, CardTypeNames } from '../../../type/CardType';
4+
import { UUICardEvent } from './UUICardEvents';
55

66
/**
77
* @element uui-card

src/components/basics/uui-card/uui-card.event.ts

-7
This file was deleted.

0 commit comments

Comments
 (0)