@secondstaxorg/sscomp 1.6.77 → 1.6.78

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.6.77",
3
+ "version": "1.6.78",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -27,7 +27,7 @@
27
27
  "chromatic-force": "npx chromatic --project-token=chpt_2b0f52cf5545391 --force-rebuild"
28
28
  },
29
29
  "author": {
30
- "name": "augustus Otu, mark obuobi"
30
+ "name": "augustus Otu, Mark Obuobi"
31
31
  },
32
32
  "license": "ISC",
33
33
  "devDependencies": {
@@ -2,3 +2,4 @@ export declare const InputLabel: import("styled-components").StyledComponent<"di
2
2
  export declare const DatePickerContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
3
3
  export declare const InputField: import("styled-components").StyledComponent<"div", any, {}, never>;
4
4
  export declare const CalendarContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
5
+ export declare const ErrorMessage: import("styled-components").StyledComponent<"p", any, {}, never>;
@@ -23,5 +23,12 @@ export interface DatePickerProps {
23
23
  * Placeholder text for the datepicker field
24
24
  */
25
25
  placeholder?: string;
26
+ /**
27
+ * Determine how wide the date picker field should be
28
+ */
26
29
  width?: number;
30
+ /**
31
+ * Specify whether the field is a required field
32
+ */
33
+ required?: boolean;
27
34
  }