@pipelinesolucoes/form 1.3.6 → 1.3.8
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/README.md +3 -0
- package/dist/components/Field.d.ts +4 -21
- package/dist/components/Field.js +4 -4
- package/dist/components/Field.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/theme.js +3 -0
- package/dist/theme.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,6 +44,9 @@ A biblioteca inclui os seguintes componentes:
|
|
|
44
44
|
|
|
45
45
|
- **NotificationSnackbar**
|
|
46
46
|
Componente que exibe uma notificação no topo da tela utilizando o Snackbar e Alert do Material UI.
|
|
47
|
+
|
|
48
|
+
- **Field**
|
|
49
|
+
Componente que exibe label e valor apenas para leitura.
|
|
47
50
|
---
|
|
48
51
|
|
|
49
52
|
## ✨ Características
|
|
@@ -1,29 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
3
|
-
import { BorderProps, ColorProps, LayoutProps
|
|
4
|
-
interface FieldProps extends Omit<ColorProps, 'backgroundHover' | 'backgroundFocused' | 'backgroundDisabled' | 'colorHover' | 'colorDisabled' | 'colorFocused'>, Omit<BorderProps, 'border'>, Pick<LayoutProps, 'height' | 'padding' | 'margin' | "maxWidth"> {
|
|
2
|
+
import { TypographyVariant } from '@mui/material/styles';
|
|
3
|
+
import { BorderProps, ColorProps, LayoutProps } from '@pipelinesolucoes/theme';
|
|
4
|
+
export interface FieldProps extends Omit<ColorProps, 'backgroundHover' | 'backgroundFocused' | 'backgroundDisabled' | 'colorHover' | 'colorDisabled' | 'colorFocused'>, Omit<BorderProps, 'border'>, Pick<LayoutProps, 'height' | 'padding' | 'margin' | "maxWidth"> {
|
|
5
5
|
label: string;
|
|
6
6
|
textVariantLabel?: TypographyVariant;
|
|
7
|
-
colorLabel
|
|
7
|
+
colorLabel?: string;
|
|
8
8
|
value?: string | number | null;
|
|
9
9
|
textVariantField?: TypographyVariant;
|
|
10
10
|
}
|
|
11
|
-
export declare const StyledContainer: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
12
|
-
maxWidth?: string;
|
|
13
|
-
background?: string;
|
|
14
|
-
color?: string;
|
|
15
|
-
borderRadius?: string | number;
|
|
16
|
-
boxShadow?: string;
|
|
17
|
-
borderColor?: string;
|
|
18
|
-
textVariant?: string;
|
|
19
|
-
padding?: string | number;
|
|
20
|
-
height?: string | number;
|
|
21
|
-
margin?: string | number;
|
|
22
|
-
typo?: CSSObject | PipelineSolucoesTypographyTokens;
|
|
23
|
-
}, {}, {}>;
|
|
24
|
-
export declare const LabelStyle: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
25
|
-
color?: string;
|
|
26
|
-
typo?: CSSObject | PipelineSolucoesTypographyTokens;
|
|
27
|
-
}, {}, {}>;
|
|
28
11
|
declare const Field: React.FC<FieldProps>;
|
|
29
12
|
export default Field;
|
package/dist/components/Field.js
CHANGED
|
@@ -3,7 +3,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
3
3
|
import { Box } from '@mui/material';
|
|
4
4
|
import { styled, useTheme } from '@mui/material/styles';
|
|
5
5
|
import { fbbackground, fbborderColor, fbborderRadius, fbboxShadow, fbcolor, fbheigth, fbmargin, fbpadding } from '@/constant';
|
|
6
|
-
|
|
6
|
+
const StyledContainer = styled(Box, {
|
|
7
7
|
shouldForwardProp: (prop) => ![
|
|
8
8
|
'maxWidth',
|
|
9
9
|
'background',
|
|
@@ -23,10 +23,10 @@ export const StyledContainer = styled(Box, {
|
|
|
23
23
|
'focused',
|
|
24
24
|
].includes(prop),
|
|
25
25
|
})(({ maxWidth, background, color, borderRadius, boxShadow, borderColor, padding, height, margin, typo, theme, }) => (Object.assign({ display: 'flex', flexDirection: 'column', minWidth: 150, maxWidth: maxWidth || '100%', background: background || 'transparent', color: color || theme.palette.text.primary, borderRadius: borderRadius !== null && borderRadius !== void 0 ? borderRadius : theme.shape.borderRadius, boxShadow: boxShadow !== null && boxShadow !== void 0 ? boxShadow : 'none', border: borderColor ? `1px solid ${borderColor}` : 'none', padding: padding !== null && padding !== void 0 ? padding : theme.spacing(1), height: height !== null && height !== void 0 ? height : 'auto', margin: margin !== null && margin !== void 0 ? margin : 0 }, (typo !== null && typo !== void 0 ? typo : {}))));
|
|
26
|
-
|
|
26
|
+
const LabelStyle = styled(Box, {
|
|
27
27
|
shouldForwardProp: (prop) => !['color', 'typo',].includes(prop),
|
|
28
28
|
})(({ color, typo, theme, }) => (Object.assign({ color: color || theme.palette.text.primary }, (typo !== null && typo !== void 0 ? typo : {}))));
|
|
29
|
-
const Field = ({ label, textVariantLabel, colorLabel, value, background, color, borderRadius, boxShadow, borderColor, textVariantField, padding, height, margin, maxWidth = '100%' }) => {
|
|
29
|
+
const Field = ({ label, textVariantLabel = 'caption', colorLabel, value, background, color, borderRadius, boxShadow, borderColor, textVariantField = 'body1', padding, height, margin, maxWidth = '100%' }) => {
|
|
30
30
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
|
|
31
31
|
const theme = useTheme();
|
|
32
32
|
// props -> tokens -> fallback
|
|
@@ -41,7 +41,7 @@ const Field = ({ label, textVariantLabel, colorLabel, value, background, color,
|
|
|
41
41
|
const hg = (_k = height !== null && height !== void 0 ? height : field === null || field === void 0 ? void 0 : field.height) !== null && _k !== void 0 ? _k : fbheigth;
|
|
42
42
|
const typoField = (_m = (_l = (textVariantField && theme.typography[textVariantField])) !== null && _l !== void 0 ? _l : field === null || field === void 0 ? void 0 : field.typography) !== null && _m !== void 0 ? _m : theme.typography.body1;
|
|
43
43
|
const labelTheme = (_p = (_o = theme.pipelinesolucoes) === null || _o === void 0 ? void 0 : _o.forms) === null || _p === void 0 ? void 0 : _p.label;
|
|
44
|
-
const typoLabel = (_r = (_q = (textVariantLabel && theme.typography[textVariantLabel])) !== null && _q !== void 0 ? _q : labelTheme === null || labelTheme === void 0 ? void 0 : labelTheme.typography) !== null && _r !== void 0 ? _r : theme.typography.
|
|
44
|
+
const typoLabel = (_r = (_q = (textVariantLabel && theme.typography[textVariantLabel])) !== null && _q !== void 0 ? _q : labelTheme === null || labelTheme === void 0 ? void 0 : labelTheme.typography) !== null && _r !== void 0 ? _r : theme.typography.caption;
|
|
45
45
|
const color_label = (_s = colorLabel !== null && colorLabel !== void 0 ? colorLabel : labelTheme === null || labelTheme === void 0 ? void 0 : labelTheme.color) !== null && _s !== void 0 ? _s : fbcolor;
|
|
46
46
|
return (_jsxs(StyledContainer, { maxWidth: maxWidth, background: bg, color: txt, borderRadius: br, boxShadow: sh, borderColor: bd, padding: pad, height: hg, margin: mg, typo: typoField, children: [_jsx(LabelStyle, { typo: typoLabel, color: color_label, children: label }), _jsx("div", { children: value !== null && value !== void 0 ? value : '-' })] }));
|
|
47
47
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Field.js","sourceRoot":"","sources":["../../src/components/Field.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAGb,OAAO,EAAE,GAAG,EAAE,MAAM,eAAe,CAAC;AACpC,OAAO,EAAa,MAAM,EAAqB,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAEtF,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,cAAc,EAAE,WAAW,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAe9H,MAAM,
|
|
1
|
+
{"version":3,"file":"Field.js","sourceRoot":"","sources":["../../src/components/Field.tsx"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -3,12 +3,12 @@ export { default as FormMessage } from './components/FormMessage';
|
|
|
3
3
|
export { default as NotificationSnackbar } from './components/NotificationSnackbar';
|
|
4
4
|
export { default as SelectField } from './components/SelectField';
|
|
5
5
|
export { default as ChipList } from './components/ChipList';
|
|
6
|
+
export { default as Field } from './components/Field';
|
|
6
7
|
export { default as TextFieldValidate } from './components/TextFieldValidate';
|
|
7
8
|
export { default as TextFieldPassword } from './components/TextFieldPassword';
|
|
8
9
|
export { default as TextFieldNumberValidate } from './components/TextFieldNumberValidate';
|
|
9
10
|
export { default as TextFieldBirthDateWithAge } from './components/TextFieldBirthDateWithAge';
|
|
10
11
|
export { default as TextFieldCPFValidate } from './components/TextFieldCPFValidate';
|
|
11
|
-
export { default as Field } from './components/Field';
|
|
12
12
|
export * from './utils/validateTelefone';
|
|
13
13
|
export * from './utils/validateEmail';
|
|
14
14
|
export * from './utils/validateCpf';
|
package/dist/index.js
CHANGED
|
@@ -3,12 +3,12 @@ export { default as FormMessage } from './components/FormMessage';
|
|
|
3
3
|
export { default as NotificationSnackbar } from './components/NotificationSnackbar';
|
|
4
4
|
export { default as SelectField } from './components/SelectField';
|
|
5
5
|
export { default as ChipList } from './components/ChipList';
|
|
6
|
+
export { default as Field } from './components/Field';
|
|
6
7
|
export { default as TextFieldValidate } from './components/TextFieldValidate';
|
|
7
8
|
export { default as TextFieldPassword } from './components/TextFieldPassword';
|
|
8
9
|
export { default as TextFieldNumberValidate } from './components/TextFieldNumberValidate';
|
|
9
10
|
export { default as TextFieldBirthDateWithAge } from './components/TextFieldBirthDateWithAge';
|
|
10
11
|
export { default as TextFieldCPFValidate } from './components/TextFieldCPFValidate';
|
|
11
|
-
export { default as Field } from './components/Field';
|
|
12
12
|
export * from './utils/validateTelefone';
|
|
13
13
|
export * from './utils/validateEmail';
|
|
14
14
|
export * from './utils/validateCpf';
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAEpE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAC,MAAM,0BAA0B,CAAC;AAEjE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AAEpF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAEpE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAC,MAAM,0BAA0B,CAAC;AAEjE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AAEpF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAEtD,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAC9E,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAC9E,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AAC1F,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,wCAAwC,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AAEpF,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC"}
|
package/dist/theme.js
CHANGED
package/dist/theme.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.js","sourceRoot":"","sources":["../src/theme.tsx"],"names":[],"mappings":"AAGA,MAAM,CAAC,MAAM,gBAAgB,GAAiB;IAC5C,gBAAgB,EAAE;QAChB,KAAK,EAAE;YACL,UAAU,EAAE,yCAAyC;YACrD,YAAY,EAAE,MAAM;YAEpB,YAAY,EAAE;gBACZ,UAAU,EAAE,MAAM;aACnB;YACD,KAAK,EAAE;gBACL,UAAU,EAAE,MAAM;gBAClB,kBAAkB,EAAE,SAAS;gBAC7B,KAAK,EAAE,MAAM;gBACb,YAAY,EAAE,MAAM;gBACpB,aAAa,EAAE,SAAS;gBACxB,YAAY,EAAE,GAAG;gBACjB,SAAS,EAAE,MAAM;gBACjB,WAAW,EAAE,MAAM;gBACnB,OAAO,EAAE,SAAS;aACnB;YACD,MAAM,EAAE;gBACN,UAAU,EAAE,SAAS;gBACrB,eAAe,EAAE,SAAS;gBAC1B,KAAK,EAAE,MAAM;gBACb,UAAU,EAAE,MAAM;gBAClB,YAAY,EAAE,QAAQ;gBACtB,OAAO,EAAE,UAAU;aACpB;SACF;KACF;CACF,CAAC"}
|
|
1
|
+
{"version":3,"file":"theme.js","sourceRoot":"","sources":["../src/theme.tsx"],"names":[],"mappings":"AAGA,MAAM,CAAC,MAAM,gBAAgB,GAAiB;IAC5C,gBAAgB,EAAE;QAChB,KAAK,EAAE;YACL,UAAU,EAAE,yCAAyC;YACrD,YAAY,EAAE,MAAM;YAEpB,YAAY,EAAE;gBACZ,UAAU,EAAE,MAAM;aACnB;YACD,KAAK,EAAE;gBACL,UAAU,EAAE,MAAM;gBAClB,kBAAkB,EAAE,SAAS;gBAC7B,KAAK,EAAE,MAAM;gBACb,YAAY,EAAE,MAAM;gBACpB,aAAa,EAAE,SAAS;gBACxB,YAAY,EAAE,GAAG;gBACjB,SAAS,EAAE,MAAM;gBACjB,WAAW,EAAE,MAAM;gBACnB,OAAO,EAAE,SAAS;aACnB;YACD,KAAK,EAAC;gBACJ,KAAK,EAAE,MAAM;aACd;YACD,MAAM,EAAE;gBACN,UAAU,EAAE,SAAS;gBACrB,eAAe,EAAE,SAAS;gBAC1B,KAAK,EAAE,MAAM;gBACb,UAAU,EAAE,MAAM;gBAClB,YAAY,EAAE,QAAQ;gBACtB,OAAO,EAAE,UAAU;aACpB;SACF;KACF;CACF,CAAC"}
|