refactor(ivy): remame `styling_next` directory to `styling` (#32731)
PR Close #32731
This commit is contained in:
parent
0618bed83e
commit
f88f717094
|
@ -12,9 +12,9 @@ import {CONTAINER_HEADER_OFFSET, LContainer, NATIVE} from '../render3/interfaces
|
|||
import {TElementNode, TNode, TNodeFlags, TNodeType} from '../render3/interfaces/node';
|
||||
import {isComponentHost, isLContainer} from '../render3/interfaces/type_checks';
|
||||
import {LView, PARENT, TData, TVIEW, T_HOST} from '../render3/interfaces/view';
|
||||
import {StylingMapArray, TStylingContext} from '../render3/styling_next/interfaces';
|
||||
import {NodeStylingDebug} from '../render3/styling_next/styling_debug';
|
||||
import {isStylingContext, stylingMapToStringMap} from '../render3/styling_next/util';
|
||||
import {StylingMapArray, TStylingContext} from '../render3/styling/interfaces';
|
||||
import {NodeStylingDebug} from '../render3/styling/styling_debug';
|
||||
import {isStylingContext, stylingMapToStringMap} from '../render3/styling/util';
|
||||
import {getComponent, getContext, getInjectionTokens, getInjector, getListeners, getLocalRefs, isBrowserEvents, loadLContext} from '../render3/util/discovery_utils';
|
||||
import {INTERPOLATION_DELIMITER, renderStringify} from '../render3/util/misc_utils';
|
||||
import {findComponentView} from '../render3/util/view_traversal_utils';
|
||||
|
|
|
@ -24,7 +24,7 @@ import {isComponentDef, isComponentHost} from './interfaces/type_checks';
|
|||
import {DECLARATION_VIEW, INJECTOR, LView, TData, TVIEW, TView, T_HOST} from './interfaces/view';
|
||||
import {assertNodeOfPossibleTypes} from './node_assert';
|
||||
import {getLView, getPreviousOrParentTNode, setTNodeAndViewData} from './state';
|
||||
import {getInitialStylingValue} from './styling_next/util';
|
||||
import {getInitialStylingValue} from './styling/util';
|
||||
import {isNameOnlyAttributeMarker} from './util/attrs_utils';
|
||||
import {getParentInjectorIndex, getParentInjectorView, hasParentInjector} from './util/injector_utils';
|
||||
import {stringifyForError} from './util/misc_utils';
|
||||
|
|
|
@ -43,7 +43,7 @@ export * from './projection';
|
|||
export * from './property';
|
||||
export * from './property_interpolation';
|
||||
export * from './advance';
|
||||
export * from '../styling_next/instructions';
|
||||
export * from '../styling/instructions';
|
||||
export * from './text';
|
||||
export * from './text_interpolation';
|
||||
export * from './class_map_interpolation';
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
|
||||
import {getLView, getSelectedIndex} from '../state';
|
||||
import {classMapInternal} from '../styling_next/instructions';
|
||||
import {classMapInternal} from '../styling/instructions';
|
||||
import {interpolation1, interpolation2, interpolation3, interpolation4, interpolation5, interpolation6, interpolation7, interpolation8, interpolationV} from './interpolation';
|
||||
|
||||
|
||||
|
|
|
@ -17,9 +17,9 @@ import {BINDING_INDEX, HEADER_OFFSET, LView, RENDERER, TVIEW, T_HOST} from '../i
|
|||
import {assertNodeType} from '../node_assert';
|
||||
import {appendChild} from '../node_manipulation';
|
||||
import {decreaseElementDepthCount, getElementDepthCount, getIsParent, getLView, getNamespace, getPreviousOrParentTNode, getSelectedIndex, increaseElementDepthCount, setIsNotParent, setPreviousOrParentTNode} from '../state';
|
||||
import {registerInitialStylingOnTNode} from '../styling_next/instructions';
|
||||
import {StylingMapArray, TStylingContext} from '../styling_next/interfaces';
|
||||
import {getInitialStylingValue, hasClassInput, hasStyleInput} from '../styling_next/util';
|
||||
import {registerInitialStylingOnTNode} from '../styling/instructions';
|
||||
import {StylingMapArray, TStylingContext} from '../styling/interfaces';
|
||||
import {getInitialStylingValue, hasClassInput, hasStyleInput} from '../styling/util';
|
||||
import {setUpAttributes} from '../util/attrs_utils';
|
||||
import {getNativeByTNode, getTNode} from '../util/view_utils';
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ import {BINDING_INDEX, HEADER_OFFSET, RENDERER, TVIEW, T_HOST} from '../interfac
|
|||
import {assertNodeType} from '../node_assert';
|
||||
import {appendChild} from '../node_manipulation';
|
||||
import {getIsParent, getLView, getPreviousOrParentTNode, setIsNotParent, setPreviousOrParentTNode} from '../state';
|
||||
import {registerInitialStylingOnTNode} from '../styling_next/instructions';
|
||||
import {registerInitialStylingOnTNode} from '../styling/instructions';
|
||||
|
||||
import {createDirectivesInstances, executeContentQueries, getOrCreateTNode, resolveDirectives, saveResolvedLocalsInData} from './shared';
|
||||
|
||||
|
|
|
@ -19,9 +19,9 @@ import {SelectorFlags} from '../interfaces/projection';
|
|||
import {TQueries} from '../interfaces/query';
|
||||
import {RComment, RElement, RNode} from '../interfaces/renderer';
|
||||
import {BINDING_INDEX, CHILD_HEAD, CHILD_TAIL, CLEANUP, CONTEXT, DECLARATION_VIEW, ExpandoInstructions, FLAGS, HEADER_OFFSET, HOST, HookData, INJECTOR, LView, LViewFlags, NEXT, PARENT, QUERIES, RENDERER, RENDERER_FACTORY, SANITIZER, TData, TVIEW, TView as ITView, TView, T_HOST} from '../interfaces/view';
|
||||
import {TStylingContext} from '../styling_next/interfaces';
|
||||
import {DebugStyling as DebugNewStyling, NodeStylingDebug} from '../styling_next/styling_debug';
|
||||
import {isStylingContext} from '../styling_next/util';
|
||||
import {TStylingContext} from '../styling/interfaces';
|
||||
import {DebugStyling as DebugNewStyling, NodeStylingDebug} from '../styling/styling_debug';
|
||||
import {isStylingContext} from '../styling/util';
|
||||
import {attachDebugObject} from '../util/debug_utils';
|
||||
import {getTNode, unwrapRNode} from '../util/view_utils';
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ import {BINDING_INDEX, CHILD_HEAD, CHILD_TAIL, CLEANUP, CONTEXT, DECLARATION_VIE
|
|||
import {assertNodeOfPossibleTypes} from '../node_assert';
|
||||
import {isNodeMatchingSelectorList} from '../node_selector_matcher';
|
||||
import {ActiveElementFlags, executeElementExitFn, getBindingsEnabled, getCheckNoChangesMode, getIsParent, getPreviousOrParentTNode, getSelectedIndex, hasActiveElementFlag, incrementActiveDirectiveId, namespaceHTMLInternal, selectView, setActiveHostElement, setBindingRoot, setCheckNoChangesMode, setCurrentDirectiveDef, setCurrentQueryIndex, setPreviousOrParentTNode, setSelectedIndex} from '../state';
|
||||
import {renderStylingMap} from '../styling_next/bindings';
|
||||
import {renderStylingMap} from '../styling/bindings';
|
||||
import {NO_CHANGE} from '../tokens';
|
||||
import {ANIMATION_PROP_PREFIX, isAnimationProp} from '../util/attrs_utils';
|
||||
import {INTERPOLATION_DELIMITER, renderStringify, stringifyForError} from '../util/misc_utils';
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
import {getLView, getSelectedIndex} from '../state';
|
||||
import {stylePropInternal} from '../styling_next/instructions';
|
||||
import {stylePropInternal} from '../styling/instructions';
|
||||
import {interpolation1, interpolation2, interpolation3, interpolation4, interpolation5, interpolation6, interpolation7, interpolation8, interpolationV} from './interpolation';
|
||||
import {TsickleIssue1009} from './shared';
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* 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 {StylingMapArray, TStylingContext} from '../styling_next/interfaces';
|
||||
import {StylingMapArray, TStylingContext} from '../styling/interfaces';
|
||||
import {CssSelector} from './projection';
|
||||
import {RNode} from './renderer';
|
||||
import {LView, TView} from './view';
|
||||
|
|
|
@ -12,7 +12,7 @@ import {assertDefined, assertNotEqual} from '../util/assert';
|
|||
|
||||
import {AttributeMarker, TAttributes, TNode, TNodeType, unusedValueExportToPlacateAjd as unused1} from './interfaces/node';
|
||||
import {CssSelector, CssSelectorList, SelectorFlags, unusedValueExportToPlacateAjd as unused2} from './interfaces/projection';
|
||||
import {getInitialStylingValue} from './styling_next/util';
|
||||
import {getInitialStylingValue} from './styling/util';
|
||||
import {isNameOnlyAttributeMarker} from './util/attrs_utils';
|
||||
|
||||
const unusedValueToPlacateAjd = unused1 + unused2;
|
||||
|
|
|
@ -514,7 +514,7 @@ function updateInitialStylingOnContext(
|
|||
* map-based bindings up to sync with the application of prop-based
|
||||
* bindings.
|
||||
*
|
||||
* Visit `styling_next/map_based_bindings.ts` to learn more about how the
|
||||
* Visit `styling/map_based_bindings.ts` to learn more about how the
|
||||
* algorithm works for map-based styling bindings.
|
||||
*
|
||||
* Note that this function is not designed to be called in isolation (use
|
|
@ -287,7 +287,7 @@ import {LView} from '../interfaces/view';
|
|||
* For the algorithm to apply styling values efficiently, the
|
||||
* styling map entries must be applied in sync (property by property)
|
||||
* with prop-based bindings. (The map-based algorithm is described
|
||||
* more inside of the `render3/styling_next/map_based_bindings.ts` file.)
|
||||
* more inside of the `render3/styling/map_based_bindings.ts` file.)
|
||||
*
|
||||
* ## Sanitization
|
||||
* Sanitization is used to prevent invalid style values from being applied to
|
|
@ -192,7 +192,7 @@
|
|||
"pure_function.ts": 1274,
|
||||
"query.ts": 5226,
|
||||
"state.ts": 1312,
|
||||
"styling_next/": {
|
||||
"styling/": {
|
||||
"size": 8202,
|
||||
"bindings.ts": 2430,
|
||||
"instructions.ts": 1821,
|
||||
|
|
|
@ -192,7 +192,7 @@
|
|||
"pure_function.ts": 1274,
|
||||
"query.ts": 5226,
|
||||
"state.ts": 1312,
|
||||
"styling_next/": {
|
||||
"styling/": {
|
||||
"size": 8202,
|
||||
"bindings.ts": 2430,
|
||||
"instructions.ts": 1821,
|
||||
|
@ -362,4 +362,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@ import {ɵɵelement, ɵɵelementEnd, ɵɵelementStart} from '../../../../src/ren
|
|||
import {refreshView} from '../../../../src/render3/instructions/shared';
|
||||
import {RenderFlags} from '../../../../src/render3/interfaces/definition';
|
||||
import {TVIEW} from '../../../../src/render3/interfaces/view';
|
||||
import {ɵɵclassMap, ɵɵstyleMap} from '../../../../src/render3/styling_next/instructions';
|
||||
import {ɵɵclassMap, ɵɵstyleMap} from '../../../../src/render3/styling/instructions';
|
||||
import {createBenchmark} from '../micro_bench';
|
||||
import {setupRootViewWithEmbeddedViews} from '../setup';
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ import {refreshView} from '../../../../src/render3/instructions/shared';
|
|||
import {RenderFlags} from '../../../../src/render3/interfaces/definition';
|
||||
import {AttributeMarker} from '../../../../src/render3/interfaces/node';
|
||||
import {TVIEW} from '../../../../src/render3/interfaces/view';
|
||||
import {ɵɵclassProp, ɵɵstyleProp} from '../../../../src/render3/styling_next/instructions';
|
||||
import {ɵɵclassProp, ɵɵstyleProp} from '../../../../src/render3/styling/instructions';
|
||||
import {createBenchmark} from '../micro_bench';
|
||||
import {setupRootViewWithEmbeddedViews} from '../setup';
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ import {ɵɵelement, ɵɵelementEnd, ɵɵelementStart} from '../../../../src/ren
|
|||
import {refreshView} from '../../../../src/render3/instructions/shared';
|
||||
import {RenderFlags} from '../../../../src/render3/interfaces/definition';
|
||||
import {TVIEW} from '../../../../src/render3/interfaces/view';
|
||||
import {ɵɵstyleProp} from '../../../../src/render3/styling_next/instructions';
|
||||
import {ɵɵstyleProp} from '../../../../src/render3/styling/instructions';
|
||||
import {createBenchmark} from '../micro_bench';
|
||||
import {setupRootViewWithEmbeddedViews} from '../setup';
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* 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 {normalizeIntoStylingMap as createMap} from '../../../src/render3/styling_next/util';
|
||||
import {normalizeIntoStylingMap as createMap} from '../../../src/render3/styling/util';
|
||||
|
||||
describe('map-based bindings', () => {
|
||||
describe('StylingMapArray construction', () => {
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
* 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 {registerBinding} from '@angular/core/src/render3/styling_next/bindings';
|
||||
import {attachStylingDebugObject} from '@angular/core/src/render3/styling_next/styling_debug';
|
||||
import {DEFAULT_GUARD_MASK_VALUE} from '@angular/core/src/render3/styling_next/util';
|
||||
import {registerBinding} from '@angular/core/src/render3/styling/bindings';
|
||||
import {attachStylingDebugObject} from '@angular/core/src/render3/styling/styling_debug';
|
||||
import {DEFAULT_GUARD_MASK_VALUE} from '@angular/core/src/render3/styling/util';
|
||||
|
||||
import {allocTStylingContext} from '../../../src/render3/styling_next/util';
|
||||
import {allocTStylingContext} from '../../../src/render3/styling/util';
|
||||
|
||||
describe('styling context', () => {
|
||||
it('should register a series of entries into the context', () => {
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
* 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 {registerBinding} from '@angular/core/src/render3/styling_next/bindings';
|
||||
import {NodeStylingDebug, attachStylingDebugObject} from '@angular/core/src/render3/styling_next/styling_debug';
|
||||
import {allocTStylingContext} from '@angular/core/src/render3/styling_next/util';
|
||||
import {registerBinding} from '@angular/core/src/render3/styling/bindings';
|
||||
import {NodeStylingDebug, attachStylingDebugObject} from '@angular/core/src/render3/styling/styling_debug';
|
||||
import {allocTStylingContext} from '@angular/core/src/render3/styling/util';
|
||||
|
||||
describe('styling debugging tools', () => {
|
||||
describe('NodeStylingDebug', () => {
|
||||
|
|
Loading…
Reference in New Issue