marketplacepos 2.5.1 → 2.5.3

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 (48) hide show
  1. package/Marketplace/117.a61ce25559effbf9.js +1 -0
  2. package/Marketplace/397.9488b7c2d948b1be.js +1 -0
  3. package/Marketplace/index.html +2 -2
  4. package/Marketplace/{main.82c99b5c79f1fd9c.js → main.bfa1a15e37319db5.js} +1 -1
  5. package/Marketplace/{runtime.de37a7d67f4eed9c.js → runtime.faf1bb5d35d0f053.js} +1 -1
  6. package/package.json +1 -1
  7. package/Marketplace/117.4367f8afe2698e0a.js +0 -1
  8. package/Marketplace/397.5ae6b1775c69cdc2.js +0 -1
  9. package/Marketplace/assets/bootstrap_light.scss +0 -1142
  10. package/Marketplace/assets/floatingLabel.scss +0 -187
  11. package/Marketplace/assets/lbd/_alerts.scss +0 -90
  12. package/Marketplace/assets/lbd/_bootstrap-switch.scss +0 -128
  13. package/Marketplace/assets/lbd/_buttons.scss +0 -132
  14. package/Marketplace/assets/lbd/_cards.scss +0 -256
  15. package/Marketplace/assets/lbd/_chartist.scss +0 -230
  16. package/Marketplace/assets/lbd/_checkbox-radio-switch.scss +0 -140
  17. package/Marketplace/assets/lbd/_dropdown.scss +0 -137
  18. package/Marketplace/assets/lbd/_footers.scss +0 -75
  19. package/Marketplace/assets/lbd/_inputs.scss +0 -141
  20. package/Marketplace/assets/lbd/_misc.scss +0 -120
  21. package/Marketplace/assets/lbd/_mixins.scss +0 -8
  22. package/Marketplace/assets/lbd/_navbars.scss +0 -235
  23. package/Marketplace/assets/lbd/_partial-nucleo-icons.scss +0 -574
  24. package/Marketplace/assets/lbd/_responsive.scss +0 -482
  25. package/Marketplace/assets/lbd/_sidebar-and-main-panel.scss +0 -333
  26. package/Marketplace/assets/lbd/_tables.scss +0 -88
  27. package/Marketplace/assets/lbd/_typography.scss +0 -91
  28. package/Marketplace/assets/lbd/_variables.scss +0 -272
  29. package/Marketplace/assets/lbd/mixins/_buttons.scss +0 -70
  30. package/Marketplace/assets/lbd/mixins/_cards.scss +0 -8
  31. package/Marketplace/assets/lbd/mixins/_chartist.scss +0 -87
  32. package/Marketplace/assets/lbd/mixins/_icons.scss +0 -13
  33. package/Marketplace/assets/lbd/mixins/_inputs.scss +0 -1
  34. package/Marketplace/assets/lbd/mixins/_labels.scss +0 -21
  35. package/Marketplace/assets/lbd/mixins/_morphing-buttons.scss +0 -34
  36. package/Marketplace/assets/lbd/mixins/_navbars.scss +0 -11
  37. package/Marketplace/assets/lbd/mixins/_social-buttons.scss +0 -43
  38. package/Marketplace/assets/lbd/mixins/_tabs.scss +0 -4
  39. package/Marketplace/assets/lbd/mixins/_transparency.scss +0 -20
  40. package/Marketplace/assets/lbd/mixins/_vendor-prefixes.scss +0 -211
  41. package/Marketplace/assets/lbd/plugins/_animate.scss +0 -227
  42. package/Marketplace/assets/lbd/plugins/_datetime-picker.scss +0 -463
  43. package/Marketplace/assets/light-bootstrap-dashboard.scss +0 -32
  44. package/Marketplace/assets/pos_variable.scss +0 -83
  45. package/Marketplace/assets/sitemap.json +0 -40
  46. package/Marketplace/assets/stepper-custom.scss +0 -33
  47. package/Marketplace/assets/variables-custom.scss +0 -191
  48. package/Marketplace/assets/version-adjustment-v5.scss +0 -287
