Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
ecec57e
Change Dockefile
Feb 3, 2022
0411c91
Delete EXPOSE from Dockerfile
Feb 7, 2022
e2fcdf8
Merge pull request #370 from soramitsu/origin/feature/DOPS-1632/revie…
f33r0 Feb 9, 2022
2b5db01
fix leading dot (#385)
Nikita-Polyakov Feb 24, 2022
8842a08
Fix dialog structure search for computed props (#392)
stefashkaa Mar 3, 2022
f858cba
Feature/add preview image option (#399)
RustemYuzlibaev Mar 29, 2022
f806bb1
Bump minimist from 1.2.5 to 1.2.6 (#402)
dependabot[bot] Apr 14, 2022
456825d
Bump lodash from 4.17.15 to 4.17.21 (#400)
dependabot[bot] Apr 14, 2022
0fc14e7
Bump nanoid from 3.1.23 to 3.3.2 (#401)
dependabot[bot] Apr 14, 2022
dc83219
Bump follow-redirects from 1.11.0 to 1.14.9 (#387)
dependabot[bot] Apr 14, 2022
4b8c8c5
Bump postcss from 8.2.10 to 8.2.13 (#364)
dependabot[bot] Apr 14, 2022
6417492
Bump node-fetch from 2.6.0 to 2.6.7 (#366)
dependabot[bot] Apr 15, 2022
225bb6b
Bump tmpl from 1.0.4 to 1.0.5 (#331)
dependabot[bot] Apr 15, 2022
ac1dc0e
Bump ws from 5.2.2 to 5.2.3 (#332)
dependabot[bot] Apr 15, 2022
b57d244
Bump ajv from 6.12.2 to 6.12.6 (#388)
dependabot[bot] Apr 15, 2022
14bea29
Fix image preview (#407)
stefashkaa Apr 15, 2022
9dc135b
add Sonar
May 25, 2022
90bf40c
fix
May 25, 2022
06bd95f
STooltip: Added center alignment for the arrow. (#416)
alexnatalia May 30, 2022
7f95ca3
STooltip: Reverted Popper Arrow Styles Update (#418)
alexnatalia May 31, 2022
1b42253
STooltip: Decreased Open Delay. (#419)
alexnatalia Jun 2, 2022
58500be
Merge branch 'develop' into feature/SNE-132/add-sonar
Cre-eD Jun 2, 2022
dc3a59a
Merge pull request #413 from soramitsu/feature/SNE-132/add-sonar
wpi86 Jun 3, 2022
9feb3ea
Fixed Receive Misspelling. (#444)
alexnatalia Jul 14, 2022
657448a
Merge branch 'develop' into release/1.0.34
Jul 14, 2022
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
5 changes: 4 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@

def pipeline = new org.js.LibPipeline(steps: this,
dockerImageName: 'soramitsu/soramitsu-js-ui-library',
libExamplesBuildCmds: ['yarn storybook:build'])
libExamplesBuildCmds: ['yarn storybook:build'],
sonarProjectName: 'soramitsu-js-ui-library',
sonarProjectKey: 'jp.co.soramitsu:soramitsu-js-ui-library',
)
pipeline.runPipeline()
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soramitsu/soramitsu-js-ui",
"version": "1.0.33",
"version": "1.0.34",
"private": false,
"publishConfig": {
"registry": "https://nexus.iroha.tech/repository/npm-soramitsu/"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icon/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export enum Icons24 {
CallCallNumbers = 'call-call-numbers-24',
CallCallOutcoming = 'call-call-outcoming-24',
CallCallPhone = 'call-call-phone-24',
CallCallRecieved = 'call-call-recieved-24',
CallCallReceived = 'call-call-received-24',
CallCallVoicemail = 'call-call-voicemail-24',
ChattingComment = 'chatting-comment-24',
ChattingCommentChecked = 'chatting-comment-checked-24',
Expand Down
6 changes: 3 additions & 3 deletions src/styles/icons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ $s-icon-call-call-no-24: "\ea8b";
$s-icon-call-call-numbers-24: "\ea8c";
$s-icon-call-call-outcoming-24: "\ea8d";
$s-icon-call-call-phone-24: "\ea8e";
$s-icon-call-call-recieved-24: "\ea8f";
$s-icon-call-call-received-24: "\ea8f";
$s-icon-call-call-voicemail-24: "\ea90";
$s-icon-chatting-comment-24: "\ea91";
$s-icon-chatting-comment-checked-24: "\ea92";
Expand Down Expand Up @@ -2948,9 +2948,9 @@ $s-icon-various-toy-horse-24: "\eae9";
content: $s-icon-call-call-phone-24;
}
}
.s-icon-call-call-recieved-24 {
.s-icon-call-call-received-24 {
&:before {
content: $s-icon-call-call-recieved-24;
content: $s-icon-call-call-received-24;
}
}
.s-icon-call-call-voicemail-24 {
Expand Down