@kizmann/nano-ui 1.0.1 → 1.0.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 (82) hide show
  1. package/README.md +1 -114
  2. package/dist/nano-ui.css +1 -1
  3. package/dist/nano-ui.js +2 -2
  4. package/dist/nano-ui.js.map +1 -1
  5. package/dist/themes/dark.css +1 -1
  6. package/dist/themes/light.css +1 -1
  7. package/package.json +6 -5
  8. package/src/config/src/builder/builder.js +10 -10
  9. package/src/config/src/builder/prototypes/button/n-button-group.js +3 -3
  10. package/src/config/src/builder/prototypes/button/n-button.js +8 -8
  11. package/src/config/src/builder/prototypes/cascader/n-cascader.js +3 -3
  12. package/src/config/src/builder/prototypes/checkbox/n-checkbox-group.js +3 -3
  13. package/src/config/src/builder/prototypes/checkbox/n-checkbox.js +3 -3
  14. package/src/config/src/builder/prototypes/confirm/n-confirm.js +3 -3
  15. package/src/config/src/builder/prototypes/datepicker/n-datepicker.js +3 -3
  16. package/src/config/src/builder/prototypes/datetimepicker/n-datetimepicker.js +3 -3
  17. package/src/config/src/builder/prototypes/durationpicker/n-durationpicker.js +3 -3
  18. package/src/config/src/builder/prototypes/empty/n-empty.js +3 -3
  19. package/src/config/src/builder/prototypes/form/n-form-group.js +3 -3
  20. package/src/config/src/builder/prototypes/form/n-form-item.js +3 -3
  21. package/src/config/src/builder/prototypes/form/n-form.js +3 -3
  22. package/src/config/src/builder/prototypes/html/div.js +3 -3
  23. package/src/config/src/builder/prototypes/html/nano.js +3 -3
  24. package/src/config/src/builder/prototypes/html/span.js +3 -3
  25. package/src/config/src/builder/prototypes/info/n-info-column.js +3 -3
  26. package/src/config/src/builder/prototypes/info/n-info.js +3 -3
  27. package/src/config/src/builder/prototypes/input/n-input.js +7 -7
  28. package/src/config/src/builder/prototypes/input-number/n-input-number.js +7 -7
  29. package/src/config/src/builder/prototypes/loader/n-loader.js +3 -3
  30. package/src/config/src/builder/prototypes/modal/n-modal.js +3 -3
  31. package/src/config/src/builder/prototypes/popover/n-popover-group.js +3 -3
  32. package/src/config/src/builder/prototypes/popover/n-popover-item.js +3 -3
  33. package/src/config/src/builder/prototypes/popover/n-popover.js +3 -3
  34. package/src/config/src/builder/prototypes/radio/n-radio-group.js +3 -3
  35. package/src/config/src/builder/prototypes/radio/n-radio.js +3 -3
  36. package/src/config/src/builder/prototypes/rating/n-rating.js +3 -3
  37. package/src/config/src/builder/prototypes/select/n-select.js +3 -3
  38. package/src/config/src/builder/prototypes/slider/n-slider.js +3 -3
  39. package/src/config/src/builder/prototypes/switch/n-switch.js +7 -7
  40. package/src/config/src/builder/prototypes/table/n-table-column.js +3 -3
  41. package/src/config/src/builder/prototypes/table/n-table.js +3 -3
  42. package/src/config/src/builder/prototypes/tabs/n-tabs-item.js +3 -3
  43. package/src/config/src/builder/prototypes/tabs/n-tabs.js +3 -3
  44. package/src/config/src/builder/prototypes/tags/n-tags-item.js +3 -3
  45. package/src/config/src/builder/prototypes/tags/n-tags.js +3 -3
  46. package/src/config/src/builder/prototypes/textarea/n-textarea.js +3 -3
  47. package/src/config/src/builder/prototypes/timepicker/n-timepicker.js +3 -3
  48. package/src/config/src/builder/prototypes/transfer/n-transfer.js +3 -3
  49. package/src/draggable/src/draggrid/draggrid.js +2 -2
  50. package/src/draggable/src/draggrid-item/draggrid-item.js +1 -1
  51. package/src/draggable/src/draghandler/draghandler.js +14 -14
  52. package/src/draggable/src/draglist/draglist.js +2 -2
  53. package/src/draggable/src/draglist-item/draglist-item.js +1 -1
  54. package/src/draggable/src/dropzone/dropzone.js +1 -1
  55. package/src/drawer/src/drawer/drawer.js +8 -8
  56. package/src/drawer/src/drawer/drawer.scss +8 -2
  57. package/src/form/src/form-item/form-item.scss +6 -1
  58. package/src/index.js +13 -13
  59. package/src/map/src/map/map.scss +1 -0
  60. package/src/map/src/map-marker/map-marker.js +1 -1
  61. package/src/preview/src/preview/preview.js +2 -2
  62. package/src/preview/src/preview-video/preview-video.js +4 -4
  63. package/src/resizer/src/resizer/resizer.js +6 -4
  64. package/src/root/vars.scss +1 -1
  65. package/src/scrollbar/src/scrollbar/scrollbar.next.js +1 -1
  66. package/src/scrollbar/src/scrollbar/scrollbar.scss +3 -2
  67. package/src/select/src/select/select.js +1 -1
  68. package/src/slider/src/slider/slider.js +5 -0
  69. package/src/slider/src/slider/slider.scss +4 -0
  70. package/src/table/src/table/table.scss +6 -2
  71. package/src/table/src/table-column/table-column.scss +0 -1
  72. package/src/virtualscroller/src/virtualscroller/virtualscroller.beta.js +1 -1
  73. package/themes/macos/button/src/button/button.scss +9 -0
  74. package/themes/macos/radio/src/radio/radio.scss +1 -1
  75. package/themes/macos/root/vars-dark.scss +1 -1
  76. package/themes/macos/root/vars-light.scss +1 -1
  77. package/themes/macos/root/vars.scss +0 -1
  78. package/themes/macos/scrollbar/src/scrollbar/scrollbar.scss +1 -1
  79. package/themes/macos/select/src/select/select.scss +1 -1
  80. package/themes/macos/slider/src/slider/slider.scss +23 -3
  81. package/themes/macos/tags/src/tags-item/tags-item.scss +4 -2
  82. package/types/index.d.ts +44 -0
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NDurationpicker'] = Locale.trans('NDurationpicker');
3
+ window.NanoBuilderTypes['NDurationpicker'] = Locale.trans('NDurationpicker');
4
4
 
