Compare commits

..
Author SHA1 Message Date
Felicio Mununga a92e37a3c1 Create poor-coats-behave.md 2024-10-10 09:58:14 +02:00
Felicio Mununga c9dabe157c Update tailwind.config.ts 2024-10-10 09:55:54 +02:00
Felicio Mununga b61099dd54 Update tailwind.config.ts 2024-10-10 09:53:58 +02:00
6 changed files with 29 additions and 64 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@status-im/components": patch
---
Update fontSize in tailwind.config.ts
+19 -43
View File
@@ -1,5 +1,5 @@
#!/usr/bin/env groovy
library 'status-jenkins-lib@v1.9.11'
library 'status-jenkins-lib@v1.9.1'
pipeline {
agent { label 'linux' }
@@ -28,64 +28,40 @@ pipeline {
stages {
stage('Install') {
steps {
dir("${env.WORKSPACE}/apps/connector") {
script {
nix.shell(
'yarn install --frozen-lockfile',
pure: false,
entryPoint: "${env.WORKSPACE}/apps/connector/shell.nix"
)
}
}
}
steps { script {
nix.shell('yarn install --frozen-lockfile', pure: false)
} }
}
stage('Build') {
steps {
dir("${env.WORKSPACE}/apps/connector") {
script {
nix.shell(
'yarn build:chrome',
pure: false,
entryPoint: "${env.WORKSPACE}/apps/connector/shell.nix"
)
}
}
}
steps { script {
nix.shell('yarn build:chrome', pure: false)
} }
}
stage('Zip') {
steps {
dir("${env.WORKSPACE}/apps/connector") {
zip(
zipFile: env.ZIP_NAME,
dir: 'build/chrome-mv3-prod',
archive: false,
)
}
zip(
zipFile: env.ZIP_NAME,
dir: 'build/chrome-mv3-prod',
archive: false,
)
}
}
stage('Archive') {
steps {
dir("${env.WORKSPACE}/apps/connector") {
archiveArtifacts(
artifacts: env.ZIP_NAME,
fingerprint: true,
)
}
archiveArtifacts(
artifacts: env.ZIP_NAME,
fingerprint: true,
)
}
}
stage('Upload') {
steps {
dir("${env.WORKSPACE}/apps/connector") {
script {
env.PKG_URL = s5cmd.upload(env.ZIP_NAME)
}
}
}
steps { script {
env.PKG_URL = s5cmd.upload(env.ZIP_NAME)
} }
}
}
-2
View File
@@ -1,7 +1,5 @@
# A wallet connector by Status
![status](https://img.shields.io/badge/status-beta-orange)
Status Desktop Wallet extended to decentralized applications in your browser.
## Compatibility
-12
View File
@@ -1,17 +1,5 @@
# @status-im/components
## 1.0.4
### Patch Changes
- a3f9252: fix `<Button />` icon color for blur variant
## 1.0.3
### Patch Changes
- 8f1980e: Update fontSize in tailwind.config.ts
## 1.0.2
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@status-im/components",
"version": "1.0.4",
"version": "1.0.2",
"license": "MPL-2.0",
"sideEffects": [
"*.css"
+4 -6
View File
@@ -143,18 +143,16 @@ const iconStyles = cva({
variant: {
primary: ['text-blur-white/70'],
positive: ['text-blur-white/70'],
grey: [
grey: ['text-neutral-50'],
darkGrey: [
'text-neutral-50',
'blur:text-neutral-80/40',
'dark:text-neutral-40',
'blur:dark:text-white-40',
'blur:dark:text-neutral-80/40',
],
darkGrey: ['text-neutral-40'],
outline: [
'text-neutral-50',
'blur:text-neutral-80/40',
'dark:text-neutral-40',
'blur:dark:text-white-40',
'blur:dark:text-neutral-80/40',
],
ghost: ['text-neutral-50'],
danger: ['text-blur-white/70'],