@dangl/web-components-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 CHANGED
@@ -160,7 +160,10 @@ export interface IConfigurationInvoice {
160
160
  pdfViewEnabled?: boolean;
161
161
 
162
162
  //** If specified, the invoice viewer will use the given language for the text in the UI. */
163
- language?: "en" | "de";
163
+ language?: LanguageType; // type LanguageType = 'en' | 'de';
164
+
165
+ //** This controls how many digits are displayed for quantities. It defaults to '1.3-3', meaning it will always show three decimal palces. */
166
+ quantityDecimalPlaces?: string;
164
167
  }
165
168
  ```
166
169