blob: 24ed28f95214e2721887435ebef2444a89d80e99 [file] [log] [blame]
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { DOCUMENT } from '@angular/common';
import { inject, InjectionToken, EventEmitter, Inject, Injectable, Optional, Directive, Output, Input, NgModule, ɵɵdefineInjectable, ɵɵinject } from '@angular/core';
/**
* @fileoverview added by tsickle
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
/**
* Injection token used to inject the document into Directionality.
* This is used so that the value can be faked in tests.
*
* We can't use the real document in tests because changing the real `dir` causes geometry-based
* tests in Safari to fail.
*
* We also can't re-provide the DOCUMENT token from platform-brower because the unit tests
* themselves use things like `querySelector` in test code.
*
* This token is defined in a separate file from Directionality as a workaround for
* https://github.com/angular/angular/issues/22559
*
* \@docs-private
* @type {?}
*/
var DIR_DOCUMENT = new InjectionToken('cdk-dir-doc', {
providedIn: 'root',
factory: DIR_DOCUMENT_FACTORY,
});
/**
* \@docs-private
* @return {?}
*/
function DIR_DOCUMENT_FACTORY() {
return inject(DOCUMENT);
}
/**
* @fileoverview added by tsickle
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
/**
* The directionality (LTR / RTL) context for the application (or a subtree of it).
* Exposes the current direction and a stream of direction changes.
*/
var Directionality = /** @class */ (function () {
function Directionality(_document) {
/**
* The current 'ltr' or 'rtl' value.
*/
this.value = 'ltr';
/**
* Stream that emits whenever the 'ltr' / 'rtl' state changes.
*/
this.change = new EventEmitter();
if (_document) {
// TODO: handle 'auto' value -
// We still need to account for dir="auto".
// It looks like HTMLElemenet.dir is also "auto" when that's set to the attribute,
// but getComputedStyle return either "ltr" or "rtl". avoiding getComputedStyle for now
/** @type {?} */
var bodyDir = _document.body ? _document.body.dir : null;
/** @type {?} */
var htmlDir = _document.documentElement ? _document.documentElement.dir : null;
/** @type {?} */
var value = bodyDir || htmlDir;
this.value = (value === 'ltr' || value === 'rtl') ? value : 'ltr';
}
}
/**
* @return {?}
*/
Directionality.prototype.ngOnDestroy = /**
* @return {?}
*/
function () {
this.change.complete();
};
Directionality.decorators = [
{ type: Injectable, args: [{ providedIn: 'root' },] },
];
/** @nocollapse */
Directionality.ctorParameters = function () { return [
{ type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [DIR_DOCUMENT,] }] }
]; };
/** @nocollapse */ Directionality.ngInjectableDef = ɵɵdefineInjectable({ factory: function Directionality_Factory() { return new Directionality(ɵɵinject(DIR_DOCUMENT, 8)); }, token: Directionality, providedIn: "root" });
return Directionality;
}());
/**
* @fileoverview added by tsickle
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
/**
* Directive to listen for changes of direction of part of the DOM.
*
* Provides itself as Directionality such that descendant directives only need to ever inject
* Directionality to get the closest direction.
*/
var Dir = /** @class */ (function () {
function Dir() {
/**
* Normalized direction that accounts for invalid/unsupported values.
*/
this._dir = 'ltr';
/**
* Whether the `value` has been set to its initial value.
*/
this._isInitialized = false;
/**
* Event emitted when the direction changes.
*/
this.change = new EventEmitter();
}
Object.defineProperty(Dir.prototype, "dir", {
/** @docs-private */
get: /**
* \@docs-private
* @return {?}
*/
function () { return this._dir; },
set: /**
* @param {?} value
* @return {?}
*/
function (value) {
/** @type {?} */
var old = this._dir;
/** @type {?} */
var normalizedValue = value ? value.toLowerCase() : value;
this._rawDir = value;
this._dir = (normalizedValue === 'ltr' || normalizedValue === 'rtl') ? normalizedValue : 'ltr';
if (old !== this._dir && this._isInitialized) {
this.change.emit(this._dir);
}
},
enumerable: true,
configurable: true
});
Object.defineProperty(Dir.prototype, "value", {
/** Current layout direction of the element. */
get: /**
* Current layout direction of the element.
* @return {?}
*/
function () { return this.dir; },
enumerable: true,
configurable: true
});
/** Initialize once default value has been set. */
/**
* Initialize once default value has been set.
* @return {?}
*/
Dir.prototype.ngAfterContentInit = /**
* Initialize once default value has been set.
* @return {?}
*/
function () {
this._isInitialized = true;
};
/**
* @return {?}
*/
Dir.prototype.ngOnDestroy = /**
* @return {?}
*/
function () {
this.change.complete();
};
Dir.decorators = [
{ type: Directive, args: [{
selector: '[dir]',
providers: [{ provide: Directionality, useExisting: Dir }],
host: { '[attr.dir]': '_rawDir' },
exportAs: 'dir',
},] },
];
Dir.propDecorators = {
change: [{ type: Output, args: ['dirChange',] }],
dir: [{ type: Input }]
};
return Dir;
}());
/**
* @fileoverview added by tsickle
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
var BidiModule = /** @class */ (function () {
function BidiModule() {
}
BidiModule.decorators = [
{ type: NgModule, args: [{
exports: [Dir],
declarations: [Dir],
},] },
];
return BidiModule;
}());
/**
* @fileoverview added by tsickle
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
/**
* @fileoverview added by tsickle
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
export { Directionality, DIR_DOCUMENT, Dir, BidiModule, DIR_DOCUMENT_FACTORY as ɵa };
//# sourceMappingURL=bidi.es5.js.map