fui-material 2.3.4 → 2.5.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.
@@ -4,3 +4,4 @@ export * from './icons';
4
4
  export * from './function-elements';
5
5
  export * from './hooks';
6
6
  export * from './dop-function';
7
+ export * from './pages';
@@ -0,0 +1,22 @@
1
+ import React, { type ChangeEvent, type ReactNode, type CSSProperties } from "react";
2
+ export interface IFSearchableSelect extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'value' | 'onChange'> {
3
+ label?: string;
4
+ st?: CSSProperties;
5
+ children?: ReactNode;
6
+ fullWidth?: boolean;
7
+ load?: boolean;
8
+ errText?: string[];
9
+ helpText?: string;
10
+ width?: string | number;
11
+ height?: string | number;
12
+ allowCreate?: boolean;
13
+ value?: string | number | readonly string[];
14
+ onChange?: (event: {
15
+ target: {
16
+ name: string;
17
+ value: string;
18
+ };
19
+ } | ChangeEvent<HTMLInputElement>) => void;
20
+ }
21
+ declare const FSearchableSelect: React.ForwardRefExoticComponent<IFSearchableSelect & React.RefAttributes<HTMLInputElement>>;
22
+ export default FSearchableSelect;
@@ -0,0 +1 @@
1
+ export { default } from "./FSearchableSelect";
@@ -48,3 +48,4 @@ export { default as FNavigateBarItem } from "./NavigateBarComponents/FNavigateBa
48
48
  export { default as FMenuBlockLinks } from "./MenuLinks/FMenuBlockLinks";
49
49
  export { default as FMenuLinks } from "./MenuLinks/FMenuLinks";
50
50
  export { default as FTooltip } from "./FTooltip";
