dealposbarcode 1.7.0 → 1.7.1
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/assets/scss/_custom.scss +2 -1
- package/assets/scss/style.scss +36 -0
- package/chunk-7IEKKSHA.js +5 -0
- package/{chunk-WLJBZIR2.js → chunk-7MK4DBMI.js} +1 -1
- package/{chunk-PQ4DG55C.js → chunk-DJSDGSB3.js} +1 -1
- package/chunk-IDSEZUZN.js +1 -0
- package/chunk-PLQP4Q76.js +7 -0
- package/chunk-PQKI2EBV.js +2 -0
- package/chunk-SZOOK4RX.js +109 -0
- package/chunk-WS54GKT5.js +2 -0
- package/chunk-XS322NAT.css +1 -0
- package/index.html +14 -13
- package/main-FUNPXUNP.css +1 -0
- package/main-OMVI2VJT.js +602 -0
- package/package.json +1 -1
- package/styles-NMAYTWWJ.css +1 -0
- package/chunk-J67UBYN3.js +0 -2
- package/chunk-MI6I2C3P.js +0 -5
- package/chunk-NFH3SG7K.js +0 -2
- package/chunk-PBGEWTPW.js +0 -92
- package/chunk-QAGGYSUU.js +0 -7
- package/chunk-QTVR67JP.js +0 -1
- package/main-5JGRTNDS.js +0 -602
- package/styles-6QDRWAS5.css +0 -1
package/assets/scss/_custom.scss
CHANGED
package/assets/scss/style.scss
CHANGED
|
@@ -1,3 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
// Custom Theming for Angular Material
|
|
3
|
+
// For more information: https://material.angular.io/guide/theming
|
|
4
|
+
@use '@angular/material' as mat;
|
|
5
|
+
// Plus imports for other components in your app.
|
|
6
|
+
|
|
7
|
+
// Include the common styles for Angular Material. We include this here so that you only
|
|
8
|
+
// have to load a single css file for Angular Material in your app.
|
|
9
|
+
// Be sure that you only ever include this mixin once!
|
|
10
|
+
@include mat.core();
|
|
11
|
+
|
|
12
|
+
// Define the theme object.
|
|
13
|
+
$barcode-app-theme: mat.define-theme((
|
|
14
|
+
color: (
|
|
15
|
+
theme-type: light,
|
|
16
|
+
primary: mat.$azure-palette,
|
|
17
|
+
tertiary: mat.$blue-palette,
|
|
18
|
+
),
|
|
19
|
+
density: (
|
|
20
|
+
scale: 0,
|
|
21
|
+
)
|
|
22
|
+
));
|
|
23
|
+
|
|
24
|
+
// Include theme styles for core and each component used in your app.
|
|
25
|
+
// Alternatively, you can import and @include the theme mixins for each component
|
|
26
|
+
// that you are using.
|
|
27
|
+
:root {
|
|
28
|
+
@include mat.all-component-themes($barcode-app-theme);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// Comment out the line below if you want to use the pre-defined typography utility classes.
|
|
32
|
+
// For more information: https://material.angular.io/guide/typography#using-typography-styles-in-your-application.
|
|
33
|
+
// @include mat.typography-hierarchy($barcode-app-theme);
|
|
34
|
+
|
|
35
|
+
// Comment out the line below if you want to use the deprecated `color` inputs.
|
|
36
|
+
// @include mat.color-variants-backwards-compatibility($barcode-app-theme);
|
|
1
37
|
/*
|
|
2
38
|
Template Name: Admin Template
|
|
3
39
|
Author: Niravjoshi / Wrappixel
|