@osimatic/helpers-js 1.0.2 → 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.
- package/bank.js +1 -1
- package/contact_details.js +1 -3
- package/count_down.js +1 -1
- package/data_table.js +1 -1
- package/date_time.js +1 -6
- package/details_sub_array.js +1 -1
- package/duration.js +1 -1
- package/file.js +1 -3
- package/flash_message.js +1 -1
- package/form_helper.js +1 -1
- package/google_maps.js +1 -1
- package/import_from_csv.js +1 -1
- package/index.js +26 -69
- package/jwt.js +1 -2
- package/list_box.js +1 -1
- package/location.js +1 -4
- package/media.js +1 -1
- package/network.js +1 -3
- package/package.json +12 -12
- package/social_network.js +1 -1
package/bank.js
CHANGED
package/contact_details.js
CHANGED
package/count_down.js
CHANGED
package/data_table.js
CHANGED
package/date_time.js
CHANGED
|
@@ -543,9 +543,4 @@ class InputPeriod {
|
|
|
543
543
|
|
|
544
544
|
}
|
|
545
545
|
|
|
546
|
-
exports
|
|
547
|
-
exports.TimestampUnix = TimestampUnix;
|
|
548
|
-
exports.SqlDate = SqlDate;
|
|
549
|
-
exports.SqlTime = SqlTime;
|
|
550
|
-
exports.SqlDateTime = SqlDateTime;
|
|
551
|
-
exports.InputPeriod = InputPeriod;
|
|
546
|
+
module.exports = { DateTime, TimestampUnix, SqlDate, SqlTime, SqlDateTime, InputPeriod };
|
package/details_sub_array.js
CHANGED
package/duration.js
CHANGED
package/file.js
CHANGED
package/flash_message.js
CHANGED
package/form_helper.js
CHANGED
package/google_maps.js
CHANGED
package/import_from_csv.js
CHANGED
package/index.js
CHANGED
|
@@ -1,69 +1,26 @@
|
|
|
1
|
-
const
|
|
2
|
-
const
|
|
3
|
-
const
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
const
|
|
13
|
-
const
|
|
14
|
-
const
|
|
15
|
-
const
|
|
16
|
-
const
|
|
17
|
-
const
|
|
18
|
-
const
|
|
19
|
-
|
|
20
|
-
exports
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
exports.PersonName = contactDetails.PersonName;
|
|
29
|
-
exports.Email = contactDetails.Email;
|
|
30
|
-
exports.TelephoneNumber = contactDetails.TelephoneNumber;
|
|
31
|
-
|
|
32
|
-
exports.CountDown = countDown.CountDown;
|
|
33
|
-
|
|
34
|
-
exports.DataTable = dataTable.DataTable;
|
|
35
|
-
|
|
36
|
-
exports.DateTime = dateTime.DateTime;
|
|
37
|
-
exports.TimestampUnix = dateTime.TimestampUnix;
|
|
38
|
-
exports.SqlDate = dateTime.SqlDate;
|
|
39
|
-
exports.SqlTime = dateTime.SqlTime;
|
|
40
|
-
exports.SqlDateTime = dateTime.SqlDateTime;
|
|
41
|
-
exports.InputPeriod = dateTime.InputPeriod;
|
|
42
|
-
|
|
43
|
-
exports.DetailsSubArray = detailsSubArray.DetailsSubArray;
|
|
44
|
-
|
|
45
|
-
exports.Duration = duration.Duration;
|
|
46
|
-
|
|
47
|
-
exports.File = file.File;
|
|
48
|
-
exports.CSV = file.CSV;
|
|
49
|
-
exports.Img = file.Img;
|
|
50
|
-
|
|
51
|
-
exports.FlashMessage = flashMessage.FlashMessage;
|
|
52
|
-
|
|
53
|
-
exports.FormHelper = formHelper.FormHelper;
|
|
54
|
-
|
|
55
|
-
exports.GoogleMap = googleMaps.GoogleMap;
|
|
56
|
-
|
|
57
|
-
exports.ImportFromCsv = importFromCsv.ImportFromCsv;
|
|
58
|
-
|
|
59
|
-
exports.JwtToken = jwt.JwtToken;
|
|
60
|
-
exports.JwtSession = jwt.JwtSession;
|
|
61
|
-
|
|
62
|
-
exports.ListBox = listBox.ListBox;
|
|
63
|
-
|
|
64
|
-
exports.COUNTRIES_LIST = location.COUNTRIES_LIST;
|
|
65
|
-
exports.Country = location.Country;
|
|
66
|
-
exports.PostalAddress = location.PostalAddress;
|
|
67
|
-
exports.Location = location.Location;
|
|
68
|
-
|
|
69
|
-
exports.SocialNetwork = socialNetwork.SocialNetwork;
|
|
1
|
+
const { HTTPRequest, Cookie, UrlAndQueryString } = require('./network.js');
|
|
2
|
+
const { IBAN } = require('./bank.js');
|
|
3
|
+
const { AudioMedia } = require('./media.js');
|
|
4
|
+
const { PersonName, Email, TelephoneNumber } = require('./contact_details.js');
|
|
5
|
+
const { CountDown } = require('./count_down.js');
|
|
6
|
+
const { DataTable } = require('./data_table.js');
|
|
7
|
+
const { DateTime, TimestampUnix, SqlDate, SqlTime, SqlDateTime, InputPeriod } = require('./date_time.js');
|
|
8
|
+
const { DetailsSubArray } = require('./details_sub_array.js');
|
|
9
|
+
const { Duration } = require('./duration.js');
|
|
10
|
+
const { File, CSV, Img } = require('./file.js');
|
|
11
|
+
const { FlashMessage } = require('./flash_message.js');
|
|
12
|
+
const { FormHelper } = require('./form_helper.js');
|
|
13
|
+
const { GoogleMap } = require('./google_maps.js');
|
|
14
|
+
const { ImportFromCsv } = require('./import_from_csv.js');
|
|
15
|
+
const { JwtToken, JwtSession } = require('./jwt.js');
|
|
16
|
+
const { ListBox } = require('./list_box.js');
|
|
17
|
+
const { COUNTRIES_LIST, Country, PostalAddress, Location } = require('./location.js');
|
|
18
|
+
const { SocialNetwork } = require('./social_network.js');
|
|
19
|
+
|
|
20
|
+
module.exports = {
|
|
21
|
+
HTTPRequest, Cookie, UrlAndQueryString, IBAN, AudioMedia, PersonName, Email, TelephoneNumber, CountDown, DataTable,
|
|
22
|
+
DateTime, TimestampUnix, SqlDate, SqlTime, SqlDateTime, InputPeriod, DetailsSubArray, Duration, File, CSV, Img,
|
|
23
|
+
FlashMessage, FormHelper, GoogleMap, ImportFromCsv, JwtToken, JwtSession, ListBox, Country, PostalAddress, Location,
|
|
24
|
+
SocialNetwork,
|
|
25
|
+
COUNTRIES_LIST
|
|
26
|
+
};
|
package/jwt.js
CHANGED
package/list_box.js
CHANGED
package/location.js
CHANGED
|
@@ -385,7 +385,4 @@ class Location {
|
|
|
385
385
|
}
|
|
386
386
|
}
|
|
387
387
|
|
|
388
|
-
exports
|
|
389
|
-
exports.Country = Country;
|
|
390
|
-
exports.PostalAddress = PostalAddress;
|
|
391
|
-
exports.Location = Location;
|
|
388
|
+
module.exports = { COUNTRIES_LIST, Country, PostalAddress, Location };
|
package/media.js
CHANGED
package/network.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@osimatic/helpers-js",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"main": "index.js",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
|
-
},
|
|
8
|
-
"keywords": [],
|
|
9
|
-
"author": "",
|
|
10
|
-
"license": "ISC",
|
|
11
|
-
"description": ""
|
|
12
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@osimatic/helpers-js",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
|
+
},
|
|
8
|
+
"keywords": [],
|
|
9
|
+
"author": "",
|
|
10
|
+
"license": "ISC",
|
|
11
|
+
"description": ""
|
|
12
|
+
}
|
package/social_network.js
CHANGED