dealposbarcode 1.3.9 → 1.4.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.
Files changed (54) hide show
  1. package/barcode/3rdpartylicenses.txt +1 -1
  2. package/barcode/660.92c4712e216ff00c.js +1 -0
  3. package/barcode/assets/css/Barcode/Print.css +11 -11
  4. package/barcode/assets/css/Barcode/ZebraTLP.css +93 -93
  5. package/barcode/assets/css/bootstrap_light.scss +1151 -1151
  6. package/barcode/assets/css/lbd/_alerts.scss +90 -90
  7. package/barcode/assets/css/lbd/_bootstrap-switch.scss +128 -128
  8. package/barcode/assets/css/lbd/_buttons.scss +132 -132
  9. package/barcode/assets/css/lbd/_cards.scss +256 -256
  10. package/barcode/assets/css/lbd/_chartist.scss +229 -229
  11. package/barcode/assets/css/lbd/_checkbox-radio-switch.scss +140 -140
  12. package/barcode/assets/css/lbd/_dropdown.scss +137 -137
  13. package/barcode/assets/css/lbd/_footers.scss +75 -75
  14. package/barcode/assets/css/lbd/_inputs.scss +141 -141
  15. package/barcode/assets/css/lbd/_misc.scss +120 -120
  16. package/barcode/assets/css/lbd/_mixins.scss +8 -8
  17. package/barcode/assets/css/lbd/_navbars.scss +225 -225
  18. package/barcode/assets/css/lbd/_partial-nucleo-icons.scss +574 -574
  19. package/barcode/assets/css/lbd/_responsive.scss +482 -482
  20. package/barcode/assets/css/lbd/_sidebar-and-main-panel.scss +331 -331
  21. package/barcode/assets/css/lbd/_tables.scss +88 -88
  22. package/barcode/assets/css/lbd/_typography.scss +91 -91
  23. package/barcode/assets/css/lbd/_variables.scss +272 -272
  24. package/barcode/assets/css/lbd/mixins/_buttons.scss +69 -69
  25. package/barcode/assets/css/lbd/mixins/_cards.scss +8 -8
  26. package/barcode/assets/css/lbd/mixins/_chartist.scss +85 -85
  27. package/barcode/assets/css/lbd/mixins/_icons.scss +12 -12
  28. package/barcode/assets/css/lbd/mixins/_inputs.scss +1 -1
  29. package/barcode/assets/css/lbd/mixins/_labels.scss +20 -20
  30. package/barcode/assets/css/lbd/mixins/_morphing-buttons.scss +33 -33
  31. package/barcode/assets/css/lbd/mixins/_navbars.scss +11 -11
  32. package/barcode/assets/css/lbd/mixins/_social-buttons.scss +42 -42
  33. package/barcode/assets/css/lbd/mixins/_tabs.scss +3 -3
  34. package/barcode/assets/css/lbd/mixins/_transparency.scss +19 -19
  35. package/barcode/assets/css/lbd/mixins/_vendor-prefixes.scss +211 -211
  36. package/barcode/assets/css/lbd/plugins/_animate.scss +227 -227
  37. package/barcode/assets/css/lbd/plugins/_datetime-picker.scss +463 -463
  38. package/barcode/assets/css/light-bootstrap-dashboard.scss +32 -32
  39. package/barcode/assets/css/pos_variable.scss +83 -83
  40. package/barcode/assets/css/toastr-bootstrap-5.scss +237 -237
  41. package/barcode/index.html +2 -2
  42. package/barcode/{main.71e908371e60089d.js → main.52f922e4138d5416.js} +1 -1
  43. package/barcode/manifest.webmanifest +59 -59
  44. package/barcode/ngsw-worker.js +0 -0
  45. package/barcode/ngsw.json +51 -51
  46. package/barcode/polyfills.24f9e567328321c8.js +1 -0
  47. package/barcode/{runtime.42ebd4cddf8ccc51.js → runtime.a9c4a1c7b61966a3.js} +1 -1
  48. package/barcode/safety-worker.js +0 -0
  49. package/barcode/styles.190cdb80d8bf56e0.css +20 -0
  50. package/barcode/worker-basic.min.js +0 -0
  51. package/package.json +1 -11
  52. package/barcode/660.b1c2f3358551568d.js +0 -1
  53. package/barcode/polyfills.dc4857163ebc6915.js +0 -1
  54. package/barcode/styles.076e6cb26a99c3ea.css +0 -20
