@sikka/hawa 0.0.215 → 0.0.217

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 CHANGED
@@ -872,6 +872,9 @@ video {
872
872
  .h-\[1px\] {
873
873
  height: 1px;
874
874
  }
875
+ .h-\[2\.33rem\] {
876
+ height: 2.33rem;
877
+ }
875
878
  .h-\[calc\(100\%-3\.5rem\)\] {
876
879
  height: calc(100% - 3.5rem);
877
880
  }
@@ -1079,6 +1082,9 @@ video {
1079
1082
  .grid-cols-2 {
1080
1083
  grid-template-columns: repeat(2, minmax(0, 1fr));
1081
1084
  }
1085
+ .grid-cols-3 {
1086
+ grid-template-columns: repeat(3, minmax(0, 1fr));
1087
+ }
1082
1088
  .grid-cols-4 {
1083
1089
  grid-template-columns: repeat(4, minmax(0, 1fr));
1084
1090
  }
@@ -14,6 +14,7 @@ type SelectTypes = {
14
14
  value?: any;
15
15
  children?: any;
16
16
  getOptionLabel?: any;
17
+ disabled?: boolean;
17
18
  };
18
19
  export declare const HawaSelect: React.FunctionComponent<SelectTypes>;
19
20
  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 +15,7 @@ type TextFieldTypes = {
15
15
  onChange?: any;
16
16
  ref?: any;
17
17
  icon?: any;
18
+ preview?: boolean;
18
19
  };
19
20
  export declare const HawaTextField: React.FunctionComponent<TextFieldTypes>;
20
21
  export {};