@htmlbricks/hb-page-invoice 0.8.39 → 0.8.45

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/release/docs.mjs DELETED
@@ -1,33 +0,0 @@
1
- export var storybookArgs = {
2
- printer: { control: { type: "text" } },
3
- headers: { control: { type: "object" } },
4
- items: { control: { type: "array" } }
5
- };
6
- var cssVars = [
7
- { name: "--bs-primary", valueType: "color", theme: "bootstrap", defaultValue: "#07689f" },
8
- { name: "--bs-secondary", valueType: "color", theme: "bootstrap", defaultValue: "#c9d6df" },
9
- { name: "--bs-success", valueType: "color", theme: "bootstrap", defaultValue: "#11d3bc" },
10
- { name: "--bs-info", valueType: "color", theme: "bootstrap", defaultValue: "#a2d5f2" },
11
- { name: "--bs-warning", valueType: "color", theme: "bootstrap", defaultValue: "#ffc107" },
12
- { name: "--bs-danger", valueType: "color", theme: "bootstrap", defaultValue: "#f67280" },
13
- ];
14
- export var cssParts = [];
15
- export var htmlSlots = [];
16
- export var i18nLanguages = [];
17
- export var styleSetup = {
18
- vars: cssVars,
19
- parts: cssParts
20
- };
21
- export var componentSetup = {
22
- definitions: null,
23
- storybookArgs: storybookArgs,
24
- styleSetup: styleSetup,
25
- htmlSlots: htmlSlots,
26
- i18n: i18nLanguages,
27
- examples: [],
28
- name: "",
29
- category: "",
30
- tags: [],
31
- size: {}
32
- };
33
- //# sourceMappingURL=docs.js.map
@@ -1,193 +0,0 @@
1
- {
2
- "$ref": "#/definitions/Component",
3
- "$schema": "http://json-schema.org/draft-07/schema#",
4
- "definitions": {
5
- "Component": {
6
- "additionalProperties": false,
7
- "properties": {
8
- "headers": {
9
- "$ref": "#/definitions/IHeaders"
10
- },
11
- "id": {
12
- "type": "string"
13
- },
14
- "items": {
15
- "items": {
16
- "$ref": "#/definitions/IItem"
17
- },
18
- "type": "array"
19
- },
20
- "printer": {
21
- "enum": [
22
- "yes",
23
- "no"
24
- ],
25
- "type": "string"
26
- },
27
- "style": {
28
- "type": "string"
29
- }
30
- },
31
- "required": [
32
- "items",
33
- "headers"
34
- ],
35
- "type": "object"
36
- },
37
- "ICompany": {
38
- "additionalProperties": false,
39
- "properties": {
40
- "address": {
41
- "type": "string"
42
- },
43
- "email": {
44
- "type": "string"
45
- },
46
- "iban": {
47
- "type": "string"
48
- },
49
- "name": {
50
- "type": "string"
51
- },
52
- "phone": {
53
- "type": "string"
54
- },
55
- "piva": {
56
- "type": "string"
57
- }
58
- },
59
- "required": [
60
- "piva",
61
- "name",
62
- "address",
63
- "email",
64
- "phone"
65
- ],
66
- "type": "object"
67
- },
68
- "IHeaders": {
69
- "additionalProperties": false,
70
- "properties": {
71
- "category": {
72
- "enum": [
73
- "items",
74
- "services"
75
- ],
76
- "type": "string"
77
- },
78
- "country": {
79
- "enum": [
80
- "it",
81
- "eu",
82
- "us"
83
- ],
84
- "type": "string"
85
- },
86
- "date": {
87
- "format": "date-time",
88
- "type": "string"
89
- },
90
- "expirationDate": {
91
- "format": "date-time",
92
- "type": "string"
93
- },
94
- "from": {
95
- "additionalProperties": false,
96
- "properties": {
97
- "address": {
98
- "type": "string"
99
- },
100
- "email": {
101
- "type": "string"
102
- },
103
- "iban": {
104
- "type": "string"
105
- },
106
- "logo": {
107
- "type": "string"
108
- },
109
- "name": {
110
- "type": "string"
111
- },
112
- "phone": {
113
- "type": "string"
114
- },
115
- "piva": {
116
- "type": "string"
117
- },
118
- "shortName": {
119
- "type": "string"
120
- }
121
- },
122
- "required": [
123
- "address",
124
- "email",
125
- "logo",
126
- "name",
127
- "phone",
128
- "piva",
129
- "shortName"
130
- ],
131
- "type": "object"
132
- },
133
- "serial": {
134
- "type": "string"
135
- },
136
- "to": {
137
- "$ref": "#/definitions/ICompany"
138
- }
139
- },
140
- "required": [
141
- "serial",
142
- "from",
143
- "to"
144
- ],
145
- "type": "object"
146
- },
147
- "IItem": {
148
- "additionalProperties": false,
149
- "properties": {
150
- "desc": {
151
- "type": "string"
152
- },
153
- "discount": {
154
- "additionalProperties": false,
155
- "properties": {
156
- "includeVat": {
157
- "type": "boolean"
158
- },
159
- "type": {
160
- "enum": [
161
- "gross",
162
- "item"
163
- ],
164
- "type": "string"
165
- }
166
- },
167
- "required": [
168
- "type"
169
- ],
170
- "type": "object"
171
- },
172
- "quantity": {
173
- "type": "number"
174
- },
175
- "taxPercentage": {
176
- "type": "number"
177
- },
178
- "unit": {
179
- "type": "string"
180
- },
181
- "unitaryPrice": {
182
- "type": "number"
183
- }
184
- },
185
- "required": [
186
- "desc",
187
- "unitaryPrice",
188
- "taxPercentage"
189
- ],
190
- "type": "object"
191
- }
192
- }
193
- }
@@ -1,10 +0,0 @@
1
- {
2
- "$ref": "#/definitions/Events",
3
- "$schema": "http://json-schema.org/draft-07/schema#",
4
- "definitions": {
5
- "Events": {
6
- "additionalProperties": false,
7
- "type": "object"
8
- }
9
- }
10
- }