@deviceinsight/ng-ui-components 7.13.0 → 7.15.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/index.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/style.css +816 -12
- package/dist/types/__mocks__/i18n.d.ts +1 -1
- package/dist/types/components/chart/Chart.d.ts +1 -1
- package/dist/types/components/chart/Chart.stories.d.ts +2 -1
- package/dist/types/components/chart/Chart.stories.d.ts.map +1 -1
- package/dist/types/components/colorpicker/ColorPickerPopper.d.ts +1 -1
- package/dist/types/components/colorpicker/ColorPickerPopper.d.ts.map +1 -1
- package/dist/types/components/colorpicker/ColorTextInput.d.ts +1 -1
- package/dist/types/components/colorpicker/ColorTextInput.d.ts.map +1 -1
- package/dist/types/components/colorpicker/GradientColorPicker.d.ts +1 -1
- package/dist/types/components/colorpicker/GradientColorPicker.d.ts.map +1 -1
- package/dist/types/components/colorpicker/GridColorPicker.d.ts +1 -1
- package/dist/types/components/colorpicker/GridColorPicker.d.ts.map +1 -1
- package/dist/types/components/colorpicker/GridColorPicker.stories.d.ts +1 -1
- package/dist/types/components/contentHeader/ContentHeader.d.ts +1 -1
- package/dist/types/components/contentHeader/ContentHeader.d.ts.map +1 -1
- package/dist/types/components/infobox/InfoBox.d.ts +1 -1
- package/dist/types/components/infobox/InfoBox.d.ts.map +1 -1
- package/dist/types/components/infobox/InfoBox.stories.d.ts +1 -1
- package/dist/types/components/input/DateInput.stories.d.ts +1 -1
- package/dist/types/components/input/DateInput.stories.d.ts.map +1 -1
- package/dist/types/components/input/DateTimeInput.stories.d.ts +2 -2
- package/dist/types/components/input/DateTimeInput.stories.d.ts.map +1 -1
- package/dist/types/components/input/SelectWithSearch.d.ts +1 -1
- package/dist/types/components/input/SelectWithSearchAsync.d.ts +1 -1
- package/dist/types/components/input/UrnInput.d.ts +1 -1
- package/dist/types/components/input/ValidatedTextInput.d.ts +1 -1
- package/dist/types/components/link/RouteLink.d.ts +2 -1
- package/dist/types/components/link/RouteLink.d.ts.map +1 -1
- package/dist/types/components/multiMenu/MultiMenu.d.ts +1 -1
- package/dist/types/components/multiMenu/MultiMenu.d.ts.map +1 -1
- package/dist/types/components/multiMenu/components/MultiMenuItem.d.ts +1 -1
- package/dist/types/components/pagination/Pagination.d.ts +2 -1
- package/dist/types/components/pagination/Pagination.d.ts.map +1 -1
- package/dist/types/components/periodpicker/PeriodPicker.d.ts +1 -1
- package/dist/types/components/periodpicker/PeriodPicker.d.ts.map +1 -1
- package/dist/types/components/periodpicker/components/Inputs.d.ts +1 -1
- package/dist/types/components/periodpicker/components/Inputs.d.ts.map +1 -1
- package/dist/types/components/periodpicker/components/Menu.d.ts +1 -1
- package/dist/types/components/periodpicker/components/Menu.d.ts.map +1 -1
- package/dist/types/components/periodpicker/components/MonthPicker.d.ts +2 -2
- package/dist/types/components/periodpicker/components/MonthPicker.d.ts.map +1 -1
- package/dist/types/components/prompt/Prompt.d.ts +1 -1
- package/dist/types/components/prompt/Prompt.d.ts.map +1 -1
- package/dist/types/components/reactable/Reactable.d.ts +1 -1
- package/dist/types/components/reactable/helpers/ReactableTable.d.ts +1 -1
- package/dist/types/components/reactable/helpers/ReactableTable.d.ts.map +1 -1
- package/dist/types/components/reactable/helpers/ReactableTableHeader.d.ts +2 -2
- package/dist/types/components/reactable/helpers/ReactableTableHeader.d.ts.map +1 -1
- package/dist/types/components/reactable/helpers/ReactableTableRow.d.ts +1 -1
- package/dist/types/components/reactableWithClientSidePagination/ReactableWithClientSidePagination.d.ts +1 -1
- package/dist/types/components/slider/Slider.d.ts +1 -1
- package/dist/types/components/slider/Slider.d.ts.map +1 -1
- package/dist/types/components/svg/SvgImage.d.ts +1 -1
- package/dist/types/components/svg/SvgImage.d.ts.map +1 -1
- package/dist/types/components/tabs/RouteTabs.d.ts +1 -1
- package/dist/types/components/tabs/RouteTabs.d.ts.map +1 -1
- package/dist/types/components/treeview/TreeView.d.ts +1 -1
- package/dist/types/components/treeview/components/Node.d.ts +1 -1
- package/dist/types/components/treeview/components/NodeInfo.d.ts +1 -1
- package/dist/types/components/upload/FileUpload.d.ts +1 -1
- package/dist/types/components/upload/FileUpload.stories.d.ts +3 -3
- package/dist/types/components/upload/ImageUpload.d.ts +1 -1
- package/dist/types/components/upload/ImageUpload.stories.d.ts +1 -1
- package/dist/types/modules/messageBox/messageBox.d.ts +3 -2
- package/dist/types/modules/messageBox/messageBox.d.ts.map +1 -1
- package/package.json +19 -18
|
@@ -16,7 +16,7 @@ export default class ImageUpload extends Component<Props, ImageUploadState> {
|
|
|
16
16
|
state: ImageUploadState;
|
|
17
17
|
componentDidUpdate(prevProps: Props): void;
|
|
18
18
|
handleDragOver: () => void;
|
|
19
|
-
render(): import("react
|
|
19
|
+
render(): import("react").JSX.Element;
|
|
20
20
|
}
|
|
21
21
|
export {};
|
|
22
22
|
//# sourceMappingURL=ImageUpload.d.ts.map
|
|
@@ -23,7 +23,7 @@ declare const meta: {
|
|
|
23
23
|
onSelectFile?: ((file: import("./FileUpload").DropzoneFile) => void) | ((file: import("./FileUpload").DropzoneFile) => void) | undefined;
|
|
24
24
|
imageUrl: string | null | undefined;
|
|
25
25
|
imageSize?: "contain" | "cover" | undefined;
|
|
26
|
-
}>) =>
|
|
26
|
+
}>) => React.JSX.Element)[];
|
|
27
27
|
};
|
|
28
28
|
export default meta;
|
|
29
29
|
type Story = StoryObj<typeof meta>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { ToastContent, ToastOptions } from 'react-toastify';
|
|
1
|
+
import { ToastContent, ToastOptions } from 'react-toastify/unstyled';
|
|
2
|
+
import 'react-toastify/dist/ReactToastify.css';
|
|
2
3
|
import './react-toastify-custom.css';
|
|
3
4
|
export declare const setGlobalErrorMessageBoxOptions: (options: ToastOptions) => void;
|
|
4
5
|
export declare const messageBoxSuccess: (content: ToastContent, options?: ToastOptions, groupName?: string) => void;
|
|
@@ -8,5 +9,5 @@ export declare const messageBoxError: (content: ToastContent, options?: ToastOpt
|
|
|
8
9
|
export declare const messageBoxDismissSingle: (id: number) => void;
|
|
9
10
|
export declare const messageBoxDismissGroup: (groupName: string) => void;
|
|
10
11
|
export declare const messageBoxDismissAll: () => void;
|
|
11
|
-
export declare const MessageBoxContainer: () => import("react
|
|
12
|
+
export declare const MessageBoxContainer: () => import("react").JSX.Element;
|
|
12
13
|
//# sourceMappingURL=messageBox.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messageBox.d.ts","sourceRoot":"","sources":["../../../../src/modules/messageBox/messageBox.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAQ,YAAY,EAAE,YAAY,EAAwB,MAAM,
|
|
1
|
+
{"version":3,"file":"messageBox.d.ts","sourceRoot":"","sources":["../../../../src/modules/messageBox/messageBox.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAQ,YAAY,EAAE,YAAY,EAAwB,MAAM,yBAAyB,CAAC;AAEjG,OAAO,uCAAuC,CAAC;AAC/C,OAAO,6BAA6B,CAAC;AAQrC,eAAO,MAAM,+BAA+B,GAAI,SAAS,YAAY,KAAG,IAEvE,CAAC;AAYF,eAAO,MAAM,iBAAiB,GAAI,SAAS,YAAY,EAAE,UAAU,YAAY,EAAE,YAAY,MAAM,KAAG,IAGrG,CAAC;AAEF,eAAO,MAAM,cAAc,GAAI,SAAS,YAAY,EAAE,UAAU,YAAY,EAAE,YAAY,MAAM,KAAG,IAGlG,CAAC;AAEF,eAAO,MAAM,cAAc,GAAI,SAAS,YAAY,EAAE,UAAU,YAAY,EAAE,YAAY,MAAM,KAAG,IAGlG,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,SAAS,YAAY,EAAE,UAAU,YAAY,EAAE,YAAY,MAAM,KAAG,IAInG,CAAC;AAEF,eAAO,MAAM,uBAAuB,GAAI,IAAI,MAAM,KAAG,IAEpD,CAAC;AAEF,eAAO,MAAM,sBAAsB,GAAI,WAAW,MAAM,KAAG,IAK1D,CAAC;AAEF,eAAO,MAAM,oBAAoB,QAAO,IAGvC,CAAC;AAEF,eAAO,MAAM,mBAAmB,mCAE/B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deviceinsight/ng-ui-components",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.15.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"repository": {
|
|
@@ -63,29 +63,27 @@
|
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"i18next": "^25.10.10",
|
|
66
|
-
"react": "^19.2.
|
|
67
|
-
"react-dom": "^19.2.
|
|
66
|
+
"react": "^19.2.7",
|
|
67
|
+
"react-dom": "^19.2.7",
|
|
68
68
|
"react-i18next": "^16.6.6",
|
|
69
69
|
"react-router-dom": "^5.3.4"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@eslint/
|
|
73
|
-
"@
|
|
74
|
-
"@eslint/js": "9.39.4",
|
|
75
|
-
"@storybook/react-vite": "10.4.1",
|
|
72
|
+
"@eslint/js": "10.0.1",
|
|
73
|
+
"@storybook/react-vite": "10.4.4",
|
|
76
74
|
"@testing-library/dom": "10.4.1",
|
|
77
75
|
"@testing-library/jest-dom": "6.9.1",
|
|
78
76
|
"@testing-library/react": "16.3.0",
|
|
79
77
|
"@testing-library/user-event": "14.6.1",
|
|
80
78
|
"@types/lodash": "4.17.24",
|
|
81
79
|
"@types/node": "22.13.13",
|
|
82
|
-
"@types/react": "19.2.
|
|
80
|
+
"@types/react": "19.2.17",
|
|
83
81
|
"@types/react-dom": "19.2.3",
|
|
84
82
|
"@types/react-router-dom": "5.3.3",
|
|
85
|
-
"@typescript-eslint/eslint-plugin": "8.60.
|
|
86
|
-
"@typescript-eslint/parser": "8.60.
|
|
83
|
+
"@typescript-eslint/eslint-plugin": "8.60.1",
|
|
84
|
+
"@typescript-eslint/parser": "8.60.1",
|
|
87
85
|
"@vitejs/plugin-react": "5.1.0",
|
|
88
|
-
"eslint": "
|
|
86
|
+
"eslint": "10.5.0",
|
|
89
87
|
"eslint-plugin-react-hooks": "7.1.1",
|
|
90
88
|
"happy-dom": "20.9.0",
|
|
91
89
|
"husky": "9.1.7",
|
|
@@ -93,21 +91,24 @@
|
|
|
93
91
|
"lint-staged": "16.4.0",
|
|
94
92
|
"prettier": "3.6.2",
|
|
95
93
|
"prop-types": "15.8.1",
|
|
96
|
-
"react": "19.2.
|
|
97
|
-
"react-dom": "19.2.
|
|
94
|
+
"react": "19.2.7",
|
|
95
|
+
"react-dom": "19.2.7",
|
|
98
96
|
"react-i18next": "16.6.6",
|
|
99
97
|
"react-router-dom": "5.3.4",
|
|
100
98
|
"rimraf": "6.1.0",
|
|
101
|
-
"storybook": "10.4.
|
|
99
|
+
"storybook": "10.4.4",
|
|
102
100
|
"tsc-watch": "7.2.0",
|
|
103
101
|
"typescript": "5.9.3",
|
|
104
102
|
"vitest": "4.0.5",
|
|
105
|
-
"eslint-plugin-storybook": "10.4.
|
|
103
|
+
"eslint-plugin-storybook": "10.4.4"
|
|
106
104
|
},
|
|
107
105
|
"overrides": {
|
|
108
106
|
"follow-redirects": "1.16.0",
|
|
109
107
|
"uuid": "11.1.1",
|
|
110
|
-
"
|
|
108
|
+
"ux4iot-admin-node": {
|
|
109
|
+
"form-data": "2.5.6"
|
|
110
|
+
},
|
|
111
|
+
"ws": "8.21.0",
|
|
111
112
|
"yaml": "2.9.0"
|
|
112
113
|
},
|
|
113
114
|
"lint-staged": {
|
|
@@ -117,7 +118,7 @@
|
|
|
117
118
|
"extends": ["plugin:storybook/recommended"]
|
|
118
119
|
},
|
|
119
120
|
"engines": {
|
|
120
|
-
"node": "^24.
|
|
121
|
-
"npm": "^11.
|
|
121
|
+
"node": "^24.15.0",
|
|
122
|
+
"npm": "^11.12.1"
|
|
122
123
|
}
|
|
123
124
|
}
|