andoncloud-workplaces-state-timelines-widget 1.1.8 → 1.2.0
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/dist/components/Loading/index.d.ts +3 -0
- package/dist/components/SettingsForm/index.d.ts +4 -0
- package/dist/components/SettingsFormContent/index.d.ts +5 -5
- package/dist/components/Timeline/index.d.ts +10 -10
- package/dist/components/Timeline/styled.d.ts +10 -11
- package/dist/components/TimelineLoader/index.d.ts +3 -3
- package/dist/components/Widget/index.d.ts +5 -5
- package/dist/components/Widget/utils.d.ts +12 -0
- package/dist/components/WidgetSettings/index.d.ts +4 -0
- package/dist/components/WidgetView/index.d.ts +4 -4
- package/dist/helpers.d.ts +3 -3
- package/dist/i18n.d.ts +2 -0
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/locales/index.d.ts +25 -25
- package/dist/stories/Widget.stories.d.ts +5 -3
- package/dist/types.d.ts +18 -18
- package/dist/utils/graphql-sdk.d.ts +142 -0
- package/dist/version.d.ts +1 -1
- package/package.json +24 -22
package/dist/locales/index.d.ts
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
declare const resources: {
|
|
2
|
-
en: {
|
|
3
|
-
translation: {
|
|
4
|
-
Loading: string;
|
|
5
|
-
Workplaces: string;
|
|
6
|
-
"Select and arrange the order": string;
|
|
7
|
-
Cancel: string;
|
|
8
|
-
Save: string;
|
|
9
|
-
"History timeline time info now": string;
|
|
10
|
-
Settings: string;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
pl: {
|
|
14
|
-
translation: {
|
|
15
|
-
Loading: string;
|
|
16
|
-
Workplaces: string;
|
|
17
|
-
"Select and arrange the order": string;
|
|
18
|
-
Cancel: string;
|
|
19
|
-
Save: string;
|
|
20
|
-
"History timeline time info now": string;
|
|
21
|
-
Settings: string;
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
export default resources;
|
|
1
|
+
declare const resources: {
|
|
2
|
+
en: {
|
|
3
|
+
translation: {
|
|
4
|
+
Loading: string;
|
|
5
|
+
Workplaces: string;
|
|
6
|
+
"Select and arrange the order": string;
|
|
7
|
+
Cancel: string;
|
|
8
|
+
Save: string;
|
|
9
|
+
"History timeline time info now": string;
|
|
10
|
+
Settings: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
pl: {
|
|
14
|
+
translation: {
|
|
15
|
+
Loading: string;
|
|
16
|
+
Workplaces: string;
|
|
17
|
+
"Select and arrange the order": string;
|
|
18
|
+
Cancel: string;
|
|
19
|
+
Save: string;
|
|
20
|
+
"History timeline time info now": string;
|
|
21
|
+
Settings: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export default resources;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { ComponentMeta } from '@storybook/react';
|
|
2
|
+
import Widget from '../components/Widget';
|
|
3
|
+
declare const _default: ComponentMeta<typeof Widget>;
|
|
4
|
+
export default _default;
|
|
5
|
+
export declare const Default: any;
|
package/dist/types.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import type { BaseWidgetData, BaseWidgetSettings,
|
|
2
|
-
import { BaseWidgetViewProps } from 'andoncloud-widget-base';
|
|
3
|
-
interface WidgetViewData {
|
|
4
|
-
shifts: Shift[];
|
|
5
|
-
workplaces:
|
|
6
|
-
statusChanges:
|
|
7
|
-
}
|
|
8
|
-
interface WidgetSettingsData {
|
|
9
|
-
workplaces:
|
|
10
|
-
}
|
|
11
|
-
export interface WidgetData extends BaseWidgetData, WidgetViewData, WidgetSettingsData {
|
|
12
|
-
}
|
|
13
|
-
export interface WidgetSettings extends BaseWidgetSettings {
|
|
14
|
-
workplacesIds: string[];
|
|
15
|
-
}
|
|
16
|
-
export interface WidgetViewProps extends BaseWidgetViewProps<WidgetData, WidgetSettings> {
|
|
17
|
-
}
|
|
18
|
-
export {};
|
|
1
|
+
import type { BaseWidgetData, BaseWidgetSettings, ListStatusChanges_StatusChange, ListWorkplaces_Workplace, Shift } from 'andoncloud-dashboard-toolkit';
|
|
2
|
+
import { BaseWidgetViewProps } from 'andoncloud-widget-base';
|
|
3
|
+
interface WidgetViewData {
|
|
4
|
+
shifts: Shift[];
|
|
5
|
+
workplaces: ListWorkplaces_Workplace[];
|
|
6
|
+
statusChanges: ListStatusChanges_StatusChange[];
|
|
7
|
+
}
|
|
8
|
+
interface WidgetSettingsData {
|
|
9
|
+
workplaces: ListWorkplaces_Workplace[];
|
|
10
|
+
}
|
|
11
|
+
export interface WidgetData extends BaseWidgetData, WidgetViewData, WidgetSettingsData {
|
|
12
|
+
}
|
|
13
|
+
export interface WidgetSettings extends BaseWidgetSettings {
|
|
14
|
+
workplacesIds: string[];
|
|
15
|
+
}
|
|
16
|
+
export interface WidgetViewProps extends BaseWidgetViewProps<WidgetData, WidgetSettings> {
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
declare const _default: (url: string, token: string) => {
|
|
2
|
+
createDashboard(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
gridLayout?: string | null | undefined;
|
|
6
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CreateDashboardMutation>;
|
|
7
|
+
createOrder(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
8
|
+
id: string;
|
|
9
|
+
number: string;
|
|
10
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CreateOrderMutation>;
|
|
11
|
+
createProduct(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
12
|
+
id: string;
|
|
13
|
+
name?: string | null | undefined;
|
|
14
|
+
number: string;
|
|
15
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CreateProductMutation>;
|
|
16
|
+
createStatusChange(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
17
|
+
id: string;
|
|
18
|
+
userId?: string | null | undefined;
|
|
19
|
+
reasonId: string;
|
|
20
|
+
workplaceId: string;
|
|
21
|
+
startedAt?: string | null | undefined;
|
|
22
|
+
note?: string | null | undefined;
|
|
23
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CreateStatusChangeMutation>;
|
|
24
|
+
createUserPresence(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
25
|
+
id: string;
|
|
26
|
+
workplaceId: string;
|
|
27
|
+
userToken: string;
|
|
28
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CreateUserPresenceMutation>;
|
|
29
|
+
createWidget(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
30
|
+
id: string;
|
|
31
|
+
config?: string | null | undefined;
|
|
32
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CreateWidgetMutation>;
|
|
33
|
+
pauseOrderExecution(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
34
|
+
id: string;
|
|
35
|
+
statusChangeId: string;
|
|
36
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").PauseOrderExecutionMutation>;
|
|
37
|
+
removeDashboard(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
38
|
+
id: string;
|
|
39
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").RemoveDashboardMutation>;
|
|
40
|
+
removeUserPresence(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
41
|
+
id: string;
|
|
42
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").RemoveUserPresenceMutation>;
|
|
43
|
+
removeWidget(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
44
|
+
id: string;
|
|
45
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").RemoveWidgetMutation>;
|
|
46
|
+
removeWorkplaceUsersPresences(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
47
|
+
workplaceId: string;
|
|
48
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").RemoveWorkplaceUsersPresencesMutation>;
|
|
49
|
+
setCounter(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
50
|
+
id: string;
|
|
51
|
+
value: number;
|
|
52
|
+
note?: string | null | undefined;
|
|
53
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").SetCounterMutation>;
|
|
54
|
+
startOrderExecution(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
55
|
+
id: string;
|
|
56
|
+
workplaceId: string;
|
|
57
|
+
orderId: string;
|
|
58
|
+
productId?: string | null | undefined;
|
|
59
|
+
statusChangeId: string;
|
|
60
|
+
quantity?: number | null | undefined;
|
|
61
|
+
note?: string | null | undefined;
|
|
62
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").StartOrderExecutionMutation>;
|
|
63
|
+
stopOrderExecution(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
64
|
+
id: string;
|
|
65
|
+
statusChangeId: string;
|
|
66
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").StopOrderExecutionMutation>;
|
|
67
|
+
updateDashboard(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
68
|
+
id: string;
|
|
69
|
+
name?: string | null | undefined;
|
|
70
|
+
gridLayout: string;
|
|
71
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").UpdateDashboardMutation>;
|
|
72
|
+
updateOrderExecution(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
73
|
+
id: string;
|
|
74
|
+
standardRateId: string;
|
|
75
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").UpdateOrderExecutionMutation>;
|
|
76
|
+
updateWidget(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
77
|
+
id: string;
|
|
78
|
+
config: string;
|
|
79
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").UpdateWidgetMutation>;
|
|
80
|
+
companyConfig(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
81
|
+
[key: string]: never;
|
|
82
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CompanyConfigQuery>;
|
|
83
|
+
counterDirectories(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
84
|
+
[key: string]: never;
|
|
85
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CounterDirectoriesQuery>;
|
|
86
|
+
counters(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
87
|
+
[key: string]: never;
|
|
88
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CountersQuery>;
|
|
89
|
+
currentUser(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
90
|
+
[key: string]: never;
|
|
91
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").CurrentUserQuery>;
|
|
92
|
+
dashboards(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
93
|
+
[key: string]: never;
|
|
94
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").DashboardsQuery>;
|
|
95
|
+
metricValues(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
96
|
+
workplaceIds?: string | string[] | null | undefined;
|
|
97
|
+
metricIds?: string | string[] | null | undefined;
|
|
98
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").MetricValuesQuery>;
|
|
99
|
+
metrics(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
100
|
+
[key: string]: never;
|
|
101
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").MetricsQuery>;
|
|
102
|
+
orders(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
103
|
+
[key: string]: never;
|
|
104
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").OrdersQuery>;
|
|
105
|
+
ordersExecutions(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
106
|
+
[key: string]: never;
|
|
107
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").OrdersExecutionsQuery>;
|
|
108
|
+
products(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
109
|
+
[key: string]: never;
|
|
110
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").ProductsQuery>;
|
|
111
|
+
reasons(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
112
|
+
[key: string]: never;
|
|
113
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").ReasonsQuery>;
|
|
114
|
+
shifts(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
115
|
+
[key: string]: never;
|
|
116
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").ShiftsQuery>;
|
|
117
|
+
standardRates(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
118
|
+
orderExecutionId: string;
|
|
119
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").StandardRatesQuery>;
|
|
120
|
+
statusChangeTransitionPermissions(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
121
|
+
[key: string]: never;
|
|
122
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").StatusChangeTransitionPermissionsQuery>;
|
|
123
|
+
statusChanges(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
124
|
+
[key: string]: never;
|
|
125
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").StatusChangesQuery>;
|
|
126
|
+
users(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
127
|
+
[key: string]: never;
|
|
128
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").UsersQuery>;
|
|
129
|
+
usersPresences(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
130
|
+
[key: string]: never;
|
|
131
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").UsersPresencesQuery>;
|
|
132
|
+
widget(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
133
|
+
id: string;
|
|
134
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").WidgetQuery>;
|
|
135
|
+
workplaces(variables?: import("andoncloud-dashboard-toolkit").Exact<{
|
|
136
|
+
[key: string]: never;
|
|
137
|
+
}> | undefined, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").WorkplacesQuery>;
|
|
138
|
+
workplaceEvent(variables: import("andoncloud-dashboard-toolkit").Exact<{
|
|
139
|
+
id: string;
|
|
140
|
+
}>, requestHeaders?: import("graphql-request/dist/types.dom").Headers | string[][] | Record<string, string> | undefined): Promise<import("andoncloud-dashboard-toolkit").WorkplaceEventSubscription>;
|
|
141
|
+
};
|
|
142
|
+
export default _default;
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const LIBRARY_VERSION = "1.
|
|
1
|
+
export declare const LIBRARY_VERSION = "1.2.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "andoncloud-workplaces-state-timelines-widget",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Made with create-andoncloud-widget",
|
|
5
5
|
"author": "Adrian Olszewski",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"lint:ci": "eslint --ext .ts,.tsx --quiet .",
|
|
20
20
|
"i18n:extract": "i18next src/components/**/*.tsx [-oc]",
|
|
21
21
|
"prepare": "run-s build",
|
|
22
|
-
"update": "ncu -u && npm install --ignore-scripts && cd preview && ncu -u && npm install",
|
|
22
|
+
"update": "ncu --reject graphql-request -u && npm install --ignore-scripts && cd preview && ncu -u && npm install",
|
|
23
23
|
"version:bump": "npm version --no-git-tag-version patch"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
@@ -35,34 +35,36 @@
|
|
|
35
35
|
"react-i18next": "^12.0.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@emotion/react": "^11.
|
|
39
|
-
"@emotion/styled": "^11.
|
|
40
|
-
"@mui/icons-material": "^
|
|
41
|
-
"@mui/lab": "^
|
|
42
|
-
"@mui/material": "^
|
|
43
|
-
"andoncloud-dashboard-toolkit": "^1.
|
|
38
|
+
"@emotion/react": "^11.14.0",
|
|
39
|
+
"@emotion/styled": "^11.14.0",
|
|
40
|
+
"@mui/icons-material": "^6.4.0",
|
|
41
|
+
"@mui/lab": "^6.0.0-beta.23",
|
|
42
|
+
"@mui/material": "^6.4.0",
|
|
43
|
+
"andoncloud-dashboard-toolkit": "^1.3.6",
|
|
44
44
|
"andoncloud-library-scripts": "^1.0.9",
|
|
45
|
-
"andoncloud-sdk": "^1.
|
|
46
|
-
"andoncloud-widget-base": "^1.
|
|
45
|
+
"andoncloud-sdk": "^1.5.2",
|
|
46
|
+
"andoncloud-widget-base": "^1.2.0",
|
|
47
47
|
"eslint-config-andoncloud": "^1.0.0",
|
|
48
48
|
"graphql-request": "^6.1.0",
|
|
49
|
-
"i18next": "^
|
|
50
|
-
"mobx": "^6.
|
|
51
|
-
"mobx-react-lite": "^
|
|
52
|
-
"npm-check-updates": "^
|
|
49
|
+
"i18next": "^24.2.1",
|
|
50
|
+
"mobx": "^6.13.5",
|
|
51
|
+
"mobx-react-lite": "^4.1.0",
|
|
52
|
+
"npm-check-updates": "^17.1.14",
|
|
53
53
|
"npm-run-all": "^4.1.5",
|
|
54
|
-
"postcss": "^8.
|
|
55
|
-
"react": "^
|
|
56
|
-
"react-dom": "^
|
|
57
|
-
"react-i18next": "^
|
|
58
|
-
"react-router-dom": "^
|
|
59
|
-
"react-scripts": "^5.0.1"
|
|
54
|
+
"postcss": "^8.5.1",
|
|
55
|
+
"react": "^19.0.0",
|
|
56
|
+
"react-dom": "^19.0.0",
|
|
57
|
+
"react-i18next": "^15.4.0",
|
|
58
|
+
"react-router-dom": "^7.1.2",
|
|
59
|
+
"react-scripts": "^5.0.1",
|
|
60
|
+
"typescript": "^5.7.3"
|
|
60
61
|
},
|
|
61
62
|
"files": [
|
|
62
63
|
"dist"
|
|
63
64
|
],
|
|
64
65
|
"dependencies": {
|
|
65
|
-
"moment": "^2.
|
|
66
|
-
"react-content-loader": "^
|
|
66
|
+
"moment": "^2.30.1",
|
|
67
|
+
"react-content-loader": "^7.0.2",
|
|
68
|
+
"yup": "^1.6.1"
|
|
67
69
|
}
|
|
68
70
|
}
|