@@ -1,8 +1,8 @@
1
- @mixin filter($color){
2
- @if $color == #FFFFFF{
3
- background-color: rgba($color,.91);
4
- } @else {
5
- background-color: rgba($color,.69);
6
- }
7
- }
8
-
1
+ @mixin filter($color){
2
+ @if $color == #FFFFFF{
3
+ background-color: rgba($color,.91);
4
+ } @else {
5
+ background-color: rgba($color,.69);
6
+ }
7
+ }
8
+
@@ -1,85 +1,85 @@
1
- // Scales for responsive SVG containers
2
- $ct-scales: ((1), (15/16), (8/9), (5/6), (4/5), (3/4), (2/3), (5/8), (1/1.618), (3/5), (9/16), (8/15), (1/2), (2/5), (3/8), (1/3), (1/4)) !default;
3
- $ct-scales-names: (ct-square, ct-minor-second, ct-major-second, ct-minor-third, ct-major-third, ct-perfect-fourth, ct-perfect-fifth, ct-minor-sixth, ct-golden-section, ct-major-sixth, ct-minor-seventh, ct-major-seventh, ct-octave, ct-major-tenth, ct-major-eleventh, ct-major-twelfth, ct-double-octave) !default;
4
-
5
- // Class names to be used when generating CSS
6
- $ct-class-chart: ct-chart !default;
7
- $ct-class-chart-line: ct-chart-line !default;
8
- $ct-class-chart-bar: ct-chart-bar !default;
9
- $ct-class-horizontal-bars: ct-horizontal-bars !default;
10
- $ct-class-chart-pie: ct-chart-pie !default;
11
- $ct-class-chart-donut: ct-chart-donut !default;
12
- $ct-class-label: ct-label !default;
13
- $ct-class-series: ct-series !default;
14
- $ct-class-line: ct-line !default;
15
- $ct-class-point: ct-point !default;
16
- $ct-class-area: ct-area !default;
17
- $ct-class-bar: ct-bar !default;
18
- $ct-class-slice-pie: ct-slice-pie !default;
19
- $ct-class-slice-donut: ct-slice-donut !default;
20
- $ct-class-grid: ct-grid !default;
21
- $ct-class-vertical: ct-vertical !default;
22
- $ct-class-horizontal: ct-horizontal !default;
23
- $ct-class-start: ct-start !default;
24
- $ct-class-end: ct-end !default;
25
-
26
- // Container ratio
27
- $ct-container-ratio: (1/1.618) !default;
28
-
29
- // Text styles for labels
30
- $ct-text-color: rgba(0, 0, 0, 0.4) !default;
31
- $ct-text-size: 1.3rem !default;
32
- $ct-text-align: flex-start !default;
33
- $ct-text-justify: flex-start !default;
34
- $ct-text-line-height: 1;
35
-
36
- // Grid styles
37
- $ct-grid-color: rgba(0, 0, 0, 0.2) !default;
38
- $ct-grid-dasharray: 2px !default;
39
- $ct-grid-width: 1px !default;
40
-
41
- // Line chart properties
42
- $ct-line-width: 3px !default;
43
- $ct-line-dasharray: false !default;
44
- $ct-point-size: 8px !default;
45
- // Line chart point, can be either round or square
46
- $ct-point-shape: round !default;
47
- // Area fill transparency between 0 and 1
48
- $ct-area-opacity: 0.8 !default;
49
-
50
- // Bar chart bar width
51
- $ct-bar-width: 10px !default;
52
-
53
- // Donut width (If donut width is to big it can cause issues where the shape gets distorted)
54
- $ct-donut-width: 60px !default;
55
-
56
- // If set to true it will include the default classes and generate CSS output. If you're planning to use the mixins you
57
- // should set this property to false
58
- $ct-include-classes: true !default;
59
-
60
- // If this is set to true the CSS will contain colored series. You can extend or change the color with the
61
- // properties below
62
- $ct-include-colored-series: $ct-include-classes !default;
63
-
64
- // If set to true this will include all responsive container variations using the scales defined at the top of the script
65
- $ct-include-alternative-responsive-containers: $ct-include-classes !default;
66
-
67
- // Series names and colors. This can be extended or customized as desired. Just add more series and colors.
68
- $ct-series-names: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) !default;
69
- $ct-series-colors: (
70
- $new-blue,
71
- $new-red,
72
- $new-orange,
73
- $new-purple,
74
- $new-green,
75
- $new-dark-blue,
76
- $new-black,
77
- $social-google,
78
- $social-tumblr,
79
- $social-youtube,
80
- $social-twitter,
81
- $social-pinterest,
82
- $social-behance,
83
- #6188e2,
84
- #a748ca
85
- ) !default;
1
+ // Scales for responsive SVG containers
2
+ $ct-scales: ((1), (15/16), (8/9), (5/6), (4/5), (3/4), (2/3), (5/8), (1/1.618), (3/5), (9/16), (8/15), (1/2), (2/5), (3/8), (1/3), (1/4)) !default;
3
+ $ct-scales-names: (ct-square, ct-minor-second, ct-major-second, ct-minor-third, ct-major-third, ct-perfect-fourth, ct-perfect-fifth, ct-minor-sixth, ct-golden-section, ct-major-sixth, ct-minor-seventh, ct-major-seventh, ct-octave, ct-major-tenth, ct-major-eleventh, ct-major-twelfth, ct-double-octave) !default;
4
+
5
+ // Class names to be used when generating CSS
6
+ $ct-class-chart: ct-chart !default;
7
+ $ct-class-chart-line: ct-chart-line !default;
8
+ $ct-class-chart-bar: ct-chart-bar !default;
9
+ $ct-class-horizontal-bars: ct-horizontal-bars !default;
10
+ $ct-class-chart-pie: ct-chart-pie !default;
11
+ $ct-class-chart-donut: ct-chart-donut !default;
12
+ $ct-class-label: ct-label !default;
13
+ $ct-class-series: ct-series !default;
14
+ $ct-class-line: ct-line !default;
15
+ $ct-class-point: ct-point !default;
16
+ $ct-class-area: ct-area !default;
17
+ $ct-class-bar: ct-bar !default;
18
+ $ct-class-slice-pie: ct-slice-pie !default;
19
+ $ct-class-slice-donut: ct-slice-donut !default;
20
+ $ct-class-grid: ct-grid !default;
21
+ $ct-class-vertical: ct-vertical !default;
22
+ $ct-class-horizontal: ct-horizontal !default;
23
+ $ct-class-start: ct-start !default;
24
+ $ct-class-end: ct-end !default;
25
+
26
+ // Container ratio
27
+ $ct-container-ratio: (1/1.618) !default;
28
+
29
+ // Text styles for labels
30
+ $ct-text-color: rgba(0, 0, 0, 0.4) !default;
31
+ $ct-text-size: 1.3rem !default;
32
+ $ct-text-align: flex-start !default;
33
+ $ct-text-justify: flex-start !default;
34
+ $ct-text-line-height: 1;
35
+
36
+ // Grid styles
37
+ $ct-grid-color: rgba(0, 0, 0, 0.2) !default;
38
+ $ct-grid-dasharray: 2px !default;
39
+ $ct-grid-width: 1px !default;
40
+
41
+ // Line chart properties
42
+ $ct-line-width: 3px !default;
43
+ $ct-line-dasharray: false !default;
44
+ $ct-point-size: 8px !default;
45
+ // Line chart point, can be either round or square
46
+ $ct-point-shape: round !default;
47
+ // Area fill transparency between 0 and 1
48
+ $ct-area-opacity: 0.8 !default;
49
+
50
+ // Bar chart bar width
51
+ $ct-bar-width: 10px !default;
52
+
53
+ // Donut width (If donut width is to big it can cause issues where the shape gets distorted)
54
+ $ct-donut-width: 60px !default;
55
+
56
+ // If set to true it will include the default classes and generate CSS output. If you're planning to use the mixins you
57
+ // should set this property to false
58
+ $ct-include-classes: true !default;
59
+
60
+ // If this is set to true the CSS will contain colored series. You can extend or change the color with the
61
+ // properties below
62
+ $ct-include-colored-series: $ct-include-classes !default;
63
+
64
+ // If set to true this will include all responsive container variations using the scales defined at the top of the script
65
+ $ct-include-alternative-responsive-containers: $ct-include-classes !default;
66
+
67
+ // Series names and colors. This can be extended or customized as desired. Just add more series and colors.
68
+ $ct-series-names: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) !default;
69
+ $ct-series-colors: (
70
+ $new-blue,
71
+ $new-red,
72
+ $new-orange,
73
+ $new-purple,
74
+ $new-green,
75
+ $new-dark-blue,
76
+ $new-black,
77
+ $social-google,
78
+ $social-tumblr,
79
+ $social-youtube,
80
+ $social-twitter,
81
+ $social-pinterest,
82
+ $social-behance,
83
+ #6188e2,
84
+ #a748ca
85
+ ) !default;
@@ -1,13 +1,13 @@
1
- @mixin icon-background ($icon-url){
2
- background-image : url($icon-url);
3
-
4
- }
5
-
6
- @mixin icon-shape ($size, $padding, $border-radius) {
7
- height: $size;
8
- width: $size;
9
- padding: $padding;
10
- border-radius: $border-radius;
11
- display: inline-table;
12
-
1
+ @mixin icon-background ($icon-url){
2
+ background-image : url($icon-url);
3
+
4
+ }
5
+
6
+ @mixin icon-shape ($size, $padding, $border-radius) {
7
+ height: $size;
8
+ width: $size;
9
+ padding: $padding;
10
+ border-radius: $border-radius;
11
+ display: inline-table;
12
+
13
13
  }
@@ -1 +1 @@
1
-
1
+
@@ -1,21 +1,21 @@
1
- @mixin label-style(){
2
- padding: $padding-label-vertical $padding-label-horizontal;
3
- border: 1px solid $default-color;
4
- border-radius: $border-radius-small;
5
- color: $default-color;
6
- font-weight: $font-weight-semi;
7
- font-size: $font-size-small;
8
- text-transform: uppercase;
9
- display: inline-block;
10
- vertical-align: middle;
11
- }
12
-
13
- @mixin label-color($color){
14
- border-color: $color;
15
- color: $color;
16
- }
17
- @mixin label-color-fill($color){
18
- border-color: $color;
19
- color: $white-color;
20
- background-color: $color;
1
+ @mixin label-style(){
2
+ padding: $padding-label-vertical $padding-label-horizontal;
3
+ border: 1px solid $default-color;
4
+ border-radius: $border-radius-small;
5
+ color: $default-color;
6
+ font-weight: $font-weight-semi;
7
+ font-size: $font-size-small;
8
+ text-transform: uppercase;
9
+ display: inline-block;
10
+ vertical-align: middle;
11
+ }
12
+
13
+ @mixin label-color($color){
14
+ border-color: $color;
15
+ color: $color;
16
+ }
17
+ @mixin label-color-fill($color){
18
+ border-color: $color;
19
+ color: $white-color;
20
+ background-color: $color;
21
21
  }
@@ -1,34 +1,34 @@
1
- $prefixes: ('', '-moz-', '-webkit-', '-ms-') !default;
2
-
3
- @mixin circle-animation(){
4
- @for $i from 0 to length($prefixes) {
5
- @include circle-animation-details(nth($prefixes, $i + 1));
6
- }
7
- }
8
-
9
- @mixin circle-animation-details($name){
10
- #{$name}animation-name: spin;
11
- #{$name}animation-duration: 1250ms;
12
- #{$name}animation-iteration-count: infinite;
13
- #{$name}animation-timing-function: linear;
14
-
15
- }
16
- @keyframes spin {
17
- from { transform:rotate(0deg); }
18
- to { transform:rotate(360deg); }
19
- }
20
-
21
- @-webkit-keyframes spin {
22
- from { -webkit-transform: rotate(0deg); }
23
- to { -webkit-transform: rotate(360deg); }
24
- }
25
-
26
- @-moz-keyframes spin {
27
- from { -moz-transform: rotate(0deg); }
28
- to { -moz-transform: rotate(360deg); }
29
- }
30
-
31
- @-ms-keyframes spin {
32
- from { -ms-transform: rotate(0deg); }
33
- to { -ms-transform: rotate(360deg); }
1
+ $prefixes: ('', '-moz-', '-webkit-', '-ms-') !default;
2
+
3
+ @mixin circle-animation(){
4
+ @for $i from 0 to length($prefixes) {
5
+ @include circle-animation-details(nth($prefixes, $i + 1));
6
+ }
7
+ }
8
+
9
+ @mixin circle-animation-details($name){
10
+ #{$name}animation-name: spin;
11
+ #{$name}animation-duration: 1250ms;
12
+ #{$name}animation-iteration-count: infinite;
13
+ #{$name}animation-timing-function: linear;
14
+
15
+ }
16
+ @keyframes spin {
17
+ from { transform:rotate(0deg); }
18
+ to { transform:rotate(360deg); }
19
+ }
20
+
21
+ @-webkit-keyframes spin {
22
+ from { -webkit-transform: rotate(0deg); }
23
+ to { -webkit-transform: rotate(360deg); }
24
+ }
25
+
26
+ @-moz-keyframes spin {
27
+ from { -moz-transform: rotate(0deg); }
28
+ to { -moz-transform: rotate(360deg); }
29
+ }
30
+
31
+ @-ms-keyframes spin {
32
+ from { -ms-transform: rotate(0deg); }
33
+ to { -ms-transform: rotate(360deg); }
34
34
  }
@@ -1,11 +1,11 @@
1
- @mixin navbar-color($color){
2
- background-color: $color;
3
- }
4
-
5
- @mixin center-item(){
6
- left: 0;
7
- right: 0;
8
- margin-right: auto;
9
- margin-left: auto;
10
- position: absolute;
11
- }
1
+ @mixin navbar-color($color){
2
+ background-color: $color;
3
+ }
4
+
5
+ @mixin center-item(){
6
+ left: 0;
7
+ right: 0;
8
+ margin-right: auto;
9
+ margin-left: auto;
10
+ position: absolute;
11
+ }
@@ -1,43 +1,43 @@
1
- @mixin social-buttons-color ($color){
2
-
3
- border-color: $color;
4
- color: $color;
5
-
6
- &:hover,
7
- &:focus,
8
- &:active,
9
- &.active,
10
- .open > &.dropdown-toggle {
11
- background-color: $transparent-bg;
12
- color: $color;
13
- border-color: $color;
14
- opacity: 1;
15
- }
16
-
17
- &:disabled,
18
- &[disabled],
19
- &.disabled {
20
- background-color: $transparent-bg;
21
- border-color: $color;
22
- }
23
-
24
- &.btn-fill {
25
- color: $white-color;
26
- background-color: $color;
27
- opacity: 0.9;
28
-
29
- &:hover,
30
- &:focus,
31
- &:active,
32
- &.active,
33
- .open > &.dropdown-toggle{
34
- background-color: $color;
35
- color: $white-color;
36
- opacity: 1;
37
- }
38
-
39
- }
40
-
41
-
42
- }
1
+ @mixin social-buttons-color ($color){
2
+
3
+ border-color: $color;
4
+ color: $color;
5
+
6
+ &:hover,
7
+ &:focus,
8
+ &:active,
9
+ &.active,
10
+ .open > &.dropdown-toggle {
11
+ background-color: $transparent-bg;
12
+ color: $color;
13
+ border-color: $color;
14
+ opacity: 1;
15
+ }
16
+
17
+ &:disabled,
18
+ &[disabled],
19
+ &.disabled {
20
+ background-color: $transparent-bg;
21
+ border-color: $color;
22
+ }
23
+
24
+ &.btn-fill {
25
+ color: $white-color;
26
+ background-color: $color;
27
+ opacity: 0.9;
28
+
29
+ &:hover,
30
+ &:focus,
31
+ &:active,
32
+ &.active,
33
+ .open > &.dropdown-toggle{
34
+ background-color: $color;
35
+ color: $white-color;
36
+ opacity: 1;
37
+ }
38
+
39
+ }
40
+
41
+
42
+ }
43
43
 
@@ -1,4 +1,4 @@
1
- @mixin pill-style($color){
2
- border: 1px solid $color;
3
- color: $color;
1
+ @mixin pill-style($color){
2
+ border: 1px solid $color;
3
+ color: $color;
4
4
  }
@@ -1,20 +1,20 @@
1
- // Opacity
2
-
3
- @mixin opacity($opacity) {
4
- opacity: $opacity;
5
- // IE8 filter
6
- $opacity-ie: ($opacity * 100);
7
- filter: #{alpha(opacity=$opacity-ie)};
8
- }
9
-
10
- @mixin black-filter($opacity){
11
- top: 0;
12
- left: 0;
13
- height: 100%;
14
- width: 100%;
15
- position: absolute;
16
- background-color: rgba(17,17,17,$opacity);
17
- display: block;
18
- content: "";
19
- z-index: 1;
1
+ // Opacity
2
+
3
+ @mixin opacity($opacity) {
4
+ opacity: $opacity;
5
+ // IE8 filter
6
+ $opacity-ie: ($opacity * 100);
7
+ filter: #{alpha(opacity=$opacity-ie)};
8
+ }
9
+
10
+ @mixin black-filter($opacity){
11
+ top: 0;
12
+ left: 0;
13
+ height: 100%;
14
+ width: 100%;
15
+ position: absolute;
16
+ background-color: rgba(17,17,17,$opacity);
17
+ display: block;
18
+ content: "";
19
+ z-index: 1;
20
20
  }