-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(admin-ui): Support new API for ProductVariant.trackInventory
- Loading branch information
1 parent
f27f985
commit b825df1
Showing
18 changed files
with
115 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
{ | ||
"generatedOn": "2020-10-05T10:27:57.372Z", | ||
"lastCommit": "30dc63957a149d7175935cb31047cd46016b73bc", | ||
"generatedOn": "2020-10-16T14:52:59.320Z", | ||
"lastCommit": "ee39263e9928dda664ad137e7e26248a8593b2a9", | ||
"translationStatus": { | ||
"de": { | ||
"tokenCount": 672, | ||
"tokenCount": 677, | ||
"translatedCount": 609, | ||
"percentage": 91 | ||
"percentage": 90 | ||
}, | ||
"en": { | ||
"tokenCount": 672, | ||
"translatedCount": 672, | ||
"tokenCount": 677, | ||
"translatedCount": 675, | ||
"percentage": 100 | ||
}, | ||
"es": { | ||
"tokenCount": 672, | ||
"tokenCount": 677, | ||
"translatedCount": 466, | ||
"percentage": 69 | ||
}, | ||
"pl": { | ||
"tokenCount": 672, | ||
"tokenCount": 677, | ||
"translatedCount": 564, | ||
"percentage": 84 | ||
"percentage": 83 | ||
}, | ||
"pt_BR": { | ||
"tokenCount": 672, | ||
"tokenCount": 677, | ||
"translatedCount": 655, | ||
"percentage": 97 | ||
}, | ||
"zh_Hans": { | ||
"tokenCount": 672, | ||
"tokenCount": 677, | ||
"translatedCount": 548, | ||
"percentage": 82 | ||
"percentage": 81 | ||
}, | ||
"zh_Hant": { | ||
"tokenCount": 672, | ||
"tokenCount": 677, | ||
"translatedCount": 548, | ||
"percentage": 82 | ||
"percentage": 81 | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
...ages/admin-ui/src/lib/core/src/shared/components/help-tooltip/help-tooltip.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<clr-tooltip> | ||
<clr-icon clrTooltipTrigger shape="help" size="14"></clr-icon> | ||
<clr-tooltip-content clrPosition="top-left" clrSize="md" *clrIfOpen> | ||
<span>{{ content }}</span> | ||
</clr-tooltip-content> | ||
</clr-tooltip> |
Empty file.
11 changes: 11 additions & 0 deletions
11
packages/admin-ui/src/lib/core/src/shared/components/help-tooltip/help-tooltip.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { ChangeDetectionStrategy, Component, Input } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'vdr-help-tooltip', | ||
templateUrl: './help-tooltip.component.html', | ||
styleUrls: ['./help-tooltip.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class HelpTooltipComponent { | ||
@Input() content: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters