generated from Tinkoff/angular-open-source-starter
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update taiga-ui dev infra to v0.158.0
- Loading branch information
1 parent
7941913
commit 30637ee
Showing
14 changed files
with
142 additions
and
57 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 |
---|---|---|
|
@@ -13,9 +13,19 @@ jobs: | |
- uses: taiga-family/ci/actions/setup/[email protected] | ||
- uses: taiga-family/ci/actions/setup/[email protected] | ||
- uses: taiga-family/ci/actions/setup/[email protected] | ||
- run: npm run prettier -- --check | ||
- run: npm run stylelint | ||
- run: npm run lint | ||
- run: | | ||
if [[ "${{ env.SUPPORT_AUTO_PUSH }}" == "true" ]]; then | ||
npm run prettier -- --write | ||
npm run stylelint -- --fix | ||
npm run lint -- --fix | ||
else | ||
npm run prettier -- --check | ||
npm run stylelint | ||
npm run lint | ||
fi | ||
- uses: taiga-family/ci/actions/auto/[email protected] | ||
with: | ||
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }} | ||
|
||
concurrency: | ||
group: lint-${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
appearance="secondary" | ||
size="s" | ||
tuiButton | ||
type="button" | ||
(click)="send()" | ||
> | ||
Send | ||
|
4 changes: 2 additions & 2 deletions
4
projects/demo/src/app/pages/toolbar/bottom/examples/1/index.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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
import {TuiEditorTool} from '../types/editor-tool'; | ||
|
||
export const TUI_EDITOR_DEFAULT_TOOLS = new Set([ | ||
TuiEditorTool.Undo, | ||
TuiEditorTool.Size, | ||
TuiEditorTool.Bold, | ||
TuiEditorTool.Italic, | ||
TuiEditorTool.Underline, | ||
TuiEditorTool.Align, | ||
TuiEditorTool.List, | ||
TuiEditorTool.Quote, | ||
TuiEditorTool.Link, | ||
TuiEditorTool.Anchor, | ||
TuiEditorTool.Color, | ||
TuiEditorTool.Hilite, | ||
TuiEditorTool.Bold, | ||
TuiEditorTool.CellColor, | ||
TuiEditorTool.Clear, | ||
TuiEditorTool.Strikethrough, | ||
TuiEditorTool.Code, | ||
TuiEditorTool.Img, | ||
TuiEditorTool.Color, | ||
TuiEditorTool.Details, | ||
TuiEditorTool.Hilite, | ||
TuiEditorTool.HR, | ||
TuiEditorTool.Sup, | ||
TuiEditorTool.Img, | ||
TuiEditorTool.Italic, | ||
TuiEditorTool.Link, | ||
TuiEditorTool.List, | ||
TuiEditorTool.Quote, | ||
TuiEditorTool.Size, | ||
TuiEditorTool.Strikethrough, | ||
TuiEditorTool.Sub, | ||
TuiEditorTool.Sup, | ||
TuiEditorTool.Table, | ||
TuiEditorTool.CellColor, | ||
TuiEditorTool.Details, | ||
TuiEditorTool.Underline, | ||
TuiEditorTool.Undo, | ||
]); |
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
Oops, something went wrong.