@evoke-platform/ui-components 1.4.0 → 1.5.0-dev.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/published/components/core/List/ListItemIcon/ListItemIcon.d.ts +4 -0
- package/dist/published/components/core/List/ListItemIcon/ListItemIcon.js +6 -0
- package/dist/published/components/core/List/ListItemIcon/index.d.ts +3 -0
- package/dist/published/components/core/List/ListItemIcon/index.js +3 -0
- package/dist/published/components/core/List/index.d.ts +2 -1
- package/dist/published/components/core/List/index.js +2 -1
- package/dist/published/components/core/index.d.ts +4 -2
- package/dist/published/components/core/index.js +2 -1
- package/dist/published/components/custom/CriteriaBuilder/CriteriaBuilder.js +6 -6
- package/dist/published/components/custom/CriteriaBuilder/ValueEditor.d.ts +2 -3
- package/dist/published/components/custom/CriteriaBuilder/ValueEditor.js +87 -62
- package/dist/published/components/custom/Form/Common/FormComponentWrapper.js +18 -17
- package/dist/published/components/custom/Form/FormComponents/FormFieldComponent.d.ts +1 -1
- package/dist/published/components/custom/Form/FormComponents/FormFieldComponent.js +7 -10
- package/dist/published/components/custom/Form/FormComponents/ObjectComponent/RelatedObjectInstance.js +3 -3
- package/dist/published/components/custom/Form/FormComponents/RepeatableFieldComponent/DocumentViewerCell.d.ts +13 -0
- package/dist/published/components/custom/Form/FormComponents/RepeatableFieldComponent/DocumentViewerCell.js +115 -0
- package/dist/published/components/custom/Form/FormComponents/RepeatableFieldComponent/RepeatableField.js +25 -26
- package/dist/published/components/custom/Form/FormComponents/RepeatableFieldComponent/RepeatableFieldComponent.js +1 -1
- package/dist/published/components/custom/Form/utils.js +1 -1
- package/dist/published/components/custom/FormField/BooleanSelect/BooleanSelect.js +24 -21
- package/dist/published/components/custom/FormField/BooleanSelect/BooleanSelect.test.js +50 -8
- package/dist/published/components/custom/FormField/FormField.d.ts +4 -1
- package/dist/published/components/custom/FormField/FormField.js +5 -2
- package/dist/published/components/custom/Menubar/Menubar.d.ts +14 -1
- package/dist/published/components/custom/Menubar/Menubar.js +9 -2
- package/dist/published/components/custom/Menubar/Menubar.test.js +5 -0
- package/dist/published/components/layout/Box/Box.d.ts +3 -3
- package/dist/published/components/layout/Box/Box.js +4 -4
- package/dist/published/icons/custom/NoNavigation.d.ts +3 -0
- package/dist/published/icons/custom/NoNavigation.js +10 -0
- package/dist/published/icons/custom/SideNavigation.d.ts +3 -0
- package/dist/published/icons/custom/SideNavigation.js +11 -0
- package/dist/published/icons/custom/TopNavigation.d.ts +3 -0
- package/dist/published/icons/custom/TopNavigation.js +11 -0
- package/dist/published/icons/custom/index.d.ts +3 -0
- package/dist/published/icons/custom/index.js +3 -0
- package/dist/published/index.d.ts +1 -1
- package/dist/published/index.js +1 -1
- package/dist/published/stories/Box.stories.d.ts +3 -12
- package/dist/published/stories/CriteriaBuilder.stories.js +6 -0
- package/dist/published/stories/Form.stories.js +7 -2
- package/dist/published/stories/FormField.stories.js +2 -0
- package/dist/published/stories/MenuBar.stories.js +13 -18
- package/dist/published/stories/Palette.stories.d.ts +2 -12
- package/package.json +7 -4
|
@@ -95,6 +95,12 @@ const defaultProperties = [
|
|
|
95
95
|
type: 'integer',
|
|
96
96
|
required: false,
|
|
97
97
|
},
|
|
98
|
+
{
|
|
99
|
+
id: 'canApply',
|
|
100
|
+
name: 'Can Apply',
|
|
101
|
+
type: 'boolean',
|
|
102
|
+
required: true,
|
|
103
|
+
},
|
|
98
104
|
];
|
|
99
105
|
const CriteriaBuilderTemplate = (args) => {
|
|
100
106
|
const [criteria, setCriteria] = React.useState(args.criteria);
|
|
@@ -24,6 +24,11 @@ const object = {
|
|
|
24
24
|
name: 'Integer',
|
|
25
25
|
type: 'integer',
|
|
26
26
|
},
|
|
27
|
+
{
|
|
28
|
+
id: 'boolean',
|
|
29
|
+
name: 'Boolean',
|
|
30
|
+
type: 'boolean',
|
|
31
|
+
},
|
|
27
32
|
],
|
|
28
33
|
actions: [
|
|
29
34
|
{
|
|
@@ -55,7 +60,7 @@ FormWithButtons.args = {
|
|
|
55
60
|
actionId: '_update',
|
|
56
61
|
actionType: 'update',
|
|
57
62
|
object: object,
|
|
58
|
-
instance: { id: 'id', objectId: 'test', name: 'test', integer: 12, decimal: 12.5 },
|
|
63
|
+
instance: { id: 'id', objectId: 'test', name: 'test', integer: 12, decimal: 12.5, boolean: true },
|
|
59
64
|
};
|
|
60
65
|
const FormWithNoButtonsTemplate = (args) => {
|
|
61
66
|
return (React.createElement("div", null,
|
|
@@ -76,7 +81,7 @@ FormWithNoButtons.args = {
|
|
|
76
81
|
actionId: '_update',
|
|
77
82
|
actionType: 'update',
|
|
78
83
|
object: object,
|
|
79
|
-
instance: { id: 'id', objectId: 'test', name: 'test', integer: 12, decimal: 12.5 },
|
|
84
|
+
instance: { id: 'id', objectId: 'test', name: 'test', integer: 12, decimal: 12.5, boolean: true },
|
|
80
85
|
hideButtons: true,
|
|
81
86
|
formRef: { current: {} },
|
|
82
87
|
};
|
|
@@ -1,25 +1,20 @@
|
|
|
1
|
-
import { Link } from '@mui/material';
|
|
2
1
|
import React from 'react';
|
|
3
2
|
import { MenuBar as CustomMenuBar } from '../index';
|
|
4
3
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
5
4
|
const logo = require('../assets/SA_logo.jpeg');
|
|
6
5
|
export default {
|
|
7
|
-
title: '
|
|
6
|
+
title: 'Custom/MenuBar',
|
|
8
7
|
component: CustomMenuBar,
|
|
9
|
-
argTypes: {
|
|
10
|
-
navItems: {
|
|
11
|
-
control: 'object',
|
|
12
|
-
defaultValue: React.createElement(Link, null, "Object"),
|
|
13
|
-
},
|
|
14
|
-
showNotifications: {
|
|
15
|
-
defaultValue: true,
|
|
16
|
-
type: 'boolean',
|
|
17
|
-
},
|
|
18
|
-
logo: {
|
|
19
|
-
defaultValue: logo,
|
|
20
|
-
},
|
|
21
|
-
envName: { defaultValue: 'System Automation' },
|
|
22
|
-
},
|
|
23
8
|
};
|
|
24
|
-
const
|
|
25
|
-
export const MenuBar =
|
|
9
|
+
const MenuBarTemplate = (args) => React.createElement(CustomMenuBar, { ...args });
|
|
10
|
+
export const MenuBar = MenuBarTemplate.bind({});
|
|
11
|
+
MenuBar.args = {
|
|
12
|
+
logo: logo,
|
|
13
|
+
logoAltText: 'System Automation',
|
|
14
|
+
navItems: (React.createElement(React.Fragment, null,
|
|
15
|
+
React.createElement("a", { href: "#" }, "Object1"),
|
|
16
|
+
React.createElement("a", { href: "#" }, "Object2"),
|
|
17
|
+
React.createElement("a", { href: "#" }, "Object3"))),
|
|
18
|
+
envName: 'System Automation',
|
|
19
|
+
showNotifications: true,
|
|
20
|
+
};
|
|
@@ -1,15 +1,5 @@
|
|
|
1
1
|
import { ComponentMeta, ComponentStory } from '@storybook/react';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
declare const _default: ComponentMeta<
|
|
4
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
5
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | keyof import("@mui/system").BoxOwnProps<import("@mui/material/styles/createTheme").Theme>> & {
|
|
6
|
-
sx?: object | undefined;
|
|
7
|
-
component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
|
|
8
|
-
}) => React.JSX.Element>;
|
|
3
|
+
declare const _default: ComponentMeta<React.ForwardRefExoticComponent<Omit<import("../components/layout/Box/Box").BoxProps, "ref"> & React.RefAttributes<unknown>>>;
|
|
9
4
|
export default _default;
|
|
10
|
-
export declare const Palette: ComponentStory<
|
|
11
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
12
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | keyof import("@mui/system").BoxOwnProps<import("@mui/material/styles/createTheme").Theme>> & {
|
|
13
|
-
sx?: object | undefined;
|
|
14
|
-
component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
|
|
15
|
-
}) => React.JSX.Element>;
|
|
5
|
+
export declare const Palette: ComponentStory<React.ForwardRefExoticComponent<Omit<import("../components/layout/Box/Box").BoxProps, "ref"> & React.RefAttributes<unknown>>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evoke-platform/ui-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0-dev.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/published/index.js",
|
|
6
6
|
"module": "dist/published/index.js",
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"eslint": "eslint src",
|
|
32
32
|
"eslint:fix": "npm run eslint -- --fix",
|
|
33
33
|
"release": "commit-and-tag-version --releaseCommitMessageFormat \"chore(release): {{currentTag}} [skip ci]\"",
|
|
34
|
-
"prepare": "husky install"
|
|
34
|
+
"prepare": "husky install",
|
|
35
|
+
"yalc:publish": "npm run build && yalc push --replace --sig"
|
|
35
36
|
},
|
|
36
37
|
"author": "",
|
|
37
38
|
"license": "MIT",
|
|
@@ -81,10 +82,11 @@
|
|
|
81
82
|
"rimraf": "^3.0.2",
|
|
82
83
|
"typescript": "^4.7.3",
|
|
83
84
|
"vitest": "^1.5.3",
|
|
84
|
-
"webpack": "^5.74.0"
|
|
85
|
+
"webpack": "^5.74.0",
|
|
86
|
+
"yalc": "^1.0.0-pre.53"
|
|
85
87
|
},
|
|
86
88
|
"peerDependencies": {
|
|
87
|
-
"@evoke-platform/context": "^1.
|
|
89
|
+
"@evoke-platform/context": "^1.2.0-0",
|
|
88
90
|
"react": "^18.1.0",
|
|
89
91
|
"react-dom": "^18.1.0"
|
|
90
92
|
},
|
|
@@ -103,6 +105,7 @@
|
|
|
103
105
|
"@mui/material": "^5.16.7",
|
|
104
106
|
"@mui/x-data-grid": "^6.4.0",
|
|
105
107
|
"@mui/x-date-pickers": "^5.0.13",
|
|
108
|
+
"@mui/x-tree-view": "^7.29.1",
|
|
106
109
|
"@react-querybuilder/dnd": "^5.4.1",
|
|
107
110
|
"@react-querybuilder/material": "^6.5.0",
|
|
108
111
|
"clean-deep": "^3.4.0",
|