@dangl/angular-ava 1.2.3-beta0010 → 1.2.3-beta0019
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/fesm2022/dangl-angular-ava.mjs +269 -154
- package/fesm2022/dangl-angular-ava.mjs.map +1 -1
- package/lib/ava-tree/components/table-structure/table-structure.component.d.ts +1 -1
- package/lib/ava-tree/constants/defaultTextWords.d.ts +2 -0
- package/lib/ava-tree/model/config-tree.model.d.ts +2 -1
- package/lib/ava-tree/services/configuration-tree.service.d.ts +3 -0
- package/lib/invoice/components/invoice-display/invoice-display.component.d.ts +3 -0
- package/lib/invoice/constants/index.d.ts +2 -1
- package/lib/invoice/constants/language.d.ts +8 -0
- package/lib/invoice/model/configInvoice.model.d.ts +3 -1
- package/lib/invoice/model/index.d.ts +2 -2
- package/lib/invoice/pipes/currency-plus.pipe.d.ts +11 -0
- package/lib/invoice/pipes/number-plus.pipe.d.ts +11 -0
- package/lib/invoice/pipes/percent-plus.pipe.d.ts +11 -0
- package/lib/invoice/services/configuration-invoice.service.d.ts +10 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -190,6 +190,9 @@ export interface IConfigurationInvoice {
|
|
|
190
190
|
pdfViewEnabled?: boolean;
|
|
191
191
|
|
|
192
192
|
//** If specified, the invoice viewer will use the given language for the text in the UI. */
|
|
193
|
-
language?:
|
|
193
|
+
language?: LanguageType; // type LanguageType = 'en' | 'de';
|
|
194
|
+
|
|
195
|
+
//** This controls how many digits are displayed for quantities. It defaults to '1.3-3', meaning it will always show three decimal palces. */
|
|
196
|
+
quantityDecimalPlaces?: string;
|
|
194
197
|
}
|
|
195
198
|
```
|