Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 44dd5d5deb | |||
| 8d3ca5a281 | |||
| 1d5113d209 | |||
| f71e773a3a |
@@ -39,12 +39,10 @@ type: docker
|
|||||||
name: web-ui-publish
|
name: web-ui-publish
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
branch:
|
|
||||||
- main
|
|
||||||
event:
|
event:
|
||||||
- promote
|
- tag
|
||||||
target:
|
ref:
|
||||||
- production
|
- refs/tags/v*
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: publish-npm
|
- name: publish-npm
|
||||||
@@ -56,5 +54,6 @@ steps:
|
|||||||
- corepack enable
|
- corepack enable
|
||||||
- corepack prepare yarn@1.22.22 --activate
|
- corepack prepare yarn@1.22.22 --activate
|
||||||
- yarn install --frozen-lockfile
|
- yarn install --frozen-lockfile
|
||||||
|
- node -e "const pkg=require('./package.json').version; const tag=process.env.DRONE_TAG; if('v'+pkg!==tag){console.error('Tag/version mismatch: v'+pkg+' != '+tag); process.exit(1);}"
|
||||||
- npm config set //nexus.beatrice.wtf/repository/npm-hosted/:_authToken "$NEXUS_NPM_TOKEN"
|
- npm config set //nexus.beatrice.wtf/repository/npm-hosted/:_authToken "$NEXUS_NPM_TOKEN"
|
||||||
- yarn publish:nexus
|
- yarn publish:nexus
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@panic/web-ui",
|
"name": "@panic/web-ui",
|
||||||
"version": "0.1.12",
|
"version": "0.1.14",
|
||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
"description": "Core components for panic.haus web applications",
|
"description": "Core components for panic.haus web applications",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@@ -30,22 +30,22 @@
|
|||||||
-webkit-text-fill-color: var(--field-selection-text);
|
-webkit-text-fill-color: var(--field-selection-text);
|
||||||
}
|
}
|
||||||
|
|
||||||
.field[type='date']::-webkit-datetime-edit-day-field:focus,
|
.field[type='date']:focus::-webkit-datetime-edit-day-field,
|
||||||
.field[type='date']::-webkit-datetime-edit-month-field:focus,
|
.field[type='date']:focus::-webkit-datetime-edit-month-field,
|
||||||
.field[type='date']::-webkit-datetime-edit-year-field:focus,
|
.field[type='date']:focus::-webkit-datetime-edit-year-field,
|
||||||
.field[type='time']::-webkit-datetime-edit-hour-field:focus,
|
.field[type='time']:focus::-webkit-datetime-edit-hour-field,
|
||||||
.field[type='time']::-webkit-datetime-edit-minute-field:focus,
|
.field[type='time']:focus::-webkit-datetime-edit-minute-field,
|
||||||
.field[type='time']::-webkit-datetime-edit-ampm-field:focus,
|
.field[type='time']:focus::-webkit-datetime-edit-ampm-field,
|
||||||
.field[type='datetime-local']::-webkit-datetime-edit-day-field:focus,
|
.field[type='datetime-local']:focus::-webkit-datetime-edit-day-field,
|
||||||
.field[type='datetime-local']::-webkit-datetime-edit-month-field:focus,
|
.field[type='datetime-local']:focus::-webkit-datetime-edit-month-field,
|
||||||
.field[type='datetime-local']::-webkit-datetime-edit-year-field:focus,
|
.field[type='datetime-local']:focus::-webkit-datetime-edit-year-field,
|
||||||
.field[type='datetime-local']::-webkit-datetime-edit-hour-field:focus,
|
.field[type='datetime-local']:focus::-webkit-datetime-edit-hour-field,
|
||||||
.field[type='datetime-local']::-webkit-datetime-edit-minute-field:focus,
|
.field[type='datetime-local']:focus::-webkit-datetime-edit-minute-field,
|
||||||
.field[type='datetime-local']::-webkit-datetime-edit-ampm-field:focus {
|
.field[type='datetime-local']:focus::-webkit-datetime-edit-ampm-field {
|
||||||
border-radius: 0.375rem;
|
border-radius: 0.375rem;
|
||||||
background-color: var(--field-selection-bg);
|
background-color: var(--field-selection-bg) !important;
|
||||||
color: var(--field-selection-text);
|
color: var(--field-selection-text) !important;
|
||||||
-webkit-text-fill-color: var(--field-selection-text);
|
-webkit-text-fill-color: var(--field-selection-text) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.field:disabled {
|
.field:disabled {
|
||||||
|
|||||||
Reference in New Issue
Block a user