@sikka/hawa 0.0.216 → 0.0.218
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/styles.css +6 -14
- package/es/blocks/Account/UserSettingsForm.d.ts +3 -2
- package/es/elements/HawaSelect.d.ts +1 -0
- package/es/elements/HawaSettingsRow.d.ts +4 -0
- package/es/index.es.js +1 -1
- package/lib/blocks/Account/UserSettingsForm.d.ts +3 -2
- package/lib/elements/HawaSelect.d.ts +1 -0
- package/lib/elements/HawaSettingsRow.d.ts +4 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/blocks/Account/UserSettingsForm.tsx +12 -7
- package/src/elements/HawaSelect.tsx +3 -1
- package/src/elements/HawaSettingsRow.tsx +12 -4
- package/src/elements/HawaTextField.tsx +4 -3
- package/src/styles.css +6 -14
package/dist/styles.css
CHANGED
|
@@ -672,10 +672,6 @@ video {
|
|
|
672
672
|
margin-top: 0px;
|
|
673
673
|
margin-bottom: 0px;
|
|
674
674
|
}
|
|
675
|
-
.my-0\.5 {
|
|
676
|
-
margin-top: 0.125rem;
|
|
677
|
-
margin-bottom: 0.125rem;
|
|
678
|
-
}
|
|
679
675
|
.my-1 {
|
|
680
676
|
margin-top: 0.25rem;
|
|
681
677
|
margin-bottom: 0.25rem;
|
|
@@ -684,10 +680,6 @@ video {
|
|
|
684
680
|
margin-top: 0.5rem;
|
|
685
681
|
margin-bottom: 0.5rem;
|
|
686
682
|
}
|
|
687
|
-
.my-3 {
|
|
688
|
-
margin-top: 0.75rem;
|
|
689
|
-
margin-bottom: 0.75rem;
|
|
690
|
-
}
|
|
691
683
|
.my-4 {
|
|
692
684
|
margin-top: 1rem;
|
|
693
685
|
margin-bottom: 1rem;
|
|
@@ -830,9 +822,6 @@ video {
|
|
|
830
822
|
.h-2\.5 {
|
|
831
823
|
height: 0.625rem;
|
|
832
824
|
}
|
|
833
|
-
.h-20 {
|
|
834
|
-
height: 5rem;
|
|
835
|
-
}
|
|
836
825
|
.h-24 {
|
|
837
826
|
height: 6rem;
|
|
838
827
|
}
|
|
@@ -872,6 +861,9 @@ video {
|
|
|
872
861
|
.h-\[1px\] {
|
|
873
862
|
height: 1px;
|
|
874
863
|
}
|
|
864
|
+
.h-\[2\.33rem\] {
|
|
865
|
+
height: 2.33rem;
|
|
866
|
+
}
|
|
875
867
|
.h-\[calc\(100\%-3\.5rem\)\] {
|
|
876
868
|
height: calc(100% - 3.5rem);
|
|
877
869
|
}
|
|
@@ -1079,6 +1071,9 @@ video {
|
|
|
1079
1071
|
.grid-cols-2 {
|
|
1080
1072
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1081
1073
|
}
|
|
1074
|
+
.grid-cols-3 {
|
|
1075
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1076
|
+
}
|
|
1082
1077
|
.grid-cols-4 {
|
|
1083
1078
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1084
1079
|
}
|
|
@@ -1573,9 +1568,6 @@ video {
|
|
|
1573
1568
|
.p-5 {
|
|
1574
1569
|
padding: 1.25rem;
|
|
1575
1570
|
}
|
|
1576
|
-
.p-6 {
|
|
1577
|
-
padding: 1.5rem;
|
|
1578
|
-
}
|
|
1579
1571
|
.px-1 {
|
|
1580
1572
|
padding-left: 0.25rem;
|
|
1581
1573
|
padding-right: 0.25rem;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
type UserSettingsFormTypes = {
|
|
3
3
|
children: any;
|
|
4
|
-
handleSaveSettings
|
|
5
|
-
saveSettingsText
|
|
4
|
+
handleSaveSettings?: any;
|
|
5
|
+
saveSettingsText?: string;
|
|
6
|
+
blockTitle?: string;
|
|
6
7
|
};
|
|
7
8
|
export declare const UserSettingsForm: React.FunctionComponent<UserSettingsFormTypes>;
|
|
8
9
|
export {};
|
|
@@ -2,6 +2,7 @@ import React from "react";
|
|
|
2
2
|
type SettingsRowTypes = {
|
|
3
3
|
settingsLabel: string;
|
|
4
4
|
settingsType: "text" | "radio" | "boolean" | "color" | "range";
|
|
5
|
+
settingsDescription?: string;
|
|
5
6
|
radioProps: {
|
|
6
7
|
defaultValue: any;
|
|
7
8
|
onChangeTab: any;
|
|
@@ -15,6 +16,9 @@ type SettingsRowTypes = {
|
|
|
15
16
|
min?: any;
|
|
16
17
|
max?: any;
|
|
17
18
|
};
|
|
19
|
+
switchProps: {
|
|
20
|
+
size: "small" | "normal" | "large";
|
|
21
|
+
};
|
|
18
22
|
};
|
|
19
23
|
export declare const HawaSettingsRow: React.FunctionComponent<SettingsRowTypes>;
|
|
20
24
|
export {};
|