|
replace
|
replace: string
|
Type : string
|
|
|
The CSS selector to replace.
|
|
replaceIn
|
replaceIn: { stylesheet?: boolean; html?: boolean; tsStringLiterals?: boolean }
|
Type : { stylesheet?: boolean; html?: boolean; tsStringLiterals?: boolean }
|
Properties :
-
stylesheet?: boolean
Replace this name in stylesheet files.
-
html?: boolean
Replace this name in HTML files.
-
tsStringLiterals?: boolean
Replace this name in TypeScript strings.
|
|
Optional
|
|
|
Controls which file types in which this replacement is made. If omitted, it is made in all
files.
|
import { VersionChanges } from '@angular/cdk/schematics';
export interface AquilaCssSelectorData {
/** The CSS selector to replace. */
replace: string;
/** The new CSS selector. */
replaceWith: string;
/**
* Controls which file types in which this replacement is made. If omitted, it is made in all
* files.
*/
replaceIn?: {
/** Replace this name in stylesheet files. */
stylesheet?: boolean;
/** Replace this name in HTML files. */
html?: boolean;
/** Replace this name in TypeScript strings. */
tsStringLiterals?: boolean;
};
}
export const cssSelectors: VersionChanges<AquilaCssSelectorData> = {};