Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,7 @@ Here, just to show how it works, are how some RDF Classes map onto panes. Anythi
contacts (A VCARD Address Book, Group, Individual, Organization) can be handled by the one contact
pane. Any other pane which wants to deal with contacts can just use the pane within its own user interface.

If you have trouble seeing syntax highlighting for SPARQL, Turtle, TriG, N-Triples, N-Quads, etc...
Try installing an extension! For VSCode, there are many, but a great one is RDFox Syntax Highlighting.

![Mapping many classes on the L to panes on the R](https://solidos.github.io/solid-panes/doc/images/panes-for-classes.svg)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"build-lib": "npm run build-form && babel src -d lib --source-maps --extensions '.ts,.js'",
"build-dev": "webpack --progress --mode=development",
"build-types": "tsc --emitDeclarationOnly",
"build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
"build-version": "eslint --fix",
"watch": "npm run build-version && babel src -d lib --source-maps --extensions '.ts,.js' --watch",
"clean": "rm -rf dist lib",
"lint": "eslint 'src/**/*.js' 'src/**/*.ts'",
Expand Down
2 changes: 1 addition & 1 deletion src/profile/editProfile.view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,4 @@ const editProfileView: PaneDefinition = {
}
}

export default editProfileView
export default editProfileView
11 changes: 8 additions & 3 deletions src/profile/profileFormText.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
@prefix ui: <http://www.w3.org/ns/ui#>.
@prefix schema: <http://schema.org/>.
@prefix vcard: <http://www.w3.org/2006/vcard/ns#>.

@prefix org: <http://www.w3.org/ns/org#>.
@prefix esco: <http://data.europa.eu/esco/model#>.
@prefix wd: <http://www.wikidata.org/entity/>.
Expand All @@ -28,12 +27,18 @@
:SkillsPrompt :SkillsForm
).

:styleGroup a ui:Group; ui:weight 0; ui:parts ( :styleHeading :backgroundColor :highlightColor ).
:styleGroup a ui:Group; ui:weight 0; ui:parts ( :styleHeading :backgroundColor :highlightColor :cornerSquareColor :cornerDotColor ).
:styleHeading a ui:Heading; ui:contents "The style of your public profile.".
:backgroundColor a ui:ColorField; ui:property solid:profileBackgroundColor;
ui:label "Background color"; ui:default "#ffffff".
:highlightColor a ui:ColorField; ui:property solid:profileHighlightColor;
ui:label "Highlight color"; ui:default "#000000".
:cornerSquareColor a ui:ColorField; ui:property solid:cornerSquareColor;
ui:label "Corner Square Color"; ui:default "#000000".
:cornerDotColor a ui:ColorField; ui:property solid:cornerDotColor;
ui:label "Corner dot color"; ui:default "#000000".



# Nickname

Expand Down Expand Up @@ -383,4 +388,4 @@ WHERE
# Omitted: SERVICE wikibase:label { bd:serviceParam wikibase:language "$(languages)". }


# ENDS
# ENDS
Empty file added src/versionInfo.ts
Empty file.