Skip to content

Commit

Permalink
fix ui imports
Browse files Browse the repository at this point in the history
  • Loading branch information
xzilja committed Aug 2, 2023
1 parent 0c1b500 commit 23dbc01
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/scaffold/src/partials/w3m-help-widget/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { VisualType } from '@web3modal/ui/src/utils/TypesUtil'
import type { VisualType } from '@web3modal/ui'
import { LitElement, html } from 'lit'
import { customElement, property } from 'lit/decorators.js'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { RouterController } from '@web3modal/core'
import { resetStyles } from '@web3modal/ui/src/utils/ThemeUtil'
import { LitElement, html } from 'lit'
import { customElement } from 'lit/decorators.js'

Expand All @@ -18,8 +17,6 @@ const data = [

@customElement('w3m-what-is-a-network-view')
export class W3mWhatIsANetworkView extends LitElement {
public static override styles = [resetStyles]

// -- Render -------------------------------------------- //
public override render() {
return html`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { RouterController } from '@web3modal/core'
import { resetStyles } from '@web3modal/ui/src/utils/ThemeUtil'
import { LitElement, html } from 'lit'
import { customElement } from 'lit/decorators.js'

Expand All @@ -23,8 +22,6 @@ const data = [

@customElement('w3m-what-is-a-wallet-view')
export class W3mWhatIsAWalletView extends LitElement {
public static override styles = [resetStyles]

// -- Render -------------------------------------------- //
public override render() {
return html`
Expand Down
1 change: 1 addition & 0 deletions packages/ui/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,5 @@ export * from './src/layout/wui-overlay'
export * from './src/layout/wui-separator'

export { initializeTheming, setColorTheme } from './src/utils/ThemeUtil'
export type { VisualType } from './src/utils/TypesUtil'
export { UiHelperUtil } from './src/utils/UiHelperUtils'

0 comments on commit 23dbc01

Please sign in to comment.