Skip to content

Commit

Permalink
Merge pull request #24 from lume/update-lowclass
Browse files Browse the repository at this point in the history
update lowclass to ^8.0.0
  • Loading branch information
trusktr committed Sep 12, 2024
2 parents bd5ed4a + 8f845d1 commit 64838f7
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist/element.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import './metadata-shim.js';
import { Element } from './LumeElement.js';
import type { AnyConstructor } from 'lowclass';
import type { AnyConstructor } from 'lowclass/dist/Constructor.js';
import type { AttributeHandler } from './attribute.js';
type PossibleStatics = {
observedAttributes?: string[] | Record<string, AttributeHandler>;
Expand Down
2 changes: 1 addition & 1 deletion dist/element.d.ts.map

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

1 change: 1 addition & 0 deletions lume.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module.exports = {
imports: {
'classy-solid': '/node_modules/classy-solid/dist/index.js',
lowclass: '/node_modules/lowclass/dist/index.js',
'lowclass/': '/node_modules/lowclass/',
'solid-js': '/node_modules/solid-js/dist/solid.js',
'solid-js/web': '/node_modules/solid-js/web/dist/web.js',
'solid-js/html': '/node_modules/solid-js/html/dist/html.js',
Expand Down
13 changes: 9 additions & 4 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"dependencies": {
"babel-preset-solid": "^1.0.0",
"classy-solid": "^0.3.0",
"lowclass": "^7.0.0",
"lowclass": "^8.0.0",
"solid-js": "^1.0.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {reactive, signalify} from 'classy-solid'
import {Element} from './LumeElement.js'
import {__classFinishers, __setUpAttribute} from './attribute.js'

import type {AnyConstructor} from 'lowclass'
import type {AnyConstructor} from 'lowclass/dist/Constructor.js'
import type {DecoratedValue, PropKey} from 'classy-solid/dist/decorators/types.js'
import type {AttributeHandler} from './attribute.js'

Expand Down

0 comments on commit 64838f7

Please sign in to comment.