Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
4e856d6
added polyfill back
timea-solid Sep 29, 2025
b0ae6b8
Merge branch 'newFace' into newStyle
timea-solid Sep 29, 2025
1ff7668
added css loaders, added html5 and ARIA, separate css files
timea-solid Oct 1, 2025
2fbe654
aligned buttons
timea-solid Oct 2, 2025
83aed14
add dev to lint
timea-solid Oct 2, 2025
5dab4e7
will use separate config for dev for linting
timea-solid Oct 2, 2025
79b4b77
fixed jest tests
timea-solid Oct 3, 2025
311b4cc
stuff with name
timea-solid Oct 3, 2025
186008f
improved some alignments
timea-solid Oct 3, 2025
3436b8d
rearanged QRcode and updated test
timea-solid Oct 3, 2025
38e446a
improving the button
timea-solid Oct 3, 2025
4e17ccd
moved qr code into profile card
timea-solid Oct 3, 2025
212cfa8
improve CV
timea-solid Oct 3, 2025
ce9cdc6
consolidated styles
timea-solid Oct 6, 2025
d33b9fc
fix tests
timea-solid Oct 6, 2025
7c17da9
social account color changed
timea-solid Oct 6, 2025
4d3822f
improved accessibilty
timea-solid Oct 6, 2025
f3484a0
improved usage of imports
timea-solid Oct 8, 2025
c6a0a54
reverted to commonsJS
timea-solid Oct 8, 2025
9e5fe25
removed old configs
timea-solid Oct 8, 2025
7393042
merge
timea-solid Oct 8, 2025
61bec75
Merge branch 'newStyle' of https://github.com/SolidOS/profile-pane in…
timea-solid Nov 7, 2025
92049f1
merge main
timea-solid Nov 7, 2025
1d314fa
merge newFace branch
timea-solid Nov 19, 2025
218c3cb
dedicated version name
timea-solid Nov 19, 2025
fea54d8
added prepare to be able to install from branch
timea-solid Nov 20, 2025
c4c002d
remove duplicate builds, strengthen typecheck in presenter
timea-solid Nov 20, 2025
ace31f1
fixed test, removed console logs, better dependencies
timea-solid Nov 20, 2025
9320374
build only once on PR push
timea-solid Nov 20, 2025
fff2121
better typecheck like in CI
timea-solid Nov 20, 2025
951ce3e
added dep installs before publish
timea-solid Nov 20, 2025
aad1b18
babel build for ES modules now
timea-solid Nov 22, 2025
6d02616
remove prepare as build step
timea-solid Nov 24, 2025
02a19ac
we don't check libs for types
timea-solid Nov 24, 2025
f153532
make jest work with ESM
timea-solid Nov 24, 2025
6857c6a
make profile-pane a commonjs
timea-solid Nov 24, 2025
57ef15e
added css to lib
timea-solid Nov 24, 2025
4ac4b4a
fixed global style usage
timea-solid Nov 24, 2025
4ab2e81
added webpack for prod
timea-solid Nov 24, 2025
6a7c0ea
changed entry
timea-solid Nov 24, 2025
c66ac62
added lit back in bundle
timea-solid Nov 24, 2025
068a9ca
Bump node-forge in the npm_and_yarn group across 1 directory
dependabot[bot] Nov 26, 2025
41c44d7
Merge pull request #140 from SolidOS/dependabot/npm_and_yarn/npm_and_…
github-actions[bot] Nov 26, 2025
2b49b06
v2.0.0 Merge pull request #90 from SolidOS/newFace
bourgeoa Nov 29, 2025
43fc0b2
updated dep
timea-solid Dec 8, 2025
ac1c528
merge main
timea-solid Dec 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __mocks__/fileMock.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

module.exports = '// mocked-file-content';
module.exports = {};

20 changes: 20 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
presets: [
['@babel/preset-env', {
targets: {
browsers: ['> 1%', 'last 3 versions', 'not dead']
},
modules: 'commonjs'
}],
'@babel/preset-typescript'
],
plugins: [
[
'babel-plugin-inline-import', {
extensions: [
'.ttl'
]
}
]
]
}
19 changes: 0 additions & 19 deletions babel.config.mjs

This file was deleted.

2 changes: 2 additions & 0 deletions declarations.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
declare module '*.module.css';

declare module '*.ttl' {
const content: string;
export default content;
Expand Down
2 changes: 2 additions & 0 deletions dev/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import '../src/styles/global.css'
import '../src/styles/utilities.css'
import { sym } from 'rdflib'
import { default as pane } from '../src'
import { context, fetcher } from './context'
Expand Down
9 changes: 5 additions & 4 deletions jest.config.mjs → jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
module.exports = {
// verbose: true, // Uncomment for detailed test output
collectCoverage: true,
coverageDirectory: 'coverage',
Expand All @@ -7,7 +7,7 @@ export default {
customExportConditions: ['node'],
},
transform: {
'^.+\\.[tj]sx?$': ['babel-jest', { configFile: './babel.config.mjs' }],
'^.+\\.(ts|js)$': ['babel-jest'],
},
setupFilesAfterEnv: ["./test/helpers/jest.setup.ts"],
transformIgnorePatterns: ["/node_modules/(?!lit-html).+\\.js"],
Expand All @@ -17,8 +17,9 @@ export default {
},
roots: ['<rootDir>/src', '<rootDir>/test', '<rootDir>/__mocks__'],
moduleNameMapper: {
'\\.module\\.css$': 'identity-obj-proxy',
'\\.css$': '<rootDir>/__mocks__/fileMock.js',
'^SolidLogic$': 'solid-logic',
'^\\$rdf$': 'rdflib'
}
}

}
Loading