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

added uploader variants #57

Open
wants to merge 14 commits into
base: develop
Choose a base branch
from
Open
1 change: 1 addition & 0 deletions react/css/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ frontend/micro-ui/web/public/index.html
# Changelog
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ensure headings are surrounded by blank lines.

- # Syntax for importing any components
+ 
+ # Syntax for importing any components
+ 

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
# Changelog
# Syntax for importing any components


```bash
1.8.2-coreui.14 added uploader varinats and its css
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix the typographical and formatting issues in the changelog.

- 1.8.2-coreui.14 added uploader varinats and its css
+ 1.8.2-coreui.14: Added uploader variants and its CSS

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
1.8.2-coreui.14 added uploader varinats and its css
1.8.2-coreui.14: Added uploader variants and its CSS

1.8.2-coreui.12 updated css for toast info and category option css
1.8.2-coreui.11 added info varinat for toast
1.8.2-coreui.10 dropdown options card height updated
Expand Down
453 changes: 355 additions & 98 deletions react/css/example/index.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion react/css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@egovernments/digit-ui-css",
"version": "1.8.2-coreui.12",
"version": "1.8.2-coreui.14",
"license": "MIT",
"main": "dist/index.css",
"author": "Jagankumar <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion react/css/src/digitv2/components/buttonsV2.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import url("../index.scss");

.icon-label-container {
@apply w-full flex max-w-full items-center;
@apply flex max-w-full items-center;
gap: 0.5rem;

&.small,
Expand Down
31 changes: 27 additions & 4 deletions react/css/src/digitv2/components/tagV2.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
.digit-tag-error-container {
@apply flex flex-col;
gap: 0.25rem;
max-width: 100%;
}

.digit-tag-error {
@apply flex w-full;
margin-top: 0rem;
gap: 0.25rem;
}

.digit-tag-error-message {
margin: 0rem;
font-style: normal;
}

.digit-tag-container {
@apply flex flex-wrap mb-md items-center;
gap: 0.5rem;
Expand Down Expand Up @@ -30,15 +47,22 @@
background: theme(digitv2.lightTheme.generic-background);
margin: 0rem;
border: 0.063rem solid theme(digitv2.lightTheme.generic-divider);
width: fit-content;
max-width: 100%;
width: 100%;


.digit-text {
@extend .typography.body-s;
@apply overflow-hidden h-4;
max-width: calc(100% - 24px);
@apply overflow-hidden;
max-width: calc(100% - 1.75rem);
width: calc(100% - 1.75rem);
text-overflow: clip;
color: theme(digitv2.lightTheme.text-primary);
line-height: 1.026rem;
white-space: nowrap;
display: flex;
align-items: center;
text-overflow: ellipsis;
}

.close-icon {
Expand All @@ -55,7 +79,6 @@

.digit-text {
@extend .typography.heading-s;
line-height: 1.172rem;
color: theme(digitv2.lightTheme.alert-error);
}

Expand Down
Loading