@glissandoo/lib 1.32.2 → 1.32.4
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/helpers/appScenes.d.ts +8 -0
- package/helpers/appScenes.js +8 -0
- package/package.json +2 -2
package/helpers/appScenes.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export declare enum AppScenes {
|
|
|
6
6
|
Register = "Register",
|
|
7
7
|
Block = "Block",
|
|
8
8
|
Join = "Join",
|
|
9
|
+
JoinView = "JoinView",
|
|
9
10
|
JoinInstrument = "SelectGroupInstrument",
|
|
10
11
|
JoinImageProfile = "AddProfileImage",
|
|
11
12
|
App = "App",
|
|
@@ -13,8 +14,10 @@ export declare enum AppScenes {
|
|
|
13
14
|
Notifications = "Notifications",
|
|
14
15
|
Profile = "Me",
|
|
15
16
|
Badge = "Badge",
|
|
17
|
+
TabStack = "TabStack",
|
|
16
18
|
EditGroupPlayerInstruments = "EditGroupPlayerInstruments",
|
|
17
19
|
ProfileSettings = "MeSettings",
|
|
20
|
+
ProfileSettingsStack = "ProfileSettingsStack",
|
|
18
21
|
EditProfileDisplayName = "EditProfileDisplayName",
|
|
19
22
|
EditProfileUsername = "EditProfileUsername",
|
|
20
23
|
EditProfileEmail = "EditProfileEmail",
|
|
@@ -25,11 +28,14 @@ export declare enum AppScenes {
|
|
|
25
28
|
EditProfileDescription = "EditProfileDescription",
|
|
26
29
|
EditProfileLanguage = "EditProfileLanguage",
|
|
27
30
|
EditProfileNotifications = "EditProfileNotifications",
|
|
31
|
+
EditProfileDeleteAccount = "EditProfileDeleteAccount",
|
|
28
32
|
CommunicationList = "communications",
|
|
29
33
|
CommunicationNewComment = "communicationNewComment",
|
|
30
34
|
Communication = "communication",
|
|
35
|
+
CommunicationView = "CommunicationView",
|
|
31
36
|
EventList = "events",
|
|
32
37
|
Event = "event",
|
|
38
|
+
EventView = "EventView",
|
|
33
39
|
EventPlayers = "eventPlayers",
|
|
34
40
|
EventRollcall = "eventRollcall",
|
|
35
41
|
EventGroupPlayer = "eventGroupPlayer",
|
|
@@ -46,8 +52,10 @@ export declare enum AppScenes {
|
|
|
46
52
|
EventSettingsMembersTemplate = "EventSettingsMembersTemplate",
|
|
47
53
|
Repertory = "repertory",
|
|
48
54
|
Theme = "theme",
|
|
55
|
+
ThemeView = "ThemeView",
|
|
49
56
|
VisorPDF = "visorPDF",
|
|
50
57
|
Group = "group",
|
|
58
|
+
GroupView = "GroupView",
|
|
51
59
|
GroupPlayer = "groupPlayer",
|
|
52
60
|
GroupsNavigation = "GroupsNavigation",
|
|
53
61
|
VisorImage = "visorImage",
|
package/helpers/appScenes.js
CHANGED
|
@@ -10,6 +10,7 @@ var AppScenes;
|
|
|
10
10
|
AppScenes["Register"] = "Register";
|
|
11
11
|
AppScenes["Block"] = "Block";
|
|
12
12
|
AppScenes["Join"] = "Join";
|
|
13
|
+
AppScenes["JoinView"] = "JoinView";
|
|
13
14
|
AppScenes["JoinInstrument"] = "SelectGroupInstrument";
|
|
14
15
|
AppScenes["JoinImageProfile"] = "AddProfileImage";
|
|
15
16
|
AppScenes["App"] = "App";
|
|
@@ -17,8 +18,10 @@ var AppScenes;
|
|
|
17
18
|
AppScenes["Notifications"] = "Notifications";
|
|
18
19
|
AppScenes["Profile"] = "Me";
|
|
19
20
|
AppScenes["Badge"] = "Badge";
|
|
21
|
+
AppScenes["TabStack"] = "TabStack";
|
|
20
22
|
AppScenes["EditGroupPlayerInstruments"] = "EditGroupPlayerInstruments";
|
|
21
23
|
AppScenes["ProfileSettings"] = "MeSettings";
|
|
24
|
+
AppScenes["ProfileSettingsStack"] = "ProfileSettingsStack";
|
|
22
25
|
AppScenes["EditProfileDisplayName"] = "EditProfileDisplayName";
|
|
23
26
|
AppScenes["EditProfileUsername"] = "EditProfileUsername";
|
|
24
27
|
AppScenes["EditProfileEmail"] = "EditProfileEmail";
|
|
@@ -29,11 +32,14 @@ var AppScenes;
|
|
|
29
32
|
AppScenes["EditProfileDescription"] = "EditProfileDescription";
|
|
30
33
|
AppScenes["EditProfileLanguage"] = "EditProfileLanguage";
|
|
31
34
|
AppScenes["EditProfileNotifications"] = "EditProfileNotifications";
|
|
35
|
+
AppScenes["EditProfileDeleteAccount"] = "EditProfileDeleteAccount";
|
|
32
36
|
AppScenes["CommunicationList"] = "communications";
|
|
33
37
|
AppScenes["CommunicationNewComment"] = "communicationNewComment";
|
|
34
38
|
AppScenes["Communication"] = "communication";
|
|
39
|
+
AppScenes["CommunicationView"] = "CommunicationView";
|
|
35
40
|
AppScenes["EventList"] = "events";
|
|
36
41
|
AppScenes["Event"] = "event";
|
|
42
|
+
AppScenes["EventView"] = "EventView";
|
|
37
43
|
AppScenes["EventPlayers"] = "eventPlayers";
|
|
38
44
|
AppScenes["EventRollcall"] = "eventRollcall";
|
|
39
45
|
AppScenes["EventGroupPlayer"] = "eventGroupPlayer";
|
|
@@ -50,8 +56,10 @@ var AppScenes;
|
|
|
50
56
|
AppScenes["EventSettingsMembersTemplate"] = "EventSettingsMembersTemplate";
|
|
51
57
|
AppScenes["Repertory"] = "repertory";
|
|
52
58
|
AppScenes["Theme"] = "theme";
|
|
59
|
+
AppScenes["ThemeView"] = "ThemeView";
|
|
53
60
|
AppScenes["VisorPDF"] = "visorPDF";
|
|
54
61
|
AppScenes["Group"] = "group";
|
|
62
|
+
AppScenes["GroupView"] = "GroupView";
|
|
55
63
|
AppScenes["GroupPlayer"] = "groupPlayer";
|
|
56
64
|
AppScenes["GroupsNavigation"] = "GroupsNavigation";
|
|
57
65
|
AppScenes["VisorImage"] = "visorImage";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glissandoo/lib",
|
|
3
|
-
"version": "1.32.
|
|
3
|
+
"version": "1.32.4",
|
|
4
4
|
"description": "Glissandoo library js",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"author": "Glissandoo",
|
|
26
26
|
"license": "ISC",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@google-cloud/firestore": "^4.8.1",
|
|
29
28
|
"date-fns": "^2.20.3",
|
|
30
29
|
"date-fns-tz": "^1.1.3",
|
|
31
30
|
"lodash": "^4.17.21",
|
|
32
31
|
"type-fest": "^3.5.1"
|
|
33
32
|
},
|
|
34
33
|
"devDependencies": {
|
|
34
|
+
"@google-cloud/firestore": "^6.5.0",
|
|
35
35
|
"@localazy/cli": "^1.6.5",
|
|
36
36
|
"@types/lodash": "^4.14.168",
|
|
37
37
|
"@types/node": "^12.19.13",
|