@colisweb/rescript-toolkit 5.46.3 → 5.46.5
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/.secure_files/{ci-functions-v18.0.0 → ci-functions-v20.3.4} +679 -83
- package/.secure_files/{ci-functions-v17.13.0 → ci-functions-v20.4.0} +699 -103
- package/.secure_files/{ci-functions-v17.14.0 → ci-functions-v20.4.1} +699 -103
- package/.secure_files/{ci-functions-v17.12.0-feat-add-mysql-service-1.0.7beta → ci-functions-v20.4.2} +707 -110
- package/.secure_files/ci-functions-v20.4.3 +3255 -0
- package/package.json +1 -1
- package/src/form/Toolkit__Form.res +2 -0
- package/src/ui/Toolkit__Ui_SectionCard.res +1 -1
- package/.secure_files/ci-functions-v17.12.0 +0 -2658
package/package.json
CHANGED
|
@@ -720,6 +720,7 @@ module Make = (StateLenses: Config) => {
|
|
|
720
720
|
~label=?,
|
|
721
721
|
~id,
|
|
722
722
|
~size=?,
|
|
723
|
+
~disabled=?,
|
|
723
724
|
~displayTitle=?,
|
|
724
725
|
~switchClassName=?,
|
|
725
726
|
~labelClassName=?,
|
|
@@ -735,6 +736,7 @@ module Make = (StateLenses: Config) => {
|
|
|
735
736
|
onChange={value => handleChange(value)}
|
|
736
737
|
name=id
|
|
737
738
|
checked=value
|
|
739
|
+
?disabled
|
|
738
740
|
?size
|
|
739
741
|
?displayTitle
|
|
740
742
|
?switchClassName
|
|
@@ -6,6 +6,6 @@ let make = (~title: React.element, ~icon: module(ReactIcons.Icon), ~children) =>
|
|
|
6
6
|
<Icon size={32} />
|
|
7
7
|
<p className={"font-medium text-xl font-display text-primary-800"}> {title} </p>
|
|
8
8
|
</header>
|
|
9
|
-
<div className="flex p-6 min-h-64"> {children} </div>
|
|
9
|
+
<div className="flex flex-col p-6 min-h-64"> {children} </div>
|
|
10
10
|
</section>
|
|
11
11
|
}
|