marketplacepos 2.5.1 → 2.5.2
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/Marketplace/397.9488b7c2d948b1be.js +1 -0
- package/Marketplace/assets/bootstrap_light.scss +1142 -1142
- package/Marketplace/assets/floatingLabel.scss +187 -187
- package/Marketplace/assets/lbd/_alerts.scss +90 -90
- package/Marketplace/assets/lbd/_bootstrap-switch.scss +128 -128
- package/Marketplace/assets/lbd/_buttons.scss +132 -132
- package/Marketplace/assets/lbd/_cards.scss +256 -256
- package/Marketplace/assets/lbd/_chartist.scss +229 -229
- package/Marketplace/assets/lbd/_checkbox-radio-switch.scss +140 -140
- package/Marketplace/assets/lbd/_dropdown.scss +137 -137
- package/Marketplace/assets/lbd/_footers.scss +75 -75
- package/Marketplace/assets/lbd/_inputs.scss +141 -141
- package/Marketplace/assets/lbd/_misc.scss +120 -120
- package/Marketplace/assets/lbd/_mixins.scss +8 -8
- package/Marketplace/assets/lbd/_navbars.scss +235 -235
- package/Marketplace/assets/lbd/_partial-nucleo-icons.scss +574 -574
- package/Marketplace/assets/lbd/_responsive.scss +482 -482
- package/Marketplace/assets/lbd/_sidebar-and-main-panel.scss +333 -333
- package/Marketplace/assets/lbd/_tables.scss +88 -88
- package/Marketplace/assets/lbd/_typography.scss +91 -91
- package/Marketplace/assets/lbd/_variables.scss +272 -272
- package/Marketplace/assets/lbd/mixins/_buttons.scss +69 -69
- package/Marketplace/assets/lbd/mixins/_cards.scss +8 -8
- package/Marketplace/assets/lbd/mixins/_chartist.scss +87 -87
- package/Marketplace/assets/lbd/mixins/_icons.scss +12 -12
- package/Marketplace/assets/lbd/mixins/_inputs.scss +1 -1
- package/Marketplace/assets/lbd/mixins/_labels.scss +20 -20
- package/Marketplace/assets/lbd/mixins/_morphing-buttons.scss +33 -33
- package/Marketplace/assets/lbd/mixins/_navbars.scss +11 -11
- package/Marketplace/assets/lbd/mixins/_social-buttons.scss +42 -42
- package/Marketplace/assets/lbd/mixins/_tabs.scss +3 -3
- package/Marketplace/assets/lbd/mixins/_transparency.scss +19 -19
- package/Marketplace/assets/lbd/mixins/_vendor-prefixes.scss +211 -211
- package/Marketplace/assets/lbd/plugins/_animate.scss +227 -227
- package/Marketplace/assets/lbd/plugins/_datetime-picker.scss +463 -463
- package/Marketplace/assets/light-bootstrap-dashboard.scss +32 -32
- package/Marketplace/assets/pos_variable.scss +83 -83
- package/Marketplace/assets/sitemap.json +39 -39
- package/Marketplace/assets/stepper-custom.scss +32 -32
- package/Marketplace/assets/variables-custom.scss +190 -190
- package/Marketplace/assets/version-adjustment-v5.scss +286 -286
- package/Marketplace/index.html +2 -2
- package/Marketplace/{runtime.de37a7d67f4eed9c.js → runtime.6d4d6c7e2c139e6c.js} +1 -1
- package/package.json +1 -1
- package/Marketplace/397.5ae6b1775c69cdc2.js +0 -1
|
@@ -1,287 +1,287 @@
|
|
|
1
|
-
/* Toaster adjustment */
|
|
2
|
-
// Position
|
|
3
|
-
.toast-center-center {
|
|
4
|
-
top: 50%;
|
|
5
|
-
left: 50%;
|
|
6
|
-
transform: translate(-50%, -50%);
|
|
7
|
-
}
|
|
8
|
-
.toast-top-center {
|
|
9
|
-
top: 0;
|
|
10
|
-
right: 0;
|
|
11
|
-
width: 100%;
|
|
12
|
-
}
|
|
13
|
-
.toast-bottom-center {
|
|
14
|
-
bottom: 0;
|
|
15
|
-
right: 0;
|
|
16
|
-
width: 100%;
|
|
17
|
-
}
|
|
18
|
-
.toast-top-full-width {
|
|
19
|
-
top: 0;
|
|
20
|
-
right: 0;
|
|
21
|
-
width: 100%;
|
|
22
|
-
}
|
|
23
|
-
.toast-bottom-full-width {
|
|
24
|
-
bottom: 0;
|
|
25
|
-
right: 0;
|
|
26
|
-
width: 100%;
|
|
27
|
-
}
|
|
28
|
-
.toast-top-left {
|
|
29
|
-
top: 12px;
|
|
30
|
-
left: 12px;
|
|
31
|
-
}
|
|
32
|
-
.toast-top-right {
|
|
33
|
-
top: 12px;
|
|
34
|
-
right: 12px;
|
|
35
|
-
}
|
|
36
|
-
.toast-bottom-right {
|
|
37
|
-
right: 12px;
|
|
38
|
-
bottom: 12px;
|
|
39
|
-
}
|
|
40
|
-
.toast-bottom-left {
|
|
41
|
-
bottom: 12px;
|
|
42
|
-
left: 12px;
|
|
43
|
-
}
|
|
44
|
-
.toast-container.toast-top-center .ngx-toastr,
|
|
45
|
-
.toast-container.toast-bottom-center .ngx-toastr {
|
|
46
|
-
width: 300px;
|
|
47
|
-
margin-left: auto;
|
|
48
|
-
margin-right: auto;
|
|
49
|
-
}
|
|
50
|
-
.toast-container.toast-top-full-width .ngx-toastr,
|
|
51
|
-
.toast-container.toast-bottom-full-width .ngx-toastr {
|
|
52
|
-
width: 96%;
|
|
53
|
-
margin-left: auto;
|
|
54
|
-
margin-right: auto;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
// Toast
|
|
58
|
-
.toast-container {
|
|
59
|
-
pointer-events: none;
|
|
60
|
-
position: fixed;
|
|
61
|
-
z-index: 999999;
|
|
62
|
-
|
|
63
|
-
.ngx-toastr {
|
|
64
|
-
// @include border-radius($alert-border-radius);
|
|
65
|
-
position: relative;
|
|
66
|
-
overflow: hidden;
|
|
67
|
-
margin: 6px 0 6px;
|
|
68
|
-
padding: 0.2rem 1.25rem 0.75rem 50px;
|
|
69
|
-
width: 300px;
|
|
70
|
-
background-position: 15px center;
|
|
71
|
-
background-repeat: no-repeat;
|
|
72
|
-
background-size: 24px;
|
|
73
|
-
box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
|
|
74
|
-
pointer-events: auto;
|
|
75
|
-
|
|
76
|
-
.toast-title {
|
|
77
|
-
font-weight: bold;
|
|
78
|
-
}
|
|
79
|
-
.toast-message {
|
|
80
|
-
word-wrap: break-word;
|
|
81
|
-
}
|
|
82
|
-
.toast-message a:hover {
|
|
83
|
-
text-decoration: underline;
|
|
84
|
-
}
|
|
85
|
-
.toast-close-button {
|
|
86
|
-
position: relative;
|
|
87
|
-
right: -1.3em;
|
|
88
|
-
top: -0.3em;
|
|
89
|
-
float: right;
|
|
90
|
-
font-size: 20px;
|
|
91
|
-
font-weight: bold;
|
|
92
|
-
color: inherit;
|
|
93
|
-
text-shadow: 0 1px 0 #fff;
|
|
94
|
-
opacity: 0.5;
|
|
95
|
-
background: transparent;
|
|
96
|
-
border: 0;
|
|
97
|
-
padding: 0;
|
|
98
|
-
}
|
|
99
|
-
.toast-progress {
|
|
100
|
-
position: absolute;
|
|
101
|
-
left: 0;
|
|
102
|
-
bottom: 0;
|
|
103
|
-
height: 4px;
|
|
104
|
-
background-color: #000000;
|
|
105
|
-
opacity: 0.3;
|
|
106
|
-
}
|
|
107
|
-
.toast-close-button:hover,
|
|
108
|
-
.toast-close-button:focus {
|
|
109
|
-
color: #000000;
|
|
110
|
-
text-decoration: none;
|
|
111
|
-
cursor: pointer;
|
|
112
|
-
opacity: 0.75;
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
.ngx-toastr:hover {
|
|
116
|
-
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
|
117
|
-
opacity: 1;
|
|
118
|
-
cursor: pointer;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
@function str-split($string, $separator) {
|
|
123
|
-
$split-arr: ();
|
|
124
|
-
// first index of separator in string
|
|
125
|
-
$index: str-index($string, $separator);
|
|
126
|
-
// loop through string
|
|
127
|
-
@while $index != null {
|
|
128
|
-
// get the substring from the first character to the separator
|
|
129
|
-
$item: str-slice($string, 1, $index - 1);
|
|
130
|
-
// push item to array
|
|
131
|
-
$split-arr: append($split-arr, $item);
|
|
132
|
-
// remove item and separator from string
|
|
133
|
-
$string: str-slice($string, $index + 1);
|
|
134
|
-
// find new index of separator
|
|
135
|
-
$index: str-index($string, $separator);
|
|
136
|
-
}
|
|
137
|
-
// add the remaining string to list (the last item)
|
|
138
|
-
$split-arr: append($split-arr, $string);
|
|
139
|
-
|
|
140
|
-
@return $split-arr;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
@function svg-factory($fill-color, $viewbox, $path) {
|
|
144
|
-
$split: str-split($viewbox, " ");
|
|
145
|
-
$width: nth($split, 3);
|
|
146
|
-
$height: nth($split, 4);
|
|
147
|
-
|
|
148
|
-
// opacity is 0.9999 otherwise it uses a hex equivelent
|
|
149
|
-
// firefox requires fill rgb
|
|
150
|
-
@return "%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='" + $viewbox +
|
|
151
|
-
"' width='" + $width + "' height='" + $height + "'%3E%3Cpath fill='" +
|
|
152
|
-
rgba($fill-color, 0.999999) + "' d='" + $path + "'/%3E%3C/svg%3E";
|
|
153
|
-
}
|
|
154
|
-
@function svg-encode($svg) {
|
|
155
|
-
@return "data:image/svg+xml;charset=utf8," + $svg;
|
|
156
|
-
}
|
|
157
|
-
.toast-success {
|
|
158
|
-
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/solid/check.svg */
|
|
159
|
-
background-image: url(svg-encode(
|
|
160
|
-
svg-factory(
|
|
161
|
-
$success,
|
|
162
|
-
"0 0 512 512",
|
|
163
|
-
"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"
|
|
164
|
-
)
|
|
165
|
-
));
|
|
166
|
-
color: $success;
|
|
167
|
-
background-color: $success;
|
|
168
|
-
border: 1px solid $success;
|
|
169
|
-
}
|
|
170
|
-
.toast-waiting {
|
|
171
|
-
background-image: url(svg-encode(
|
|
172
|
-
svg-factory(
|
|
173
|
-
$warning,
|
|
174
|
-
"0 0 576 512",
|
|
175
|
-
"M0 24C0 10.75 10.75 0 24 0H360C373.3 0 384 10.75 384 24C384 37.25 373.3 48 360 48H352V66.98C352 107.3 335.1 145.1 307.5 174.5L225.9 256L307.5 337.5C335.1 366 352 404.7 352 445V464H360C373.3 464 384 474.7 384 488C384 501.3 373.3 512 360 512H24C10.75 512 0 501.3 0 488C0 474.7 10.75 464 24 464H32V445C32 404.7 48.01 366 76.52 337.5L158.1 256L76.52 174.5C48.01 145.1 32 107.3 32 66.98V48H24C10.75 48 0 37.25 0 24V24zM99.78 384H284.2C281 379.6 277.4 375.4 273.5 371.5L192 289.9L110.5 371.5C106.6 375.4 102.1 379.6 99.78 384H99.78zM284.2 128C296.1 110.4 304 89.03 304 66.98V48H80V66.98C80 89.03 87 110.4 99.78 128H284.2z"
|
|
176
|
-
)
|
|
177
|
-
)) !important;
|
|
178
|
-
}
|
|
179
|
-
.toast-error {
|
|
180
|
-
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/solid/times-circle.svg */
|
|
181
|
-
background-image: url(svg-encode(
|
|
182
|
-
svg-factory(
|
|
183
|
-
$danger,
|
|
184
|
-
"0 0 512 512",
|
|
185
|
-
"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"
|
|
186
|
-
)
|
|
187
|
-
));
|
|
188
|
-
color: $danger;
|
|
189
|
-
background-color: $danger;
|
|
190
|
-
border: 1px solid $danger;
|
|
191
|
-
}
|
|
192
|
-
.toast-info {
|
|
193
|
-
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/solid/info-circle.svg */
|
|
194
|
-
background-image: url(svg-encode(
|
|
195
|
-
svg-factory(
|
|
196
|
-
$info,
|
|
197
|
-
"0 0 512 512",
|
|
198
|
-
"M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"
|
|
199
|
-
)
|
|
200
|
-
));
|
|
201
|
-
color: $info;
|
|
202
|
-
background-color: $info;
|
|
203
|
-
border: 1px solid $info;
|
|
204
|
-
}
|
|
205
|
-
.toast-warning {
|
|
206
|
-
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/solid/exclamation-triangle.svg */
|
|
207
|
-
background-image: url(svg-encode(
|
|
208
|
-
svg-factory(
|
|
209
|
-
$warning,
|
|
210
|
-
"0 0 576 512",
|
|
211
|
-
"M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"
|
|
212
|
-
)
|
|
213
|
-
));
|
|
214
|
-
color: $warning;
|
|
215
|
-
background-color: $warning;
|
|
216
|
-
border: 1px solid $warning;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
// Responsive Design
|
|
220
|
-
@media all and (max-width: 240px) {
|
|
221
|
-
.toast-container .ngx-toastr.div {
|
|
222
|
-
padding: 8px 8px 8px 50px;
|
|
223
|
-
width: 11em;
|
|
224
|
-
}
|
|
225
|
-
.toast-container .toast-close-button {
|
|
226
|
-
right: -0.2em;
|
|
227
|
-
top: -0.2em;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
@media all and (min-width: 241px) and (max-width: 480px) {
|
|
231
|
-
.toast-container .ngx-toastr.div {
|
|
232
|
-
padding: 8px 8px 8px 50px;
|
|
233
|
-
width: 18em;
|
|
234
|
-
}
|
|
235
|
-
.toast-container .toast-close-button {
|
|
236
|
-
right: -0.2em;
|
|
237
|
-
top: -0.2em;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
@media all and (min-width: 481px) and (max-width: 768px) {
|
|
241
|
-
.toast-container .ngx-toastr.div {
|
|
242
|
-
padding: 15px 15px 15px 50px;
|
|
243
|
-
width: 25em;
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.btn-outline-info:not(:disabled):not(.disabled):active,
|
|
248
|
-
.btn-outline-info:not(:disabled):not(.disabled).active,
|
|
249
|
-
.show > .btn-outline-info.dropdown-toggle {
|
|
250
|
-
color: #ffffff !important;
|
|
251
|
-
background-color: #17a2b8;
|
|
252
|
-
border-color: #17a2b8;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
.btn-outline-info {
|
|
256
|
-
color: #17a2b8 !important;
|
|
257
|
-
border-color: #17a2b8 !important;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
.g-0 {
|
|
261
|
-
--bs-gutter-x: 0;
|
|
262
|
-
--bs-gutter-y: 0;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.card-body {
|
|
266
|
-
padding: 0.9375rem;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.alert {
|
|
270
|
-
padding: 0.75rem 1.25rem;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
.table-light,
|
|
274
|
-
.table-light > th,
|
|
275
|
-
.table-light > td {
|
|
276
|
-
--bs-table-bg: whitesmoke;
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
.table > :not(:first-child) {
|
|
282
|
-
border-top: none !important;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
.table-sm th, .table-sm td {
|
|
286
|
-
padding: 0.3rem !important;
|
|
1
|
+
/* Toaster adjustment */
|
|
2
|
+
// Position
|
|
3
|
+
.toast-center-center {
|
|
4
|
+
top: 50%;
|
|
5
|
+
left: 50%;
|
|
6
|
+
transform: translate(-50%, -50%);
|
|
7
|
+
}
|
|
8
|
+
.toast-top-center {
|
|
9
|
+
top: 0;
|
|
10
|
+
right: 0;
|
|
11
|
+
width: 100%;
|
|
12
|
+
}
|
|
13
|
+
.toast-bottom-center {
|
|
14
|
+
bottom: 0;
|
|
15
|
+
right: 0;
|
|
16
|
+
width: 100%;
|
|
17
|
+
}
|
|
18
|
+
.toast-top-full-width {
|
|
19
|
+
top: 0;
|
|
20
|
+
right: 0;
|
|
21
|
+
width: 100%;
|
|
22
|
+
}
|
|
23
|
+
.toast-bottom-full-width {
|
|
24
|
+
bottom: 0;
|
|
25
|
+
right: 0;
|
|
26
|
+
width: 100%;
|
|
27
|
+
}
|
|
28
|
+
.toast-top-left {
|
|
29
|
+
top: 12px;
|
|
30
|
+
left: 12px;
|
|
31
|
+
}
|
|
32
|
+
.toast-top-right {
|
|
33
|
+
top: 12px;
|
|
34
|
+
right: 12px;
|
|
35
|
+
}
|
|
36
|
+
.toast-bottom-right {
|
|
37
|
+
right: 12px;
|
|
38
|
+
bottom: 12px;
|
|
39
|
+
}
|
|
40
|
+
.toast-bottom-left {
|
|
41
|
+
bottom: 12px;
|
|
42
|
+
left: 12px;
|
|
43
|
+
}
|
|
44
|
+
.toast-container.toast-top-center .ngx-toastr,
|
|
45
|
+
.toast-container.toast-bottom-center .ngx-toastr {
|
|
46
|
+
width: 300px;
|
|
47
|
+
margin-left: auto;
|
|
48
|
+
margin-right: auto;
|
|
49
|
+
}
|
|
50
|
+
.toast-container.toast-top-full-width .ngx-toastr,
|
|
51
|
+
.toast-container.toast-bottom-full-width .ngx-toastr {
|
|
52
|
+
width: 96%;
|
|
53
|
+
margin-left: auto;
|
|
54
|
+
margin-right: auto;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// Toast
|
|
58
|
+
.toast-container {
|
|
59
|
+
pointer-events: none;
|
|
60
|
+
position: fixed;
|
|
61
|
+
z-index: 999999;
|
|
62
|
+
|
|
63
|
+
.ngx-toastr {
|
|
64
|
+
// @include border-radius($alert-border-radius);
|
|
65
|
+
position: relative;
|
|
66
|
+
overflow: hidden;
|
|
67
|
+
margin: 6px 0 6px;
|
|
68
|
+
padding: 0.2rem 1.25rem 0.75rem 50px;
|
|
69
|
+
width: 300px;
|
|
70
|
+
background-position: 15px center;
|
|
71
|
+
background-repeat: no-repeat;
|
|
72
|
+
background-size: 24px;
|
|
73
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
|
|
74
|
+
pointer-events: auto;
|
|
75
|
+
|
|
76
|
+
.toast-title {
|
|
77
|
+
font-weight: bold;
|
|
78
|
+
}
|
|
79
|
+
.toast-message {
|
|
80
|
+
word-wrap: break-word;
|
|
81
|
+
}
|
|
82
|
+
.toast-message a:hover {
|
|
83
|
+
text-decoration: underline;
|
|
84
|
+
}
|
|
85
|
+
.toast-close-button {
|
|
86
|
+
position: relative;
|
|
87
|
+
right: -1.3em;
|
|
88
|
+
top: -0.3em;
|
|
89
|
+
float: right;
|
|
90
|
+
font-size: 20px;
|
|
91
|
+
font-weight: bold;
|
|
92
|
+
color: inherit;
|
|
93
|
+
text-shadow: 0 1px 0 #fff;
|
|
94
|
+
opacity: 0.5;
|
|
95
|
+
background: transparent;
|
|
96
|
+
border: 0;
|
|
97
|
+
padding: 0;
|
|
98
|
+
}
|
|
99
|
+
.toast-progress {
|
|
100
|
+
position: absolute;
|
|
101
|
+
left: 0;
|
|
102
|
+
bottom: 0;
|
|
103
|
+
height: 4px;
|
|
104
|
+
background-color: #000000;
|
|
105
|
+
opacity: 0.3;
|
|
106
|
+
}
|
|
107
|
+
.toast-close-button:hover,
|
|
108
|
+
.toast-close-button:focus {
|
|
109
|
+
color: #000000;
|
|
110
|
+
text-decoration: none;
|
|
111
|
+
cursor: pointer;
|
|
112
|
+
opacity: 0.75;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
.ngx-toastr:hover {
|
|
116
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
|
117
|
+
opacity: 1;
|
|
118
|
+
cursor: pointer;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
@function str-split($string, $separator) {
|
|
123
|
+
$split-arr: ();
|
|
124
|
+
// first index of separator in string
|
|
125
|
+
$index: str-index($string, $separator);
|
|
126
|
+
// loop through string
|
|
127
|
+
@while $index != null {
|
|
128
|
+
// get the substring from the first character to the separator
|
|
129
|
+
$item: str-slice($string, 1, $index - 1);
|
|
130
|
+
// push item to array
|
|
131
|
+
$split-arr: append($split-arr, $item);
|
|
132
|
+
// remove item and separator from string
|
|
133
|
+
$string: str-slice($string, $index + 1);
|
|
134
|
+
// find new index of separator
|
|
135
|
+
$index: str-index($string, $separator);
|
|
136
|
+
}
|
|
137
|
+
// add the remaining string to list (the last item)
|
|
138
|
+
$split-arr: append($split-arr, $string);
|
|
139
|
+
|
|
140
|
+
@return $split-arr;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
@function svg-factory($fill-color, $viewbox, $path) {
|
|
144
|
+
$split: str-split($viewbox, " ");
|
|
145
|
+
$width: nth($split, 3);
|
|
146
|
+
$height: nth($split, 4);
|
|
147
|
+
|
|
148
|
+
// opacity is 0.9999 otherwise it uses a hex equivelent
|
|
149
|
+
// firefox requires fill rgb
|
|
150
|
+
@return "%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='" + $viewbox +
|
|
151
|
+
"' width='" + $width + "' height='" + $height + "'%3E%3Cpath fill='" +
|
|
152
|
+
rgba($fill-color, 0.999999) + "' d='" + $path + "'/%3E%3C/svg%3E";
|
|
153
|
+
}
|
|
154
|
+
@function svg-encode($svg) {
|
|
155
|
+
@return "data:image/svg+xml;charset=utf8," + $svg;
|
|
156
|
+
}
|
|
157
|
+
.toast-success {
|
|
158
|
+
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/solid/check.svg */
|
|
159
|
+
background-image: url(svg-encode(
|
|
160
|
+
svg-factory(
|
|
161
|
+
$success,
|
|
162
|
+
"0 0 512 512",
|
|
163
|
+
"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"
|
|
164
|
+
)
|
|
165
|
+
));
|
|
166
|
+
color: $success;
|
|
167
|
+
background-color: $success;
|
|
168
|
+
border: 1px solid $success;
|
|
169
|
+
}
|
|
170
|
+
.toast-waiting {
|
|
171
|
+
background-image: url(svg-encode(
|
|
172
|
+
svg-factory(
|
|
173
|
+
$warning,
|
|
174
|
+
"0 0 576 512",
|
|
175
|
+
"M0 24C0 10.75 10.75 0 24 0H360C373.3 0 384 10.75 384 24C384 37.25 373.3 48 360 48H352V66.98C352 107.3 335.1 145.1 307.5 174.5L225.9 256L307.5 337.5C335.1 366 352 404.7 352 445V464H360C373.3 464 384 474.7 384 488C384 501.3 373.3 512 360 512H24C10.75 512 0 501.3 0 488C0 474.7 10.75 464 24 464H32V445C32 404.7 48.01 366 76.52 337.5L158.1 256L76.52 174.5C48.01 145.1 32 107.3 32 66.98V48H24C10.75 48 0 37.25 0 24V24zM99.78 384H284.2C281 379.6 277.4 375.4 273.5 371.5L192 289.9L110.5 371.5C106.6 375.4 102.1 379.6 99.78 384H99.78zM284.2 128C296.1 110.4 304 89.03 304 66.98V48H80V66.98C80 89.03 87 110.4 99.78 128H284.2z"
|
|
176
|
+
)
|
|
177
|
+
)) !important;
|
|
178
|
+
}
|
|
179
|
+
.toast-error {
|
|
180
|
+
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/solid/times-circle.svg */
|
|
181
|
+
background-image: url(svg-encode(
|
|
182
|
+
svg-factory(
|
|
183
|
+
$danger,
|
|
184
|
+
"0 0 512 512",
|
|
185
|
+
"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"
|
|
186
|
+
)
|
|
187
|
+
));
|
|
188
|
+
color: $danger;
|
|
189
|
+
background-color: $danger;
|
|
190
|
+
border: 1px solid $danger;
|
|
191
|
+
}
|
|
192
|
+
.toast-info {
|
|
193
|
+
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/solid/info-circle.svg */
|
|
194
|
+
background-image: url(svg-encode(
|
|
195
|
+
svg-factory(
|
|
196
|
+
$info,
|
|
197
|
+
"0 0 512 512",
|
|
198
|
+
"M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"
|
|
199
|
+
)
|
|
200
|
+
));
|
|
201
|
+
color: $info;
|
|
202
|
+
background-color: $info;
|
|
203
|
+
border: 1px solid $info;
|
|
204
|
+
}
|
|
205
|
+
.toast-warning {
|
|
206
|
+
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/solid/exclamation-triangle.svg */
|
|
207
|
+
background-image: url(svg-encode(
|
|
208
|
+
svg-factory(
|
|
209
|
+
$warning,
|
|
210
|
+
"0 0 576 512",
|
|
211
|
+
"M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"
|
|
212
|
+
)
|
|
213
|
+
));
|
|
214
|
+
color: $warning;
|
|
215
|
+
background-color: $warning;
|
|
216
|
+
border: 1px solid $warning;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
// Responsive Design
|
|
220
|
+
@media all and (max-width: 240px) {
|
|
221
|
+
.toast-container .ngx-toastr.div {
|
|
222
|
+
padding: 8px 8px 8px 50px;
|
|
223
|
+
width: 11em;
|
|
224
|
+
}
|
|
225
|
+
.toast-container .toast-close-button {
|
|
226
|
+
right: -0.2em;
|
|
227
|
+
top: -0.2em;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
@media all and (min-width: 241px) and (max-width: 480px) {
|
|
231
|
+
.toast-container .ngx-toastr.div {
|
|
232
|
+
padding: 8px 8px 8px 50px;
|
|
233
|
+
width: 18em;
|
|
234
|
+
}
|
|
235
|
+
.toast-container .toast-close-button {
|
|
236
|
+
right: -0.2em;
|
|
237
|
+
top: -0.2em;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
@media all and (min-width: 481px) and (max-width: 768px) {
|
|
241
|
+
.toast-container .ngx-toastr.div {
|
|
242
|
+
padding: 15px 15px 15px 50px;
|
|
243
|
+
width: 25em;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.btn-outline-info:not(:disabled):not(.disabled):active,
|
|
248
|
+
.btn-outline-info:not(:disabled):not(.disabled).active,
|
|
249
|
+
.show > .btn-outline-info.dropdown-toggle {
|
|
250
|
+
color: #ffffff !important;
|
|
251
|
+
background-color: #17a2b8;
|
|
252
|
+
border-color: #17a2b8;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.btn-outline-info {
|
|
256
|
+
color: #17a2b8 !important;
|
|
257
|
+
border-color: #17a2b8 !important;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.g-0 {
|
|
261
|
+
--bs-gutter-x: 0;
|
|
262
|
+
--bs-gutter-y: 0;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.card-body {
|
|
266
|
+
padding: 0.9375rem;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.alert {
|
|
270
|
+
padding: 0.75rem 1.25rem;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.table-light,
|
|
274
|
+
.table-light > th,
|
|
275
|
+
.table-light > td {
|
|
276
|
+
--bs-table-bg: whitesmoke;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
.table > :not(:first-child) {
|
|
282
|
+
border-top: none !important;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.table-sm th, .table-sm td {
|
|
286
|
+
padding: 0.3rem !important;
|
|
287
287
|
}
|
package/Marketplace/index.html
CHANGED
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
<script>
|
|
15
15
|
(function () { var w = window; var ic = w.Intercom; if (typeof ic === "function") { ic('reattach_activator'); ic('update', w.intercomSettings); } else { var d = document; var i = function () { i.c(arguments); }; i.q = []; i.c = function (args) { i.q.push(args); }; w.Intercom = i; var l = function () { var s = d.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = 'https://widget.intercom.io/widget/xv1oomgl'; var x = d.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x); }; if (w.attachEvent) { w.attachEvent('onload', l); } else { w.addEventListener('load', l, false); } } })();
|
|
16
16
|
</script>
|
|
17
|
-
<style>@charset "UTF-8";:root{--bs-blue:#337ab7;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#c9302c;--bs-orange:#f6a828;--bs-yellow:#ffc107;--bs-green:#89b03e;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#ffffff;--bs-gray:#cccccc;--bs-gray-dark:#343a40;--bs-gray-100:#dddddd;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#cccccc;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#4d4d4d;--bs-primary:#337ab7;--bs-success:#89b03e;--bs-secondary:#cccccc;--bs-dark:#4d4d4d;--bs-light:#dddddd;--bs-light-gray:rgba(203, 203, 210, .15);--bs-light-blue:#dfeffc;--bs-danger:#c9302c;--bs-warning:#f6a828;--bs-primary-rgb:51, 122, 183;--bs-success-rgb:137, 176, 62;--bs-secondary-rgb:204, 204, 204;--bs-dark-rgb:77, 77, 77;--bs-light-rgb:221, 221, 221;--bs-light-gray-rgb:203, 203, 210;--bs-light-blue-rgb:223, 239, 252;--bs-danger-rgb:201, 48, 44;--bs-warning-rgb:246, 168, 40;--bs-white-rgb:255, 255, 255;--bs-black-rgb:0, 0, 0;--bs-body-color-rgb:51, 51, 51;--bs-body-bg-rgb:255, 255, 255;--bs-font-sans-serif:system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));--bs-body-font-family:Roboto, sans-serif;--bs-body-font-size:.75rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#333333;--bs-body-bg:#ffffff;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, .175);--bs-border-radius:.375rem;--bs-border-radius-sm:.25rem;--bs-border-radius-lg:.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-2xl:2rem;--bs-border-radius-pill:50rem;--bs-link-color:#0976b4;--bs-link-hover-color:#075e90;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd}*,*:before,*:after{box-sizing:border-box}@media (prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}@media (max-width: 991px){body{position:relative}}html,body{height:100%}@media print{html,body{height:auto}body{color:#000!important}}</style><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/marketplacepos@2.5.
|
|
17
|
+
<style>@charset "UTF-8";:root{--bs-blue:#337ab7;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#c9302c;--bs-orange:#f6a828;--bs-yellow:#ffc107;--bs-green:#89b03e;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#ffffff;--bs-gray:#cccccc;--bs-gray-dark:#343a40;--bs-gray-100:#dddddd;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#cccccc;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#4d4d4d;--bs-primary:#337ab7;--bs-success:#89b03e;--bs-secondary:#cccccc;--bs-dark:#4d4d4d;--bs-light:#dddddd;--bs-light-gray:rgba(203, 203, 210, .15);--bs-light-blue:#dfeffc;--bs-danger:#c9302c;--bs-warning:#f6a828;--bs-primary-rgb:51, 122, 183;--bs-success-rgb:137, 176, 62;--bs-secondary-rgb:204, 204, 204;--bs-dark-rgb:77, 77, 77;--bs-light-rgb:221, 221, 221;--bs-light-gray-rgb:203, 203, 210;--bs-light-blue-rgb:223, 239, 252;--bs-danger-rgb:201, 48, 44;--bs-warning-rgb:246, 168, 40;--bs-white-rgb:255, 255, 255;--bs-black-rgb:0, 0, 0;--bs-body-color-rgb:51, 51, 51;--bs-body-bg-rgb:255, 255, 255;--bs-font-sans-serif:system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));--bs-body-font-family:Roboto, sans-serif;--bs-body-font-size:.75rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#333333;--bs-body-bg:#ffffff;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, .175);--bs-border-radius:.375rem;--bs-border-radius-sm:.25rem;--bs-border-radius-lg:.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-2xl:2rem;--bs-border-radius-pill:50rem;--bs-link-color:#0976b4;--bs-link-hover-color:#075e90;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd}*,*:before,*:after{box-sizing:border-box}@media (prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}@media (max-width: 991px){body{position:relative}}html,body{height:100%}@media print{html,body{height:auto}body{color:#000!important}}</style><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/marketplacepos@2.5.2/Marketplace/styles.dff58ae3c0783953.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/marketplacepos@2.5.2/Marketplace/styles.dff58ae3c0783953.css"></noscript></head>
|
|
18
18
|
<body>
|
|
19
19
|
<app-root></app-root>
|
|
20
|
-
<script src="https://cdn.jsdelivr.net/npm/marketplacepos@2.5.
|
|
20
|
+
<script src="https://cdn.jsdelivr.net/npm/marketplacepos@2.5.2/Marketplace/runtime.6d4d6c7e2c139e6c.js" type="module"></script><script src="https://cdn.jsdelivr.net/npm/marketplacepos@2.5.2/Marketplace/polyfills.8d85b0533e3f867a.js" type="module"></script><script src="https://cdn.jsdelivr.net/npm/marketplacepos@2.5.2/Marketplace/scripts.09af772bfa77d50d.js" defer></script><script src="https://cdn.jsdelivr.net/npm/marketplacepos@2.5.2/Marketplace/main.82c99b5c79f1fd9c.js" type="module"></script>
|
|
21
21
|
|
|
22
22
|
</body></html>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{"use strict";var e,h={},v={};function r(e){var n=v[e];if(void 0!==n)return n.exports;var t=v[e]={id:e,loaded:!1,exports:{}};return h[e].call(t.exports,t,t.exports,r),t.loaded=!0,t.exports}r.m=h,e=[],r.O=(n,t,f,
|
|
1
|
+
(()=>{"use strict";var e,h={},v={};function r(e){var n=v[e];if(void 0!==n)return n.exports;var t=v[e]={id:e,loaded:!1,exports:{}};return h[e].call(t.exports,t,t.exports,r),t.loaded=!0,t.exports}r.m=h,e=[],r.O=(n,t,f,i)=>{if(!t){var a=1/0;for(o=0;o<e.length;o++){for(var[t,f,i]=e[o],b=!0,c=0;c<t.length;c++)(!1&i||a>=i)&&Object.keys(r.O).every(u=>r.O[u](t[c]))?t.splice(c--,1):(b=!1,i<a&&(a=i));if(b){e.splice(o--,1);var s=f();void 0!==s&&(n=s)}}return n}i=i||0;for(var o=e.length;o>0&&e[o-1][2]>i;o--)e[o]=e[o-1];e[o]=[t,f,i]},r.n=e=>{var n=e&&e.__esModule?()=>e.default:()=>e;return r.d(n,{a:n}),n},(()=>{var n,e=Object.getPrototypeOf?t=>Object.getPrototypeOf(t):t=>t.__proto__;r.t=function(t,f){if(1&f&&(t=this(t)),8&f||"object"==typeof t&&t&&(4&f&&t.__esModule||16&f&&"function"==typeof t.then))return t;var i=Object.create(null);r.r(i);var o={};n=n||[null,e({}),e([]),e(e)];for(var a=2&f&&t;"object"==typeof a&&!~n.indexOf(a);a=e(a))Object.getOwnPropertyNames(a).forEach(b=>o[b]=()=>t[b]);return o.default=()=>t,r.d(i,o),i}})(),r.d=(e,n)=>{for(var t in n)r.o(n,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:n[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((n,t)=>(r.f[t](e,n),n),[])),r.u=e=>(592===e?"common":e)+"."+{25:"6dd4d4cee1f4f83c",117:"4367f8afe2698e0a",162:"1e1c36c1ada2acc3",174:"fb88c636b62288f3",180:"dbbf0c10ee5511ad",291:"304a30789207d7b4",360:"9a9cbdee19ee7208",397:"9488b7c2d948b1be",455:"fc7663306b753727",463:"20f700792417e3ee",512:"945d0618102b5e2d",516:"f335756d88de781a",545:"4cff8354a6569325",585:"41532f91419a22f2",592:"3f5874655db24424",616:"f27780a637620732",663:"dc31188909c42de4",716:"8753639575454fc2",717:"de25d206cb2de0f8",739:"8a763e7ab64fe945",785:"e0040d021febffb1",796:"d34bd45b5a924fca",832:"886dc486c5a4ff32",874:"89ed6b644dee8914"}[e]+".js",r.miniCssF=e=>{},r.hmd=e=>((e=Object.create(e)).children||(e.children=[]),Object.defineProperty(e,"exports",{enumerable:!0,set:()=>{throw new Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+e.id)}}),e),r.o=(e,n)=>Object.prototype.hasOwnProperty.call(e,n),(()=>{var e={},n="pos-marketplace:";r.l=(t,f,i,o)=>{if(e[t])e[t].push(f);else{var a,b;if(void 0!==i)for(var c=document.getElementsByTagName("script"),s=0;s<c.length;s++){var d=c[s];if(d.getAttribute("src")==t||d.getAttribute("data-webpack")==n+i){a=d;break}}a||(b=!0,(a=document.createElement("script")).type="module",a.charset="utf-8",a.timeout=120,r.nc&&a.setAttribute("nonce",r.nc),a.setAttribute("data-webpack",n+i),a.src=r.tu(t)),e[t]=[f];var p=(g,u)=>{a.onerror=a.onload=null,clearTimeout(l);var _=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),_&&_.forEach(y=>y(u)),g)return g(u)},l=setTimeout(p.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=p.bind(null,a.onerror),a.onload=p.bind(null,a.onload),b&&document.head.appendChild(a)}}})(),r.r=e=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e;r.tt=()=>(void 0===e&&(e={createScriptURL:n=>n},typeof trustedTypes<"u"&&trustedTypes.createPolicy&&(e=trustedTypes.createPolicy("angular#bundler",e))),e)})(),r.tu=e=>r.tt().createScriptURL(e),r.p="https://cdn.jsdelivr.net/npm/marketplacepos@2.5.2/Marketplace/",(()=>{var e={666:0};r.f.j=(f,i)=>{var o=r.o(e,f)?e[f]:void 0;if(0!==o)if(o)i.push(o[2]);else if(666!=f){var a=new Promise((d,p)=>o=e[f]=[d,p]);i.push(o[2]=a);var b=r.p+r.u(f),c=new Error;r.l(b,d=>{if(r.o(e,f)&&(0!==(o=e[f])&&(e[f]=void 0),o)){var p=d&&("load"===d.type?"missing":d.type),l=d&&d.target&&d.target.src;c.message="Loading chunk "+f+" failed.\n("+p+": "+l+")",c.name="ChunkLoadError",c.type=p,c.request=l,o[1](c)}},"chunk-"+f,f)}else e[f]=0},r.O.j=f=>0===e[f];var n=(f,i)=>{var c,s,[o,a,b]=i,d=0;if(o.some(l=>0!==e[l])){for(c in a)r.o(a,c)&&(r.m[c]=a[c]);if(b)var p=b(r)}for(f&&f(i);d<o.length;d++)r.o(e,s=o[d])&&e[s]&&e[s][0](),e[s]=0;return r.O(p)},t=self.webpackChunkpos_marketplace=self.webpackChunkpos_marketplace||[];t.forEach(n.bind(null,0)),t.push=n.bind(null,t.push.bind(t))})()})();
|