Compare commits

..

7 Commits

Author SHA1 Message Date
ec63a10027 update ci
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2026-02-24 10:14:08 +01:00
5ada69773c update ci, datepicker, v0.1.16
Some checks failed
continuous-integration/drone/push Build is failing
2026-02-24 10:06:41 +01:00
370d6e7e0a v0.1.15
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2026-02-23 23:53:32 +01:00
44dd5d5deb v0.1.14
Some checks failed
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/tag Build encountered an error
2026-02-23 23:51:42 +01:00
8d3ca5a281 fix ci
Some checks failed
continuous-integration/drone/push Build encountered an error
2026-02-23 23:51:16 +01:00
1d5113d209 fix datepicker css, v0.1.13
Some checks failed
continuous-integration/drone/tag Build is failing
continuous-integration/drone/push Build is passing
2026-02-23 23:48:58 +01:00
f71e773a3a update drone
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-23 23:34:04 +01:00
3 changed files with 40 additions and 18 deletions

View File

@@ -13,24 +13,18 @@ trigger:
steps:
- name: install
image: node:22
image: node:25
commands:
- corepack enable
- corepack prepare yarn@1.22.22 --activate
- yarn install --frozen-lockfile
- name: lint
image: node:22
image: node:25
commands:
- corepack enable
- corepack prepare yarn@1.22.22 --activate
- yarn lint
- name: build
image: node:22
image: node:25
commands:
- corepack enable
- corepack prepare yarn@1.22.22 --activate
- yarn build
---
@@ -39,22 +33,18 @@ type: docker
name: web-ui-publish
trigger:
branch:
- main
event:
- promote
target:
- production
- tag
ref:
- refs/tags/v*
steps:
- name: publish-npm
image: node:22
image: node:25
environment:
NEXUS_NPM_TOKEN:
from_secret: nexus_npm_token
commands:
- corepack enable
- corepack prepare yarn@1.22.22 --activate
- yarn install --frozen-lockfile
- npm config set //nexus.beatrice.wtf/repository/npm-hosted/:_authToken "$NEXUS_NPM_TOKEN"
- yarn publish:nexus

View File

@@ -1,6 +1,6 @@
{
"name": "@panic/web-ui",
"version": "0.1.12",
"version": "0.1.16",
"license": "AGPL-3.0-only",
"description": "Core components for panic.haus web applications",
"type": "module",

View File

@@ -30,6 +30,21 @@
-webkit-text-fill-color: var(--field-selection-text);
}
.field[type='date']::-webkit-datetime-edit-day-field,
.field[type='date']::-webkit-datetime-edit-month-field,
.field[type='date']::-webkit-datetime-edit-year-field,
.field[type='time']::-webkit-datetime-edit-hour-field,
.field[type='time']::-webkit-datetime-edit-minute-field,
.field[type='time']::-webkit-datetime-edit-ampm-field,
.field[type='datetime-local']::-webkit-datetime-edit-day-field,
.field[type='datetime-local']::-webkit-datetime-edit-month-field,
.field[type='datetime-local']::-webkit-datetime-edit-year-field,
.field[type='datetime-local']::-webkit-datetime-edit-hour-field,
.field[type='datetime-local']::-webkit-datetime-edit-minute-field,
.field[type='datetime-local']::-webkit-datetime-edit-ampm-field {
border-radius: 0.375rem;
}
.field[type='date']::-webkit-datetime-edit-day-field:focus,
.field[type='date']::-webkit-datetime-edit-month-field:focus,
.field[type='date']::-webkit-datetime-edit-year-field:focus,
@@ -43,6 +58,23 @@
.field[type='datetime-local']::-webkit-datetime-edit-minute-field:focus,
.field[type='datetime-local']::-webkit-datetime-edit-ampm-field:focus {
border-radius: 0.375rem;
background-color: var(--field-selection-bg) !important;
color: var(--field-selection-text) !important;
-webkit-text-fill-color: var(--field-selection-text) !important;
}
.field[type='date']::-webkit-datetime-edit-day-field::selection,
.field[type='date']::-webkit-datetime-edit-month-field::selection,
.field[type='date']::-webkit-datetime-edit-year-field::selection,
.field[type='time']::-webkit-datetime-edit-hour-field::selection,
.field[type='time']::-webkit-datetime-edit-minute-field::selection,
.field[type='time']::-webkit-datetime-edit-ampm-field::selection,
.field[type='datetime-local']::-webkit-datetime-edit-day-field::selection,
.field[type='datetime-local']::-webkit-datetime-edit-month-field::selection,
.field[type='datetime-local']::-webkit-datetime-edit-year-field::selection,
.field[type='datetime-local']::-webkit-datetime-edit-hour-field::selection,
.field[type='datetime-local']::-webkit-datetime-edit-minute-field::selection,
.field[type='datetime-local']::-webkit-datetime-edit-ampm-field::selection {
background-color: var(--field-selection-bg);
color: var(--field-selection-text);
-webkit-text-fill-color: var(--field-selection-text);