@iotready/nextjs-components-library 1.0.0-preview40 → 1.0.0-preview41

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.
@@ -0,0 +1,95 @@
1
+ export interface Translations {
2
+ library: {
3
+ groupsDevices: {
4
+ noDevices: string;
5
+ noDevicesInGroup: string;
6
+ addDevices: string;
7
+ filterReturnsNoResult: string;
8
+ list: string;
9
+ map: string;
10
+ allDevices: string;
11
+ group: string;
12
+ organization: string;
13
+ createGroup: string;
14
+ backToGroup: string;
15
+ addToGroup: string;
16
+ manageGroup: string;
17
+ removeFromGroup: string;
18
+ closeEdit: string;
19
+ editGroup: string;
20
+ newGroup: string;
21
+ groupName: string;
22
+ description: string;
23
+ cancel: string;
24
+ create: string;
25
+ };
26
+ groupUpdate: {
27
+ name: string;
28
+ description: string;
29
+ update: string;
30
+ addMembers: string;
31
+ noMembersFound: string;
32
+ selectUser: string;
33
+ add: string;
34
+ deleteGroup: string;
35
+ actionCannotBeUndone: string;
36
+ mustRemoveDevicesAndMembers: string;
37
+ mustRemoveDevicesMembersAndGroups: string;
38
+ confirmDeleteGroup: string;
39
+ yesRemoveIt: string;
40
+ };
41
+ usersDataGrid: {
42
+ filterBy: string;
43
+ search: string;
44
+ emailAddress: string;
45
+ fullName: string;
46
+ role: string;
47
+ };
48
+ accountMenu: {
49
+ manageAccount: string;
50
+ signOut: string;
51
+ openMenu: string;
52
+ };
53
+ accountProfile: {
54
+ completeInfo: string;
55
+ profileName: string;
56
+ firstName: string;
57
+ enterFirstName: string;
58
+ lastName: string;
59
+ enterLastName: string;
60
+ update: string;
61
+ security: string;
62
+ setOrEditPassword: string;
63
+ newPassword: string;
64
+ confirmPassword: string;
65
+ cancel: string;
66
+ save: string;
67
+ deleteAccount: string;
68
+ actionCannotBeUndone: string;
69
+ confirmDeleteAccount: string;
70
+ yesRemove: string;
71
+ passwordRequired: string;
72
+ confirmPasswordRequired: string;
73
+ passwordsMustMatch: string;
74
+ passwordUpdated: string;
75
+ userUpdated: string;
76
+ passwordRequirements: string;
77
+ };
78
+ userUpdate: {
79
+ role: string;
80
+ update: string;
81
+ };
82
+ trendChart: {
83
+ export: string;
84
+ noDataMeasure: string;
85
+ connectPointValues: string;
86
+ showAnnotations: string;
87
+ };
88
+ map: {
89
+ noPositionsForDevices: string;
90
+ };
91
+ };
92
+ }
93
+
94
+ export declare const en: Translations;
95
+ export declare const it: Translations;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iotready/nextjs-components-library",
3
- "version": "1.0.0-preview40",
3
+ "version": "1.0.0-preview41",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build": "rm -rf dist && tsc --project tsconfig.build.json && cp package.json dist/ && cp -r assets dist/",