@@ -1,211 +0,0 @@
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,227 +0,0 @@
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
- // This file was modified by Creative Tim to keep only the animation that we need for Bootstrap Notify
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
-
28
-
29
-
30
-
31
-
32
-
33
- @charset "UTF-8";
34
-
35
- /*!
36
- Animate.css - http://daneden.me/animate
37
- Licensed under the MIT license - http://opensource.org/licenses/MIT
38
-
39
- Copyright (c) 2015 Daniel Eden
40
- */
41
-
42
- .animated {
43
- -webkit-animation-duration: 1s;
44
- animation-duration: 1s;
45
- -webkit-animation-fill-mode: both;
46
- animation-fill-mode: both;
47
- }
48
-
49
- .animated.infinite {
50
- -webkit-animation-iteration-count: infinite;
51
- animation-iteration-count: infinite;
52
- }
53
-
54
- .animated.hinge {
55
- -webkit-animation-duration: 2s;
56
- animation-duration: 2s;
57
- }
58
-
59
- .animated.bounceIn,
60
- .animated.bounceOut {
61
- -webkit-animation-duration: .75s;
62
- animation-duration: .75s;
63
- }
64
-
65
- .animated.flipOutX,
66
- .animated.flipOutY {
67
- -webkit-animation-duration: .75s;
68
- animation-duration: .75s;
69
- }
70
-
71
- @-webkit-keyframes shake {
72
- from, to {
73
- -webkit-transform: translate3d(0, 0, 0);
74
- transform: translate3d(0, 0, 0);
75
- }
76
-
77
- 10%, 30%, 50%, 70%, 90% {
78
- -webkit-transform: translate3d(-10px, 0, 0);
79
- transform: translate3d(-10px, 0, 0);
80
- }
81
-
82
- 20%, 40%, 60%, 80% {
83
- -webkit-transform: translate3d(10px, 0, 0);
84
- transform: translate3d(10px, 0, 0);
85
- }
86
- }
87
-
88
- @keyframes shake {
89
- from, to {
90
- -webkit-transform: translate3d(0, 0, 0);
91
- transform: translate3d(0, 0, 0);
92
- }
93
-
94
- 10%, 30%, 50%, 70%, 90% {
95
- -webkit-transform: translate3d(-10px, 0, 0);
96
- transform: translate3d(-10px, 0, 0);
97
- }
98
-
99
- 20%, 40%, 60%, 80% {
100
- -webkit-transform: translate3d(10px, 0, 0);
101
- transform: translate3d(10px, 0, 0);
102
- }
103
- }
104
-
105
- .shake {
106
- -webkit-animation-name: shake;
107
- animation-name: shake;
108
- }
109
-
110
-
111
-
112
- @-webkit-keyframes fadeInDown {
113
- from {
114
- opacity: 0;
115
- -webkit-transform: translate3d(0, -100%, 0);
116
- transform: translate3d(0, -100%, 0);
117
- }
118
-
119
- to {
120
- opacity: 1;
121
- -webkit-transform: none;
122
- transform: none;
123
- }
124
- }
125
-
126
- @keyframes fadeInDown {
127
- from {
128
- opacity: 0;
129
- -webkit-transform: translate3d(0, -100%, 0);
130
- transform: translate3d(0, -100%, 0);
131
- }
132
-
133
- to {
134
- opacity: 1;
135
- -webkit-transform: none;
136
- transform: none;
137
- }
138
- }
139
-
140
- .fadeInDown {
141
- -webkit-animation-name: fadeInDown;
142
- animation-name: fadeInDown;
143
- }
144
-
145
-
146
- @-webkit-keyframes fadeOut {
147
- from {
148
- opacity: 1;
149
- }
150
-
151
- to {
152
- opacity: 0;
153
- }
154
- }
155
-
156
- @keyframes fadeOut {
157
- from {
158
- opacity: 1;
159
- }
160
-
161
- to {
162
- opacity: 0;
163
- }
164
- }
165
-
166
- .fadeOut {
167
- -webkit-animation-name: fadeOut;
168
- animation-name: fadeOut;
169
- }
170
-
171
- @-webkit-keyframes fadeOutDown {
172
- from {
173
- opacity: 1;
174
- }
175
-
176
- to {
177
- opacity: 0;
178
- -webkit-transform: translate3d(0, 100%, 0);
179
- transform: translate3d(0, 100%, 0);
180
- }
181
- }
182
-
183
- @keyframes fadeOutDown {
184
- from {
185
- opacity: 1;
186
- }
187
-
188
- to {
189
- opacity: 0;
190
- -webkit-transform: translate3d(0, 100%, 0);
191
- transform: translate3d(0, 100%, 0);
192
- }
193
- }
194
-
195
- .fadeOutDown {
196
- -webkit-animation-name: fadeOutDown;
197
- animation-name: fadeOutDown;
198
- }
199
-
200
- @-webkit-keyframes fadeOutUp {
201
- from {
202
- opacity: 1;
203
- }
204
-
205
- to {
206
- opacity: 0;
207
- -webkit-transform: translate3d(0, -100%, 0);
208
- transform: translate3d(0, -100%, 0);
209
- }
210
- }
211
-
212
- @keyframes fadeOutUp {
213
- from {
214
- opacity: 1;
215
- }
216
-
217
- to {
218
- opacity: 0;
219
- -webkit-transform: translate3d(0, -100%, 0);
220
- transform: translate3d(0, -100%, 0);
221
- }
222
- }
223
-
224
- .fadeOutUp {
225
- -webkit-animation-name: fadeOutUp;
226
- animation-name: fadeOutUp;
227
- }