dealposbarcode 1.3.3 → 1.3.6
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/barcode/index.html +24 -23
- package/barcode/main.js +1426 -0
- package/barcode/main.js.map +1 -0
- package/barcode/polyfills.js +3370 -0
- package/barcode/polyfills.js.map +1 -0
- package/barcode/runtime.js +304 -0
- package/barcode/runtime.js.map +1 -0
- package/barcode/src_app_pages_pages_module_ts.js +9793 -0
- package/barcode/src_app_pages_pages_module_ts.js.map +1 -0
- package/barcode/styles.css +15970 -0
- package/barcode/styles.css.map +1 -0
- package/barcode/vendor.js +114157 -0
- package/barcode/vendor.js.map +1 -0
- package/package.json +1 -1
- package/barcode/3rdpartylicenses.txt +0 -432
- package/barcode/803.77a93585d46aefb0.js +0 -1
- package/barcode/main.313aa86944efb650.js +0 -1
- package/barcode/ngsw-worker.js +0 -2825
- package/barcode/ngsw.json +0 -161
- package/barcode/polyfills.3eeaafac055ac6b7.js +0 -1
- package/barcode/runtime.becddb656e0087b1.js +0 -1
- package/barcode/safety-worker.js +0 -26
- package/barcode/styles.32eea4e6db3de98e.css +0 -6
- package/barcode/worker-basic.min.js +0 -26
package/barcode/index.html
CHANGED
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
<!
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<
|
|
5
|
-
<
|
|
6
|
-
<
|
|
7
|
-
<meta http-equiv="
|
|
8
|
-
<meta
|
|
9
|
-
<meta
|
|
10
|
-
<meta name="
|
|
11
|
-
<
|
|
12
|
-
<
|
|
13
|
-
<link
|
|
14
|
-
<link href="https://
|
|
15
|
-
<link
|
|
16
|
-
<
|
|
17
|
-
<
|
|
18
|
-
<
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
<
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>DEALPOS Product Barcode Generator - Aplikasi Kasir / Point of Sale for retail business</title>
|
|
6
|
+
<base href="/">
|
|
7
|
+
<meta http-equiv="Cache-control" content="no-cache, no-store, must-revalidate">
|
|
8
|
+
<meta http-equiv="Pragma" content="no-cache">
|
|
9
|
+
<meta http-equiv="Expires" content="0">
|
|
10
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
11
|
+
<meta name="description" content="DEALPOS Product Barcode Generator - Aplikasi Kasir / Point of Sale for retail business">
|
|
12
|
+
<meta name="keywords" content="Barcode, DealPOS, POS">
|
|
13
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
14
|
+
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
15
|
+
<link href="https:////fonts.googleapis.com/css?family=Roboto:300,400,700|Roboto+Slab:400,700" rel="stylesheet">
|
|
16
|
+
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" rel="stylesheet">
|
|
17
|
+
<link rel="manifest" href="manifest.webmanifest">
|
|
18
|
+
<meta name="theme-color" content="#1976d2">
|
|
19
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/dealposbarcode@1.3.6/barcode/styles.css"></head>
|
|
20
|
+
<body>
|
|
21
|
+
<app-root></app-root>
|
|
22
|
+
<noscript>Please enable JavaScript to continue using this application.</noscript>
|
|
23
|
+
<script src="https://cdn.jsdelivr.net/npm/dealposbarcode@1.3.6/barcode/runtime.js" type="module"></script><script src="https://cdn.jsdelivr.net/npm/dealposbarcode@1.3.6/barcode/polyfills.js" type="module"></script><script src="https://cdn.jsdelivr.net/npm/dealposbarcode@1.3.6/barcode/vendor.js" type="module"></script><script src="https://cdn.jsdelivr.net/npm/dealposbarcode@1.3.6/barcode/main.js" type="module"></script></body>
|
|
24
|
+
</html>
|