@jetbrains/ring-ui-built 7.0.95 → 7.0.97
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/components/auth/auth-core.d.ts +13 -1
- package/components/auth/auth-core.js +79 -42
- package/components/auth/auth.js +1 -1
- package/components/avatar/avatar.js +1 -1
- package/components/list/list-item.js +1 -1
- package/components/list/list.d.ts +1 -2
- package/components/list/list.js +17 -10
- package/components/old-browsers-message/white-list.js +2 -2
- package/components/style.css +1 -1
- package/components/tabs/collapsible-tabs.js +2 -2
- package/package.json +6 -1
|
@@ -74,11 +74,11 @@ const DEFAULT_DEBOUNCE_INTERVAL = 100;
|
|
|
74
74
|
const MEASURE_TOLERANCE = 0.5;
|
|
75
75
|
const CollapsibleTabs = t0 => {
|
|
76
76
|
const $ = c(92);
|
|
77
|
-
if ($[0] !== "
|
|
77
|
+
if ($[0] !== "82f2dc93de65dc30001587c39f2444b114e674174f0aa9346f45d08c4898b52b") {
|
|
78
78
|
for (let $i = 0; $i < 92; $i += 1) {
|
|
79
79
|
$[$i] = Symbol.for("react.memo_cache_sentinel");
|
|
80
80
|
}
|
|
81
|
-
$[0] = "
|
|
81
|
+
$[0] = "82f2dc93de65dc30001587c39f2444b114e674174f0aa9346f45d08c4898b52b";
|
|
82
82
|
}
|
|
83
83
|
const {
|
|
84
84
|
children,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetbrains/ring-ui-built",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.97",
|
|
4
4
|
"description": "JetBrains UI library",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "JetBrains"
|
|
@@ -53,6 +53,8 @@
|
|
|
53
53
|
"figma-connect-unpublish": "npx figma connect unpublish --token=$FIGMA_CODE_CONNECT_TOKEN",
|
|
54
54
|
"figma-connect-unpublish-local": "dotenv -- npm run figma-connect-unpublish",
|
|
55
55
|
"lint": "npm run lint:js && npm run stylelint",
|
|
56
|
+
"prelint-ci": "echo \"##teamcity[importData type='jslint' path='eslint-report.xml']\"",
|
|
57
|
+
"lint-ci": "eslint --format jslint-xml . > eslint-report.xml && npm run stylelint-ci",
|
|
56
58
|
"lint:js": "eslint",
|
|
57
59
|
"postbuild": "cpy './**/*.d.ts' ../dist --parents --cwd=components/",
|
|
58
60
|
"_postinstall": "husky && npm run postinstall:gitconfig",
|
|
@@ -76,12 +78,15 @@
|
|
|
76
78
|
"start": "storybook dev -p 9999",
|
|
77
79
|
"storybook-debug": "node --inspect-brk node_modules/@storybook/react/bin -p 9999",
|
|
78
80
|
"stylelint": "stylelint --ignore-path .stylelintignore '**/*.css'",
|
|
81
|
+
"stylelint-ci": "stylelint --ignore-path .stylelintignore --custom-formatter 'scripts/jslint-xml.js' '**/*.css' | xmlappend eslint-report.xml",
|
|
79
82
|
"test": "vitest src",
|
|
80
83
|
"type-check": "(npm run type-check:create-d-ts && npm run type-check:main && npm run type-check:build) ; npm run type-check:cleanup-d-ts",
|
|
81
84
|
"type-check:create-d-ts": "npx tcm src && npx tcm .storybook",
|
|
82
85
|
"type-check:main": "tsc --noEmit -p tsconfig.json",
|
|
83
86
|
"type-check:build": "tsc --noEmit -p tsconfig-build.json",
|
|
84
87
|
"type-check:cleanup-d-ts": "rimraf src/**/*.css.d.ts .storybook/*.css.d.ts .storybook/**/*.css.d.ts",
|
|
88
|
+
"pretype-check-ci": "npm run type-check:create-d-ts",
|
|
89
|
+
"type-check-ci": "node scripts/tsc-teamcity",
|
|
85
90
|
"update-styles": "node scripts/update-styles.mjs",
|
|
86
91
|
"validate-tc-config": "mvn --file .teamcity/pom.xml org.jetbrains.teamcity:teamcity-configs-maven-plugin:generate -e"
|
|
87
92
|
},
|