Skip to content

Commit 877de56

Browse files
crisbetommalerba
authored andcommitted
build: rename @deletion-target to @Breaking-Change (#12421)
As discussed, renames the `@deletion-target` tag to `@breaking-change` to make the intentions of the tag clearer. Also adds an extra check to the tslint rule to catch any leftover `@deletion-target` tags.
1 parent 4e358c3 commit 877de56

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+128
-115
lines changed

src/cdk/a11y/aria-describer/aria-describer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,12 +225,12 @@ export class AriaDescriber implements OnDestroy {
225225
}
226226

227227

228-
/** @docs-private @deprecated @deletion-target 7.0.0 */
228+
/** @docs-private @deprecated @breaking-change 7.0.0 */
229229
export function ARIA_DESCRIBER_PROVIDER_FACTORY(parentDispatcher: AriaDescriber, _document: any) {
230230
return parentDispatcher || new AriaDescriber(_document);
231231
}
232232

233-
/** @docs-private @deprecated @deletion-target 7.0.0 */
233+
/** @docs-private @deprecated @breaking-change 7.0.0 */
234234
export const ARIA_DESCRIBER_PROVIDER = {
235235
// If there is already an AriaDescriber available, use that. Otherwise, provide a new one.
236236
provide: AriaDescriber,

src/cdk/a11y/focus-monitor/focus-monitor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,13 +402,13 @@ export class CdkMonitorFocus implements OnDestroy {
402402
}
403403
}
404404

405-
/** @docs-private @deprecated @deletion-target 7.0.0 */
405+
/** @docs-private @deprecated @breaking-change 7.0.0 */
406406
export function FOCUS_MONITOR_PROVIDER_FACTORY(
407407
parentDispatcher: FocusMonitor, ngZone: NgZone, platform: Platform) {
408408
return parentDispatcher || new FocusMonitor(ngZone, platform);
409409
}
410410

411-
/** @docs-private @deprecated @deletion-target 7.0.0 */
411+
/** @docs-private @deprecated @breaking-change 7.0.0 */
412412
export const FOCUS_MONITOR_PROVIDER = {
413413
// If there is already a FocusMonitor available, use that. Otherwise, provide a new one.
414414
provide: FocusMonitor,

src/cdk/a11y/focus-trap/focus-trap.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export class FocusTrap {
152152
`[cdk-focus-${bound}]`) as NodeListOf<HTMLElement>;
153153

154154
for (let i = 0; i < markers.length; i++) {
155-
// @deletion-target 7.0.0
155+
// @breaking-change 7.0.0
156156
if (markers[i].hasAttribute(`cdk-focus-${bound}`)) {
157157
console.warn(`Found use of deprecated attribute 'cdk-focus-${bound}', ` +
158158
`use 'cdkFocusRegion${bound}' instead. The deprecated ` +
@@ -181,7 +181,7 @@ export class FocusTrap {
181181
`[cdkFocusInitial]`) as HTMLElement;
182182

183183
if (redirectToElement) {
184-
// @deletion-target 7.0.0
184+
// @breaking-change 7.0.0
185185
if (redirectToElement.hasAttribute(`cdk-focus-initial`)) {
186186
console.warn(`Found use of deprecated attribute 'cdk-focus-initial', ` +
187187
`use 'cdkFocusInitial' instead. The deprecated attribute ` +

src/cdk/a11y/key-manager/list-key-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ export class ListKeyManager<T extends ListKeyManagerOption> {
305305
* Allows setting of the activeItemIndex without any other effects.
306306
* @param index The new activeItemIndex.
307307
* @deprecated Use `updateActiveItem` instead.
308-
* @deletion-target 7.0.0
308+
* @breaking-change 7.0.0
309309
*/
310310
updateActiveItemIndex(index: number): void {
311311
this.updateActiveItem(index);

src/cdk/a11y/live-announcer/live-announcer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,14 @@ export class CdkAriaLive implements OnDestroy {
132132
}
133133

134134

135-
/** @docs-private @deprecated @deletion-target 7.0.0 */
135+
/** @docs-private @deprecated @breaking-change 7.0.0 */
136136
export function LIVE_ANNOUNCER_PROVIDER_FACTORY(
137137
parentDispatcher: LiveAnnouncer, liveElement: any, _document: any) {
138138
return parentDispatcher || new LiveAnnouncer(liveElement, _document);
139139
}
140140

141141

142-
/** @docs-private @deprecated @deletion-target 7.0.0 */
142+
/** @docs-private @deprecated @breaking-change 7.0.0 */
143143
export const LIVE_ANNOUNCER_PROVIDER: Provider = {
144144
// If there is already a LiveAnnouncer available, use that. Otherwise, provide a new one.
145145
provide: LiveAnnouncer,

src/cdk/overlay/keyboard/overlay-keyboard-dispatcher.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,13 @@ export class OverlayKeyboardDispatcher implements OnDestroy {
9696
}
9797

9898

99-
/** @docs-private @deprecated @deletion-target 7.0.0 */
99+
/** @docs-private @deprecated @breaking-change 7.0.0 */
100100
export function OVERLAY_KEYBOARD_DISPATCHER_PROVIDER_FACTORY(
101101
dispatcher: OverlayKeyboardDispatcher, _document: any) {
102102
return dispatcher || new OverlayKeyboardDispatcher(_document);
103103
}
104104

105-
/** @docs-private @deprecated @deletion-target 7.0.0 */
105+
/** @docs-private @deprecated @breaking-change 7.0.0 */
106106
export const OVERLAY_KEYBOARD_DISPATCHER_PROVIDER = {
107107
// If there is already an OverlayKeyboardDispatcher available, use that.
108108
// Otherwise, provide a new one.

src/cdk/overlay/overlay-container.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ export class OverlayContainer implements OnDestroy {
5555
}
5656

5757

58-
/** @docs-private @deprecated @deletion-target 7.0.0 */
58+
/** @docs-private @deprecated @breaking-change 7.0.0 */
5959
export function OVERLAY_CONTAINER_PROVIDER_FACTORY(parentContainer: OverlayContainer,
6060
_document: any) {
6161
return parentContainer || new OverlayContainer(_document);
6262
}
6363

64-
/** @docs-private @deprecated @deletion-target 7.0.0 */
64+
/** @docs-private @deprecated @breaking-change 7.0.0 */
6565
export const OVERLAY_CONTAINER_PROVIDER = {
6666
// If there is already an OverlayContainer available, use that. Otherwise, provide a new one.
6767
provide: OverlayContainer,

src/cdk/overlay/overlay-directives.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const defaultPositionList: ConnectedPosition[] = [
7373
export const CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY =
7474
new InjectionToken<() => ScrollStrategy>('cdk-connected-overlay-scroll-strategy');
7575

76-
/** @docs-private @deprecated @deletion-target 7.0.0 */
76+
/** @docs-private @deprecated @breaking-change 7.0.0 */
7777
export function CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_FACTORY(overlay: Overlay):
7878
() => ScrollStrategy {
7979
return (config?: RepositionScrollStrategyConfig) => overlay.scrollStrategies.reposition(config);

src/cdk/overlay/overlay-module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class OverlayModule {}
3535

3636
/**
3737
* @deprecated Use `OverlayModule` instead.
38-
* @deletion-target 7.0.0
38+
* @breaking-change 7.0.0
3939
*/
4040
export const OVERLAY_PROVIDERS: Provider[] = [
4141
Overlay,

src/cdk/overlay/position/connected-position-strategy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import {OverlayReference} from '../overlay-reference';
2828
* a basic dropdown is connecting the bottom-left corner of the origin to the top-left corner
2929
* of the overlay.
3030
* @deprecated Use `FlexibleConnectedPositionStrategy` instead.
31-
* @deletion-target 7.0.0
31+
* @breaking-change 7.0.0
3232
*/
3333
export class ConnectedPositionStrategy implements PositionStrategy {
3434
/**
@@ -61,7 +61,7 @@ export class ConnectedPositionStrategy implements PositionStrategy {
6161
connectedTo: ElementRef,
6262
viewportRuler: ViewportRuler,
6363
document: Document,
64-
// @deletion-target 7.0.0 `platform` parameter to be made required.
64+
// @breaking-change 7.0.0 `platform` parameter to be made required.
6565
platform?: Platform) {
6666

6767
// Since the `ConnectedPositionStrategy` is deprecated and we don't want to maintain

src/cdk/overlay/position/flexible-connected-position-strategy.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export class FlexibleConnectedPositionStrategy implements PositionStrategy {
132132
connectedTo: ElementRef | HTMLElement,
133133
private _viewportRuler: ViewportRuler,
134134
private _document: Document,
135-
// @deletion-target 7.0.0 `_platform` and `_overlayContainer` parameters to be made required.
135+
// @breaking-change 7.0.0 `_platform` and `_overlayContainer` parameters to be made required.
136136
private _platform?: Platform,
137137
private _overlayContainer?: OverlayContainer) {
138138
this.setOrigin(connectedTo);
@@ -171,7 +171,7 @@ export class FlexibleConnectedPositionStrategy implements PositionStrategy {
171171
*/
172172
apply(): void {
173173
// We shouldn't do anything if the strategy was disposed or we're on the server.
174-
// @deletion-target 7.0.0 Remove `_platform` null check once it's guaranteed to be defined.
174+
// @breaking-change 7.0.0 Remove `_platform` null check once it's guaranteed to be defined.
175175
if (this._isDisposed || (this._platform && !this._platform.isBrowser)) {
176176
return;
177177
}
@@ -842,7 +842,7 @@ export class FlexibleConnectedPositionStrategy implements PositionStrategy {
842842
overlayPoint = this._pushOverlayOnScreen(overlayPoint, this._overlayRect);
843843
}
844844

845-
// @deletion-target 7.0.0 Currently the `_overlayContainer` is optional in order to avoid a
845+
// @breaking-change 7.0.0 Currently the `_overlayContainer` is optional in order to avoid a
846846
// breaking change. The null check here can be removed once the `_overlayContainer` becomes
847847
// a required parameter.
848848
let virtualKeyboardOffset = this._overlayContainer ?

src/cdk/overlay/position/global-position-strategy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class GlobalPositionStrategy implements PositionStrategy {
9393
* Sets the overlay width and clears any previously set width.
9494
* @param value New width for the overlay
9595
* @deprecated Pass the `width` through the `OverlayConfig`.
96-
* @deletion-target 7.0.0
96+
* @breaking-change 7.0.0
9797
*/
9898
width(value: string = ''): this {
9999
if (this._overlayRef) {
@@ -109,7 +109,7 @@ export class GlobalPositionStrategy implements PositionStrategy {
109109
* Sets the overlay height and clears any previously set height.
110110
* @param value New height for the overlay
111111
* @deprecated Pass the `height` through the `OverlayConfig`.
112-
* @deletion-target 7.0.0
112+
* @breaking-change 7.0.0
113113
*/
114114
height(value: string = ''): this {
115115
if (this._overlayRef) {

src/cdk/overlay/position/overlay-position-builder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class OverlayPositionBuilder {
2323
constructor(
2424
private _viewportRuler: ViewportRuler,
2525
@Inject(DOCUMENT) private _document: any,
26-
// @deletion-target 7.0.0 `_platform` and `_overlayContainer` parameters to be made required.
26+
// @breaking-change 7.0.0 `_platform` and `_overlayContainer` parameters to be made required.
2727
@Optional() private _platform?: Platform,
2828
@Optional() private _overlayContainer?: OverlayContainer) { }
2929

@@ -40,7 +40,7 @@ export class OverlayPositionBuilder {
4040
* @param originPos
4141
* @param overlayPos
4242
* @deprecated Use `flexibleConnectedTo` instead.
43-
* @deletion-target 7.0.0
43+
* @breaking-change 7.0.0
4444
*/
4545
connectedTo(
4646
elementRef: ElementRef,

src/cdk/platform/platform.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class Platform {
6868
SAFARI: boolean = this.isBrowser && /safari/i.test(navigator.userAgent) && this.WEBKIT;
6969

7070
/**
71-
* @deletion-target v7.0.0 remove optional decorator
71+
* @breaking-change v7.0.0 remove optional decorator
7272
*/
7373
constructor(@Optional() @Inject(PLATFORM_ID) private _platformId?: Object) {
7474
}

src/cdk/scrolling/scroll-dispatcher.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,13 +170,13 @@ export class ScrollDispatcher implements OnDestroy {
170170
}
171171

172172

173-
/** @docs-private @deprecated @deletion-target 7.0.0 */
173+
/** @docs-private @deprecated @breaking-change 7.0.0 */
174174
export function SCROLL_DISPATCHER_PROVIDER_FACTORY(
175175
parentDispatcher: ScrollDispatcher, ngZone: NgZone, platform: Platform) {
176176
return parentDispatcher || new ScrollDispatcher(ngZone, platform);
177177
}
178178

179-
/** @docs-private @deprecated @deletion-target 7.0.0 */
179+
/** @docs-private @deprecated @breaking-change 7.0.0 */
180180
export const SCROLL_DISPATCHER_PROVIDER = {
181181
// If there is already a ScrollDispatcher available, use that. Otherwise, provide a new one.
182182
provide: ScrollDispatcher,

src/cdk/scrolling/viewport-ruler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,14 +123,14 @@ export class ViewportRuler implements OnDestroy {
123123
}
124124

125125

126-
/** @docs-private @deprecated @deletion-target 7.0.0 */
126+
/** @docs-private @deprecated @breaking-change 7.0.0 */
127127
export function VIEWPORT_RULER_PROVIDER_FACTORY(parentRuler: ViewportRuler,
128128
platform: Platform,
129129
ngZone: NgZone) {
130130
return parentRuler || new ViewportRuler(platform, ngZone);
131131
}
132132

133-
/** @docs-private @deprecated @deletion-target 7.0.0 */
133+
/** @docs-private @deprecated @breaking-change 7.0.0 */
134134
export const VIEWPORT_RULER_PROVIDER = {
135135
// If there is already a ViewportRuler available, use that. Otherwise, provide a new one.
136136
provide: ViewportRuler,

src/cdk/stepper/stepper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export class CdkStepper implements AfterViewInit, OnDestroy {
200200
/** The step that is selected. */
201201
@Input()
202202
get selected(): CdkStep {
203-
// @deletion-target 7.0.0 Change return type to `CdkStep | undefined`.
203+
// @breaking-change 7.0.0 Change return type to `CdkStep | undefined`.
204204
return this._steps ? this._steps.toArray()[this.selectedIndex] : undefined!;
205205
}
206206
set selected(step: CdkStep) {

src/cdk/table/table.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ export class CdkTable<T> implements AfterContentChecked, CollectionViewer, OnDes
478478
* table's content is checked.
479479
* @docs-private
480480
* @deprecated Use `addHeaderRowDef` and `removeHeaderRowDef` instead
481-
* @deletion-target 8.0.0
481+
* @breaking-change 8.0.0
482482
*/
483483
setHeaderRowDef(headerRowDef: CdkHeaderRowDef) {
484484
this._customHeaderRowDefs = new Set([headerRowDef]);
@@ -491,7 +491,7 @@ export class CdkTable<T> implements AfterContentChecked, CollectionViewer, OnDes
491491
* table's content is checked.
492492
* @docs-private
493493
* @deprecated Use `addFooterRowDef` and `removeFooterRowDef` instead
494-
* @deletion-target 8.0.0
494+
* @breaking-change 8.0.0
495495
*/
496496
setFooterRowDef(footerRowDef: CdkFooterRowDef) {
497497
this._customFooterRowDefs = new Set([footerRowDef]);

src/lib/autocomplete/autocomplete-trigger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export class MatAutocompleteTrigger implements ControlValueAccessor, OnDestroy {
177177
@Optional() private _dir: Directionality,
178178
@Optional() @Host() private _formField: MatFormField,
179179
@Optional() @Inject(DOCUMENT) private _document: any,
180-
// @deletion-target 7.0.0 Make `_viewportRuler` required.
180+
// @breaking-change 7.0.0 Make `_viewportRuler` required.
181181
private _viewportRuler?: ViewportRuler) {}
182182

183183
ngOnDestroy() {

src/lib/button-toggle/button-toggle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const MAT_BUTTON_TOGGLE_GROUP_VALUE_ACCESSOR: any = {
5757

5858
/**
5959
* @deprecated Use `MatButtonToggleGroup` instead.
60-
* @deletion-target 7.0.0
60+
* @breaking-change 7.0.0
6161
*/
6262
export class MatButtonToggleGroupMultiple {}
6363

src/lib/button/button.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ export class MatButton extends _MatButtonMixinBase
9292
constructor(elementRef: ElementRef,
9393
/**
9494
* @deprecated Platform checks for SSR are no longer needed
95-
* @deletion-target 7.0.0
95+
* @breaking-change 7.0.0
9696
*/
9797
// tslint:disable-next-line:no-unused-variable
9898
private _platform: Platform,
9999
private _focusMonitor: FocusMonitor,
100-
// @deletion-target 7.0.0 `_animationMode` parameter to be made required.
100+
// @breaking-change 7.0.0 `_animationMode` parameter to be made required.
101101
@Optional() @Inject(ANIMATION_MODULE_TYPE) public _animationMode?: string) {
102102
super(elementRef);
103103

@@ -173,7 +173,7 @@ export class MatAnchor extends MatButton {
173173
platform: Platform,
174174
focusMonitor: FocusMonitor,
175175
elementRef: ElementRef,
176-
// @deletion-target 7.0.0 `animationMode` parameter to be made required.
176+
// @breaking-change 7.0.0 `animationMode` parameter to be made required.
177177
@Optional() @Inject(ANIMATION_MODULE_TYPE) animationMode?: string) {
178178
super(elementRef, platform, focusMonitor, animationMode);
179179
}

src/lib/chips/chip-input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export class MatChipInput {
7979
/**
8080
* The input's placeholder text.
8181
* @deprecated Bind to the `placeholder` attribute directly.
82-
* @deletion-target 7.0.0
82+
* @breaking-change 7.0.0
8383
*/
8484
@Input() placeholder: string = '';
8585

src/lib/core/datetime/date-adapter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function MAT_DATE_LOCALE_FACTORY(): string {
2424
* No longer needed since MAT_DATE_LOCALE has been changed to a scoped injectable.
2525
* If you are importing and providing this in your code you can simply remove it.
2626
* @deprecated
27-
* @deletion-target 7.0.0
27+
* @breaking-change 7.0.0
2828
*/
2929
export const MAT_DATE_LOCALE_PROVIDER = {provide: MAT_DATE_LOCALE, useExisting: LOCALE_ID};
3030

src/lib/core/gestures/gesture-config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class GestureConfig extends HammerGestureConfig {
8080
// `this.events` to the set we support, instead of conditionally setting it to `[]` if
8181
// `HAMMER_LOADER` is present (and then throwing an Error here if `window.Hammer` is
8282
// undefined).
83-
// @deletion-target 7.0.0
83+
// @breaking-change 7.0.0
8484
return noopHammerInstance;
8585
}
8686

src/lib/core/ripple/ripple-renderer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export type RippleConfig = {
1818
terminateOnPointerUp?: boolean;
1919
/**
2020
* @deprecated Use the `animation` property instead.
21-
* @deletion-target 7.0.0
21+
* @breaking-change 7.0.0
2222
*/
2323
speedFactor?: number;
2424
};

src/lib/core/ripple/ripple.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export interface RippleGlobalOptions {
4242
* setting it to 0.5 will cause the ripple fade-in animation to take twice as long.
4343
* A changed speedFactor will not affect the fade-out duration of the ripples.
4444
* @deprecated Use the `animation` global option instead.
45-
* @deletion-target 7.0.0
45+
* @breaking-change 7.0.0
4646
*/
4747
baseSpeedFactor?: number;
4848

@@ -91,7 +91,7 @@ export class MatRipple implements OnInit, OnDestroy, RippleTarget {
9191
* setting it to 0.5 will cause the animations to take twice as long.
9292
* A changed speedFactor will not modify the fade-out duration of the ripples.
9393
* @deprecated Use the [matRippleAnimation] binding instead.
94-
* @deletion-target 7.0.0
94+
* @breaking-change 7.0.0
9595
*/
9696
@Input('matRippleSpeedFactor') speedFactor: number = 1;
9797

src/lib/core/theming/_palette.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@
77

88

99
// @deprecated renamed to $dark-primary-text.
10-
// @deletion-target 7.0.0
10+
// @breaking-change 7.0.0
1111
$black-87-opacity: rgba(black, 0.87);
1212
// @deprecated renamed to $light-primary-text.
13-
// @deletion-target 7.0.0
13+
// @breaking-change 7.0.0
1414
$white-87-opacity: rgba(white, 0.87);
1515
// @deprecated use $dark-[secondary-text,disabled-text,dividers,focused] instead.
16-
// @deletion-target 7.0.0
16+
// @breaking-change 7.0.0
1717
$black-12-opacity: rgba(black, 0.12);
1818
// @deprecated use $light-[secondary-text,disabled-text,dividers,focused] instead.
19-
// @deletion-target 7.0.0
19+
// @breaking-change 7.0.0
2020
$white-12-opacity: rgba(white, 0.12);
2121
// @deprecated use $dark-[secondary-text,disabled-text,dividers,focused] instead.
22-
// @deletion-target 7.0.0
22+
// @breaking-change 7.0.0
2323
$black-6-opacity: rgba(black, 0.06);
2424
// @deprecated use $light-[secondary-text,disabled-text,dividers,focused] instead.
25-
// @deletion-target 7.0.0
25+
// @breaking-change 7.0.0
2626
$white-6-opacity: rgba(white, 0.06);
2727

2828
$dark-primary-text: rgba(black, 0.87);

0 commit comments

Comments
 (0)