@jetbrains/ring-ui-built 6.0.29 → 6.0.30
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.
@@ -16,7 +16,7 @@ export type DatePickerProps = Omit<DatePopupProps, 'translations' | 'parseDateIn
|
|
16
16
|
clear: boolean;
|
17
17
|
inline: boolean;
|
18
18
|
popupClassName?: string | null | undefined;
|
19
|
-
dropdownProps?: DropdownAttrs
|
19
|
+
dropdownProps?: Partial<DropdownAttrs>;
|
20
20
|
translations?: DatePickerTranslations | null | undefined;
|
21
21
|
displayMonthFormat: (date: Date, locale: Locale | undefined) => string;
|
22
22
|
displayDayFormat: (date: Date, locale: Locale | undefined) => string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@jetbrains/ring-ui-built",
|
3
|
-
"version": "6.0.
|
3
|
+
"version": "6.0.30",
|
4
4
|
"description": "JetBrains UI library",
|
5
5
|
"author": "JetBrains",
|
6
6
|
"license": "Apache-2.0",
|
@@ -35,7 +35,7 @@
|
|
35
35
|
"a11y-audit-ci": "node a11y-audit-ci.mjs",
|
36
36
|
"console-errors": "jest console-errors.test.js --watchAll",
|
37
37
|
"console-errors-ci": "jest console-errors.test.js --reporters=jest-teamcity",
|
38
|
-
"test": "
|
38
|
+
"test": "vitest src",
|
39
39
|
"hermione-gui": "npm --prefix packages/hermione run gui",
|
40
40
|
"hermione-test": "npm --prefix packages/hermione run test",
|
41
41
|
"hermione-test-ci": "npm --prefix packages/hermione run test-ci",
|
@@ -55,9 +55,8 @@
|
|
55
55
|
"stylelint": "stylelint --ignore-path .eslintignore '**/*.css'",
|
56
56
|
"validate-tc-config": "mvn --file .teamcity/pom.xml org.jetbrains.teamcity:teamcity-configs-maven-plugin:generate -e",
|
57
57
|
"pretest-ci": "npm run lint-ci",
|
58
|
-
"test-ci": "karma start karma-ci.conf.js",
|
59
|
-
"test-watch": "karma start karma-watch.conf.js",
|
60
58
|
"typecheck": "tsc",
|
59
|
+
"test-ci": "npm run test",
|
61
60
|
"typecheck-ci": "node tsc-teamcity",
|
62
61
|
"prerelease-ci": "git pull",
|
63
62
|
"release-ci": "npm version $NPM_VERSION_PARAMS && npm publish --access=public $NPM_PUBLISH_PARAMS",
|