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,211 +1,211 @@
1
- // User select
2
- // For selecting text on the page
3
-
4
- @mixin user-select($select) {
5
- -webkit-user-select: $select;
6
- -moz-user-select: $select;
7
- -ms-user-select: $select; // IE10+
8
- user-select: $select;
9
- }
10
-
11
- @mixin box-shadow($shadow...) {
12
- -webkit-box-shadow: $shadow; // iOS <4.3 & Android <4.1
13
- box-shadow: $shadow;
14
- }
15
-
16
- // Box sizing
17
- @mixin box-sizing($boxmodel) {
18
- -webkit-box-sizing: $boxmodel;
19
- -moz-box-sizing: $boxmodel;
20
- box-sizing: $boxmodel;
21
- }
22
-
23
-
24
- @mixin transition($time, $type){
25
- -webkit-transition: all $time $type;
26
- -moz-transition: all $time $type;
27
- -o-transition: all $time $type;
28
- -ms-transition: all $time $type;
29
- transition: all $time $type;
30
- }
31
-
32
- @mixin transform-scale($value){
33
- -webkit-transform: scale($value);
34
- -moz-transform: scale($value);
35
- -o-transform: scale($value);
36
- -ms-transform: scale($value);
37
- transform: scale($value);
38
- }
39
-
40
- @mixin transform-translate-x($value){
41
- -webkit-transform: translate3d($value, 0, 0);
42
- -moz-transform: translate3d($value, 0, 0);
43
- -o-transform: translate3d($value, 0, 0);
44
- -ms-transform: translate3d($value, 0, 0);
45
- transform: translate3d($value, 0, 0);
46
- }
47
-
48
- @mixin transform-translate-3d($value){
49
- -webkit-transform: translate3d($value, 0, 0);
50
- -moz-transform: translate3d($value, 0, 0);
51
- -o-transform: translate3d($value, 0, 0);
52
- -ms-transform: translate3d($value, 0, 0);
53
- transform: translate3d($value, 0, 0) !important;
54
- }
55
-
56
- @mixin transform-translate-y-dropdown($value){
57
- -webkit-transform: translate3d(0, $value, 0) !important;
58
- -moz-transform: translate3d(0, $value, 0) !important;
59
- -o-transform: translate3d(0, $value, 0) !important;
60
- -ms-transform: translate3d(0, $value, 0) !important;
61
- transform: translate3d(0, $value, 0) !important;
62
- }
63
-
64
- @mixin transform-translate-3d-0($value){
65
- -webkit-transform: translate3d(0, $value, 0) !important;
66
- -moz-transform: translate3d(0, $value, 0) !important;
67
- -o-transform: translate3d(0, $value, 0) !important;
68
- -ms-transform: translate3d(0, $value, 0) !important;
69
- transform: translate3d(0, $value, 0) !important;
70
- }
71
-
72
- @mixin transform-origin($coordinates){
73
- -webkit-transform-origin: $coordinates;
74
- -moz-transform-origin: $coordinates;
75
- -o-transform-origin: $coordinates;
76
- -ms-transform-origin: $coordinates;
77
- transform-origin: $coordinates;
78
- }
79
-
80
- @mixin icon-gradient ($top-color, $bottom-color){
81
- background: $top-color;
82
- background: -moz-linear-gradient(top, $top-color 0%, $bottom-color 100%);
83
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$top-color), color-stop(100%,$bottom-color));
84
- background: -webkit-linear-gradient(top, $top-color 0%,$bottom-color 100%);
85
- background: -o-linear-gradient(top, $top-color 0%,$bottom-color 100%);
86
- background: -ms-linear-gradient(top, $top-color 0%,$bottom-color 100%);
87
- background: linear-gradient(to bottom, $top-color 0%,$bottom-color 100%);
88
- background-size: 150% 150%;
89
- }
90
-
91
- @mixin radial-gradient($extern-color, $center-color){
92
- background: $extern-color;
93
- background: -moz-radial-gradient(center, ellipse cover, $center-color 0%, $extern-color 100%); /* FF3.6+ */
94
- background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,$center-color), color-stop(100%,$extern-color)); /* Chrome,Safari4+ */
95
- background: -webkit-radial-gradient(center, ellipse cover, $center-color 0%,$extern-color 100%); /* Chrome10+,Safari5.1+ */
96
- background: -o-radial-gradient(center, ellipse cover, $center-color 0%,$extern-color 100%); /* Opera 12+ */
97
- background: -ms-radial-gradient(center, ellipse cover, $center-color 0%,$extern-color 100%); /* IE10+ */
98
- background: radial-gradient(ellipse at center, $center-color 0%,$extern-color 100%); /* W3C */
99
- background-size: 550% 450%;
100
- }
101
-
102
- @mixin vertical-align {
103
- position: relative;
104
- top: 50%;
105
- -webkit-transform: translateY(-50%);
106
- -ms-transform: translateY(-50%);
107
- transform: translateY(-50%);
108
- }
109
-
110
- @mixin rotate-180(){
111
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
112
- -webkit-transform: rotate(180deg);
113
- -ms-transform: rotate(180deg);
114
- transform: rotate(180deg);
115
- }
116
-
117
- @mixin bar-animation($type){
118
- -webkit-animation: $type 500ms linear 0s;
119
- -moz-animation: $type 500ms linear 0s;
120
- animation: $type 500ms 0s;
121
- -webkit-animation-fill-mode: forwards;
122
- -moz-animation-fill-mode: forwards;
123
- animation-fill-mode: forwards;
124
- }
125
-
126
- @mixin topbar-x-rotation(){
127
- @keyframes topbar-x {
128
- 0% {top: 0px; transform: rotate(0deg); }
129
- 45% {top: 6px; transform: rotate(145deg); }
130
- 75% {transform: rotate(130deg); }
131
- 100% {transform: rotate(135deg); }
132
- }
133
- @-webkit-keyframes topbar-x {
134
- 0% {top: 0px; -webkit-transform: rotate(0deg); }
135
- 45% {top: 6px; -webkit-transform: rotate(145deg); }
136
- 75% {-webkit-transform: rotate(130deg); }
137
- 100% { -webkit-transform: rotate(135deg); }
138
- }
139
- @-moz-keyframes topbar-x {
140
- 0% {top: 0px; -moz-transform: rotate(0deg); }
141
- 45% {top: 6px; -moz-transform: rotate(145deg); }
142
- 75% {-moz-transform: rotate(130deg); }
143
- 100% { -moz-transform: rotate(135deg); }
144
- }
145
- }
146
-
147
- @mixin topbar-back-rotation(){
148
- @keyframes topbar-back {
149
- 0% { top: 6px; transform: rotate(135deg); }
150
- 45% { transform: rotate(-10deg); }
151
- 75% { transform: rotate(5deg); }
152
- 100% { top: 0px; transform: rotate(0); }
153
- }
154
-
155
- @-webkit-keyframes topbar-back {
156
- 0% { top: 6px; -webkit-transform: rotate(135deg); }
157
- 45% { -webkit-transform: rotate(-10deg); }
158
- 75% { -webkit-transform: rotate(5deg); }
159
- 100% { top: 0px; -webkit-transform: rotate(0); }
160
- }
161
-
162
- @-moz-keyframes topbar-back {
163
- 0% { top: 6px; -moz-transform: rotate(135deg); }
164
- 45% { -moz-transform: rotate(-10deg); }
165
- 75% { -moz-transform: rotate(5deg); }
166
- 100% { top: 0px; -moz-transform: rotate(0); }
167
- }
168
- }
169
-
170
- @mixin bottombar-x-rotation(){
171
- @keyframes bottombar-x {
172
- 0% {bottom: 0px; transform: rotate(0deg);}
173
- 45% {bottom: 6px; transform: rotate(-145deg);}
174
- 75% {transform: rotate(-130deg);}
175
- 100% {transform: rotate(-135deg);}
176
- }
177
- @-webkit-keyframes bottombar-x {
178
- 0% {bottom: 0px; -webkit-transform: rotate(0deg);}
179
- 45% {bottom: 6px; -webkit-transform: rotate(-145deg);}
180
- 75% {-webkit-transform: rotate(-130deg);}
181
- 100% {-webkit-transform: rotate(-135deg);}
182
- }
183
- @-moz-keyframes bottombar-x {
184
- 0% {bottom: 0px; -moz-transform: rotate(0deg);}
185
- 45% {bottom: 6px; -moz-transform: rotate(-145deg);}
186
- 75% {-moz-transform: rotate(-130deg);}
187
- 100% {-moz-transform: rotate(-135deg);}
188
- }
189
- }
190
-
191
- @mixin bottombar-back-rotation{
192
- @keyframes bottombar-back {
193
- 0% { bottom: 6px;transform: rotate(-135deg);}
194
- 45% { transform: rotate(10deg);}
195
- 75% { transform: rotate(-5deg);}
196
- 100% { bottom: 0px;transform: rotate(0);}
197
- }
198
- @-webkit-keyframes bottombar-back {
199
- 0% {bottom: 6px;-webkit-transform: rotate(-135deg);}
200
- 45% {-webkit-transform: rotate(10deg);}
201
- 75% {-webkit-transform: rotate(-5deg);}
202
- 100% {bottom: 0px;-webkit-transform: rotate(0);}
203
- }
204
- @-moz-keyframes bottombar-back {
205
- 0% {bottom: 6px;-moz-transform: rotate(-135deg);}
206
- 45% {-moz-transform: rotate(10deg);}
207
- 75% {-moz-transform: rotate(-5deg);}
208
- 100% {bottom: 0px;-moz-transform: rotate(0);}
209
- }
210
-
211
- }
1
+ // User select
2
+ // For selecting text on the page
3
+
4
+ @mixin user-select($select) {
5
+ -webkit-user-select: $select;
6
+ -moz-user-select: $select;
7
+ -ms-user-select: $select; // IE10+
8
+ user-select: $select;
9
+ }
10
+
11
+ @mixin box-shadow($shadow...) {
12
+ -webkit-box-shadow: $shadow; // iOS <4.3 & Android <4.1
13
+ box-shadow: $shadow;
14
+ }
15
+
16
+ // Box sizing
17
+ @mixin box-sizing($boxmodel) {
18
+ -webkit-box-sizing: $boxmodel;
19
+ -moz-box-sizing: $boxmodel;
20
+ box-sizing: $boxmodel;
21
+ }
22
+
23
+
24
+ @mixin transition($time, $type){
25
+ -webkit-transition: all $time $type;
26
+ -moz-transition: all $time $type;
27
+ -o-transition: all $time $type;
28
+ -ms-transition: all $time $type;
29
+ transition: all $time $type;
30
+ }
31
+
32
+ @mixin transform-scale($value){
33
+ -webkit-transform: scale($value);
34
+ -moz-transform: scale($value);
35
+ -o-transform: scale($value);
36
+ -ms-transform: scale($value);
37
+ transform: scale($value);
38
+ }
39
+
40
+ @mixin transform-translate-x($value){
41
+ -webkit-transform: translate3d($value, 0, 0);
42
+ -moz-transform: translate3d($value, 0, 0);
43
+ -o-transform: translate3d($value, 0, 0);
44
+ -ms-transform: translate3d($value, 0, 0);
45
+ transform: translate3d($value, 0, 0);
46
+ }
47
+
48
+ @mixin transform-translate-3d($value){
49
+ -webkit-transform: translate3d($value, 0, 0);
50
+ -moz-transform: translate3d($value, 0, 0);
51
+ -o-transform: translate3d($value, 0, 0);
52
+ -ms-transform: translate3d($value, 0, 0);
53
+ transform: translate3d($value, 0, 0) !important;
54
+ }
55
+
56
+ @mixin transform-translate-y-dropdown($value){
57
+ -webkit-transform: translate3d(0, $value, 0) !important;
58
+ -moz-transform: translate3d(0, $value, 0) !important;
59
+ -o-transform: translate3d(0, $value, 0) !important;
60
+ -ms-transform: translate3d(0, $value, 0) !important;
61
+ transform: translate3d(0, $value, 0) !important;
62
+ }
63
+
64
+ @mixin transform-translate-3d-0($value){
65
+ -webkit-transform: translate3d(0, $value, 0) !important;
66
+ -moz-transform: translate3d(0, $value, 0) !important;
67
+ -o-transform: translate3d(0, $value, 0) !important;
68
+ -ms-transform: translate3d(0, $value, 0) !important;
69
+ transform: translate3d(0, $value, 0) !important;
70
+ }
71
+
72
+ @mixin transform-origin($coordinates){
73
+ -webkit-transform-origin: $coordinates;
74
+ -moz-transform-origin: $coordinates;
75
+ -o-transform-origin: $coordinates;
76
+ -ms-transform-origin: $coordinates;
77
+ transform-origin: $coordinates;
78
+ }
79
+
80
+ @mixin icon-gradient ($top-color, $bottom-color){
81
+ background: $top-color;
82
+ background: -moz-linear-gradient(top, $top-color 0%, $bottom-color 100%);
83
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$top-color), color-stop(100%,$bottom-color));
84
+ background: -webkit-linear-gradient(top, $top-color 0%,$bottom-color 100%);
85
+ background: -o-linear-gradient(top, $top-color 0%,$bottom-color 100%);
86
+ background: -ms-linear-gradient(top, $top-color 0%,$bottom-color 100%);
87
+ background: linear-gradient(to bottom, $top-color 0%,$bottom-color 100%);
88
+ background-size: 150% 150%;
89
+ }
90
+
91
+ @mixin radial-gradient($extern-color, $center-color){
92
+ background: $extern-color;
93
+ background: -moz-radial-gradient(center, ellipse cover, $center-color 0%, $extern-color 100%); /* FF3.6+ */
94
+ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,$center-color), color-stop(100%,$extern-color)); /* Chrome,Safari4+ */
95
+ background: -webkit-radial-gradient(center, ellipse cover, $center-color 0%,$extern-color 100%); /* Chrome10+,Safari5.1+ */
96
+ background: -o-radial-gradient(center, ellipse cover, $center-color 0%,$extern-color 100%); /* Opera 12+ */
97
+ background: -ms-radial-gradient(center, ellipse cover, $center-color 0%,$extern-color 100%); /* IE10+ */
98
+ background: radial-gradient(ellipse at center, $center-color 0%,$extern-color 100%); /* W3C */
99
+ background-size: 550% 450%;
100
+ }
101
+
102
+ @mixin vertical-align {
103
+ position: relative;
104
+ top: 50%;
105
+ -webkit-transform: translateY(-50%);
106
+ -ms-transform: translateY(-50%);
107
+ transform: translateY(-50%);
108
+ }
109
+
110
+ @mixin rotate-180(){
111
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
112
+ -webkit-transform: rotate(180deg);
113
+ -ms-transform: rotate(180deg);
114
+ transform: rotate(180deg);
115
+ }
116
+
117
+ @mixin bar-animation($type){
118
+ -webkit-animation: $type 500ms linear 0s;
119
+ -moz-animation: $type 500ms linear 0s;
120
+ animation: $type 500ms 0s;
121
+ -webkit-animation-fill-mode: forwards;
122
+ -moz-animation-fill-mode: forwards;
123
+ animation-fill-mode: forwards;
124
+ }
125
+
126
+ @mixin topbar-x-rotation(){
127
+ @keyframes topbar-x {
128
+ 0% {top: 0px; transform: rotate(0deg); }
129
+ 45% {top: 6px; transform: rotate(145deg); }
130
+ 75% {transform: rotate(130deg); }
131
+ 100% {transform: rotate(135deg); }
132
+ }
133
+ @-webkit-keyframes topbar-x {
134
+ 0% {top: 0px; -webkit-transform: rotate(0deg); }
135
+ 45% {top: 6px; -webkit-transform: rotate(145deg); }
136
+ 75% {-webkit-transform: rotate(130deg); }
137
+ 100% { -webkit-transform: rotate(135deg); }
138
+ }
139
+ @-moz-keyframes topbar-x {
140
+ 0% {top: 0px; -moz-transform: rotate(0deg); }
141
+ 45% {top: 6px; -moz-transform: rotate(145deg); }
142
+ 75% {-moz-transform: rotate(130deg); }
143
+ 100% { -moz-transform: rotate(135deg); }
144
+ }
145
+ }
146
+
147
+ @mixin topbar-back-rotation(){
148
+ @keyframes topbar-back {
149
+ 0% { top: 6px; transform: rotate(135deg); }
150
+ 45% { transform: rotate(-10deg); }
151
+ 75% { transform: rotate(5deg); }
152
+ 100% { top: 0px; transform: rotate(0); }
153
+ }
154
+
155
+ @-webkit-keyframes topbar-back {
156
+ 0% { top: 6px; -webkit-transform: rotate(135deg); }
157
+ 45% { -webkit-transform: rotate(-10deg); }
158
+ 75% { -webkit-transform: rotate(5deg); }
159
+ 100% { top: 0px; -webkit-transform: rotate(0); }
160
+ }
161
+
162
+ @-moz-keyframes topbar-back {
163
+ 0% { top: 6px; -moz-transform: rotate(135deg); }
164
+ 45% { -moz-transform: rotate(-10deg); }
165
+ 75% { -moz-transform: rotate(5deg); }
166
+ 100% { top: 0px; -moz-transform: rotate(0); }
167
+ }
168
+ }
169
+
170
+ @mixin bottombar-x-rotation(){
171
+ @keyframes bottombar-x {
172
+ 0% {bottom: 0px; transform: rotate(0deg);}
173
+ 45% {bottom: 6px; transform: rotate(-145deg);}
174
+ 75% {transform: rotate(-130deg);}
175
+ 100% {transform: rotate(-135deg);}
176
+ }
177
+ @-webkit-keyframes bottombar-x {
178
+ 0% {bottom: 0px; -webkit-transform: rotate(0deg);}
179
+ 45% {bottom: 6px; -webkit-transform: rotate(-145deg);}
180
+ 75% {-webkit-transform: rotate(-130deg);}
181
+ 100% {-webkit-transform: rotate(-135deg);}
182
+ }
183
+ @-moz-keyframes bottombar-x {
184
+ 0% {bottom: 0px; -moz-transform: rotate(0deg);}
185
+ 45% {bottom: 6px; -moz-transform: rotate(-145deg);}
186
+ 75% {-moz-transform: rotate(-130deg);}
187
+ 100% {-moz-transform: rotate(-135deg);}
188
+ }
189
+ }
190
+
191
+ @mixin bottombar-back-rotation{
192
+ @keyframes bottombar-back {
193
+ 0% { bottom: 6px;transform: rotate(-135deg);}
194
+ 45% { transform: rotate(10deg);}
195
+ 75% { transform: rotate(-5deg);}
196
+ 100% { bottom: 0px;transform: rotate(0);}
197
+ }
198
+ @-webkit-keyframes bottombar-back {
199
+ 0% {bottom: 6px;-webkit-transform: rotate(-135deg);}
200
+ 45% {-webkit-transform: rotate(10deg);}
201
+ 75% {-webkit-transform: rotate(-5deg);}
202
+ 100% {bottom: 0px;-webkit-transform: rotate(0);}
203
+ }
204
+ @-moz-keyframes bottombar-back {
205
+ 0% {bottom: 6px;-moz-transform: rotate(-135deg);}
206
+ 45% {-moz-transform: rotate(10deg);}
207
+ 75% {-moz-transform: rotate(-5deg);}
208
+ 100% {bottom: 0px;-moz-transform: rotate(0);}
209
+ }
210
+
211
+ }