test-stpr-ui-kit 0.5.62 → 0.5.63

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.
@@ -241,7 +241,7 @@ export declare interface IDatePickerInputProps {
241
241
  value?: string;
242
242
  name?: string;
243
243
  onChange?: TOnChangeDatePickerInput;
244
- dateFormatMask: string | (string | RegExp)[];
244
+ dateFormatMask?: string | (string | RegExp)[];
245
245
  variant?: TDatePickerInputVariant;
246
246
  size?: TDatePickerInputSize;
247
247
  disabled?: boolean;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "UI-kit package",
4
4
  "author": "Mochalov Ivan",
5
5
  "license": "MIT",
6
- "version": "0.5.62",
6
+ "version": "0.5.63",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist"
@@ -25,8 +25,8 @@
25
25
  },
26
26
  "scripts": {
27
27
  "dev": "vite",
28
- "build": "vite build",
29
- "build:tsc": "tsc -b && vite build",
28
+ "build:ignore-tsc": "vite build",
29
+ "build": "tsc --build && vite build",
30
30
  "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
31
31
  "preview": "vite preview",
32
32
  "storybook": "storybook dev -p 6006",