@xqmsg/ui-core 0.23.2 → 0.24.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/LICENSE +20 -20
- package/README.md +40 -40
- package/dist/{78c9d6fd7766410f.svg → 89793640b494d7ea.svg} +9 -9
- package/dist/components/input/InputTypes.d.ts +1 -1
- package/dist/components/input/index.d.ts +3 -3
- package/dist/components/select/index.d.ts +6 -5
- package/dist/components/text/index.d.ts +2 -2
- package/dist/ui-core.cjs.development.js +12 -19
- package/dist/ui-core.cjs.development.js.map +1 -1
- package/dist/ui-core.cjs.production.min.js +1 -1
- package/dist/ui-core.cjs.production.min.js.map +1 -1
- package/dist/ui-core.esm.js +12 -19
- package/dist/ui-core.esm.js.map +1 -1
- package/package.json +118 -118
- package/src/components/banner/Banner.stories.tsx +100 -100
- package/src/components/banner/index.tsx +75 -73
- package/src/components/breadcrumbs/Breadcrumbs.stories.tsx +66 -66
- package/src/components/breadcrumbs/components/icon/index.tsx +38 -38
- package/src/components/breadcrumbs/components/label/index.tsx +20 -20
- package/src/components/breadcrumbs/index.tsx +48 -48
- package/src/components/button/Button.stories.tsx +140 -140
- package/src/components/button/google/GoogleButton.stories.tsx +23 -23
- package/src/components/button/google/index.tsx +29 -29
- package/src/components/button/index.tsx +51 -51
- package/src/components/button/microsoft/MicrosoftButton.stories.tsx +25 -25
- package/src/components/button/microsoft/index.tsx +29 -29
- package/src/components/button/spinner/SpinnerButton.stories.tsx +60 -60
- package/src/components/button/spinner/index.tsx +36 -36
- package/src/components/card/Card.stories.tsx +56 -56
- package/src/components/card/index.tsx +78 -78
- package/src/components/form/Form.stories.tsx +62 -62
- package/src/components/form/FormTypes.ts +20 -20
- package/src/components/form/hooks/useFormHandler.tsx +74 -74
- package/src/components/form/index.tsx +25 -25
- package/src/components/form/section/FormSection.stories.tsx +109 -109
- package/src/components/form/section/index.tsx +87 -87
- package/src/components/form/utils/formErrors.ts +34 -34
- package/src/components/icons/checkmark/checkmark.svg +3 -3
- package/src/components/icons/checkmark/index.tsx +13 -13
- package/src/components/icons/chevron/down/chevron-down.svg +3 -3
- package/src/components/icons/chevron/down/index.tsx +14 -14
- package/src/components/icons/chevron/right/chevron-right.svg +3 -3
- package/src/components/icons/chevron/right/index.tsx +13 -13
- package/src/components/icons/clock/clock.svg +3 -3
- package/src/components/icons/clock/index.tsx +13 -13
- package/src/components/icons/close/close.svg +3 -3
- package/src/components/icons/close/index.tsx +21 -21
- package/src/components/icons/dropdown/dropdown.svg +3 -3
- package/src/components/icons/dropdown/index.tsx +16 -16
- package/src/components/icons/error/error.svg +3 -3
- package/src/components/icons/error/index.tsx +13 -13
- package/src/components/icons/file/fill/file-fill.svg +4 -4
- package/src/components/icons/file/fill/index.tsx +13 -13
- package/src/components/icons/file/outline/file-outline.svg +3 -3
- package/src/components/icons/file/outline/index.tsx +13 -13
- package/src/components/icons/folder/add/fill/folder-add-fill.svg +3 -3
- package/src/components/icons/folder/add/fill/index.tsx +13 -13
- package/src/components/icons/folder/add/outline/folder-add-outline.svg +3 -3
- package/src/components/icons/folder/add/outline/index.tsx +15 -15
- package/src/components/icons/folder/fill/folder-fill-gradient.svg +33 -33
- package/src/components/icons/folder/fill/folder-fill.svg +4 -4
- package/src/components/icons/folder/fill/index.tsx +21 -21
- package/src/components/icons/folder/outline/folder-outline.svg +3 -3
- package/src/components/icons/folder/outline/index.tsx +13 -13
- package/src/components/icons/gear/GearIcon.tsx +36 -36
- package/src/components/icons/google/drive/index.tsx +13 -13
- package/src/components/icons/google/google.svg +13 -13
- package/src/components/icons/google/index.tsx +13 -13
- package/src/components/icons/group/group.svg +3 -3
- package/src/components/icons/group/index.tsx +13 -13
- package/src/components/icons/home/home.svg +3 -3
- package/src/components/icons/home/index.tsx +13 -13
- package/src/components/icons/image/image.svg +3 -3
- package/src/components/icons/image/index.tsx +13 -13
- package/src/components/icons/index.tsx +101 -101
- package/src/components/icons/link/index.tsx +13 -13
- package/src/components/icons/link/link.svg +4 -4
- package/src/components/icons/menu/index.tsx +13 -13
- package/src/components/icons/menu/menu.svg +3 -3
- package/src/components/icons/microsoft/index.tsx +13 -13
- package/src/components/icons/microsoft/microsoft.svg +9 -9
- package/src/components/icons/microsoft/onedrive/index.tsx +16 -16
- package/src/components/icons/neutral/index.tsx +14 -14
- package/src/components/icons/neutral/neutral.svg +3 -3
- package/src/components/icons/page/index.tsx +13 -13
- package/src/components/icons/page/page.svg +3 -3
- package/src/components/icons/positive/index.tsx +13 -13
- package/src/components/icons/positive/positive.svg +3 -3
- package/src/components/icons/question/index.tsx +13 -13
- package/src/components/icons/question/question.svg +3 -3
- package/src/components/icons/search/index.tsx +13 -13
- package/src/components/icons/search/search.svg +3 -3
- package/src/components/icons/services/index.tsx +13 -13
- package/src/components/icons/services/services.svg +3 -3
- package/src/components/icons/settings/index.tsx +14 -14
- package/src/components/icons/settings/settings.svg +6 -6
- package/src/components/icons/table/fill/index.tsx +13 -13
- package/src/components/icons/table/fill/table-fill.svg +3 -3
- package/src/components/icons/table/outline/index.tsx +13 -13
- package/src/components/icons/table/outline/table-outline.svg +3 -3
- package/src/components/icons/task/index.tsx +10 -10
- package/src/components/icons/task/task.svg +11 -11
- package/src/components/icons/trash/index.tsx +13 -13
- package/src/components/icons/trash/trash.svg +3 -3
- package/src/components/icons/vault/index.tsx +14 -14
- package/src/components/icons/video/index.tsx +13 -13
- package/src/components/icons/video/video.svg +3 -3
- package/src/components/icons/warning/index.tsx +13 -13
- package/src/components/icons/warning/warning.svg +3 -3
- package/src/components/icons/workspace/index.tsx +14 -14
- package/src/components/input/Input.stories.tsx +287 -287
- package/src/components/input/InputTypes.ts +83 -77
- package/src/components/input/StackedCheckbox/StackedCheckbox.tsx +44 -44
- package/src/components/input/StackedInput/StackedInput.tsx +60 -60
- package/src/components/input/StackedMultiSelect/index.tsx +349 -349
- package/src/components/input/StackedPilledInput/index.tsx +386 -386
- package/src/components/input/StackedRadio/StackedRadioGroup.tsx +38 -38
- package/src/components/input/StackedSelect/index.tsx +232 -232
- package/src/components/input/StackedSwitch/index.tsx +33 -33
- package/src/components/input/StackedTextarea/StackedTextarea.tsx +55 -55
- package/src/components/input/components/dropdown/index.tsx +111 -111
- package/src/components/input/components/label/index.tsx +35 -35
- package/src/components/input/components/token/Token.stories.tsx +25 -25
- package/src/components/input/components/token/index.tsx +45 -45
- package/src/components/input/index.tsx +299 -298
- package/src/components/layout/BorderedBox/index.tsx +30 -30
- package/src/components/layout/Layout.stories.tsx +40 -40
- package/src/components/layout/index.tsx +100 -100
- package/src/components/link/Link.stories.tsx +23 -23
- package/src/components/link/index.tsx +34 -34
- package/src/components/loading/LoadingIndicator.stories.tsx +45 -45
- package/src/components/loading/index.tsx +45 -45
- package/src/components/modal/Modal.stories.tsx +36 -36
- package/src/components/modal/components/action/index.tsx +37 -37
- package/src/components/modal/index.tsx +41 -41
- package/src/components/navigation/NavigationMenu.stories.tsx +85 -85
- package/src/components/navigation/components/header/index.tsx +27 -27
- package/src/components/navigation/components/items/index.tsx +76 -76
- package/src/components/navigation/index.tsx +87 -87
- package/src/components/select/index.tsx +139 -140
- package/src/components/table/Table.stories.tsx +63 -63
- package/src/components/table/TableTypes.ts +15 -15
- package/src/components/table/components/loading/index.tsx +45 -45
- package/src/components/table/components/text/index.tsx +23 -23
- package/src/components/table/empty/index.tsx +47 -47
- package/src/components/table/index.tsx +84 -84
- package/src/components/table/utils/generateTableColumns.ts +9 -9
- package/src/components/tabs/TabsWrapper.stories.tsx +85 -85
- package/src/components/tabs/index.tsx +39 -39
- package/src/components/text/Text.stories.tsx +59 -59
- package/src/components/text/index.tsx +16 -16
- package/src/components/toast/Toast.stories.tsx +52 -52
- package/src/components/toast/index.tsx +78 -78
- package/src/components/toolbar/Toolbar.stories.tsx +59 -59
- package/src/components/toolbar/components/actions/add/index.tsx +18 -18
- package/src/components/toolbar/components/actions/search/index.tsx +38 -38
- package/src/components/toolbar/components/actions/sort/index.tsx +49 -49
- package/src/components/toolbar/components/breadcrumbs/index.tsx +63 -63
- package/src/components/toolbar/components/breadcrumbs/item/index.tsx +72 -72
- package/src/components/toolbar/components/dropdown/index.tsx +107 -107
- package/src/components/toolbar/components/navigation/components/button/left/index.tsx +28 -28
- package/src/components/toolbar/components/navigation/components/button/left/left-arrow.svg +3 -3
- package/src/components/toolbar/components/navigation/components/button/right/index.tsx +27 -27
- package/src/components/toolbar/components/navigation/components/button/right/right-arrow.svg +3 -3
- package/src/components/toolbar/components/navigation/index.tsx +36 -36
- package/src/components/toolbar/index.tsx +55 -55
- package/src/hooks/useDeepEffect.tsx +22 -22
- package/src/hooks/useDidMountEffect.tsx +13 -13
- package/src/hooks/useOnOutsideClick.tsx +31 -31
- package/src/hooks/useToast.tsx +16 -16
- package/src/index.tsx +78 -78
- package/src/theme/components/alert.ts +60 -60
- package/src/theme/components/badge.ts +59 -59
- package/src/theme/components/button.ts +163 -163
- package/src/theme/components/checkbox.ts +28 -28
- package/src/theme/components/code.ts +16 -16
- package/src/theme/components/form-error.ts +31 -31
- package/src/theme/components/form-label.ts +17 -17
- package/src/theme/components/form.ts +29 -29
- package/src/theme/components/input.ts +65 -65
- package/src/theme/components/link.ts +118 -118
- package/src/theme/components/modal.ts +45 -45
- package/src/theme/components/select.ts +36 -36
- package/src/theme/components/switch.ts +89 -89
- package/src/theme/components/table.ts +42 -42
- package/src/theme/components/tabs.ts +255 -255
- package/src/theme/components/text.ts +93 -93
- package/src/theme/components/textarea.ts +42 -42
- package/src/theme/customXQChakraTheme.ts +54 -54
- package/src/theme/foundations/breakpoints.ts +18 -18
- package/src/theme/foundations/colors.ts +165 -165
- package/src/theme/foundations/shadows.ts +23 -23
- package/src/theme/foundations/typography.ts +62 -62
- package/src/theme/provider/index.tsx +21 -21
- package/src/theme/styles.ts +19 -19
- package/CHANGELOG.md +0 -468
|
@@ -19,7 +19,7 @@ export interface ValidationProps {
|
|
|
19
19
|
isInvalid?: boolean;
|
|
20
20
|
errorText?: string;
|
|
21
21
|
}
|
|
22
|
-
export interface InputFieldProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, 'color' | 'height' | 'width' | 'size' | 'ref'>, FieldProps, Partial<InputProps> {
|
|
22
|
+
export interface InputFieldProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, 'color' | 'height' | 'width' | 'size' | 'ref' | 'onChange' | 'defaultValue'>, FieldProps, Partial<InputProps> {
|
|
23
23
|
}
|
|
24
24
|
export interface TextareaFieldProps extends Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, 'color' | 'height' | 'width' | 'size' | 'ref'>, FieldProps, Partial<TextareaProps> {
|
|
25
25
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { ChangeEvent } from 'react';
|
|
2
2
|
import { FieldOptions, ValidationProps, InputType } from './InputTypes';
|
|
3
3
|
import { Control, FieldValues, UseFormClearErrors, UseFormSetError, UseFormSetValue } from 'react-hook-form';
|
|
4
|
-
export interface InputProps<T extends FieldValues> extends ValidationProps {
|
|
4
|
+
export interface InputProps<T extends FieldValues = FieldValues> extends ValidationProps {
|
|
5
5
|
inputType: InputType;
|
|
6
6
|
name: string;
|
|
7
7
|
ariaLabel: string;
|
|
@@ -14,7 +14,7 @@ export interface InputProps<T extends FieldValues> extends ValidationProps {
|
|
|
14
14
|
maxLength?: number;
|
|
15
15
|
helperText?: React.ReactNode;
|
|
16
16
|
control: Control<T, any>;
|
|
17
|
-
onChange?: (
|
|
17
|
+
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
18
18
|
disabled?: boolean;
|
|
19
19
|
tooltipText?: string;
|
|
20
20
|
setValue: UseFormSetValue<T>;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { SelectProps } from '@chakra-ui/react';
|
|
3
|
+
import { Control, FieldValues, Path, UseFormClearErrors, UseFormSetError, UseFormSetValue } from 'react-hook-form';
|
|
3
4
|
import { FieldOptions, ValidationProps } from 'src/components/input/InputTypes';
|
|
4
|
-
export interface SelectNativeProps<T extends FieldValues> extends ValidationProps {
|
|
5
|
+
export interface SelectNativeProps<T extends FieldValues> extends ValidationProps, SelectProps {
|
|
5
6
|
isRequired: boolean;
|
|
6
|
-
name:
|
|
7
|
+
name: Path<T>;
|
|
7
8
|
ariaLabel: string;
|
|
8
9
|
placeholder?: string;
|
|
9
10
|
defaultValue?: string;
|
|
@@ -13,7 +14,7 @@ export interface SelectNativeProps<T extends FieldValues> extends ValidationProp
|
|
|
13
14
|
fullOptions?: FieldOptions;
|
|
14
15
|
helperText?: React.ReactNode;
|
|
15
16
|
control: Control<T, unknown>;
|
|
16
|
-
onChange?: (
|
|
17
|
+
onChange?: (e: React.ChangeEvent<HTMLSelectElement>) => void;
|
|
17
18
|
disabled?: boolean;
|
|
18
19
|
tooltipText?: string;
|
|
19
20
|
setValue: UseFormSetValue<T>;
|
|
@@ -24,4 +25,4 @@ export interface SelectNativeProps<T extends FieldValues> extends ValidationProp
|
|
|
24
25
|
/**
|
|
25
26
|
* A functional React component utilized to render the `SelectNative` component.
|
|
26
27
|
*/
|
|
27
|
-
export declare
|
|
28
|
+
export declare function SelectNative<T extends FieldValues = FieldValues>({ label, ariaLabel, className, placeholder, name, helperText, options, tooltipText, isInvalid, errorText, isRequired, defaultValue, fullOptions, control, disabled, onChange, setValue, setError, clearErrors, ...props }: SelectNativeProps<T>): React.ReactElement;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React, { PropsWithChildren } from 'react';
|
|
2
2
|
import textTheme from '../../theme/components/text';
|
|
3
|
-
export
|
|
3
|
+
export declare type TextProps = PropsWithChildren & {
|
|
4
4
|
variant: keyof typeof textTheme.variants;
|
|
5
|
-
}
|
|
5
|
+
};
|
|
6
6
|
/**
|
|
7
7
|
* A functional React component utilized to render the `Text` component. The component is mainly
|
|
8
8
|
* controlled by by the `variant` prop which determines `fontSize`, `fontWeight`, etc.
|
|
@@ -231,8 +231,9 @@ var Banner = function Banner(_ref) {
|
|
|
231
231
|
}, /*#__PURE__*/React__default.createElement(react.Box, {
|
|
232
232
|
pr: "8px"
|
|
233
233
|
}, Icon), /*#__PURE__*/React__default.createElement(react.Box, {
|
|
234
|
+
flexGrow: "1",
|
|
234
235
|
pt: type === 'condensed' ? 0 : '8px'
|
|
235
|
-
},
|
|
236
|
+
}, message), onClick && buttonText && /*#__PURE__*/React__default.createElement(react.Flex, {
|
|
236
237
|
ml: type === 'condensed' ? 'auto' : '',
|
|
237
238
|
pt: type === 'condensed' ? 0 : '8px',
|
|
238
239
|
justifyContent: type === 'condensed' ? 'flex-end' : 'flex-end'
|
|
@@ -1167,9 +1168,7 @@ var StackedSelect = /*#__PURE__*/React__default.forwardRef(function (_ref2, _ref
|
|
|
1167
1168
|
}))), isFocussed && /*#__PURE__*/React__default.createElement(Dropdown, {
|
|
1168
1169
|
position: position,
|
|
1169
1170
|
dropdownRef: dropdownMenuRef,
|
|
1170
|
-
onSelectItem:
|
|
1171
|
-
return handleOnSelectItem(option);
|
|
1172
|
-
},
|
|
1171
|
+
onSelectItem: handleOnSelectItem,
|
|
1173
1172
|
options: options,
|
|
1174
1173
|
optionIndex: optionIndex
|
|
1175
1174
|
}));
|
|
@@ -1900,7 +1899,7 @@ function Input(_ref) {
|
|
|
1900
1899
|
setError = _ref.setError,
|
|
1901
1900
|
clearErrors = _ref.clearErrors,
|
|
1902
1901
|
separators = _ref.separators;
|
|
1903
|
-
|
|
1902
|
+
function selectedInputField(onChange, onBlur, ref, value) {
|
|
1904
1903
|
switch (inputType) {
|
|
1905
1904
|
case 'text':
|
|
1906
1905
|
return /*#__PURE__*/React__default.createElement(StackedInput, {
|
|
@@ -2044,7 +2043,7 @@ function Input(_ref) {
|
|
|
2044
2043
|
default:
|
|
2045
2044
|
return null;
|
|
2046
2045
|
}
|
|
2047
|
-
}
|
|
2046
|
+
}
|
|
2048
2047
|
var nonLabeledInputs = ['checkbox'];
|
|
2049
2048
|
return /*#__PURE__*/React__default.createElement(reactHookForm.Controller, {
|
|
2050
2049
|
control: control,
|
|
@@ -3022,7 +3021,7 @@ var _excluded$4 = ["label", "ariaLabel", "className", "placeholder", "name", "he
|
|
|
3022
3021
|
/**
|
|
3023
3022
|
* A functional React component utilized to render the `SelectNative` component.
|
|
3024
3023
|
*/
|
|
3025
|
-
|
|
3024
|
+
function SelectNative(_ref) {
|
|
3026
3025
|
var name = _ref.name,
|
|
3027
3026
|
helperText = _ref.helperText,
|
|
3028
3027
|
options = _ref.options,
|
|
@@ -3051,26 +3050,21 @@ var SelectNative = function SelectNative(_ref) {
|
|
|
3051
3050
|
borderLeft: 'none',
|
|
3052
3051
|
borderRight: 'none'
|
|
3053
3052
|
};
|
|
3054
|
-
var handleOnSelectItem = function handleOnSelectItem(
|
|
3053
|
+
var handleOnSelectItem = function handleOnSelectItem(e) {
|
|
3054
|
+
var selectedValue = e.target.value;
|
|
3055
3055
|
var selectedOption = options == null ? void 0 : options.find(function (_ref2) {
|
|
3056
3056
|
var val = _ref2.value;
|
|
3057
3057
|
return selectedValue === val;
|
|
3058
3058
|
});
|
|
3059
3059
|
if (selectedOption) {
|
|
3060
3060
|
if (onChange) {
|
|
3061
|
-
onChange(
|
|
3061
|
+
onChange(e);
|
|
3062
3062
|
}
|
|
3063
3063
|
setValue(name, selectedOption.value);
|
|
3064
3064
|
} else {
|
|
3065
3065
|
setValue(name, selectedValue);
|
|
3066
3066
|
}
|
|
3067
3067
|
};
|
|
3068
|
-
React.useEffect(function () {
|
|
3069
|
-
if (defaultValue) {
|
|
3070
|
-
handleOnSelectItem(defaultValue);
|
|
3071
|
-
}
|
|
3072
|
-
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
3073
|
-
}, [defaultValue]);
|
|
3074
3068
|
return /*#__PURE__*/React__default.createElement(reactHookForm.Controller, {
|
|
3075
3069
|
control: control,
|
|
3076
3070
|
name: name,
|
|
@@ -3092,9 +3086,8 @@ var SelectNative = function SelectNative(_ref) {
|
|
|
3092
3086
|
ref: ref,
|
|
3093
3087
|
value: value,
|
|
3094
3088
|
disabled: disabled != null ? disabled : false,
|
|
3095
|
-
onChange:
|
|
3096
|
-
|
|
3097
|
-
},
|
|
3089
|
+
onChange: handleOnSelectItem,
|
|
3090
|
+
defaultValue: defaultValue,
|
|
3098
3091
|
style: style
|
|
3099
3092
|
}), options && options.map(function (i) {
|
|
3100
3093
|
return /*#__PURE__*/React__default.createElement("option", {
|
|
@@ -3104,7 +3097,7 @@ var SelectNative = function SelectNative(_ref) {
|
|
|
3104
3097
|
})), isInvalid ? /*#__PURE__*/React__default.createElement(react.FormErrorMessage, null, errorText) : helperText && /*#__PURE__*/React__default.createElement(react.FormHelperText, null, helperText));
|
|
3105
3098
|
}
|
|
3106
3099
|
});
|
|
3107
|
-
}
|
|
3100
|
+
}
|
|
3108
3101
|
|
|
3109
3102
|
/**
|
|
3110
3103
|
* A functional React component utilized to render the `BorderedBox` component
|