Compare commits

...

6 Commits

Author SHA1 Message Date
861b7875d3 1.0.94 2023-10-25 19:11:34 +02:00
610b2ba0d1 fix(core): update 2023-10-25 19:11:34 +02:00
fac20675e6 1.0.93 2023-10-25 18:37:57 +02:00
e5249b7ed0 fix(core): update 2023-10-25 18:37:57 +02:00
2855e1ec2b 1.0.92 2023-10-17 12:00:37 +02:00
942173e905 fix(core): update 2023-10-17 12:00:36 +02:00
6 changed files with 78 additions and 6 deletions

View File

@ -1,6 +1,6 @@
// dees tools // dees tools
import * as deesWccTools from '@design.estate/dees-wcctools'; import * as deesWccTools from '@designestate/dees-wcctools';
import * as deesDomTools from '@design.estate/dees-domtools'; import * as deesDomTools from '@designestate/dees-domtools';
// elements and pages // elements and pages
import * as elements from '../ts_web/elements/index.js'; import * as elements from '../ts_web/elements/index.js';

View File

@ -1,6 +1,6 @@
{ {
"name": "@design.estate/dees-document", "name": "@design.estate/dees-document",
"version": "1.0.91", "version": "1.0.94",
"private": false, "private": false,
"description": "a catalog for creating documents like invoices", "description": "a catalog for creating documents like invoices",
"main": "dist_ts_web/index.js", "main": "dist_ts_web/index.js",
@ -12,7 +12,8 @@
"scripts": { "scripts": {
"test": "npm run build && tstest test/", "test": "npm run build && tstest test/",
"build": "tsbuild --allowimplicitany && tsbuild element --allowimplicitany && tsbundle element --production", "build": "tsbuild --allowimplicitany && tsbuild element --allowimplicitany && tsbundle element --production",
"watch": "tswatch element" "watch": "tswatch element",
"buildDocs": "tsdoc"
}, },
"author": "Lossless GmbH", "author": "Lossless GmbH",
"license": "MIT", "license": "MIT",

View File

@ -131,6 +131,75 @@ tap.test('should create an invoice', async () => {
vatPercentage: 19, vatPercentage: 19,
currency: 'EUR', currency: 'EUR',
}, },
{
name: 'Overnight Shipping',
unitQuantity: 1,
unitNetPrice: 1200,
unitType: 'item',
vatPercentage: 24,
currency: 'EUR',
},{
name: 'Website Creation',
unitQuantity: 1,
unitNetPrice: 1200,
unitType: 'item',
vatPercentage: 0,
currency: 'EUR',
},
{
name: 'Hosting',
unitQuantity: 1,
unitNetPrice: 1200,
unitType: 'item',
vatPercentage: 19,
currency: 'EUR',
},
{
name: 'Overnight Shipping',
unitQuantity: 1,
unitNetPrice: 1200,
unitType: 'item',
vatPercentage: 24,
currency: 'EUR',
},{
name: 'Website Creation',
unitQuantity: 1,
unitNetPrice: 1200,
unitType: 'item',
vatPercentage: 0,
currency: 'EUR',
},
{
name: 'Hosting',
unitQuantity: 1,
unitNetPrice: 1200,
unitType: 'item',
vatPercentage: 19,
currency: 'EUR',
},
{
name: 'Overnight Shipping',
unitQuantity: 1,
unitNetPrice: 1200,
unitType: 'item',
vatPercentage: 24,
currency: 'EUR',
},{
name: 'Website Creation',
unitQuantity: 1,
unitNetPrice: 1200,
unitType: 'item',
vatPercentage: 0,
currency: 'EUR',
},
{
name: 'Hosting',
unitQuantity: 1,
unitNetPrice: 1200,
unitType: 'item',
vatPercentage: 19,
currency: 'EUR',
},
{ {
name: 'Overnight Shipping', name: 'Overnight Shipping',
unitQuantity: 1, unitQuantity: 1,

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-document', name: '@design.estate/dees-document',
version: '1.0.91', version: '1.0.94',
description: 'a catalog for creating documents like invoices' description: 'a catalog for creating documents like invoices'
} }

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-document', name: '@design.estate/dees-document',
version: '1.0.91', version: '1.0.94',
description: 'a catalog for creating documents like invoices' description: 'a catalog for creating documents like invoices'
} }

View File

@ -6,3 +6,5 @@ export * from './pagecontainer.js';
export * from './pagecontent.js'; export * from './pagecontent.js';
export * from './pagefooter.js'; export * from './pagefooter.js';
export * from './pageheader.js'; export * from './pageheader.js';
export * from './shared/index.js';