draft-components 4.9.0 → 4.10.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/css/draft-components.css
CHANGED
|
@@ -4232,7 +4232,8 @@
|
|
|
4232
4232
|
}
|
|
4233
4233
|
|
|
4234
4234
|
.dc-form-field {
|
|
4235
|
-
display:
|
|
4235
|
+
display: grid;
|
|
4236
|
+
justify-items: start;
|
|
4236
4237
|
min-width: 0;
|
|
4237
4238
|
text-align: left;
|
|
4238
4239
|
color-scheme: light;
|
|
@@ -4242,6 +4243,24 @@
|
|
|
4242
4243
|
margin-bottom: 4px;
|
|
4243
4244
|
}
|
|
4244
4245
|
|
|
4246
|
+
.dc-form-field__label_sr-only {
|
|
4247
|
+
position: absolute;
|
|
4248
|
+
width: 1px;
|
|
4249
|
+
height: 1px;
|
|
4250
|
+
padding: 0;
|
|
4251
|
+
margin: -1px;
|
|
4252
|
+
overflow: hidden;
|
|
4253
|
+
white-space: nowrap;
|
|
4254
|
+
border: 0;
|
|
4255
|
+
clip: rect(0, 0, 0, 0);
|
|
4256
|
+
}
|
|
4257
|
+
|
|
4258
|
+
.dc-form-field__input,
|
|
4259
|
+
.dc-form-field__error,
|
|
4260
|
+
.dc-form-field__hint {
|
|
4261
|
+
width: 100%;
|
|
4262
|
+
}
|
|
4263
|
+
|
|
4245
4264
|
.dc-form-field__error,
|
|
4246
4265
|
.dc-form-field__hint {
|
|
4247
4266
|
display: block;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
.dc-form-field {
|
|
2
|
-
display:
|
|
2
|
+
display: grid;
|
|
3
|
+
justify-items: start;
|
|
3
4
|
min-width: 0;
|
|
4
5
|
text-align: left;
|
|
5
6
|
color-scheme: light;
|
|
@@ -9,6 +10,24 @@
|
|
|
9
10
|
margin-bottom: 4px;
|
|
10
11
|
}
|
|
11
12
|
|
|
13
|
+
.dc-form-field__label_sr-only {
|
|
14
|
+
position: absolute;
|
|
15
|
+
width: 1px;
|
|
16
|
+
height: 1px;
|
|
17
|
+
padding: 0;
|
|
18
|
+
margin: -1px;
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
white-space: nowrap;
|
|
21
|
+
border: 0;
|
|
22
|
+
clip: rect(0, 0, 0, 0);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.dc-form-field__input,
|
|
26
|
+
.dc-form-field__error,
|
|
27
|
+
.dc-form-field__hint {
|
|
28
|
+
width: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
12
31
|
.dc-form-field__error,
|
|
13
32
|
.dc-form-field__hint {
|
|
14
33
|
display: block;
|
|
@@ -7,6 +7,7 @@ export type FormFieldRender = (props: {
|
|
|
7
7
|
}) => ReactNode;
|
|
8
8
|
type FormFieldHTMLProps = ComponentProps<'div'>;
|
|
9
9
|
type FormFieldBaseProps = {
|
|
10
|
+
srOnlyLabel?: boolean;
|
|
10
11
|
required?: boolean;
|
|
11
12
|
labelFor?: string;
|
|
12
13
|
label?: ReactNode;
|
|
@@ -15,5 +16,5 @@ type FormFieldBaseProps = {
|
|
|
15
16
|
children: ReactNode | FormFieldRender;
|
|
16
17
|
};
|
|
17
18
|
export type FormFieldProps = FormFieldBaseProps & Omit<FormFieldHTMLProps, keyof FormFieldBaseProps>;
|
|
18
|
-
export declare function FormField({ required, labelFor, label, error, hint, className, children, ...props }: FormFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export declare function FormField({ srOnlyLabel, required, labelFor, label, error, hint, className, children, ...props }: FormFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
19
20
|
export {};
|
|
@@ -3,7 +3,7 @@ import { useId } from 'react';
|
|
|
3
3
|
import { classNames } from '../../lib/react-helpers.js';
|
|
4
4
|
import { Label } from '../label/index.js';
|
|
5
5
|
import { Caption } from '../caption/index.js';
|
|
6
|
-
export function FormField({ required = false, labelFor = '', label, error, hint, className = '', children, ...props }) {
|
|
6
|
+
export function FormField({ srOnlyLabel = false, required = false, labelFor = '', label, error, hint, className = '', children, ...props }) {
|
|
7
7
|
const id = useId();
|
|
8
8
|
const invalid = Boolean(error);
|
|
9
9
|
const inputId = labelFor || `${id}-input`;
|
|
@@ -33,7 +33,7 @@ export function FormField({ required = false, labelFor = '', label, error, hint,
|
|
|
33
33
|
inputElement = children;
|
|
34
34
|
}
|
|
35
35
|
return (_jsxs("div", { ...props, className: classNames('dc-form-field', className), children: [label
|
|
36
|
-
? (_jsx(Label, { className:
|
|
36
|
+
? (_jsx(Label, { className: classNames('dc-form-field__label', srOnlyLabel && 'dc-form-field__label_sr-only'), required: required, htmlFor: inputId, children: label }))
|
|
37
37
|
: null, _jsx("div", { className: "dc-form-field__input", children: inputElement }), errorElement, hintElement] }));
|
|
38
38
|
}
|
|
39
39
|
function ExclamationTriangleIcon(props) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form-field.js","sourceRoot":"","sources":["../../../src/components/form-field/form-field.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAuC,KAAK,EAAE,MAAM,OAAO,CAAC;AACnE,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AACxD,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"form-field.js","sourceRoot":"","sources":["../../../src/components/form-field/form-field.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAuC,KAAK,EAAE,MAAM,OAAO,CAAC;AACnE,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AACxD,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAyB9C,MAAM,UAAU,SAAS,CAAC,EACxB,WAAW,GAAG,KAAK,EACnB,QAAQ,GAAG,KAAK,EAChB,QAAQ,GAAG,EAAE,EACb,KAAK,EACL,KAAK,EACL,IAAI,EACJ,SAAS,GAAG,EAAE,EACd,QAAQ,EACR,GAAG,KAAK,EACO;IACf,MAAM,EAAE,GAAG,KAAK,EAAE,CAAC;IACnB,MAAM,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;IAC/B,MAAM,OAAO,GAAG,QAAQ,IAAI,GAAG,EAAE,QAAQ,CAAC;IAC1C,MAAM,gBAAgB,GAAa,EAAE,CAAC;IAEtC,IAAI,WAAW,GAAc,IAAI,CAAC;IAClC,IAAI,IAAI,EAAE,CAAC;QACT,MAAM,MAAM,GAAG,GAAG,OAAO,OAAO,CAAC;QACjC,gBAAgB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC9B,WAAW,GAAG,CACZ,KAAC,OAAO,IAAC,EAAE,EAAE,MAAM,EAAE,SAAS,EAAC,qBAAqB,YACjD,IAAI,GACG,CACX,CAAC;IACJ,CAAC;IAED,IAAI,YAAY,GAAc,IAAI,CAAC;IACnC,IAAI,OAAO,EAAE,CAAC;QACZ,MAAM,OAAO,GAAG,GAAG,OAAO,QAAQ,CAAC;QACnC,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC/B,YAAY,GAAG,CACb,KAAC,OAAO,IACN,EAAE,EAAE,OAAO,EACX,SAAS,EAAC,sBAAsB,EAChC,IAAI,EAAC,OAAO,EACZ,KAAK,EAAC,KAAK,EACX,IAAI,EAAE,KAAC,uBAAuB,IAAC,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,GAAI,YAEvD,KAAK,GACE,CACX,CAAC;IACJ,CAAC;IAED,IAAI,YAAuB,CAAC;IAC5B,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE,CAAC;QACnC,YAAY,GAAG,QAAQ,CAAC;YACtB,OAAO;YACP,QAAQ;YACR,EAAE,EAAE,OAAO;YACX,WAAW,EAAE,gBAAgB;SAC9B,CAAC,CAAC;IACL,CAAC;SAAM,CAAC;QACN,YAAY,GAAG,QAAQ,CAAC;IAC1B,CAAC;IAED,OAAO,CACL,kBAAS,KAAK,EAAE,SAAS,EAAE,UAAU,CAAC,eAAe,EAAE,SAAS,CAAC,aAC9D,KAAK;gBACJ,CAAC,CAAC,CACE,KAAC,KAAK,IACJ,SAAS,EAAE,UAAU,CAAC,sBAAsB,EAAE,WAAW,IAAI,8BAA8B,CAAC,EAC5F,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,YAEf,KAAK,GACA,CACT;gBACH,CAAC,CAAC,IAAI,EACR,cAAK,SAAS,EAAC,sBAAsB,YAClC,YAAY,GACT,EACL,YAAY,EACZ,WAAW,IACR,CACP,CAAC;AACJ,CAAC;AAED,SAAS,uBAAuB,CAAC,KAA4B;IAC3D,OAAO,CACL,cACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,KAAK,EAAE,EAAE,EACT,MAAM,EAAE,EAAE,EACV,IAAI,EAAC,cAAc,KACf,KAAK,YAET,eAAM,QAAQ,EAAC,SAAS,EAAC,CAAC,EAAC,oPAAoP,EAAC,QAAQ,EAAC,SAAS,GAAG,GACjS,CACP,CAAC;AACJ,CAAC"}
|