@sikka/hawa 0.0.217 → 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 +0 -14
- package/es/blocks/Account/UserSettingsForm.d.ts +3 -2
- package/es/elements/HawaSettingsRow.d.ts +3 -0
- package/es/index.es.js +1 -1
- package/lib/blocks/Account/UserSettingsForm.d.ts +3 -2
- package/lib/elements/HawaSettingsRow.d.ts +3 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/blocks/Account/UserSettingsForm.tsx +12 -7
- package/src/elements/HawaSettingsRow.tsx +8 -4
- package/src/elements/HawaTextField.tsx +4 -3
- package/src/styles.css +0 -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
|
}
|
|
@@ -1579,9 +1568,6 @@ video {
|
|
|
1579
1568
|
.p-5 {
|
|
1580
1569
|
padding: 1.25rem;
|
|
1581
1570
|
}
|
|
1582
|
-
.p-6 {
|
|
1583
|
-
padding: 1.5rem;
|
|
1584
|
-
}
|
|
1585
1571
|
.px-1 {
|
|
1586
1572
|
padding-left: 0.25rem;
|
|
1587
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 {};
|