climb-onyx-gui 0.15.4 → 0.15.5-dev
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/Onyx.d.ts +0 -1
- package/dist/api/hooks.d.ts +0 -1
- package/dist/api/index.d.ts +0 -1
- package/dist/climb-onyx-gui.js +11448 -11446
- package/dist/components/Buttons.d.ts +0 -1
- package/dist/components/CellRenderers.d.ts +0 -1
- package/dist/components/ColumnsModal.d.ts +0 -1
- package/dist/components/DataField.d.ts +0 -1
- package/dist/components/DataPanel.d.ts +0 -1
- package/dist/components/Details.d.ts +0 -1
- package/dist/components/Dropdowns.d.ts +0 -1
- package/dist/components/ExportModal.d.ts +0 -1
- package/dist/components/Filter.d.ts +0 -1
- package/dist/components/FilterPanel.d.ts +0 -1
- package/dist/components/Graphs.d.ts +0 -1
- package/dist/components/Header.d.ts +0 -1
- package/dist/components/HistoryPanel.d.ts +0 -1
- package/dist/components/Inputs.d.ts +0 -1
- package/dist/components/JsonSearch.d.ts +0 -1
- package/dist/components/QueryHandler.d.ts +0 -1
- package/dist/components/RelatedPanel.d.ts +0 -1
- package/dist/components/ResultsPanel.d.ts +0 -1
- package/dist/components/Summarise.d.ts +0 -1
- package/dist/components/SummarisePanel.d.ts +0 -1
- package/dist/components/Table.d.ts +0 -1
- package/dist/interfaces.d.ts +0 -1
- package/dist/main.d.ts +0 -1
- package/dist/pages/Analysis.d.ts +0 -1
- package/dist/pages/Graphs.d.ts +0 -1
- package/dist/pages/ProjectRecord.d.ts +0 -1
- package/dist/pages/Results.d.ts +0 -1
- package/dist/pages/Site.d.ts +0 -1
- package/dist/pages/User.d.ts +0 -1
- package/dist/style.css +5 -5
- package/dist/utils/functions.d.ts +0 -1
- package/dist/utils/hooks.d.ts +0 -1
- package/dist/utils/styles.d.ts +0 -1
- package/package.json +4 -2
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ExportHandlerProps, OnyxProps } from '../interfaces';
|
|
2
2
|
import { RecordType, DetailResponse, ErrorResponse, FilterConfig } from '../types';
|
|
3
|
-
|
|
4
3
|
/** Returns a random hexadecimal string. */
|
|
5
4
|
declare function generateKey(): string;
|
|
6
5
|
/** Generate a default file name prefix based on the project code and search parameters. */
|
package/dist/utils/hooks.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { OnyxProps } from '../interfaces';
|
|
2
|
-
|
|
3
2
|
export declare function useDebouncedValue<T>(inputValue: T, delay: number): T;
|
|
4
3
|
export declare const useDelayedValue: (delay?: number) => boolean;
|
|
5
4
|
export declare const useCyclicValue: (start: number, end: number, pause?: number) => number;
|
package/dist/utils/styles.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "climb-onyx-gui",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.5-dev",
|
|
4
4
|
"description": "Onyx Graphical User Interface",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"gui",
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
"@ag-grid-community/styles": "^32.2.0",
|
|
57
57
|
"@fontsource/ibm-plex-sans": "^5.1.1",
|
|
58
58
|
"@tanstack/react-query": "^4.36.1",
|
|
59
|
+
"bootstrap": "^5.3.7",
|
|
59
60
|
"export-to-csv": "^1.3.0",
|
|
60
61
|
"http-status-codes": "^2.3.0",
|
|
61
62
|
"json-edit-react": "^1.22.6",
|
|
@@ -83,8 +84,9 @@
|
|
|
83
84
|
"eslint-plugin-react-refresh": "^0.4.6",
|
|
84
85
|
"react": "^17.0.2",
|
|
85
86
|
"react-dom": "^17.0.2",
|
|
87
|
+
"sass-embedded": "^1.89.2",
|
|
86
88
|
"typescript": "^5.2.2",
|
|
87
89
|
"vite": "^5.2.0",
|
|
88
|
-
"vite-plugin-dts": "^
|
|
90
|
+
"vite-plugin-dts": "^4.5.4"
|
|
89
91
|
}
|
|
90
92
|
}
|