-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
9356 9362 tag form improvements (#9525)
* tag styling complete * auto save complete * show only not selected tags as available * WIP button contextual helper for tags * fixed unit tests * linting * set options, type hinting * fixed after refactoring * added changelog, PR improvements * linting * fixed e2e tests * fixed bug for chrome
- Loading branch information
Showing
10 changed files
with
168 additions
and
66 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Enhancement: Tags form improved | ||
|
||
We've improved the tags form in various ways, including visual appearance as well as usability. Auto save, remove tags on backspace, and contextual helper (and more, see issues) | ||
|
||
https://github.com/owncloud/web/pull/9525 | ||
https://github.com/owncloud/web/issues/9363 | ||
https://github.com/owncloud/web/issues/9356 | ||
https://github.com/owncloud/web/issues/9360 | ||
https://github.com/owncloud/web/issues/9362 | ||
https://github.com/owncloud/web/issues/9416 |
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,6 +1,28 @@ | ||
import { ConfigurationManager } from 'web-pkg' | ||
|
||
export type IconFillType = 'fill' | 'line' | 'none' | ||
export type IconType = { | ||
name: string | ||
color?: string | ||
fillType?: IconFillType | ||
} | ||
|
||
export interface ContextualHelperDataListItem { | ||
text: string | ||
headline?: boolean | ||
} | ||
export interface ContextualHelperData { | ||
title: string | ||
text?: string | ||
list?: ContextualHelperDataListItem[] | ||
readMoreLink?: string | ||
} | ||
|
||
export interface ContextualHelperOptions { | ||
configurationManager: ConfigurationManager | ||
} | ||
|
||
export interface ContextualHelper { | ||
isEnabled: boolean | ||
data: ContextualHelperData | ||
} |
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
Oops, something went wrong.