@iobroker/adapter-react-v5 4.9.0 → 4.9.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.
@@ -1,161 +0,0 @@
1
- "use strict";
2
-
3
- /*
4
- MIT License
5
-
6
- Copyright (c) 2017 sudodoki <smd.deluzion@gmail.com>
7
-
8
- Permission is hereby granted, free of charge, to any person obtaining a copy
9
- of this software and associated documentation files (the "Software"), to deal
10
- in the Software without restriction, including without limitation the rights
11
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
- copies of the Software, and to permit persons to whom the Software is
13
- furnished to do so, subject to the following conditions:
14
-
15
- The above copyright notice and this permission notice shall be included in all
16
- copies or substantial portions of the Software.
17
-
18
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
- SOFTWARE.
25
- */
26
- // https://github.com/sudodoki/toggle-selection/blob/gh-pages/index.js
27
- function deselectCurrent() {
28
- var selection = document.getSelection();
29
- if (!selection.rangeCount) {
30
- return function () {};
31
- }
32
- var active = document.activeElement;
33
- var ranges = [];
34
- for (var i = 0; i < selection.rangeCount; i++) {
35
- ranges.push(selection.getRangeAt(i));
36
- }
37
- switch (active.tagName.toUpperCase()) {
38
- // .toUpperCase handles XHTML
39
- case 'INPUT':
40
- case 'TEXTAREA':
41
- active.blur();
42
- break;
43
- default:
44
- active = null;
45
- break;
46
- }
47
- selection.removeAllRanges();
48
- return function () {
49
- selection.type === 'Caret' && selection.removeAllRanges();
50
- if (!selection.rangeCount) {
51
- ranges.forEach(function (range) {
52
- return selection.addRange(range);
53
- });
54
- }
55
- active && active.focus();
56
- };
57
- }
58
-
59
- // https://github.com/sudodoki/copy-to-clipboard/blob/master/index.js
60
-
61
- var clipboardToIE11Formatting = {
62
- 'text/plain': 'Text',
63
- 'text/html': 'Url',
64
- "default": 'Text'
65
- };
66
- var defaultMessage = 'Copy to clipboard: #{key}, Enter';
67
- function format(message) {
68
- var copyKey = "".concat(/mac os x/i.test(navigator.userAgent) ? '⌘' : 'Ctrl', "+C");
69
- return message.replace(/#{\s*key\s*}/g, copyKey);
70
- }
71
- function copy(text, options) {
72
- var reselectPrevious;
73
- var range;
74
- var selection;
75
- var mark;
76
- var success = false;
77
- if (!options) {
78
- options = {};
79
- }
80
- var debug = options.debug || false;
81
- try {
82
- reselectPrevious = deselectCurrent();
83
- range = document.createRange();
84
- selection = document.getSelection();
85
- mark = document.createElement('span');
86
- mark.textContent = text;
87
- // avoid screen readers from reading out loud the text
88
- mark.ariaHidden = 'true';
89
- // reset user styles for span element
90
- mark.style.all = 'unset';
91
- // prevents scrolling to the end of the page
92
- mark.style.position = 'fixed';
93
- mark.style.top = 0;
94
- mark.style.clip = 'rect(0, 0, 0, 0)';
95
- // used to preserve spaces and line breaks
96
- mark.style.whiteSpace = 'pre';
97
- // do not inherit user-select (it may be `none`)
98
- mark.style.webkitUserSelect = 'text';
99
- mark.style.MozUserSelect = 'text';
100
- mark.style.msUserSelect = 'text';
101
- mark.style.userSelect = 'text';
102
- mark.addEventListener('copy', function (e) {
103
- e.stopPropagation();
104
- if (options.format) {
105
- e.preventDefault();
106
- if (typeof e.clipboardData === 'undefined') {
107
- // IE 11
108
- debug && console.warn('unable to use e.clipboardData');
109
- debug && console.warn('trying IE specific stuff');
110
- window.clipboardData.clearData();
111
- var _format = clipboardToIE11Formatting[options.format] || clipboardToIE11Formatting["default"];
112
- window.clipboardData.setData(_format, text);
113
- } else {
114
- // all other browsers
115
- e.clipboardData.clearData();
116
- e.clipboardData.setData(options.format, text);
117
- }
118
- }
119
- if (options.onCopy) {
120
- e.preventDefault();
121
- options.onCopy(e.clipboardData);
122
- }
123
- });
124
- document.body.appendChild(mark);
125
- range.selectNodeContents(mark);
126
- selection.addRange(range);
127
- var successful = document.execCommand('copy');
128
- if (!successful) {
129
- throw new Error('copy command was unsuccessful');
130
- }
131
- success = true;
132
- } catch (err) {
133
- debug && console.error('unable to copy using execCommand: ', err);
134
- debug && console.warn('trying IE specific stuff');
135
- try {
136
- window.clipboardData.setData(options.format || 'text', text);
137
- options.onCopy && options.onCopy(window.clipboardData);
138
- success = true;
139
- } catch (error) {
140
- debug && console.error('unable to copy using clipboardData: ', error);
141
- debug && console.error('falling back to prompt');
142
- var message = format('message' in options ? options.message : defaultMessage);
143
- window.prompt(message, text);
144
- }
145
- } finally {
146
- if (selection) {
147
- if (typeof selection.removeRange === 'function') {
148
- selection.removeRange(range);
149
- } else {
150
- selection.removeAllRanges();
151
- }
152
- }
153
- if (mark) {
154
- document.body.removeChild(mark);
155
- }
156
- reselectPrevious();
157
- }
158
- return success;
159
- }
160
- module.exports = copy;
161
- //# sourceMappingURL=copy-to-clipboard.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"copy-to-clipboard.js","names":["deselectCurrent","selection","document","getSelection","rangeCount","active","activeElement","ranges","i","push","getRangeAt","tagName","toUpperCase","blur","removeAllRanges","type","forEach","range","addRange","focus","clipboardToIE11Formatting","defaultMessage","format","message","copyKey","concat","test","navigator","userAgent","replace","copy","text","options","reselectPrevious","mark","success","debug","createRange","createElement","textContent","ariaHidden","style","all","position","top","clip","whiteSpace","webkitUserSelect","MozUserSelect","msUserSelect","userSelect","addEventListener","e","stopPropagation","preventDefault","clipboardData","console","warn","window","clearData","_format","setData","onCopy","body","appendChild","selectNodeContents","successful","execCommand","Error","err","error","prompt","removeRange","removeChild","module","exports"],"sources":["copy-to-clipboard.js"],"sourcesContent":["/*\nMIT License\n\nCopyright (c) 2017 sudodoki <smd.deluzion@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n */\n// https://github.com/sudodoki/toggle-selection/blob/gh-pages/index.js\nfunction deselectCurrent() {\n const selection = document.getSelection();\n if (!selection.rangeCount) {\n return () => {};\n }\n let active = document.activeElement;\n\n const ranges = [];\n for (let i = 0; i < selection.rangeCount; i++) {\n ranges.push(selection.getRangeAt(i));\n }\n\n switch (active.tagName.toUpperCase()) { // .toUpperCase handles XHTML\n case 'INPUT':\n case 'TEXTAREA':\n active.blur();\n break;\n\n default:\n active = null;\n break;\n }\n\n selection.removeAllRanges();\n return () => {\n selection.type === 'Caret' &&\n selection.removeAllRanges();\n\n if (!selection.rangeCount) {\n ranges.forEach(range => selection.addRange(range));\n }\n\n active && active.focus();\n };\n}\n\n// https://github.com/sudodoki/copy-to-clipboard/blob/master/index.js\n\nconst clipboardToIE11Formatting = {\n 'text/plain': 'Text',\n 'text/html': 'Url',\n default: 'Text',\n};\n\nconst defaultMessage = 'Copy to clipboard: #{key}, Enter';\n\nfunction format(message) {\n const copyKey = `${/mac os x/i.test(navigator.userAgent) ? '⌘' : 'Ctrl'}+C`;\n return message.replace(/#{\\s*key\\s*}/g, copyKey);\n}\n\nfunction copy(text, options) {\n let reselectPrevious;\n let range;\n let selection;\n let mark;\n let success = false;\n if (!options) {\n options = {};\n }\n const debug = options.debug || false;\n try {\n reselectPrevious = deselectCurrent();\n\n range = document.createRange();\n selection = document.getSelection();\n\n mark = document.createElement('span');\n mark.textContent = text;\n // avoid screen readers from reading out loud the text\n mark.ariaHidden = 'true';\n // reset user styles for span element\n mark.style.all = 'unset';\n // prevents scrolling to the end of the page\n mark.style.position = 'fixed';\n mark.style.top = 0;\n mark.style.clip = 'rect(0, 0, 0, 0)';\n // used to preserve spaces and line breaks\n mark.style.whiteSpace = 'pre';\n // do not inherit user-select (it may be `none`)\n mark.style.webkitUserSelect = 'text';\n mark.style.MozUserSelect = 'text';\n mark.style.msUserSelect = 'text';\n mark.style.userSelect = 'text';\n mark.addEventListener('copy', e => {\n e.stopPropagation();\n if (options.format) {\n e.preventDefault();\n if (typeof e.clipboardData === 'undefined') { // IE 11\n debug && console.warn('unable to use e.clipboardData');\n debug && console.warn('trying IE specific stuff');\n window.clipboardData.clearData();\n const _format = clipboardToIE11Formatting[options.format] || clipboardToIE11Formatting.default;\n window.clipboardData.setData(_format, text);\n } else { // all other browsers\n e.clipboardData.clearData();\n e.clipboardData.setData(options.format, text);\n }\n }\n if (options.onCopy) {\n e.preventDefault();\n options.onCopy(e.clipboardData);\n }\n });\n\n document.body.appendChild(mark);\n\n range.selectNodeContents(mark);\n selection.addRange(range);\n\n const successful = document.execCommand('copy');\n if (!successful) {\n throw new Error('copy command was unsuccessful');\n }\n success = true;\n } catch (err) {\n debug && console.error('unable to copy using execCommand: ', err);\n debug && console.warn('trying IE specific stuff');\n try {\n window.clipboardData.setData(options.format || 'text', text);\n options.onCopy && options.onCopy(window.clipboardData);\n success = true;\n } catch (error) {\n debug && console.error('unable to copy using clipboardData: ', error);\n debug && console.error('falling back to prompt');\n const message = format('message' in options ? options.message : defaultMessage);\n window.prompt(message, text);\n }\n } finally {\n if (selection) {\n if (typeof selection.removeRange === 'function') {\n selection.removeRange(range);\n } else {\n selection.removeAllRanges();\n }\n }\n\n if (mark) {\n document.body.removeChild(mark);\n }\n reselectPrevious();\n }\n\n return success;\n}\n\nmodule.exports = copy;\n"],"mappings":"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"}
package/Prompt.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"Prompt.js","names":["printPrompt","prompt","console","log","_default","exports"],"sources":["Prompt.js"],"sourcesContent":["/**\n * Print the ioBroker welcome screen to the developer console.\n */\nfunction printPrompt() {\n const prompt = `\n██╗ ██████╗ ██████╗ ██████╗ ██████╗ ██╗ ██╗███████╗██████╗ \n██║██╔═══██╗██╔══██╗██╔══██╗██╔═══██╗██║ ██╔╝██╔════╝██╔══██╗\n██║██║ ██║██████╔╝██████╔╝██║ ██║█████╔╝ █████╗ ██████╔╝\n██║██║ ██║██╔══██╗██╔══██╗██║ ██║██╔═██╗ ██╔══╝ ██╔══██╗\n██║╚██████╔╝██████╔╝██║ ██║╚██████╔╝██║ ██╗███████╗██║ ██║\n╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝\n`;\n\n console.log(prompt);\n console.log('Nice to see you here! :) Join our dev community here https://github.com/ioBroker/ioBroker or here https://github.com/iobroker-community-adapters');\n console.log('Help us to create open source project with reactJS!');\n console.log('See you :)');\n}\n\nexport default printPrompt;\n"],"mappings":";;;;;;AAAA;AACA;AACA;AACA,SAASA,WAAWA,CAAA,EAAG;EACnB,IAAMC,MAAM,s8DAOf;EAEGC,OAAO,CAACC,GAAG,CAACF,MAAM,CAAC;EACnBC,OAAO,CAACC,GAAG,CAAC,kJAAkJ,CAAC;EAC/JD,OAAO,CAACC,GAAG,CAAC,qDAAqD,CAAC;EAClED,OAAO,CAACC,GAAG,CAAC,YAAY,CAAC;AAC7B;AAAC,IAAAC,QAAA,GAAAC,OAAA,cAEcL,WAAW"}