5
- global.NanoBuilderIndexies['NDurationpicker'] = {
5
+ window.NanoBuilderIndexies['NDurationpicker'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NDurationpicker']['props'] = {
9
+ window.NanoBuilderIndexies['NDurationpicker']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NEmpty'] = Locale.trans('NEmpty');
3
+ window.NanoBuilderTypes['NEmpty'] = Locale.trans('NEmpty');
4
4
 
5
- global.NanoBuilderIndexies['NEmpty'] = {
5
+ window.NanoBuilderIndexies['NEmpty'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NEmpty']['props'] = {
9
+ window.NanoBuilderIndexies['NEmpty']['props'] = {
10
10
  //
11
11
  };
@@ -1,12 +1,12 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NFormGroup'] = Locale.trans('NFormGroup');
3
+ window.NanoBuilderTypes['NFormGroup'] = Locale.trans('NFormGroup');
4
4
 
5
- global.NanoBuilderIndexies['NFormGroup'] = {
5
+ window.NanoBuilderIndexies['NFormGroup'] = {
6
6
  childs: true, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NFormGroup']['props'] = {
9
+ window.NanoBuilderIndexies['NFormGroup']['props'] = {
10
10
  label: {
11
11
  for: ['binds', 'props'], type: 'String'
12
12
  }
@@ -1,12 +1,12 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NFormItem'] = Locale.trans('NFormItem');
3
+ window.NanoBuilderTypes['NFormItem'] = Locale.trans('NFormItem');
4
4
 
5
- global.NanoBuilderIndexies['NFormItem'] = {
5
+ window.NanoBuilderIndexies['NFormItem'] = {
6
6
  childs: true, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NFormItem']['props'] = {
9
+ window.NanoBuilderIndexies['NFormItem']['props'] = {
10
10
  label: {
11
11
  for: ['binds', 'props'], type: 'String'
12
12
  }
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NForm'] = Locale.trans('NForm');
3
+ window.NanoBuilderTypes['NForm'] = Locale.trans('NForm');
4
4
 
5
- global.NanoBuilderIndexies['NForm'] = {
5
+ window.NanoBuilderIndexies['NForm'] = {
6
6
  childs: true, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NForm']['props'] = {
9
+ window.NanoBuilderIndexies['NForm']['props'] = {
10
10
  //
11
11
  };
@@ -1,12 +1,12 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['div'] = Locale.trans('div');
3
+ window.NanoBuilderTypes['div'] = Locale.trans('div');
4
4
 
5
- global.NanoBuilderIndexies['div'] = {
5
+ window.NanoBuilderIndexies['div'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['div']['props'] = {
9
+ window.NanoBuilderIndexies['div']['props'] = {
10
10
  classList: {
11
11
  type: 'String'
12
12
  },
@@ -1,11 +1,11 @@
1
- global.NanoPrototypeSizes = [
1
+ window.NanoPrototypeSizes = [
2
2
  'xs', 'sm', 'md', 'lg'
3
3
  ];
4
4
 
5
- global.NanoPrototypeTypes = [
5
+ window.NanoPrototypeTypes = [
6
6
  'primary', 'secondary', 'success', 'warning', 'danger', 'info'
7
7
  ];
8
8
 
9
- global.NanoPrototypeBools = [
9
+ window.NanoPrototypeBools = [
10
10
  'true', 'false'
11
11
  ];
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['span'] = Locale.trans('span');
3
+ window.NanoBuilderTypes['span'] = Locale.trans('span');
4
4
 
5
- global.NanoBuilderIndexies['span'] = {
5
+ window.NanoBuilderIndexies['span'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['span']['props'] = {
9
+ window.NanoBuilderIndexies['span']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NInfoColumn'] = Locale.trans('n-info-column');
3
+ window.NanoBuilderTypes['NInfoColumn'] = Locale.trans('n-info-column');
4
4
 
5
- global.NanoBuilderIndexies['NInfoColumn'] = {
5
+ window.NanoBuilderIndexies['NInfoColumn'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NInfoColumn']['props'] = {
9
+ window.NanoBuilderIndexies['NInfoColumn']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NInfo'] = Locale.trans('NInfo');
3
+ window.NanoBuilderTypes['NInfo'] = Locale.trans('NInfo');
4
4
 
5
- global.NanoBuilderIndexies['NInfo'] = {
5
+ window.NanoBuilderIndexies['NInfo'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NInfo']['props'] = {
9
+ window.NanoBuilderIndexies['NInfo']['props'] = {
10
10
  //
11
11
  };
@@ -1,23 +1,23 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NInput'] = Locale.trans('NInput');
3
+ window.NanoBuilderTypes['NInput'] = Locale.trans('NInput');
4
4
 
5
- global.NanoBuilderIndexies['NInput'] = {
5
+ window.NanoBuilderIndexies['NInput'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NInput']['props'] = {
9
+ window.NanoBuilderIndexies['NInput']['props'] = {
10
10
  modelValue: {
11
11
  for: ['binds', 'props'], default: null, type: 'String'
12
12
  },
13
13
  size: {
14
- for: ['binds', 'props'], default: 'md', type: 'String', options: global.NanoPrototypeSizes
14
+ for: ['binds', 'props'], default: 'md', type: 'String', options: window.NanoPrototypeSizes
15
15
  },
16
16
  type: {
17
- for: ['binds', 'props'], default: 'primary', type: 'String', options: global.NanoPrototypeTypes
17
+ for: ['binds', 'props'], default: 'primary', type: 'String', options: window.NanoPrototypeTypes
18
18
  },
19
19
  disabled: {
20
- for: ['binds', 'props'], default: false, type: 'Boolean', options: global.NanoPrototypeBools
20
+ for: ['binds', 'props'], default: false, type: 'Boolean', options: window.NanoPrototypeBools
21
21
  },
22
22
  placeholder: {
23
23
  for: ['binds', 'props'], default: '', type: 'String'
@@ -32,7 +32,7 @@ global.NanoBuilderIndexies['NInput']['props'] = {
32
32
  for: ['binds', 'props'], default: 'before', type: 'String', options: ['before', 'after']
33
33
  },
34
34
  iconDisabled: {
35
- for: ['binds', 'props'], default: null, type: 'Boolean', options: global.NanoPrototypeBools
35
+ for: ['binds', 'props'], default: null, type: 'Boolean', options: window.NanoPrototypeBools
36
36
  },
37
37
  iconClick: {
38
38
  for: ['on'], type: 'String'
@@ -1,12 +1,12 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NInputNumber'] = Locale.trans('NInputNumber');
3
+ window.NanoBuilderTypes['NInputNumber'] = Locale.trans('NInputNumber');
4
4
 
5
- global.NanoBuilderIndexies['NInputNumber'] = {
5
+ window.NanoBuilderIndexies['NInputNumber'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NInputNumber']['props'] = {
9
+ window.NanoBuilderIndexies['NInputNumber']['props'] = {
10
10
  modelValue: {
11
11
  for: ['binds', 'props'], default: null, type: 'Number'
12
12
  },
@@ -14,7 +14,7 @@ global.NanoBuilderIndexies['NInputNumber']['props'] = {
14
14
  for: ['binds', 'props'], default: null, type: 'Number'
15
15
  },
16
16
  clearable: {
17
- for: ['binds', 'props'], default: false, type: 'Boolean', options: global.NanoPrototypeBools
17
+ for: ['binds', 'props'], default: false, type: 'Boolean', options: window.NanoPrototypeBools
18
18
  },
19
19
  min: {
20
20
  for: ['binds', 'props'], default: 0, type: 'Number'
@@ -29,13 +29,13 @@ global.NanoBuilderIndexies['NInputNumber']['props'] = {
29
29
  for: ['binds', 'props'], default: 0, type: 'Number'
30
30
  },
31
31
  size: {
32
- for: ['binds', 'props'], default: 'md', type: 'String', options: global.NanoPrototypeSizes
32
+ for: ['binds', 'props'], default: 'md', type: 'String', options: window.NanoPrototypeSizes
33
33
  },
34
34
  type: {
35
- for: ['binds', 'props'], default: 'primary', type: 'String', options: global.NanoPrototypeTypes
35
+ for: ['binds', 'props'], default: 'primary', type: 'String', options: window.NanoPrototypeTypes
36
36
  },
37
37
  disabled: {
38
- for: ['binds', 'props'], default: false, type: 'Boolean', options: global.NanoPrototypeBools
38
+ for: ['binds', 'props'], default: false, type: 'Boolean', options: window.NanoPrototypeBools
39
39
  },
40
40
  placeholder: {
41
41
  for: ['binds', 'props'], default: '', type: 'String'
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NLoader'] = Locale.trans('NLoader');
3
+ window.NanoBuilderTypes['NLoader'] = Locale.trans('NLoader');
4
4
 
5
- global.NanoBuilderIndexies['NLoader'] = {
5
+ window.NanoBuilderIndexies['NLoader'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NLoader']['props'] = {
9
+ window.NanoBuilderIndexies['NLoader']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NModal'] = Locale.trans('NModal');
3
+ window.NanoBuilderTypes['NModal'] = Locale.trans('NModal');
4
4
 
5
- global.NanoBuilderIndexies['NModal'] = {
5
+ window.NanoBuilderIndexies['NModal'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NModal']['props'] = {
9
+ window.NanoBuilderIndexies['NModal']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NPopoverGroup'] = Locale.trans('n-popover-group');
3
+ window.NanoBuilderTypes['NPopoverGroup'] = Locale.trans('n-popover-group');
4
4
 
5
- global.NanoBuilderIndexies['NPopoverGroup'] = {
5
+ window.NanoBuilderIndexies['NPopoverGroup'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NPopoverGroup']['props'] = {
9
+ window.NanoBuilderIndexies['NPopoverGroup']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NPopoverItem'] = Locale.trans('n-popover-item');
3
+ window.NanoBuilderTypes['NPopoverItem'] = Locale.trans('n-popover-item');
4
4
 
5
- global.NanoBuilderIndexies['NPopoverItem'] = {
5
+ window.NanoBuilderIndexies['NPopoverItem'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NPopoverItem']['props'] = {
9
+ window.NanoBuilderIndexies['NPopoverItem']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NPopover'] = Locale.trans('n-popover');
3
+ window.NanoBuilderTypes['NPopover'] = Locale.trans('n-popover');
4
4
 
5
- global.NanoBuilderIndexies['NPopover'] = {
5
+ window.NanoBuilderIndexies['NPopover'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NPopover']['props'] = {
9
+ window.NanoBuilderIndexies['NPopover']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NRadioGroup'] = Locale.trans('NRadioGroup');
3
+ window.NanoBuilderTypes['NRadioGroup'] = Locale.trans('NRadioGroup');
4
4
 
5
- global.NanoBuilderIndexies['NRadioGroup'] = {
5
+ window.NanoBuilderIndexies['NRadioGroup'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NRadioGroup']['props'] = {
9
+ window.NanoBuilderIndexies['NRadioGroup']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NRadio'] = Locale.trans('NRadio');
3
+ window.NanoBuilderTypes['NRadio'] = Locale.trans('NRadio');
4
4
 
5
- global.NanoBuilderIndexies['NRadio'] = {
5
+ window.NanoBuilderIndexies['NRadio'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NRadio']['props'] = {
9
+ window.NanoBuilderIndexies['NRadio']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NRating'] = Locale.trans('NRating');
3
+ window.NanoBuilderTypes['NRating'] = Locale.trans('NRating');
4
4
 
5
- global.NanoBuilderIndexies['NRating'] = {
5
+ window.NanoBuilderIndexies['NRating'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NRating']['props'] = {
9
+ window.NanoBuilderIndexies['NRating']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NSelect'] = Locale.trans('NSelect');
3
+ window.NanoBuilderTypes['NSelect'] = Locale.trans('NSelect');
4
4
 
5
- global.NanoBuilderIndexies['NSelect'] = {
5
+ window.NanoBuilderIndexies['NSelect'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NSelect']['props'] = {
9
+ window.NanoBuilderIndexies['NSelect']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NSlider'] = Locale.trans('NSlider');
3
+ window.NanoBuilderTypes['NSlider'] = Locale.trans('NSlider');
4
4
 
5
- global.NanoBuilderIndexies['NSlider'] = {
5
+ window.NanoBuilderIndexies['NSlider'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NSlider']['props'] = {
9
+ window.NanoBuilderIndexies['NSlider']['props'] = {
10
10
  //
11
11
  };
@@ -1,12 +1,12 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NSwitch'] = Locale.trans('NSwitch');
3
+ window.NanoBuilderTypes['NSwitch'] = Locale.trans('NSwitch');
4
4
 
5
- global.NanoBuilderIndexies['NSwitch'] = {
5
+ window.NanoBuilderIndexies['NSwitch'] = {
6
6
  childs: true, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NSwitch']['props'] = {
9
+ window.NanoBuilderIndexies['NSwitch']['props'] = {
10
10
  modelValue: {
11
11
  for: ['binds', 'props'], type: 'Any'
12
12
  },
@@ -17,15 +17,15 @@ global.NanoBuilderIndexies['NSwitch']['props'] = {
17
17
  for: ['binds', 'props'], type: 'Any'
18
18
  },
19
19
  onType: {
20
- for: ['binds', 'props'], type: 'String', options: global.NanoPrototypeTypes
20
+ for: ['binds', 'props'], type: 'String', options: window.NanoPrototypeTypes
21
21
  },
22
22
  offType: {
23
- for: ['binds', 'props'], type: 'String', options: global.NanoPrototypeTypes
23
+ for: ['binds', 'props'], type: 'String', options: window.NanoPrototypeTypes
24
24
  },
25
25
  size: {
26
- for: ['binds', 'props'], type: 'String', options: global.NanoPrototypeSizes
26
+ for: ['binds', 'props'], type: 'String', options: window.NanoPrototypeSizes
27
27
  },
28
28
  disabled: {
29
- for: ['binds', 'props'], type: 'Boolean', options: global.NanoPrototypeBools
29
+ for: ['binds', 'props'], type: 'Boolean', options: window.NanoPrototypeBools
30
30
  },
31
31
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NTableColumn'] = Locale.trans('NTableColumn');
3
+ window.NanoBuilderTypes['NTableColumn'] = Locale.trans('NTableColumn');
4
4
 
5
- global.NanoBuilderIndexies['NTableColumn'] = {
5
+ window.NanoBuilderIndexies['NTableColumn'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NTableColumn']['props'] = {
9
+ window.NanoBuilderIndexies['NTableColumn']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NTable'] = Locale.trans('NTable');
3
+ window.NanoBuilderTypes['NTable'] = Locale.trans('NTable');
4
4
 
5
- global.NanoBuilderIndexies['NTable'] = {
5
+ window.NanoBuilderIndexies['NTable'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NTable']['props'] = {
9
+ window.NanoBuilderIndexies['NTable']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NTabsItem'] = Locale.trans('NTabsItem');
3
+ window.NanoBuilderTypes['NTabsItem'] = Locale.trans('NTabsItem');
4
4
 
5
- global.NanoBuilderIndexies['NTabsItem'] = {
5
+ window.NanoBuilderIndexies['NTabsItem'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NTabsItem']['props'] = {
9
+ window.NanoBuilderIndexies['NTabsItem']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NTabs'] = Locale.trans('NTabs');
3
+ window.NanoBuilderTypes['NTabs'] = Locale.trans('NTabs');
4
4
 
5
- global.NanoBuilderIndexies['NTabs'] = {
5
+ window.NanoBuilderIndexies['NTabs'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NTabs']['props'] = {
9
+ window.NanoBuilderIndexies['NTabs']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NTagsItem'] = Locale.trans('NTagsItem');
3
+ window.NanoBuilderTypes['NTagsItem'] = Locale.trans('NTagsItem');
4
4
 
5
- global.NanoBuilderIndexies['NTagsItem'] = {
5
+ window.NanoBuilderIndexies['NTagsItem'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NTagsItem']['props'] = {
9
+ window.NanoBuilderIndexies['NTagsItem']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NTags'] = Locale.trans('NTags');
3
+ window.NanoBuilderTypes['NTags'] = Locale.trans('NTags');
4
4
 
5
- global.NanoBuilderIndexies['NTags'] = {
5
+ window.NanoBuilderIndexies['NTags'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NTags']['props'] = {
9
+ window.NanoBuilderIndexies['NTags']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NButton'] = Locale.trans('NButton');
3
+ window.NanoBuilderTypes['NButton'] = Locale.trans('NButton');
4
4
 
5
- global.NanoBuilderIndexies['NButton'] = {
5
+ window.NanoBuilderIndexies['NButton'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NButton']['props'] = {
9
+ window.NanoBuilderIndexies['NButton']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NTimepicker'] = Locale.trans('NTimepicker');
3
+ window.NanoBuilderTypes['NTimepicker'] = Locale.trans('NTimepicker');
4
4
 
5
- global.NanoBuilderIndexies['NTimepicker'] = {
5
+ window.NanoBuilderIndexies['NTimepicker'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NTimepicker']['props'] = {
9
+ window.NanoBuilderIndexies['NTimepicker']['props'] = {
10
10
  //
11
11
  };
@@ -1,11 +1,11 @@
1
1
  import { Locale } from "@kizmann/pico-js";
2
2
 
3
- global.NanoBuilderTypes['NTransfer'] = Locale.trans('NTransfer');
3
+ window.NanoBuilderTypes['NTransfer'] = Locale.trans('NTransfer');
4
4
 
5
- global.NanoBuilderIndexies['NTransfer'] = {
5
+ window.NanoBuilderIndexies['NTransfer'] = {
6
6
  childs: false, props: {}
7
7
  };
8
8
 
9
- global.NanoBuilderIndexies['NTransfer']['props'] = {
9
+ window.NanoBuilderIndexies['NTransfer']['props'] = {
10
10
  //
11
11
  };
@@ -1,7 +1,7 @@
1
1
  import { UUID, Num, Arr, Obj, Dom, Any, Event, Locale } from "@kizmann/pico-js";
2
2
  import NDraghandler from "../draghandler/draghandler";
3
3
 
4
- global.DEBUG_NDLIST = false;
4
+ window.DEBUG_NDLIST = false;
5
5
 
6
6
  export default {
7
7
 
@@ -390,7 +390,7 @@ export default {
390
390
  {
391
391
  this.virtuals = this.drag.reduce(this.items);
392
392
 
393
- if ( global.DEBUG_NDLIST ) {
393
+ if ( window.DEBUG_NDLIST ) {
394
394
  console.log('Total virtual items mounted: ' + this.virtuals.length);
395
395
  }
396
396
  },
@@ -137,7 +137,7 @@ export default {
137
137
  {
138
138
  this.NDraggable.setCurrent(this);
139
139
 
140
- if ( Arr.has(global.keyMods, 91) ) {
140
+ if ( Arr.has(window.keyMods, 91) ) {
141
141
  this.NDraggable.selectItem(this);
142
142
  }
143
143