@evoke-platform/ui-components 1.5.0-dev.1 → 1.5.0-dev.10

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.
Files changed (44) hide show
  1. package/dist/published/components/core/List/ListItemIcon/ListItemIcon.d.ts +4 -0
  2. package/dist/published/components/core/List/ListItemIcon/ListItemIcon.js +6 -0
  3. package/dist/published/components/core/List/ListItemIcon/index.d.ts +3 -0
  4. package/dist/published/components/core/List/ListItemIcon/index.js +3 -0
  5. package/dist/published/components/core/List/index.d.ts +2 -1
  6. package/dist/published/components/core/List/index.js +2 -1
  7. package/dist/published/components/core/index.d.ts +1 -1
  8. package/dist/published/components/core/index.js +1 -1
  9. package/dist/published/components/custom/CriteriaBuilder/CriteriaBuilder.js +6 -6
  10. package/dist/published/components/custom/CriteriaBuilder/ValueEditor.d.ts +2 -3
  11. package/dist/published/components/custom/CriteriaBuilder/ValueEditor.js +87 -62
  12. package/dist/published/components/custom/Form/Common/FormComponentWrapper.js +18 -17
  13. package/dist/published/components/custom/Form/FormComponents/FormFieldComponent.d.ts +1 -1
  14. package/dist/published/components/custom/Form/FormComponents/FormFieldComponent.js +6 -9
  15. package/dist/published/components/custom/Form/FormComponents/ObjectComponent/RelatedObjectInstance.js +3 -3
  16. package/dist/published/components/custom/Form/FormComponents/RepeatableFieldComponent/DocumentViewerCell.d.ts +13 -0
  17. package/dist/published/components/custom/Form/FormComponents/RepeatableFieldComponent/DocumentViewerCell.js +115 -0
  18. package/dist/published/components/custom/Form/FormComponents/RepeatableFieldComponent/RepeatableField.js +25 -26
  19. package/dist/published/components/custom/Form/FormComponents/RepeatableFieldComponent/RepeatableFieldComponent.js +1 -1
  20. package/dist/published/components/custom/Form/utils.js +1 -1
  21. package/dist/published/components/custom/FormField/BooleanSelect/BooleanSelect.js +28 -14
  22. package/dist/published/components/custom/FormField/BooleanSelect/BooleanSelect.test.js +50 -8
  23. package/dist/published/components/custom/FormField/FormField.d.ts +4 -1
  24. package/dist/published/components/custom/FormField/FormField.js +5 -2
  25. package/dist/published/components/custom/Menubar/Menubar.d.ts +14 -1
  26. package/dist/published/components/custom/Menubar/Menubar.js +9 -2
  27. package/dist/published/components/custom/Menubar/Menubar.test.js +5 -0
  28. package/dist/published/components/layout/Box/Box.d.ts +3 -3
  29. package/dist/published/components/layout/Box/Box.js +4 -4
  30. package/dist/published/icons/custom/NoNavigation.d.ts +3 -0
  31. package/dist/published/icons/custom/NoNavigation.js +10 -0
  32. package/dist/published/icons/custom/SideNavigation.d.ts +3 -0
  33. package/dist/published/icons/custom/SideNavigation.js +11 -0
  34. package/dist/published/icons/custom/TopNavigation.d.ts +3 -0
  35. package/dist/published/icons/custom/TopNavigation.js +11 -0
  36. package/dist/published/icons/custom/index.d.ts +3 -0
  37. package/dist/published/icons/custom/index.js +3 -0
  38. package/dist/published/stories/Box.stories.d.ts +3 -12
  39. package/dist/published/stories/CriteriaBuilder.stories.js +6 -0
  40. package/dist/published/stories/Form.stories.js +7 -2
  41. package/dist/published/stories/FormField.stories.js +2 -0
  42. package/dist/published/stories/MenuBar.stories.js +13 -18
  43. package/dist/published/stories/Palette.stories.d.ts +2 -12
  44. package/package.json +8 -6
@@ -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
  };
@@ -132,6 +132,8 @@ BooleanField.args = {
132
132
  required: true,
133
133
  readOnly: false,
134
134
  size: 'small',
135
+ displayOption: 'checkbox',
136
+ label: "<a href='#'>Label</a>",
135
137
  };
136
138
  export const FileUploadField = FormFieldTemplate.bind({});
137
139
  FileUploadField.args = {
@@ -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: 'Data Display/MenuBar',
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 Template = (props) => React.createElement(CustomMenuBar, { ...props });
25
- export const MenuBar = Template.bind({});
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<(props: import("@mui/system").BoxOwnProps<import("@mui/material/styles/createTheme").Theme> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
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<(props: import("@mui/system").BoxOwnProps<import("@mui/material/styles/createTheme").Theme> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
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.5.0-dev.1",
3
+ "version": "1.5.0-dev.10",
4
4
  "description": "",
5
5
  "main": "dist/published/index.js",
6
6
  "module": "dist/published/index.js",
@@ -18,9 +18,9 @@
18
18
  "test": "vitest",
19
19
  "test:ui": "vitest --ui",
20
20
  "copy-styles": "copyfiles -u 1 src/styles/*.css dist/published/",
21
- "build": "rm -rf ./dist && tsc && npm run copy-styles",
21
+ "build": "mkdirp -rf ./dist && tsc && npm run copy-styles",
22
22
  "build:cjs": "tsc --module CommonJS --outDir dist/cjs",
23
- "prepublish": "rm -rf ./dist && tsc && npm run copy-styles",
23
+ "prepublish": "mkdirp -rf ./dist && tsc && npm run copy-styles",
24
24
  "storybook": "start-storybook -p 6006",
25
25
  "build-storybook": "build-storybook",
26
26
  "lint": "npm run prettier:check && npm run eslint",
@@ -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.1.0-testing.5",
89
+ "@evoke-platform/context": "^1.2.0-0",
88
90
  "react": "^18.1.0",
89
91
  "react-dom": "^18.1.0"
90
92
  },