@moser-inc/moser-labs-react 5.1.0 → 6.0.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/moser-labs-react.css +1 -1
- package/dist/moser-labs-react.js +17072 -18120
- package/dist/package.json.d.ts +10 -8
- package/dist/src/components/LabsCalendar.d.ts +1 -1
- package/dist/src/lib/auth/authUtils.d.ts +0 -2
- package/package.json +10 -8
package/dist/package.json.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
"name": "@moser-inc/moser-labs-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "React components for the Moser Labs suite of applications.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,13 +30,14 @@ declare const _default: {
|
|
|
30
30
|
"lint": "eslint --max-warnings 0",
|
|
31
31
|
"preview": "vite preview",
|
|
32
32
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
33
|
+
"generate-theme": "sass --no-source-map --style=compressed ./src/_dev/assets/scss/labs-theme-dark.scss:./public/labs-theme-dark.css ./src/_dev/assets/scss/labs-theme-light.scss:./public/labs-theme-light.css",
|
|
33
34
|
"type-check": "tsc --noEmit -p tsconfig.app.json",
|
|
34
35
|
"prepack": "npm run build"
|
|
35
36
|
},
|
|
36
37
|
"peerDependencies": {
|
|
37
38
|
"@types/react": ">= 18.2.14 < 19",
|
|
38
39
|
"@types/react-dom": ">= 18.2.6 < 19",
|
|
39
|
-
"primereact": ">= 9.6.0
|
|
40
|
+
"primereact": ">= 9.6.0 < 11",
|
|
40
41
|
"react": ">= 18.2.0 < 19",
|
|
41
42
|
"react-dom": ">= 18.2.0 < 19"
|
|
42
43
|
},
|
|
@@ -50,28 +51,29 @@ declare const _default: {
|
|
|
50
51
|
"dayjs": "^1.11.13",
|
|
51
52
|
"keycloak-js": "23.0.3",
|
|
52
53
|
"mixpanel-browser": "^2.65.0",
|
|
53
|
-
"motion": "^12.
|
|
54
|
+
"motion": "^12.17.0",
|
|
54
55
|
"react-idle-timer": "^5.7.2"
|
|
55
56
|
},
|
|
56
57
|
"devDependencies": {
|
|
57
|
-
"@hookform/resolvers": "^5.
|
|
58
|
+
"@hookform/resolvers": "^5.1.1",
|
|
58
59
|
"@moser-inc/eslint-config-react": "^4.1.0",
|
|
59
60
|
"@moser-inc/unocss-preset-moser-labs": "^2.2.1",
|
|
60
61
|
"@tsconfig/node22": "^22.0.2",
|
|
61
62
|
"@tsconfig/vite-react": "^6.3.5",
|
|
62
|
-
"@unocss/eslint-config": "^66.
|
|
63
|
+
"@unocss/eslint-config": "^66.2.0",
|
|
63
64
|
"@vitejs/plugin-basic-ssl": "^2.0.0",
|
|
64
|
-
"@vitejs/plugin-react-swc": "^3.10.
|
|
65
|
+
"@vitejs/plugin-react-swc": "^3.10.2",
|
|
65
66
|
"eslint": "^9.28.0",
|
|
66
67
|
"prettier": "^3.5.3",
|
|
67
68
|
"react-hook-form": "^7.57.0",
|
|
68
69
|
"react-router": "^7.6.2",
|
|
69
70
|
"react-router-dom": "^7.6.2",
|
|
71
|
+
"sass": "^1.89.2",
|
|
70
72
|
"typescript": "^5.8.3",
|
|
71
|
-
"unocss": "^66.
|
|
73
|
+
"unocss": "^66.2.0",
|
|
72
74
|
"vite": "^6.3.5",
|
|
73
75
|
"vite-plugin-dts": "^4.5.4",
|
|
74
|
-
"zod": "^3.25.
|
|
76
|
+
"zod": "^3.25.61"
|
|
75
77
|
}
|
|
76
78
|
}
|
|
77
79
|
;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { Calendar, CalendarProps } from 'primereact/calendar';
|
|
2
2
|
export type LabsCalendarProps = CalendarProps;
|
|
3
|
-
export declare const LabsCalendar: import('react').ForwardRefExoticComponent<
|
|
3
|
+
export declare const LabsCalendar: import('react').ForwardRefExoticComponent<LabsCalendarProps & import('react').RefAttributes<Calendar<"single", Date>>>;
|
|
@@ -91,9 +91,7 @@ export declare const withAuthHeader: (headers?: HeadersInit) => [string, string]
|
|
|
91
91
|
flat?: boolean | undefined;
|
|
92
92
|
[Symbol.iterator]?: boolean | undefined;
|
|
93
93
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
94
|
-
at?: boolean | undefined;
|
|
95
94
|
};
|
|
96
|
-
at(index: number): [string, string] | undefined;
|
|
97
95
|
} | {
|
|
98
96
|
authorization: string;
|
|
99
97
|
append(name: string, value: string): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moser-inc/moser-labs-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "React components for the Moser Labs suite of applications.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,13 +30,14 @@
|
|
|
30
30
|
"lint": "eslint --max-warnings 0",
|
|
31
31
|
"preview": "vite preview",
|
|
32
32
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
33
|
+
"generate-theme": "sass --no-source-map --style=compressed ./src/_dev/assets/scss/labs-theme-dark.scss:./public/labs-theme-dark.css ./src/_dev/assets/scss/labs-theme-light.scss:./public/labs-theme-light.css",
|
|
33
34
|
"type-check": "tsc --noEmit -p tsconfig.app.json",
|
|
34
35
|
"prepack": "npm run build"
|
|
35
36
|
},
|
|
36
37
|
"peerDependencies": {
|
|
37
38
|
"@types/react": ">= 18.2.14 < 19",
|
|
38
39
|
"@types/react-dom": ">= 18.2.6 < 19",
|
|
39
|
-
"primereact": ">= 9.6.0
|
|
40
|
+
"primereact": ">= 9.6.0 < 11",
|
|
40
41
|
"react": ">= 18.2.0 < 19",
|
|
41
42
|
"react-dom": ">= 18.2.0 < 19"
|
|
42
43
|
},
|
|
@@ -50,27 +51,28 @@
|
|
|
50
51
|
"dayjs": "^1.11.13",
|
|
51
52
|
"keycloak-js": "23.0.3",
|
|
52
53
|
"mixpanel-browser": "^2.65.0",
|
|
53
|
-
"motion": "^12.
|
|
54
|
+
"motion": "^12.17.0",
|
|
54
55
|
"react-idle-timer": "^5.7.2"
|
|
55
56
|
},
|
|
56
57
|
"devDependencies": {
|
|
57
|
-
"@hookform/resolvers": "^5.
|
|
58
|
+
"@hookform/resolvers": "^5.1.1",
|
|
58
59
|
"@moser-inc/eslint-config-react": "^4.1.0",
|
|
59
60
|
"@moser-inc/unocss-preset-moser-labs": "^2.2.1",
|
|
60
61
|
"@tsconfig/node22": "^22.0.2",
|
|
61
62
|
"@tsconfig/vite-react": "^6.3.5",
|
|
62
|
-
"@unocss/eslint-config": "^66.
|
|
63
|
+
"@unocss/eslint-config": "^66.2.0",
|
|
63
64
|
"@vitejs/plugin-basic-ssl": "^2.0.0",
|
|
64
|
-
"@vitejs/plugin-react-swc": "^3.10.
|
|
65
|
+
"@vitejs/plugin-react-swc": "^3.10.2",
|
|
65
66
|
"eslint": "^9.28.0",
|
|
66
67
|
"prettier": "^3.5.3",
|
|
67
68
|
"react-hook-form": "^7.57.0",
|
|
68
69
|
"react-router": "^7.6.2",
|
|
69
70
|
"react-router-dom": "^7.6.2",
|
|
71
|
+
"sass": "^1.89.2",
|
|
70
72
|
"typescript": "^5.8.3",
|
|
71
|
-
"unocss": "^66.
|
|
73
|
+
"unocss": "^66.2.0",
|
|
72
74
|
"vite": "^6.3.5",
|
|
73
75
|
"vite-plugin-dts": "^4.5.4",
|
|
74
|
-
"zod": "^3.25.
|
|
76
|
+
"zod": "^3.25.61"
|
|
75
77
|
}
|
|
76
78
|
}
|