@agilekit/ui 0.0.415-alpha.0 → 0.0.420-alpha.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.
@@ -9,6 +9,9 @@ interface PaletteExtra extends Palette {
9
9
  BLUE300: string;
10
10
  BLUE400: string;
11
11
  BLUE500: string;
12
+ BLUE600: string;
13
+ BLUE700: string;
14
+ BLUE800: string;
12
15
  GREEN050: string;
13
16
  GREEN075: string;
14
17
  GREEN100: string;
@@ -16,6 +19,9 @@ interface PaletteExtra extends Palette {
16
19
  GREEN300: string;
17
20
  GREEN400: string;
18
21
  GREEN500: string;
22
+ GREEN600: string;
23
+ GREEN700: string;
24
+ GREEN800: string;
19
25
  NEUTRAL000: string;
20
26
  NEUTRAL010: string;
21
27
  NEUTRAL020: string;
@@ -42,6 +48,9 @@ interface PaletteExtra extends Palette {
42
48
  PURPLE300: string;
43
49
  PURPLE400: string;
44
50
  PURPLE500: string;
51
+ PURPLE600: string;
52
+ PURPLE700: string;
53
+ PURPLE800: string;
45
54
  RED050: string;
46
55
  RED075: string;
47
56
  RED100: string;
@@ -49,6 +58,20 @@ interface PaletteExtra extends Palette {
49
58
  RED300: string;
50
59
  RED400: string;
51
60
  RED500: string;
61
+ RED600: string;
62
+ RED700: string;
63
+ RED800: string;
64
+ ORANGE050: string;
65
+ ORANGE075: string;
66
+ ORANGE100: string;
67
+ ORANGE200: string;
68
+ ORANGE300: string;
69
+ ORANGE400: string;
70
+ ORANGE450: string;
71
+ ORANGE500: string;
72
+ ORANGE600: string;
73
+ ORANGE700: string;
74
+ ORANGE800: string;
52
75
  YELLOW050: string;
53
76
  YELLOW075: string;
54
77
  YELLOW100: string;
@@ -56,6 +79,9 @@ interface PaletteExtra extends Palette {
56
79
  YELLOW300: string;
57
80
  YELLOW400: string;
58
81
  YELLOW500: string;
82
+ YELLOW600: string;
83
+ YELLOW700: string;
84
+ YELLOW800: string;
59
85
  TEAL050: string;
60
86
  TEAL075: string;
61
87
  TEAL100: string;
@@ -91,6 +117,9 @@ export declare const themeObject: {
91
117
  GREEN300: string;
92
118
  GREEN400: string;
93
119
  GREEN500: string;
120
+ GREEN600: string;
121
+ GREEN700: string;
122
+ GREEN800: string;
94
123
  NEUTRAL000: string;
95
124
  NEUTRAL010: string;
96
125
  NEUTRAL020: string;
@@ -117,6 +146,9 @@ export declare const themeObject: {
117
146
  PURPLE300: string;
118
147
  PURPLE400: string;
119
148
  PURPLE500: string;
149
+ PURPLE600: string;
150
+ PURPLE700: string;
151
+ PURPLE800: string;
120
152
  RED050: string;
121
153
  RED075: string;
122
154
  RED100: string;
@@ -124,6 +156,9 @@ export declare const themeObject: {
124
156
  RED300: string;
125
157
  RED400: string;
126
158
  RED500: string;
159
+ RED600: string;
160
+ RED700: string;
161
+ RED800: string;
127
162
  YELLOW050: string;
128
163
  YELLOW075: string;
129
164
  YELLOW100: string;
@@ -131,6 +166,20 @@ export declare const themeObject: {
131
166
  YELLOW300: string;
132
167
  YELLOW400: string;
133
168
  YELLOW500: string;
169
+ YELLOW600: string;
170
+ YELLOW700: string;
171
+ YELLOW800: string;
172
+ ORANGE050: string;
173
+ ORANGE075: string;
174
+ ORANGE100: string;
175
+ ORANGE200: string;
176
+ ORANGE300: string;
177
+ ORANGE400: string;
178
+ ORANGE450: string;
179
+ ORANGE500: string;
180
+ ORANGE600: string;
181
+ ORANGE700: string;
182
+ ORANGE800: string;
134
183
  TEAL050: string;
135
184
  TEAL075: string;
136
185
  TEAL100: string;
@@ -1,2 +1,2 @@
1
- declare const useSelectStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"icon" | "select" | "containerNotFull" | "asteriskRequired" | "multiselect" | "multiSelectError">;
1
+ declare const useSelectStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"icon" | "select" | "asteriskRequired" | "containerNotFull" | "multiselect" | "multiSelectError">;
2
2
  export default useSelectStyles;
@@ -1,2 +1,2 @@
1
- declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"asteriskRequired" | "inputBase" | "inputLabel" | "inputLabelFocused" | "secondaryLabel" | "withFocus">;
1
+ declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"helperText" | "secondaryLabel" | "inputBase" | "withFocus" | "inputLabel" | "inputLabelFocused" | "asteriskRequired">;
2
2
  export default useStyles;
@@ -1,2 +1,2 @@
1
- declare const useSelectStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"icon" | "select" | "containerNotFull" | "asteriskRequired">;
1
+ declare const useSelectStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"icon" | "select" | "asteriskRequired" | "containerNotFull">;
2
2
  export default useSelectStyles;
@@ -6,6 +6,7 @@ export interface BasicTextFieldProps {
6
6
  labelHidden?: boolean;
7
7
  secondaryLabel?: React.ReactNode;
8
8
  error?: Error | boolean | string;
9
+ helperText?: React.ReactNode;
9
10
  placeholder?: string;
10
11
  id?: string;
11
12
  displayRequired?: boolean;
@@ -17,7 +18,6 @@ export interface ITextFieldProps extends React.HTMLAttributes<HTMLInputElement>,
17
18
  startAdornment?: React.ReactNode;
18
19
  endAdornment?: React.ReactNode;
19
20
  value?: string | number | undefined;
20
- helperText?: React.ReactNode;
21
21
  readOnly?: boolean;
22
22
  autoFocus?: boolean;
23
23
  autoComplete?: string;
@@ -6,6 +6,10 @@ interface InputLabelStyles {
6
6
  secondaryLabel: any;
7
7
  asteriskRequired: any;
8
8
  }
9
+ interface HelperTextStyles {
10
+ helperText: any;
11
+ }
9
12
  export declare const inputLabelStyles: (theme: any) => InputLabelStyles;
10
- export declare const useTextFieldStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"helperText" | "asteriskRequired" | "inputBase" | "inputContainer" | "inputContainerFocus" | "inputContainerDisabled" | "inputContainerError" | "multilineContainer" | "inputDisabled" | "inputAction" | "inputGroupAppend" | "inputBtn" | "withAppend" | "withIconLeft" | "sideIcon" | "colorPickerButton" | "colorPopover" | "withMask" | "append" | "edgeEnd" | "inputLabel" | "inputLabelFocused" | "secondaryLabel">;
13
+ export declare const helperTextStyles: (theme: any) => HelperTextStyles;
14
+ export declare const useTextFieldStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"helperText" | "secondaryLabel" | "inputBase" | "inputLabel" | "inputLabelFocused" | "asteriskRequired" | "inputContainer" | "inputContainerFocus" | "inputContainerDisabled" | "inputContainerError" | "multilineContainer" | "inputDisabled" | "inputAction" | "inputGroupAppend" | "inputBtn" | "withAppend" | "withIconLeft" | "sideIcon" | "colorPickerButton" | "colorPopover" | "withMask" | "append" | "edgeEnd">;
11
15
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agilekit/ui",
3
- "version": "0.0.415-alpha.0",
3
+ "version": "0.0.420-alpha.0",
4
4
  "description": "Agile's product component library",
5
5
  "author": "Michael de Lima Alves <michaelalves@outlook.com>",
6
6
  "license": "MIT",
@@ -143,5 +143,5 @@
143
143
  "react-spring": "*"
144
144
  },
145
145
  "bugs": {},
146
- "gitHead": "daf141576b7e549784bd0ec37e89a9b62f78f61b"
146
+ "gitHead": "a2d2371c85987f503a0939889306e222f128b279"
147
147
  }