@rocket.chat/fuselage 0.6.3-dev.395 → 0.6.3-dev.399
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/components/Field/Field.d.ts +2 -13
- package/dist/components/Field/Field.d.ts.map +1 -1
- package/dist/components/Field/FieldLink.d.ts +6 -0
- package/dist/components/Field/FieldLink.d.ts.map +1 -0
- package/dist/components/Field/index.d.ts +11 -1
- package/dist/components/Field/index.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/fuselage.development.js +54 -22
- package/dist/fuselage.development.js.map +1 -1
- package/dist/fuselage.production.js +1 -1
- package/package.json +12 -16
|
@@ -1,17 +1,6 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef
|
|
1
|
+
import { ComponentPropsWithoutRef } from 'react';
|
|
2
2
|
import { Box } from '../Box';
|
|
3
|
-
import { FieldDescription } from './FieldDescription';
|
|
4
|
-
import { FieldError } from './FieldError';
|
|
5
|
-
import { FieldHint } from './FieldHint';
|
|
6
|
-
import { FieldLabel } from './FieldLabel';
|
|
7
|
-
import { FieldRow } from './FieldRow';
|
|
8
3
|
declare type FieldProps = ComponentPropsWithoutRef<typeof Box>;
|
|
9
|
-
export declare
|
|
10
|
-
Label: typeof FieldLabel;
|
|
11
|
-
Description: typeof FieldDescription;
|
|
12
|
-
Row: typeof FieldRow;
|
|
13
|
-
Hint: typeof FieldHint;
|
|
14
|
-
Error: typeof FieldError;
|
|
15
|
-
};
|
|
4
|
+
export declare function Field(props: FieldProps): JSX.Element;
|
|
16
5
|
export {};
|
|
17
6
|
//# sourceMappingURL=Field.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Field.d.ts","sourceRoot":"","sources":["../../../src/components/Field/Field.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,wBAAwB,EAAE,
|
|
1
|
+
{"version":3,"file":"Field.d.ts","sourceRoot":"","sources":["../../../src/components/Field/Field.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,wBAAwB,EAAE,MAAM,OAAO,CAAC;AAExD,OAAO,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAC;AAE7B,aAAK,UAAU,GAAG,wBAAwB,CAAC,OAAO,GAAG,CAAC,CAAC;AAEvD,wBAAgB,KAAK,CAAC,KAAK,EAAE,UAAU,eAEtC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ComponentProps, ReactElement } from 'react';
|
|
2
|
+
import { Box } from '../Box';
|
|
3
|
+
declare type FieldLinkProps = ComponentProps<typeof Box>;
|
|
4
|
+
declare const FieldLink: (props: FieldLinkProps) => ReactElement;
|
|
5
|
+
export default FieldLink;
|
|
6
|
+
//# sourceMappingURL=FieldLink.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FieldLink.d.ts","sourceRoot":"","sources":["../../../src/components/Field/FieldLink.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAE5D,OAAO,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAC;AAE7B,aAAK,cAAc,GAAG,cAAc,CAAC,OAAO,GAAG,CAAC,CAAC;AAEjD,QAAA,MAAM,SAAS,UAAW,cAAc,KAAG,YAE1C,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1,2 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { Field } from './Field';
|
|
3
|
+
declare const _default: typeof Field & {
|
|
4
|
+
Label: import("react").FC<Pick<any, string | number | symbol>>;
|
|
5
|
+
Description: import("react").FC<Pick<any, string | number | symbol>>;
|
|
6
|
+
Row: import("react").FC<Pick<any, string | number | symbol>>;
|
|
7
|
+
Error: import("react").FC<Pick<any, string | number | symbol>>;
|
|
8
|
+
Hint: import("react").FC<Pick<any, string | number | symbol>>;
|
|
9
|
+
Link: (props: any) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
10
|
+
};
|
|
11
|
+
export default _default;
|
|
2
12
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Field/index.tsx"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Field/index.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;;;;;;;;;AAQhC,wBAOG"}
|
|
@@ -13,7 +13,7 @@ export { default as Chip } from './Chip';
|
|
|
13
13
|
export * from './Divider';
|
|
14
14
|
export * from './Dropdown';
|
|
15
15
|
export * from './EmailInput';
|
|
16
|
-
export
|
|
16
|
+
export { default as Field } from './Field';
|
|
17
17
|
export * from './FieldGroup';
|
|
18
18
|
export * from './Grid';
|
|
19
19
|
export * from './Icon';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,OAAO,CAAC;AACtB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAC3D,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,OAAO,CAAC;AACtB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAC3D,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,cAAc,QAAQ,CAAC;AACvB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,kBAAkB,CAAC;AACrD,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC"}
|