@topvisor/ui 0.0.34 → 0.0.36

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 (57) hide show
  1. package/.chunks/datepicker-1e725859.amd.js +234 -0
  2. package/.chunks/datepicker-1e725859.amd.js.map +1 -0
  3. package/.chunks/datepicker-ad465c48.es.js +275 -0
  4. package/.chunks/datepicker-ad465c48.es.js.map +1 -0
  5. package/.chunks/{forms-02202302.amd.js → forms-2891e074.amd.js} +3 -3
  6. package/.chunks/forms-2891e074.amd.js.map +1 -0
  7. package/.chunks/{forms-eb00d0c1.es.js → forms-db4cb24d.es.js} +27 -27
  8. package/.chunks/forms-db4cb24d.es.js.map +1 -0
  9. package/.chunks/{popup-6f73b4b2.es.js → popup-0f540839.es.js} +383 -383
  10. package/.chunks/popup-0f540839.es.js.map +1 -0
  11. package/.chunks/popup-e49a9bab.amd.js +341 -0
  12. package/.chunks/popup-e49a9bab.amd.js.map +1 -0
  13. package/README.md +62 -62
  14. package/core/core.amd.js +1 -1
  15. package/core/core.js +1 -1
  16. package/core.css +1 -1
  17. package/forms/forms.amd.js +1 -1
  18. package/forms/forms.js +1 -1
  19. package/forms/helpers.amd.js.map +1 -1
  20. package/forms/helpers.js.map +1 -1
  21. package/forms.css +1 -1
  22. package/formsExt/formsExt.amd.js +2 -2
  23. package/formsExt/formsExt.amd.js.map +1 -1
  24. package/formsExt/formsExt.js +107 -52
  25. package/formsExt/formsExt.js.map +1 -1
  26. package/formsExt.css +1 -1
  27. package/icomoon/demo-files/demo.css +161 -161
  28. package/icomoon/demo-files/demo.js +30 -30
  29. package/icomoon/demo.html +2945 -2945
  30. package/icomoon/fonts/Topvisor-2.svg +232 -232
  31. package/icomoon/style.css +647 -647
  32. package/package.json +19 -19
  33. package/popup/popup.amd.js +1 -1
  34. package/popup/popup.amd.js.map +1 -1
  35. package/popup/popup.js +1 -1
  36. package/popup/popup.js.map +1 -1
  37. package/popup/worker.amd.js +1 -1
  38. package/popup/worker.amd.js.map +1 -1
  39. package/popup/worker.js +2 -2
  40. package/popup/worker.js.map +1 -1
  41. package/tabs/tabs.amd.js +1 -1
  42. package/tabs/tabs.js +1 -1
  43. package/utils/date.amd.js +1 -1
  44. package/utils/date.js +1 -1
  45. package/utils/device.amd.js +1 -1
  46. package/utils/device.js +1 -1
  47. package/utils/dom.amd.js.map +1 -1
  48. package/utils/dom.js.map +1 -1
  49. package/.chunks/datepicker-0b648b9f.es.js +0 -275
  50. package/.chunks/datepicker-0b648b9f.es.js.map +0 -1
  51. package/.chunks/datepicker-0e9a0541.amd.js +0 -234
  52. package/.chunks/datepicker-0e9a0541.amd.js.map +0 -1
  53. package/.chunks/forms-02202302.amd.js.map +0 -1
  54. package/.chunks/forms-eb00d0c1.es.js.map +0 -1
  55. package/.chunks/popup-6f73b4b2.es.js.map +0 -1
  56. package/.chunks/popup-e1f34511.amd.js +0 -341
  57. package/.chunks/popup-e1f34511.amd.js.map +0 -1
@@ -1,30 +1,30 @@
1
- if (!('boxShadow' in document.body.style)) {
2
- document.body.setAttribute('class', 'noBoxShadow');
3
- }
4
-
5
- document.body.addEventListener("click", function(e) {
6
- var target = e.target;
7
- if (target.tagName === "INPUT" &&
8
- target.getAttribute('class').indexOf('liga') === -1) {
9
- target.select();
10
- }
11
- });
12
-
13
- (function() {
14
- var fontSize = document.getElementById('fontSize'),
15
- testDrive = document.getElementById('testDrive'),
16
- testText = document.getElementById('testText');
17
- function updateTest() {
18
- testDrive.innerHTML = testText.value || String.fromCharCode(160);
19
- if (window.icomoonLiga) {
20
- window.icomoonLiga(testDrive);
21
- }
22
- }
23
- function updateSize() {
24
- testDrive.style.fontSize = fontSize.value + 'px';
25
- }
26
- fontSize.addEventListener('change', updateSize, false);
27
- testText.addEventListener('input', updateTest, false);
28
- testText.addEventListener('change', updateTest, false);
29
- updateSize();
30
- }());
1
+ if (!('boxShadow' in document.body.style)) {
2
+ document.body.setAttribute('class', 'noBoxShadow');
3
+ }
4
+
5
+ document.body.addEventListener("click", function(e) {
6
+ var target = e.target;
7
+ if (target.tagName === "INPUT" &&
8
+ target.getAttribute('class').indexOf('liga') === -1) {
9
+ target.select();
10
+ }
11
+ });
12
+
13
+ (function() {
14
+ var fontSize = document.getElementById('fontSize'),
15
+ testDrive = document.getElementById('testDrive'),
16
+ testText = document.getElementById('testText');
17
+ function updateTest() {
18
+ testDrive.innerHTML = testText.value || String.fromCharCode(160);
19
+ if (window.icomoonLiga) {
20
+ window.icomoonLiga(testDrive);
21
+ }
22
+ }
23
+ function updateSize() {
24
+ testDrive.style.fontSize = fontSize.value + 'px';
25
+ }
26
+ fontSize.addEventListener('change', updateSize, false);
27
+ testText.addEventListener('input', updateTest, false);
28
+ testText.addEventListener('change', updateTest, false);
29
+ updateSize();
30
+ }());