51
+ export { default as FSearchableSelect } from "./FSearchableSelect";
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ declare const FWaterErrorBoundaryPage: FC;
3
+ export default FWaterErrorBoundaryPage;
@@ -0,0 +1 @@
1
+ export { default } from "./Page";
@@ -0,0 +1 @@
1
+ export { default as FWaterErrorBoundaryPage } from "./error-boundary";
package/package.json CHANGED
@@ -1,78 +1,78 @@
1
- {
2
- "name": "fui-material",
3
- "version": "2.3.4",
4
- "type": "module",
5
- "publishConfig": {
6
- "access": "public",
7
- "registry": "https://registry.npmjs.org/"
8
- },
9
- "author": "Allori",
10
- "license": "ISC",
11
- "private": false,
12
- "scripts": {
13
- "dev": "vite",
14
- "build:types": "tsc --project tsconfig.build.json",
15
- "build": "vite build && npm run build:types",
16
- "build-publish": "vite build && npm run build:types && npm publish",
17
- "lint": "eslint .",
18
- "preview": "vite preview",
19
- "storybook": "storybook dev -p 6006",
20
- "deploy-storybook": "storybook build && gh-pages -d storybook-static --repo https://github.com/Allorion/fui-storybook.git",
21
- "build-storybook": "storybook build"
22
- },
23
- "dependencies": {
24
- "allorion-exporting-html-to-docx": "1.4.1",
25
- "allorion-exporting-html-to-xlsx": "1.8.3",
26
- "axios": "^1.7.4",
27
- "jszip": "^3.10.1",
28
- "react": "18.3.1",
29
- "react-dom": "18.3.1"
30
- },
31
- "devDependencies": {
32
- "@chromatic-com/storybook": "^3.2.6",
33
- "@eslint/js": "^9.25.0",
34
- "@rollup/plugin-image": "^3.0.3",
35
- "@storybook/addon-docs": "8.6.12",
36
- "@storybook/addon-essentials": "^8.6.12",
37
- "@storybook/addon-interactions": "^8.6.12",
38
- "@storybook/addon-onboarding": "^8.6.12",
39
- "@storybook/addon-styling-webpack": "^1.0.1",
40
- "@storybook/blocks": "^8.6.12",
41
- "@storybook/react": "^8.6.12",
42
- "@storybook/react-vite": "^8.6.12",
43
- "@storybook/test": "^8.6.12",
44
- "@types/node": "^22.4.1",
45
- "@types/react": "^18.3.3",
46
- "@types/react-dom": "^18.3.0",
47
- "@vitejs/plugin-react": "^4.4.1",
48
- "@vitest/browser": "^3.1.3",
49
- "@vitest/coverage-v8": "^3.1.3",
50
- "eslint": "^9.25.0",
51
- "eslint-plugin-react-hooks": "^5.2.0",
52
- "eslint-plugin-react-refresh": "^0.4.19",
53
- "eslint-plugin-storybook": "^0.12.0",
54
- "globals": "^16.0.0",
55
- "gh-pages": "6.3.0",
56
- "playwright": "^1.52.0",
57
- "rollup-plugin-copy": "^3.5.0",
58
- "sass": "1.88.0",
59
- "storybook": "^8.6.12",
60
- "typescript": "~5.8.3",
61
- "typescript-eslint": "^8.30.1",
62
- "vite": "^6.3.5",
63
- "vite-plugin-lib-inject-css": "^2.1.1",
64
- "vitest": "^3.1.3"
65
- },
66
- "main": "dist/f-ui-kit.umd.js",
67
- "module": "dist/f-ui-kit.es.js",
68
- "types": "dist/types/index.d.ts",
69
- "files": [
70
- "dist",
71
- "dist/types"
72
- ],
73
- "eslintConfig": {
74
- "extends": [
75
- "plugin:storybook/recommended"
76
- ]
77
- }
1
+ {
2
+ "name": "fui-material",
3
+ "version": "2.5.0",
4
+ "type": "module",
5
+ "publishConfig": {
6
+ "access": "public",
7
+ "registry": "https://registry.npmjs.org/"
8
+ },
9
+ "author": "Allori",
10
+ "license": "ISC",
11
+ "private": false,
12
+ "scripts": {
13
+ "dev": "vite",
14
+ "build:types": "tsc --project tsconfig.build.json",
15
+ "build": "vite build && npm run build:types",
16
+ "build-publish": "vite build && npm run build:types && npm publish",
17
+ "lint": "eslint .",
18
+ "preview": "vite preview",
19
+ "storybook": "storybook dev -p 6006",
20
+ "deploy-storybook": "storybook build && gh-pages -d storybook-static --repo https://github.com/Allorion/fui-storybook.git",
21
+ "build-storybook": "storybook build"
22
+ },
23
+ "dependencies": {
24
+ "allorion-exporting-html-to-docx": "1.4.1",
25
+ "allorion-exporting-html-to-xlsx": "1.8.3",
26
+ "axios": "^1.7.4",
27
+ "jszip": "^3.10.1",
28
+ "react": "18.3.1",
29
+ "react-dom": "18.3.1"
30
+ },
31
+ "devDependencies": {
32
+ "@chromatic-com/storybook": "^3.2.6",
33
+ "@eslint/js": "^9.25.0",
34
+ "@rollup/plugin-image": "^3.0.3",
35
+ "@storybook/addon-docs": "8.6.12",
36
+ "@storybook/addon-essentials": "^8.6.12",
37
+ "@storybook/addon-interactions": "^8.6.12",
38
+ "@storybook/addon-onboarding": "^8.6.12",
39
+ "@storybook/addon-styling-webpack": "^1.0.1",
40
+ "@storybook/blocks": "^8.6.12",
41
+ "@storybook/react": "^8.6.12",
42
+ "@storybook/react-vite": "^8.6.12",
43
+ "@storybook/test": "^8.6.12",
44
+ "@types/node": "^22.4.1",
45
+ "@types/react": "^18.3.3",
46
+ "@types/react-dom": "^18.3.0",
47
+ "@vitejs/plugin-react": "^4.4.1",
48
+ "@vitest/browser": "^3.1.3",
49
+ "@vitest/coverage-v8": "^3.1.3",
50
+ "eslint": "^9.25.0",
51
+ "eslint-plugin-react-hooks": "^5.2.0",
52
+ "eslint-plugin-react-refresh": "^0.4.19",
53
+ "eslint-plugin-storybook": "^0.12.0",
54
+ "globals": "^16.0.0",
55
+ "gh-pages": "6.3.0",
56
+ "playwright": "^1.52.0",
57
+ "rollup-plugin-copy": "^3.5.0",
58
+ "sass": "1.88.0",
59
+ "storybook": "^8.6.12",
60
+ "typescript": "~5.8.3",
61
+ "typescript-eslint": "^8.30.1",
62
+ "vite": "^6.3.5",
63
+ "vite-plugin-lib-inject-css": "^2.1.1",
64
+ "vitest": "^3.1.3"
65
+ },
66
+ "main": "dist/f-ui-kit.umd.js",
67
+ "module": "dist/f-ui-kit.es.js",
68
+ "types": "dist/types/index.d.ts",
69
+ "files": [
70
+ "dist",
71
+ "dist/types"
72
+ ],
73
+ "eslintConfig": {
74
+ "extends": [
75
+ "plugin:storybook/recommended"
76
+ ]
77
+ }
78
78
  }