Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update taiga-ui dev infra to v0.152.1 #1567

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
693 changes: 189 additions & 504 deletions package-lock.json

Large diffs are not rendered by default.

13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@
"@taiga-ui/stylelint-config"
],
"ignoreFiles": [
"**/demo/**",
"**/dist/**",
"**/coverage/**",
"**/node_modules/**"
Expand All @@ -101,12 +100,12 @@
"@nx/react": "19.6.5",
"@nx/rollup": "19.6.5",
"@nx/workspace": "19.6.5",
"@taiga-ui/commitlint-config": "0.152.0",
"@taiga-ui/cspell-config": "0.152.0",
"@taiga-ui/eslint-plugin-experience": "0.152.0",
"@taiga-ui/prettier-config": "0.152.0",
"@taiga-ui/stylelint-config": "0.152.0",
"@taiga-ui/tsconfig": "0.152.0",
"@taiga-ui/commitlint-config": "0.152.1",
"@taiga-ui/cspell-config": "0.152.1",
"@taiga-ui/eslint-plugin-experience": "0.152.1",
"@taiga-ui/prettier-config": "0.152.1",
"@taiga-ui/stylelint-config": "0.152.1",
"@taiga-ui/tsconfig": "0.152.1",
"@tinkoff/eslint-config": "4.1.2",
"@tinkoff/eslint-config-react": "4.1.2",
"@types/jest": "29.5.12",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

& [tuiCardLarge] {
flex: 1;
min-width: 14rem;
min-inline-size: 14rem;

@media @tui-desktop-min {
max-width: 40%;
max-inline-size: 40%;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
}

form {
width: 80%;
max-width: 40rem;
inline-size: 80%;
max-inline-size: 40rem;
}

.password-icon {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

& [tuiCardLarge] {
flex: 1;
min-width: 18rem;
min-inline-size: 18rem;
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.input-date {
max-width: 25rem;
max-inline-size: 25rem;

&:not(:last-child) {
margin-bottom: 1rem;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.input-time {
max-width: 25rem;
max-inline-size: 25rem;

&:not(:last-child) {
margin-bottom: 1rem;
Expand Down
2 changes: 1 addition & 1 deletion projects/demo/src/pages/phone/phone-doc.style.less
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.phone {
max-width: 25rem;
max-inline-size: 25rem;

&:not(:last-child) {
margin-bottom: 1rem;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.wrapper {
display: flex;
max-width: 30rem;
max-inline-size: 30rem;
}

.number {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

.loader {
.fullsize(fixed);
background: var(--tui-background-base);

z-index: 1;
background: var(--tui-background-base);
}
22 changes: 10 additions & 12 deletions projects/demo/src/pages/stackblitz/files/styles.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
:root {
--tui-text-primary: rgba(27, 31, 59, 1);
--tui-text-tertiary: rgba(27, 31, 59, 0.4);

--tui-text-primary: rgb(27 31 59 / 1);
--tui-text-tertiary: rgb(27 31 59 / 0.4);
--tui-radius-m: 0.75rem;

--tui-background-base: #fff;
--tui-background-neutral-1-hover: #ededed;
--tui-background-accent-1: #526ed3;
Expand All @@ -12,9 +10,9 @@
input,
textarea {
display: block;
width: 100%;
max-width: 25rem;
font-size: 15px;
inline-size: 100%;
max-inline-size: 25rem;
font-size: 0.9375rem;
font-family: 'Roboto', sans-serif;
border-radius: var(--tui-radius-m);
box-sizing: border-box;
Expand All @@ -26,16 +24,16 @@ textarea {
box-shadow,
background,
0.2s ease-in-out;
box-shadow: 0 0.125rem 0.1875rem rgba(0, 0, 0, 0.1);
box-shadow: 0 0.125rem 0.1875rem rgb(0 0 0 / 0.1);
}

input {
min-height: 2.75rem;
padding: 0px 1rem 0 1rem;
min-block-size: 2.75rem;
padding: 0 1rem;
}

textarea {
min-height: 10rem;
min-block-size: 10rem;
padding: 0.5rem;
}

Expand All @@ -46,7 +44,7 @@ textarea:focus::placeholder {

input:hover,
textarea:hover {
box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.16);
box-shadow: 0 0.125rem 0.3125rem rgb(0 0 0 / 0.16);
}

input:focus,
Expand Down
8 changes: 4 additions & 4 deletions projects/demo/src/styles.less
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ body {
html,
body {
scroll-behavior: var(--tui-scroll-behavior);
height: 100%;
block-size: 100%;

@media (prefers-reduced-motion) {
scroll-behavior: auto;
Expand All @@ -27,12 +27,12 @@ markdown {
// nested list
color: var(--tui-text-secondary);

&:before {
&::before {
content: '\2014';
left: 0;
top: auto;
width: auto;
height: auto;
inline-size: auto;
block-size: auto;
background-color: transparent;
}
}
Expand Down
Loading