@baton8/general-components 1.2.0-alpha.8 → 2.0.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/dist/components/atoms/badge/badge.d.ts +1 -1
- package/dist/components/atoms/checkbox/checkbox.d.ts +8 -0
- package/dist/components/atoms/controlContainer/controlContainer.d.ts +7 -1
- package/dist/components/atoms/input/input.d.ts +8 -0
- package/dist/components/atoms/radio/radio.d.ts +8 -0
- package/dist/components/atoms/textarea/textarea.d.ts +8 -0
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ export declare const Badge: import("react").ForwardRefExoticComponent<import("..
|
|
|
21
21
|
* 見た目のバリアント。
|
|
22
22
|
* @defaultValue `"solid"`
|
|
23
23
|
*/
|
|
24
|
-
variant?: "
|
|
24
|
+
variant?: "solid" | "light" | "outline" | undefined;
|
|
25
25
|
/**
|
|
26
26
|
* サイズ。
|
|
27
27
|
* @defaultValue `"medium"`
|
|
@@ -53,4 +53,12 @@ export declare const Checkbox: import("react").ForwardRefExoticComponent<import(
|
|
|
53
53
|
onBlur?: ((event: ChangeEvent<HTMLInputElement>) => unknown) | undefined;
|
|
54
54
|
/** */
|
|
55
55
|
className?: string | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* 内部の `<input>` 要素のクラス名。
|
|
58
|
+
*/
|
|
59
|
+
inputClassName?: string | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* 内部の `<input>` 要素の ID。
|
|
62
|
+
*/
|
|
63
|
+
inputId?: string | undefined;
|
|
56
64
|
} & import("react").RefAttributes<HTMLInputElement>>;
|
|
@@ -49,8 +49,14 @@ export declare const ControlContainer: import("react").ForwardRefExoticComponent
|
|
|
49
49
|
id?: string | undefined;
|
|
50
50
|
style?: import("react").CSSProperties | undefined;
|
|
51
51
|
} & {
|
|
52
|
+
/**
|
|
53
|
+
* `<label>` 要素で描画するかどうか。
|
|
54
|
+
* これを `true` にすることで、内部に置くラベルを含んだ全体をクリックしたときに、コントロールをトリガーできるようになります。
|
|
55
|
+
* @defaultValue `true`
|
|
56
|
+
*/
|
|
57
|
+
isLabel?: boolean | undefined;
|
|
52
58
|
/** */
|
|
53
59
|
children: ReactNode;
|
|
54
60
|
/** */
|
|
55
61
|
className?: string | undefined;
|
|
56
|
-
} & import("react").RefAttributes<
|
|
62
|
+
} & import("react").RefAttributes<HTMLElement>>;
|
|
@@ -83,4 +83,12 @@ export declare const Input: import("react").ForwardRefExoticComponent<import("..
|
|
|
83
83
|
children?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | [ReactElement<any, string | import("react").JSXElementConstructor<any>>] | [ReactElement<any, string | import("react").JSXElementConstructor<any>>, ReactElement<any, string | import("react").JSXElementConstructor<any>>] | undefined;
|
|
84
84
|
/** */
|
|
85
85
|
className?: string | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* 内部の `<input>` 要素のクラス名。
|
|
88
|
+
*/
|
|
89
|
+
inputClassName?: string | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* 内部の `<input>` 要素の ID。
|
|
92
|
+
*/
|
|
93
|
+
inputId?: string | undefined;
|
|
86
94
|
} & import("react").RefAttributes<HTMLInputElement>>;
|
|
@@ -50,4 +50,12 @@ export declare const Radio: import("react").ForwardRefExoticComponent<import("..
|
|
|
50
50
|
onBlur?: ((event: ChangeEvent<HTMLInputElement>) => unknown) | undefined;
|
|
51
51
|
/** */
|
|
52
52
|
className?: string | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* 内部の `<input>` 要素のクラス名。
|
|
55
|
+
*/
|
|
56
|
+
inputClassName?: string | undefined;
|
|
57
|
+
/**
|
|
58
|
+
* 内部の `<input>` 要素の ID。
|
|
59
|
+
*/
|
|
60
|
+
inputId?: string | undefined;
|
|
53
61
|
} & import("react").RefAttributes<HTMLInputElement>>;
|
|
@@ -61,4 +61,12 @@ export declare const Textarea: import("react").ForwardRefExoticComponent<import(
|
|
|
61
61
|
onBlur?: ((event: ChangeEvent<HTMLTextAreaElement>) => unknown) | undefined;
|
|
62
62
|
/** */
|
|
63
63
|
className?: string | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* 内部の `<textarea>` 要素のクラス名。
|
|
66
|
+
*/
|
|
67
|
+
textareaClassName?: string | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* 内部の `<textarea>` 要素の ID。
|
|
70
|
+
*/
|
|
71
|
+
textareaId?: string | undefined;
|
|
64
72
|
} & import("react").RefAttributes<HTMLTextAreaElement>>;
|
package/dist/index.js
CHANGED
|
@@ -579,11 +579,11 @@
|
|
|
579
579
|
input:indeterminate +* >& {
|
|
580
580
|
color: var(--qlib-checked-background-color);
|
|
581
581
|
}
|
|
582
|
-
`},Je=(0,r.forwardRef)(((o,t)=>{var{isChecked:n,name:a,value:i,isError:s=!1,isRequired:c,isDisabled:d=!1,onSet:b,onChange:p,onBlur:u,className:f}=o,
|
|
582
|
+
`},Je=(0,r.forwardRef)(((o,t)=>{var{isChecked:n,name:a,value:i,isError:s=!1,isRequired:c,isDisabled:d=!1,onSet:b,onChange:p,onBlur:u,className:f,inputClassName:m,inputId:y}=o,g=function(e,r){var o={};for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&r.indexOf(t)<0&&(o[t]=e[t]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(t=Object.getOwnPropertySymbols(e);n<t.length;n++)r.indexOf(t[n])<0&&Object.prototype.propertyIsEnumerable.call(e,t[n])&&(o[t[n]]=e[t[n]])}return o}(o,["isChecked","name","value","isError","isRequired","isDisabled","onSet","onChange","onBlur","className","inputClassName","inputId"]);const h=(0,Qe.useId)(),O=(0,r.useRef)(null),v=(0,Qe.useMergeRefs)([t,O]),x=(0,r.useCallback)((e=>{const r=e.target.checked;null==b||b(r),null==p||p(e)}),[b,p]);return(0,r.useEffect)((()=>{null!=O.current&&(O.current.indeterminate="indeterminate"===n)}),[n]),(0,e.jsxs)("div",Object.assign({css:We.root,className:f,"data-qlib-error":s},g,{children:[(0,e.jsx)("input",{type:"checkbox",css:We.original,ref:v,className:m,id:y||h,checked:null!=n?!0===n:void 0,name:a,value:i,required:c,disabled:d,onChange:null!=b||null!=p?x:void 0,onBlur:u,"aria-invalid":s}),(0,e.jsx)("label",{css:We.input,htmlFor:y||h,"aria-hidden":"true",children:(0,e.jsx)(l.FontAwesomeIcon,{css:We.icon,icon:"indeterminate"===n?me.faMinus:me.faCheck})})]}))}));Je.displayName="Checkbox";const Ze={root:i.css`
|
|
583
583
|
row-gap: ${$(2)};
|
|
584
584
|
display: flex;
|
|
585
585
|
flex-direction: column;
|
|
586
|
-
`},Xe=(0,r.forwardRef)(((r,o)=>{var{
|
|
586
|
+
`},Xe=(0,r.forwardRef)(((r,o)=>{var{isLabel:t=!0,children:n,className:a}=r,i=function(e,r){var o={};for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&r.indexOf(t)<0&&(o[t]=e[t]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(t=Object.getOwnPropertySymbols(e);n<t.length;n++)r.indexOf(t[n])<0&&Object.prototype.propertyIsEnumerable.call(e,t[n])&&(o[t[n]]=e[t[n]])}return o}(r,["isLabel","children","className"]);const l=t?"label":"div";return(0,e.jsx)(l,Object.assign({className:a,css:Ze.root,ref:o},i,{children:n}))}));Xe.displayName="ControlContainer";const er=e=>i.css`
|
|
587
587
|
&[data-qlib-max-line="true"] {
|
|
588
588
|
--qlib-additional-margin: 1em;
|
|
589
589
|
}
|
|
@@ -882,7 +882,7 @@
|
|
|
882
882
|
color: ${x("gray",5)};
|
|
883
883
|
flex-grow: 0;
|
|
884
884
|
flex-shrink: 0;
|
|
885
|
-
`},qr=(0,r.forwardRef)(((o,t)=>{var{value:n,name:a,size:i="medium",isCompact:l=!1,type:c="text",autoComplete:d="off",autoFocus:b,isError:p=!1,isRequired:u,isDisabled:f,onSet:m,onChange:y,onBlur:g,children:h,className:O}=o,
|
|
885
|
+
`},qr=(0,r.forwardRef)(((o,t)=>{var{value:n,name:a,size:i="medium",isCompact:l=!1,type:c="text",autoComplete:d="off",autoFocus:b,isError:p=!1,isRequired:u,isDisabled:f,onSet:m,onChange:y,onBlur:g,children:h,className:O,inputClassName:v,inputId:x}=o,j=function(e,r){var o={};for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&r.indexOf(t)<0&&(o[t]=e[t]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(t=Object.getOwnPropertySymbols(e);n<t.length;n++)r.indexOf(t[n])<0&&Object.prototype.propertyIsEnumerable.call(e,t[n])&&(o[t[n]]=e[t[n]])}return o}(o,["value","name","size","isCompact","type","autoComplete","autoFocus","isError","isRequired","isDisabled","onSet","onChange","onBlur","children","className","inputClassName","inputId"]);const w=(0,r.useCallback)((e=>{const r=e.target.value;null==m||m(r),null==y||y(e)}),[m,y]),$=Ne(h),q=$.find((e=>e.type===xr)),k=$.find((e=>e.type===wr));return(0,e.jsx)("label",{className:O,css:$r.root,"data-qlib-size":i,"data-qlib-compact":l,"data-qlib-disabled":f,"data-qlib-error":p,children:(0,e.jsxs)("div",{css:$r.inputContainer,children:[q,(0,e.jsx)("input",Object.assign({css:$r.input,className:v,id:x,ref:t,value:n,name:a,type:c,autoComplete:d,autoFocus:b,required:u,disabled:f,onChange:null!=m||null!=y?w:void 0,onBlur:g,"aria-invalid":p},j)),kr(c)&&(0,e.jsx)("div",{css:$r.builtinAddon,children:(0,e.jsx)(dr,{icon:"time"===c?s.faClock:s.faCalendar})}),k]})})}));qr.displayName="Input";const kr=e=>"date"===e||"time"===e||"datetime-local"===e||"month"===e||"week"===e;const Nr=e=>i.css`
|
|
886
886
|
// 文字サイズ
|
|
887
887
|
&[data-qlib-size="small"] {
|
|
888
888
|
--qlib-font-size: ${$(3)};
|
|
@@ -1326,7 +1326,7 @@
|
|
|
1326
1326
|
input:checked +* >& {
|
|
1327
1327
|
opacity: 1;
|
|
1328
1328
|
}
|
|
1329
|
-
`},Xr=(0,r.forwardRef)(((o,t)=>{var n,{isChecked:a,name:i,value:l,isError:s=!1,isRequired:c,isDisabled:d=!1,onSet:b,onChange:p,onBlur:u,className:f}=o,
|
|
1329
|
+
`},Xr=(0,r.forwardRef)(((o,t)=>{var n,{isChecked:a,name:i,value:l,isError:s=!1,isRequired:c,isDisabled:d=!1,onSet:b,onChange:p,onBlur:u,className:f,inputClassName:m,inputId:y}=o,g=function(e,r){var o={};for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&r.indexOf(t)<0&&(o[t]=e[t]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(t=Object.getOwnPropertySymbols(e);n<t.length;n++)r.indexOf(t[n])<0&&Object.prototype.propertyIsEnumerable.call(e,t[n])&&(o[t[n]]=e[t[n]])}return o}(o,["isChecked","name","value","isError","isRequired","isDisabled","onSet","onChange","onBlur","className","inputClassName","inputId"]);const h=(0,r.useContext)(Wr),O=(0,Qe.useId)(),v=(0,r.useCallback)((e=>{if(null!=(null==h?void 0:h.onSet)&&null!=l)h.onSet(l);else{const r=e.target.checked;null==b||b(r)}null==p||p(e)}),[l,h,b,p]);return(0,e.jsxs)("div",Object.assign({css:Zr.root,className:f,"data-qlib-error":s},g,{children:[(0,e.jsx)("input",{type:"radio",css:Zr.original,ref:t,className:m,id:y||O,value:l,name:null!==(n=null==h?void 0:h.name)&&void 0!==n?n:i,checked:null!=(null==h?void 0:h.value)?h.value===l:null!=a?!0===a:void 0,required:c,disabled:d,onChange:null!=(null==h?void 0:h.onSet)||null!=b||null!=p?v:void 0,onBlur:u,"aria-invalid":s}),(0,e.jsx)("label",{css:Zr.input,htmlFor:y||O,"aria-hidden":"true",children:(0,e.jsx)("div",{css:Zr.icon})})]}))}));Xr.displayName="Radio";const eo=({value:o,onSet:t,children:n})=>{const a=(0,Qe.useId)(),i=(0,r.useMemo)((()=>({name:a,value:o,onSet:t})),[a,o,t]);return(0,e.jsx)(Jr,{value:i,children:n})};eo.displayName="RadioGroup";const ro={root:i.css`
|
|
1330
1330
|
&[data-qlib-orientation="horizontal"] {
|
|
1331
1331
|
--qlib-flex-direction: row;
|
|
1332
1332
|
}
|
|
@@ -1548,7 +1548,7 @@
|
|
|
1548
1548
|
&:disabled {
|
|
1549
1549
|
cursor: inherit;
|
|
1550
1550
|
}
|
|
1551
|
-
`},lt=(0,r.forwardRef)(((o,t)=>{var{value:n,name:a,rowCount:i=4,resize:l="vertical",autoComplete:s="off",autoFocus:c,isWrapped:d=!0,isError:b=!1,isRequired:p,isDisabled:u,onSet:f,onChange:m,onBlur:y,className:g}=o,
|
|
1551
|
+
`},lt=(0,r.forwardRef)(((o,t)=>{var{value:n,name:a,rowCount:i=4,resize:l="vertical",autoComplete:s="off",autoFocus:c,isWrapped:d=!0,isError:b=!1,isRequired:p,isDisabled:u,onSet:f,onChange:m,onBlur:y,className:g,textareaClassName:h,textareaId:O}=o,v=function(e,r){var o={};for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&r.indexOf(t)<0&&(o[t]=e[t]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(t=Object.getOwnPropertySymbols(e);n<t.length;n++)r.indexOf(t[n])<0&&Object.prototype.propertyIsEnumerable.call(e,t[n])&&(o[t[n]]=e[t[n]])}return o}(o,["value","name","rowCount","resize","autoComplete","autoFocus","isWrapped","isError","isRequired","isDisabled","onSet","onChange","onBlur","className","textareaClassName","textareaId"]);const x=(0,r.useCallback)((e=>{const r=e.target.value;null==f||f(r),null==m||m(e)}),[f,m]);return(0,e.jsx)("label",{className:g,css:it.root,"data-qlib-size":$,"data-qlib-disabled":u,"data-qlib-error":b,children:(0,e.jsx)("div",{css:it.inputContainer,children:(0,e.jsx)("textarea",Object.assign({css:it.input,className:h,id:O,ref:t,value:n,name:a,rows:i,autoComplete:s,autoFocus:c,required:p,disabled:u,onChange:null!=f||null!=m?x:void 0,onBlur:y,"aria-invalid":b,"data-qlib-wrapped":d,"data-qlib-resize":l},v))})})}));lt.displayName="Textarea";const st={root:i.css`
|
|
1552
1552
|
width: 1px;
|
|
1553
1553
|
height: 1px;
|
|
1554
1554
|
position: absolute;
|