@@ -26,17 +26,6 @@ The following options and their values are REQUIRED to be available on the funct
26
26
- ` plural ` (default)
27
27
- ` ordinal `
28
28
- ` exact `
29
- - ` compactDisplay ` (this option only has meaning when combined with the option ` notation=compact ` )
30
- - ` short ` (default)
31
- - ` long `
32
- - ` notation `
33
- - ` standard ` (default)
34
- - ` scientific `
35
- - ` engineering `
36
- - ` compact `
37
- - ` numberingSystem `
38
- - valid [ Unicode Number System Identifier] ( https://unicode.org/reports/tr35/tr35.html#UnicodeNumberSystemIdentifier )
39
- (default is locale-specific)
40
29
- ` signDisplay `
41
30
- ` auto ` (default)
42
31
- ` always `
@@ -87,12 +76,12 @@ with _options_ on the _expression_ taking priority over any option values of the
87
76
> For example, the _ placeholder_ in this _ message_ :
88
77
>
89
78
> ```
90
- > .input {$n :number notation=scientific minimumFractionDigits=2}
79
+ > .input {$n :number minimumFractionDigits=2 signDisplay=always }
91
80
> {{{$n :number minimumFractionDigits=1}}}
92
81
> ```
93
82
>
94
83
> would be formatted with the resolved options
95
- > `{ notation : 'scientific ', minimumFractionDigits : '1 ' }`.
84
+ > `{ minimumFractionDigits : '1 ', signDisplay : 'always ' }`.
96
85
97
86
#### Resolved Value
98
87
@@ -132,9 +121,6 @@ The following options and their values are REQUIRED to be available on the funct
132
121
- `plural` (default)
133
122
- `ordinal`
134
123
- `exact`
135
- - `numberingSystem`
136
- - valid [Unicode Number System Identifier](https://unicode.org/reports/tr35/tr35.html#UnicodeNumberSystemIdentifier)
137
- (default is locale-specific)
138
124
- `signDisplay`
139
125
- `auto` (default)
140
126
- `always`
@@ -158,8 +144,6 @@ In general, these are included in the resolved option values of the _expression_
158
144
with _options_ on the _expression_ taking priority over any option values of the _operand_.
159
145
Option values with the following names are however discarded if included in the _operand_:
160
146
161
- - `compactDisplay`
162
- - `notation`
163
147
- `minimumFractionDigits`
164
148
- `maximumFractionDigits`
165
149
- `minimumSignificantDigits`
@@ -355,15 +339,6 @@ The following options and their values are REQUIRED to be available on the funct
355
339
- `currency`
356
340
- well-formed [Unicode Currency Identifier](https://unicode.org/reports/tr35/tr35.html#UnicodeCurrencyIdentifier)
357
341
(no default)
358
- - `compactDisplay` (this option only has meaning when combined with the option `notation=compact`)
359
- - `short` (default)
360
- - `long`
361
- - `notation`
362
- - `standard` (default)
363
- - `compact`
364
- - `numberingSystem`
365
- - valid [Unicode Number System Identifier](https://unicode.org/reports/tr35/tr35.html#UnicodeNumberSystemIdentifier)
366
- (default is locale-specific)
367
342
- `currencySign`
368
343
- `accounting`
369
344
- `standard` (default)
@@ -492,15 +467,6 @@ unless otherwise indicated:
492
467
- `short` (default)
493
468
- `narrow`
494
469
- `long`
495
- - `compactDisplay` (this option only has meaning when combined with the option `notation=compact`)
496
- - `short` (default)
497
- - `long`
498
- - `notation`
499
- - `standard` (default)
500
- - `compact`
501
- - `numberingSystem`
502
- - valid [Unicode Number System Identifier](https://unicode.org/reports/tr35/tr35.html#UnicodeNumberSystemIdentifier)
503
- (default is locale-specific)
504
470
- `signDisplay`
505
471
- `auto` (default)
506
472
- `always`
@@ -791,7 +757,6 @@ representing its decimal value:
791
757
- `minimumIntegerDigits`
792
758
- `minimumSignificantDigits`
793
759
- `maximumSignificantDigits`
794
- - `notation`
795
760
796
761
```abnf
797
762
integer = "0" / ["-"] ("1"-"9") *DIGIT
0 commit comments