@rocket.chat/fuselage 0.78.1 → 0.79.1
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/AutoComplete/AutoComplete.d.ts +3 -3
- package/dist/components/AutoComplete/AutoComplete.d.ts.map +1 -1
- package/dist/components/Button/IconButton.d.ts +2 -2
- package/dist/components/Button/IconButton.d.ts.map +1 -1
- package/dist/components/Callout/Callout.d.ts +2 -2
- package/dist/components/Callout/Callout.d.ts.map +1 -1
- package/dist/components/CheckBox/CheckBox.d.ts.map +1 -1
- package/dist/components/InputBox/InputBox.d.ts +4 -0
- package/dist/components/InputBox/InputBox.d.ts.map +1 -1
- package/dist/components/Menu/Menu.d.ts +1 -1
- package/dist/components/Menu/Menu.d.ts.map +1 -1
- package/dist/components/Menu/MenuItem.d.ts.map +1 -1
- package/dist/components/Menu/stately/PartialNode.d.ts +4 -4
- package/dist/components/Menu/stately/PartialNode.d.ts.map +1 -1
- package/dist/components/Message/MessageGenericPreview/MessageGenericPreviewContent.d.ts +2 -2
- package/dist/components/Message/MessageGenericPreview/MessageGenericPreviewContent.d.ts.map +1 -1
- package/dist/components/Message/MessageMetrics/MessageMetricsFollowing.d.ts +2 -2
- package/dist/components/Message/MessageMetrics/MessageMetricsFollowing.d.ts.map +1 -1
- package/dist/components/Message/MessageToolbar/MessageToolbarItem.d.ts +1 -1
- package/dist/components/Position/Position.d.ts +1 -1
- package/dist/components/Position/Position.d.ts.map +1 -1
- package/dist/components/SelectInput/SelectInput.d.ts.map +1 -1
- package/dist/components/Sidebar/Sidebar.d.ts +1 -1
- package/dist/components/Sidebar/SidebarActions.d.ts +1 -1
- package/dist/components/Sidebar/TopBar/TopBarAction.d.ts +1 -1
- package/dist/components/Sidebar/TopBar/index.d.ts +1 -1
- package/dist/components/SidebarV2/SidebarAction.d.ts +1 -1
- package/dist/components/SidebarV2/SidebarItem/SidebarItemIcon.d.ts +1 -1
- package/dist/components/SidebarV2/SidebarItem/SidebarItemIcon.d.ts.map +1 -1
- package/dist/components/Slider/SliderTrack.d.ts +2 -2
- package/dist/components/Slider/SliderTrack.d.ts.map +1 -1
- package/dist/fuselage.css +1 -1
- package/dist/fuselage.css.map +1 -1
- package/dist/fuselage.development.js +12 -11
- package/dist/fuselage.development.js.map +1 -1
- package/dist/fuselage.production.js +2 -2
- package/dist/helpers/WithErrorWrapper.d.ts +3 -3
- package/dist/helpers/WithErrorWrapper.d.ts.map +1 -1
- package/package.json +29 -30
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type { Context,
|
|
1
|
+
import type { Context, ReactNode } from 'react';
|
|
2
2
|
type WithErrorWrapperProps<T> = {
|
|
3
3
|
context: Context<T>;
|
|
4
|
-
children:
|
|
4
|
+
children: ReactNode;
|
|
5
5
|
componentName: string;
|
|
6
6
|
parentComponent: 'Field';
|
|
7
7
|
};
|
|
8
|
-
declare function WithErrorWrapper<T>({ context, componentName, children, parentComponent, }: WithErrorWrapperProps<T>):
|
|
8
|
+
declare function WithErrorWrapper<T>({ context, componentName, children, parentComponent, }: WithErrorWrapperProps<T>): ReactNode;
|
|
9
9
|
export default WithErrorWrapper;
|
|
10
10
|
//# sourceMappingURL=WithErrorWrapper.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WithErrorWrapper.d.ts","sourceRoot":"","sources":["../../src/helpers/WithErrorWrapper.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"WithErrorWrapper.d.ts","sourceRoot":"","sources":["../../src/helpers/WithErrorWrapper.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGhD,KAAK,qBAAqB,CAAC,CAAC,IAAI;IAC9B,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACpB,QAAQ,EAAE,SAAS,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,OAAO,CAAC;CAC1B,CAAC;AAEF,iBAAS,gBAAgB,CAAC,CAAC,EAAE,EAC3B,OAAO,EACP,aAAa,EACb,QAAQ,EACR,eAAe,GAChB,EAAE,qBAAqB,CAAC,CAAC,CAAC,aAS1B;AAED,eAAe,gBAAgB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rocket.chat/fuselage",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.79.1",
|
|
4
4
|
"description": "Rocket.Chat's React Components Library",
|
|
5
5
|
"homepage": "https://github.com/RocketChat/fuselage#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"lint-and-fix": "lint-and-fix",
|
|
36
36
|
"test": "jest --runInBand",
|
|
37
37
|
"watch": "jest --watch",
|
|
38
|
-
"docs": "
|
|
39
|
-
"build-storybook": "
|
|
38
|
+
"docs": "NODE_ENV=production storybook build -o ../../static/fuselage",
|
|
39
|
+
"build-storybook": "NODE_ENV=production storybook build"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@rocket.chat/css-in-js": "^0.32.0",
|
|
@@ -49,43 +49,42 @@
|
|
|
49
49
|
"react-stately": "~3.35.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@babel/core": "~7.29.
|
|
53
|
-
"@babel/plugin-transform-runtime": "~7.29.
|
|
54
|
-
"@babel/preset-env": "~7.29.
|
|
55
|
-
"@babel/preset-react": "~7.
|
|
52
|
+
"@babel/core": "~7.29.7",
|
|
53
|
+
"@babel/plugin-transform-runtime": "~7.29.7",
|
|
54
|
+
"@babel/preset-env": "~7.29.7",
|
|
55
|
+
"@babel/preset-react": "~7.29.7",
|
|
56
56
|
"@microsoft/api-extractor": "~7.58.7",
|
|
57
57
|
"@rocket.chat/fuselage-hooks": "^0.41.0",
|
|
58
58
|
"@rocket.chat/icons": "^0.48.0",
|
|
59
59
|
"@rocket.chat/storybook-dark-mode": "^4.1.0",
|
|
60
|
-
"@storybook/addon-a11y": "~9.1.
|
|
61
|
-
"@storybook/addon-docs": "~9.1.
|
|
62
|
-
"@storybook/addon-links": "~9.1.
|
|
60
|
+
"@storybook/addon-a11y": "~9.1.20",
|
|
61
|
+
"@storybook/addon-docs": "~9.1.20",
|
|
62
|
+
"@storybook/addon-links": "~9.1.20",
|
|
63
63
|
"@storybook/addon-styling-webpack": "~2.0.0",
|
|
64
64
|
"@storybook/addon-webpack5-compiler-swc": "~4.0.3",
|
|
65
|
-
"@storybook/react-webpack5": "~9.1.
|
|
65
|
+
"@storybook/react-webpack5": "~9.1.20",
|
|
66
66
|
"@testing-library/dom": "~10.4.1",
|
|
67
67
|
"@testing-library/jest-dom": "~6.9.1",
|
|
68
68
|
"@testing-library/react": "~16.3.2",
|
|
69
69
|
"@testing-library/user-event": "~14.6.1",
|
|
70
70
|
"@types/invariant": "^2.2.37",
|
|
71
71
|
"@types/jest-axe": "~3.5.9",
|
|
72
|
-
"@types/react": "~18.3.
|
|
72
|
+
"@types/react": "~18.3.29",
|
|
73
73
|
"@types/react-dom": "~18.3.7",
|
|
74
|
-
"autoprefixer": "~10.
|
|
74
|
+
"autoprefixer": "~10.5.0",
|
|
75
75
|
"babel-loader": "~10.1.1",
|
|
76
|
-
"caniuse-lite": "~1.0.
|
|
77
|
-
"cross-env": "^10.1.0",
|
|
76
|
+
"caniuse-lite": "~1.0.30001793",
|
|
78
77
|
"css-loader": "~7.1.4",
|
|
79
|
-
"cssnano": "~7.1.
|
|
80
|
-
"eslint": "~9.39.
|
|
81
|
-
"jest": "~30.
|
|
78
|
+
"cssnano": "~7.1.9",
|
|
79
|
+
"eslint": "~9.39.4",
|
|
80
|
+
"jest": "~30.4.2",
|
|
82
81
|
"jest-axe": "~10.0.0",
|
|
83
|
-
"jest-environment-jsdom": "~30.
|
|
82
|
+
"jest-environment-jsdom": "~30.4.1",
|
|
84
83
|
"lint-all": "^0.31.25",
|
|
85
84
|
"mini-css-extract-plugin": "~2.10.2",
|
|
86
85
|
"normalize.css": "^8.0.1",
|
|
87
86
|
"path-browserify": "^1.0.1",
|
|
88
|
-
"postcss": "~8.5.
|
|
87
|
+
"postcss": "~8.5.15",
|
|
89
88
|
"postcss-dir-pseudo-class": "~9.0.1",
|
|
90
89
|
"postcss-loader": "~8.2.1",
|
|
91
90
|
"postcss-logical": "~8.1.0",
|
|
@@ -93,20 +92,20 @@
|
|
|
93
92
|
"prettier": "~3.6.2",
|
|
94
93
|
"react": "~18.3.1",
|
|
95
94
|
"react-dom": "~18.3.1",
|
|
96
|
-
"react-virtuoso": "~4.18.
|
|
95
|
+
"react-virtuoso": "~4.18.7",
|
|
97
96
|
"resolve-url-loader": "~5.0.0",
|
|
98
|
-
"rimraf": "~6.
|
|
99
|
-
"sass": "~1.
|
|
100
|
-
"sass-loader": "~16.0.
|
|
101
|
-
"storybook": "~9.1.
|
|
97
|
+
"rimraf": "~6.1.3",
|
|
98
|
+
"sass": "~1.100.0",
|
|
99
|
+
"sass-loader": "~16.0.8",
|
|
100
|
+
"storybook": "~9.1.20",
|
|
102
101
|
"style-loader": "~4.0.0",
|
|
103
|
-
"stylelint": "~
|
|
104
|
-
"stylelint-order": "~
|
|
102
|
+
"stylelint": "~17.12.0",
|
|
103
|
+
"stylelint-order": "~8.1.1",
|
|
105
104
|
"stylelint-prettier": "~5.0.3",
|
|
106
|
-
"stylelint-scss": "~
|
|
105
|
+
"stylelint-scss": "~7.1.1",
|
|
107
106
|
"testing-utils": "^0.31.25",
|
|
108
|
-
"ts-jest": "~29.4.
|
|
109
|
-
"ts-loader": "~9.5.
|
|
107
|
+
"ts-jest": "~29.4.11",
|
|
108
|
+
"ts-loader": "~9.5.7",
|
|
110
109
|
"typescript": "~5.9.3",
|
|
111
110
|
"webpack": "~5.105.4",
|
|
112
111
|
"webpack-cli": "~6.0.1",
|