Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Toolkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
digital blueprint
Web Component Framework
Toolkit
Compare revisions
a794cd541907bcae55cefad8ccf592635c3a8950 to 7d22103d1c5e7ea698d6d589c1f068ee6f757c73
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
dbp/web-components/toolkit
Select target project
No results found
7d22103d1c5e7ea698d6d589c1f068ee6f757c73
Select Git revision
Branches
advertisement
automagic
dbp-translation-component
demo
demo-file-handling
favorites-and-recent-files
icon-set-mapping
lit2
main
person-select-custom
port-i18next-parser
publish
remove-sentry
renovate/lock-file-maintenance
revert-6c632dc6
wc-part
wip-cleanup
17 results
Swap
Target
dbp/web-components/toolkit
Select target project
987FCF504483CBC8/toolkit
1 result
a794cd541907bcae55cefad8ccf592635c3a8950
Select Git revision
Branches
advertisement
automagic
dbp-translation-component
demo
demo-file-handling
favorites-and-recent-files
icon-set-mapping
lit2
main
person-select-custom
port-i18next-parser
publish
remove-sentry
renovate/lock-file-maintenance
revert-6c632dc6
wc-part
wip-cleanup
17 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Replace "replaceAll" with split/join for more browser compatibility
· 8ca8e81f
Bekerle, Patrizio
authored
4 years ago
Unverified
8ca8e81f
Bump version
· 7d22103d
Bekerle, Patrizio
authored
4 years ago
Unverified
7d22103d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
packages/common/package.json
+1
-1
1 addition, 1 deletion
packages/common/package.json
packages/common/src/icon.js
+1
-1
1 addition, 1 deletion
packages/common/src/icon.js
with
2 additions
and
2 deletions
packages/common/package.json
View file @
7d22103d
{
"name"
:
"@dbp-toolkit/common"
,
"homepage"
:
"https://gitlab.tugraz.at/dbp/web-components/toolkit/-/tree/master/packages/common"
,
"version"
:
"0.2.
4
"
,
"version"
:
"0.2.
5
"
,
"module"
:
"index.js"
,
"license"
:
"LGPL-2.1-or-later"
,
"repository"
:
{
...
...
This diff is collapsed.
Click to expand it.
packages/common/src/icon.js
View file @
7d22103d
...
...
@@ -67,7 +67,7 @@ export class Icon extends LitElement {
render
()
{
const
iconURL
=
getIconSVGURL
(
this
.
name
);
const
iconPart
=
this
.
name
.
trim
().
replaceAll
(
"
"
,
""
);
const
iconPart
=
this
.
name
.
trim
().
split
(
'
'
).
join
(
''
);
return
html
`
<style>
...
...
This diff is collapsed.
Click to expand it.