@@ -347,7 +347,7 @@ const parentIndexStack: number[] = [];
347
347
* @param message The translation message.
348
348
* @param subTemplateIndex Optional sub-template index in the `message`.
349
349
*
350
- * @publicApi
350
+ * @codeGenApi
351
351
*/
352
352
export function Δi18nStart ( index : number , message : string , subTemplateIndex ?: number ) : void {
353
353
const tView = getLView ( ) [ TVIEW ] ;
@@ -534,7 +534,7 @@ function appendI18nNode(tNode: TNode, parentTNode: TNode, previousTNode: TNode |
534
534
*
535
535
* @returns Transformed string that can be consumed by i18nStart instruction
536
536
*
537
- * @publicApi
537
+ * @codeGenApi
538
538
*/
539
539
export function Δi18nPostprocess (
540
540
message : string , replacements : { [ key : string ] : ( string | string [ ] ) } = { } ) : string {
@@ -630,7 +630,7 @@ export function Δi18nPostprocess(
630
630
* Translates a translation block marked by `i18nStart` and `i18nEnd`. It inserts the text/ICU nodes
631
631
* into the render tree, moves the placeholder nodes and removes the deleted nodes.
632
632
*
633
- * @publicApi
633
+ * @codeGenApi
634
634
*/
635
635
export function Δi18nEnd ( ) : void {
636
636
const tView = getLView ( ) [ TVIEW ] ;
@@ -919,7 +919,7 @@ function removeNode(index: number, viewData: LView) {
919
919
* @param message The translation message.
920
920
* @param subTemplateIndex Optional sub-template index in the `message`.
921
921
*
922
- * @publicApi
922
+ * @codeGenApi
923
923
*/
924
924
export function Δi18n ( index : number , message : string , subTemplateIndex ?: number ) : void {
925
925
Δi18nStart ( index , message , subTemplateIndex ) ;
@@ -932,7 +932,7 @@ export function Δi18n(index: number, message: string, subTemplateIndex?: number
932
932
* @param index A unique index in the static block
933
933
* @param values
934
934
*
935
- * @publicApi
935
+ * @codeGenApi
936
936
*/
937
937
export function Δi18nAttributes ( index : number , values : string [ ] ) : void {
938
938
const tView = getLView ( ) [ TVIEW ] ;
@@ -984,7 +984,7 @@ let shiftsCounter = 0;
984
984
*
985
985
* @param expression The binding's new value or NO_CHANGE
986
986
*
987
- * @publicApi
987
+ * @codeGenApi
988
988
*/
989
989
export function Δi18nExp < T > ( expression : T | NO_CHANGE ) : void {
990
990
if ( expression !== NO_CHANGE ) {
@@ -999,7 +999,7 @@ export function Δi18nExp<T>(expression: T | NO_CHANGE): void {
999
999
* @param index Index of either {@link i18nStart} (translation block) or {@link i18nAttributes}
1000
1000
* (i18n attribute) on which it should update the content.
1001
1001
*
1002
- * @publicApi
1002
+ * @codeGenApi
1003
1003
*/
1004
1004
export function Δi18nApply ( index : number ) {
1005
1005
if ( shiftsCounter ) {
0 commit comments