marketplacepos 2.5.1 → 2.5.2

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 (45) hide show
  1. package/Marketplace/397.9488b7c2d948b1be.js +1 -0
  2. package/Marketplace/assets/bootstrap_light.scss +1142 -1142
  3. package/Marketplace/assets/floatingLabel.scss +187 -187
  4. package/Marketplace/assets/lbd/_alerts.scss +90 -90
  5. package/Marketplace/assets/lbd/_bootstrap-switch.scss +128 -128
  6. package/Marketplace/assets/lbd/_buttons.scss +132 -132
  7. package/Marketplace/assets/lbd/_cards.scss +256 -256
  8. package/Marketplace/assets/lbd/_chartist.scss +229 -229
  9. package/Marketplace/assets/lbd/_checkbox-radio-switch.scss +140 -140
  10. package/Marketplace/assets/lbd/_dropdown.scss +137 -137
  11. package/Marketplace/assets/lbd/_footers.scss +75 -75
  12. package/Marketplace/assets/lbd/_inputs.scss +141 -141
  13. package/Marketplace/assets/lbd/_misc.scss +120 -120
  14. package/Marketplace/assets/lbd/_mixins.scss +8 -8
  15. package/Marketplace/assets/lbd/_navbars.scss +235 -235
  16. package/Marketplace/assets/lbd/_partial-nucleo-icons.scss +574 -574
  17. package/Marketplace/assets/lbd/_responsive.scss +482 -482
  18. package/Marketplace/assets/lbd/_sidebar-and-main-panel.scss +333 -333
  19. package/Marketplace/assets/lbd/_tables.scss +88 -88
  20. package/Marketplace/assets/lbd/_typography.scss +91 -91
  21. package/Marketplace/assets/lbd/_variables.scss +272 -272
  22. package/Marketplace/assets/lbd/mixins/_buttons.scss +69 -69
  23. package/Marketplace/assets/lbd/mixins/_cards.scss +8 -8
  24. package/Marketplace/assets/lbd/mixins/_chartist.scss +87 -87
  25. package/Marketplace/assets/lbd/mixins/_icons.scss +12 -12
  26. package/Marketplace/assets/lbd/mixins/_inputs.scss +1 -1
  27. package/Marketplace/assets/lbd/mixins/_labels.scss +20 -20
  28. package/Marketplace/assets/lbd/mixins/_morphing-buttons.scss +33 -33
  29. package/Marketplace/assets/lbd/mixins/_navbars.scss +11 -11
  30. package/Marketplace/assets/lbd/mixins/_social-buttons.scss +42 -42
  31. package/Marketplace/assets/lbd/mixins/_tabs.scss +3 -3
  32. package/Marketplace/assets/lbd/mixins/_transparency.scss +19 -19
  33. package/Marketplace/assets/lbd/mixins/_vendor-prefixes.scss +211 -211
  34. package/Marketplace/assets/lbd/plugins/_animate.scss +227 -227
  35. package/Marketplace/assets/lbd/plugins/_datetime-picker.scss +463 -463
  36. package/Marketplace/assets/light-bootstrap-dashboard.scss +32 -32
  37. package/Marketplace/assets/pos_variable.scss +83 -83
  38. package/Marketplace/assets/sitemap.json +39 -39
  39. package/Marketplace/assets/stepper-custom.scss +32 -32
  40. package/Marketplace/assets/variables-custom.scss +190 -190
  41. package/Marketplace/assets/version-adjustment-v5.scss +286 -286
  42. package/Marketplace/index.html +2 -2
  43. package/Marketplace/{runtime.de37a7d67f4eed9c.js → runtime.6d4d6c7e2c139e6c.js} +1 -1
  44. package/package.json +1 -1
  45. package/Marketplace/397.5ae6b1775c69cdc2.js +0 -1
@@ -1,227 +1,227 @@
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
- }
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
+ }