@birdapi/velinstyle 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/README.de.md +134 -11
  2. package/README.md +139 -16
  3. package/cli/__fixtures__/atelier-library/showcases/01-login/app.css +1 -0
  4. package/cli/__fixtures__/atelier-library/showcases/01-login/app.js +2 -0
  5. package/cli/__fixtures__/atelier-library/showcases/01-login/index.html +5 -0
  6. package/cli/__fixtures__/atelier-library/showcases/04-pricing/app.css +1 -0
  7. package/cli/__fixtures__/atelier-library/showcases/04-pricing/app.js +2 -0
  8. package/cli/__fixtures__/atelier-library/showcases/04-pricing/index.html +5 -0
  9. package/cli/__fixtures__/atelier-library/showcases/36-calendar/app.css +1 -0
  10. package/cli/__fixtures__/atelier-library/showcases/36-calendar/app.js +2 -0
  11. package/cli/__fixtures__/atelier-library/showcases/36-calendar/index.html +5 -0
  12. package/cli/atelier-catalog.json +1267 -0
  13. package/cli/atelier-formats.js +159 -0
  14. package/cli/atelier.js +382 -0
  15. package/cli/blueprints/empty-state.html +3 -5
  16. package/cli/cli-manifest.json +23 -10
  17. package/cli/docgen/extract-cli.js +1 -1
  18. package/cli/index.js +149 -3
  19. package/cli/production/component-graph.json +166 -0
  20. package/cli/production/explain.js +52 -0
  21. package/cli/production/extract.js +238 -0
  22. package/cli/production/graph.js +102 -0
  23. package/cli/production/report.js +78 -0
  24. package/cli/production/run.js +312 -0
  25. package/cli/production/trim-css.js +177 -0
  26. package/cli/production/trim-fonts.js +23 -0
  27. package/cli/production/trim-icons.js +38 -0
  28. package/cli/production/trim-js.js +48 -0
  29. package/cli/production/trim-motion.js +22 -0
  30. package/cli/production/trim-themes.js +50 -0
  31. package/cli/production/watch.js +38 -0
  32. package/cli/review.js +48 -1
  33. package/cli/scripts/write-atelier-fixtures.mjs +33 -0
  34. package/components/index.js +3 -0
  35. package/components/runtime/component-loaders.js +3 -0
  36. package/components/velin-drawer.js +43 -4
  37. package/components/velin-empty-state.js +83 -0
  38. package/components/velin-modal.js +76 -15
  39. package/components/velin-otp-input.js +220 -0
  40. package/components/velin-password-strength.js +147 -0
  41. package/components/velin-sheet.js +49 -4
  42. package/core/a11y/component-contracts.json +23 -4
  43. package/core/meta/knowledge/components.json +75 -3
  44. package/dist/chunks/attributes-2ORR27KA.js +404 -0
  45. package/dist/chunks/chunk-Y6HN7HWX.js +116 -0
  46. package/dist/chunks/runtime-entry.js +1 -1
  47. package/dist/chunks/velin-drawer-A7Q7EBOS.js +162 -0
  48. package/dist/chunks/velin-empty-state-3NTUH2RF.js +81 -0
  49. package/dist/chunks/velin-modal-3MV4FYBK.js +231 -0
  50. package/dist/chunks/velin-otp-input-PSK42MM6.js +207 -0
  51. package/dist/chunks/velin-password-strength-TAXMLSED.js +136 -0
  52. package/dist/chunks/velin-sheet-N2VVYXFP.js +157 -0
  53. package/dist/llms.txt +3 -3
  54. package/dist/search-index.json +68 -5
  55. package/dist/velin-agent.json +283 -20
  56. package/dist/velinstyle-components.iife.js +2716 -2138
  57. package/dist/velinstyle-components.js +2772 -2190
  58. package/dist/velinstyle-components.min.js +254 -112
  59. package/dist/velinstyle.css +54 -6
  60. package/dist/velinstyle.d.ts +3 -0
  61. package/dist/velinstyle.min.css +1 -1
  62. package/package.json +143 -143
  63. package/packages/velinstyle-skills/catalog.json +1 -1
  64. package/src/components/data-table.css +19 -0
  65. package/src/components/empty-auth.css +33 -0
  66. package/src/components/table.css +16 -6
  67. package/src/velinstyle.css +1 -0
package/package.json CHANGED
@@ -1,143 +1,143 @@
1
- {
2
- "name": "@birdapi/velinstyle",
3
- "version": "1.2.1",
4
- "publishConfig": {
5
- "access": "public",
6
- "registry": "https://registry.npmjs.org"
7
- },
8
- "types": "dist/velinstyle.d.ts",
9
- "sideEffects": [
10
- "components/index.js",
11
- "components/velin-*.js"
12
- ],
13
- "description": "WCAG 2.2 AAA CSS + Web Components: OKLCH themes, PII scanner, perf CLI, runtime tree-shaking. Ship inclusive UI faster.",
14
- "type": "module",
15
- "main": "dist/velinstyle.css",
16
- "module": "dist/velinstyle-components.js",
17
- "exports": {
18
- ".": "./components/runtime-entry.js",
19
- "./bundle": "./dist/velinstyle-components.min.js",
20
- "./css": "./dist/velinstyle.min.css",
21
- "./sanitize": "./components/sanitize.js",
22
- "./runtime": "./components/runtime/index.js",
23
- "./secure": "./components/velin-secure-field.js",
24
- "./email": "./components/velin-email.js",
25
- "./search": "./core/search/index.js",
26
- "./motion": "./core/motion/index.js",
27
- "./attributes": "./core/attributes/index.js",
28
- "./highlight": "./core/highlight/index.js",
29
- "./meta": "./core/meta/index.js",
30
- "./transparency": "./core/transparency/index.js",
31
- "./a11y": "./components/a11y-entry.js",
32
- "./skills-registry": "./packages/velinstyle-skills/registry.json"
33
- },
34
- "bin": {
35
- "velinstyle": "cli/index.js"
36
- },
37
- "repository": {
38
- "type": "git",
39
- "url": "https://github.com/SkyliteDesign/velinstyle.git"
40
- },
41
- "homepage": "https://velinstyle.info",
42
- "bugs": {
43
- "url": "https://github.com/SkyliteDesign/velinstyle/issues"
44
- },
45
- "files": [
46
- "dist/",
47
- "src/",
48
- "components/",
49
- "core/",
50
- "cli/",
51
- "packages/skill-engine/",
52
- "packages/velinstyle-skills/",
53
- "schemas/",
54
- "examples/search-index.schema.json",
55
- "icons/velin-icons.svg"
56
- ],
57
- "scripts": {
58
- "build": "npm run build:css:min && npm run build:css:dev && npm run build:js:min && npm run build:js:dev && npm run build:js:iife && npm run build:js:chunks && npm run build:loaders && npm run build:react:src && npm run build:types && npm run build:themes && npm run build:icons",
59
- "build:loaders": "node scripts/generate-component-loaders.mjs",
60
- "build:react:src": "node scripts/generate-react-wrappers.mjs",
61
- "build:react": "npm run build:react:src && npm --prefix packages/react run build",
62
- "build:types": "node scripts/generate-types.mjs",
63
- "build:js:chunks": "esbuild components/runtime-entry.js --bundle --splitting --format=esm --outdir=dist/chunks --chunk-names=[name]-[hash]",
64
- "build:css:min": "lightningcss --bundle --minify src/velinstyle.css -o dist/velinstyle.min.css",
65
- "build:css:dev": "lightningcss --bundle src/velinstyle.css -o dist/velinstyle.css",
66
- "build:js:min": "esbuild components/index.js --bundle --minify --format=esm --outfile=dist/velinstyle-components.min.js",
67
- "build:js:dev": "esbuild components/index.js --bundle --format=esm --outfile=dist/velinstyle-components.js",
68
- "build:js:iife": "esbuild components/index.js --bundle --format=iife --outfile=dist/velinstyle-components.iife.js",
69
- "build:themes": "node scripts/build-themes.js",
70
- "build:icons": "node icons/build-sprite.js",
71
- "dev": "npx serve . --cors -l 3000",
72
- "watch": "lightningcss --bundle src/velinstyle.css -o dist/velinstyle.css --watch",
73
- "lint": "stylelint \"src/**/*.css\"",
74
- "test": "vitest run",
75
- "test:a11y": "node tests/a11y/run.js",
76
- "test:a11y:coverage": "node tests/a11y/coverage.js",
77
- "test:contrast": "node scripts/check-contrast.js",
78
- "test:security": "vitest run tests/sanitize.test.js tests/cli-security-scanner.test.js",
79
- "test:perf": "vitest run tests/perf-audit.test.js",
80
- "test:search:bench": "vitest run tests/search-benchmark.test.js",
81
- "test:e2e": "playwright test",
82
- "test:e2e:chromium": "playwright test --project=chromium",
83
- "docs:patch-theme-picker": "node scripts/patch-docs-theme-picker.mjs",
84
- "tokens:validate": "node cli/index.js tokens validate --input examples/tokens.sample.json",
85
- "tokens:validate:full": "node cli/index.js tokens validate --input examples/tokens.full.json",
86
- "docs:generate": "node cli/index.js docs generate",
87
- "search:index": "node cli/index.js search index",
88
- "skills:generate": "node packages/velinstyle-skills/scripts/generate-assets.mjs && node -e \"import('./packages/velinstyle-skills/index.js').then(m=>m.writeCatalogFile())\"",
89
- "skills:validate": "node scripts/validate-skills.mjs",
90
- "skills:doctor": "node scripts/check-skills-paths.mjs",
91
- "meta:build": "node cli/index.js meta",
92
- "ci:checks": "node scripts/ci-checks.mjs",
93
- "check:blueprints": "node scripts/check-blueprint-classes.mjs",
94
- "check:chaos": "node scripts/check-chaos-detection.mjs",
95
- "release:check": "node scripts/check-release-sync.mjs",
96
- "release:sync": "node scripts/check-release-sync.mjs --fix",
97
- "intelligence:validate": "node scripts/validate-intelligence-schemas.mjs",
98
- "prepublishOnly": "npm run build && npm run check:blueprints && npm run search:index && npm run skills:generate && npm run skills:validate && npm run skills:doctor && npm run meta:build && npm run intelligence:validate && npm run release:check -- --skip-site",
99
- "pack:check": "npm pack --dry-run",
100
- "docs:prepare": "npm run build && node scripts/prepare-docs-pages.js",
101
- "docs:patch-nav": "node scripts/patch-docs-nav.js",
102
- "docs:sync-site": "npm run build && npm run docs:generate && python ../velinstyle-site/tools/sync-framework-0.9.0.py && python ../velinstyle-site/tools/patch-site-a11y-aaa.py && python ../velinstyle-site/tools/patch-docs-090-final.py",
103
- "readme:capture": "node tools/capture-readme-demos.mjs",
104
- "readme:assets:webp": "node tools/readme-png-to-webp.mjs",
105
- "demos:sync": "node tools/sync-demos-to-repo.mjs --out showcase-demos && node tools/sync-demos-to-repo.mjs --out ../velinstyle-demos",
106
- "strategy:bootstrap-issues": "node scripts/bootstrap-github-backlog.mjs",
107
- "strategy:bootstrap-issues:dry": "node scripts/bootstrap-github-backlog.mjs --dry-run",
108
- "strategy:bootstrap-next30": "node scripts/bootstrap-github-backlog.mjs --issues-only --seed=../interne_docs/strategy/next-30-issues.json --map=../interne_docs/strategy/next-30-issue-map.json",
109
- "strategy:bootstrap-next30:dry": "node scripts/bootstrap-github-backlog.mjs --dry-run --issues-only --seed=../interne_docs/strategy/next-30-issues.json --map=../interne_docs/strategy/next-30-issue-map.json"
110
- },
111
- "keywords": [
112
- "css",
113
- "framework",
114
- "accessibility",
115
- "a11y",
116
- "wcag",
117
- "mobile-first",
118
- "container-queries",
119
- "oklch",
120
- "web-components",
121
- "design-tokens",
122
- "dark-mode",
123
- "rtl"
124
- ],
125
- "author": "SkyliteDesign",
126
- "license": "MIT",
127
- "devDependencies": {
128
- "@playwright/test": "^1.60.0",
129
- "axe-core": "^4.10.0",
130
- "esbuild": "^0.24.0",
131
- "jsdom": "^26.1.0",
132
- "lightningcss-cli": "^1.28.0",
133
- "playwright": "^1.60.0",
134
- "serve": "^14.0.0",
135
- "sharp": "^0.34.5",
136
- "stylelint": "^16.0.0",
137
- "stylelint-config-standard": "^36.0.0",
138
- "vitest": "^3.2.0"
139
- },
140
- "dependencies": {
141
- "isomorphic-dompurify": "^3.21.0"
142
- }
143
- }
1
+ {
2
+ "name": "@birdapi/velinstyle",
3
+ "version": "1.2.2",
4
+ "publishConfig": {
5
+ "access": "public",
6
+ "registry": "https://registry.npmjs.org"
7
+ },
8
+ "types": "dist/velinstyle.d.ts",
9
+ "sideEffects": [
10
+ "components/index.js",
11
+ "components/velin-*.js"
12
+ ],
13
+ "description": "WCAG 2.2 AAA CSS + Web Components: OKLCH themes, PII scanner, perf CLI, runtime tree-shaking. Ship inclusive UI faster.",
14
+ "type": "module",
15
+ "main": "dist/velinstyle.css",
16
+ "module": "dist/velinstyle-components.js",
17
+ "exports": {
18
+ ".": "./components/runtime-entry.js",
19
+ "./bundle": "./dist/velinstyle-components.min.js",
20
+ "./css": "./dist/velinstyle.min.css",
21
+ "./sanitize": "./components/sanitize.js",
22
+ "./runtime": "./components/runtime/index.js",
23
+ "./secure": "./components/velin-secure-field.js",
24
+ "./email": "./components/velin-email.js",
25
+ "./search": "./core/search/index.js",
26
+ "./motion": "./core/motion/index.js",
27
+ "./attributes": "./core/attributes/index.js",
28
+ "./highlight": "./core/highlight/index.js",
29
+ "./meta": "./core/meta/index.js",
30
+ "./transparency": "./core/transparency/index.js",
31
+ "./a11y": "./components/a11y-entry.js",
32
+ "./skills-registry": "./packages/velinstyle-skills/registry.json"
33
+ },
34
+ "bin": {
35
+ "velinstyle": "cli/index.js"
36
+ },
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/SkyliteDesign/velinstyle.git"
40
+ },
41
+ "homepage": "https://velinstyle.info",
42
+ "bugs": {
43
+ "url": "https://github.com/SkyliteDesign/velinstyle/issues"
44
+ },
45
+ "files": [
46
+ "dist/",
47
+ "src/",
48
+ "components/",
49
+ "core/",
50
+ "cli/",
51
+ "packages/skill-engine/",
52
+ "packages/velinstyle-skills/",
53
+ "schemas/",
54
+ "examples/search-index.schema.json",
55
+ "icons/velin-icons.svg"
56
+ ],
57
+ "scripts": {
58
+ "build": "npm run build:css:min && npm run build:css:dev && npm run build:js:min && npm run build:js:dev && npm run build:js:iife && npm run build:js:chunks && npm run build:loaders && npm run build:react:src && npm run build:types && npm run build:themes && npm run build:icons",
59
+ "build:loaders": "node scripts/generate-component-loaders.mjs",
60
+ "build:react:src": "node scripts/generate-react-wrappers.mjs",
61
+ "build:react": "npm run build:react:src && npm --prefix packages/react run build",
62
+ "build:types": "node scripts/generate-types.mjs",
63
+ "build:js:chunks": "esbuild components/runtime-entry.js --bundle --splitting --format=esm --outdir=dist/chunks --chunk-names=[name]-[hash]",
64
+ "build:css:min": "lightningcss --bundle --minify src/velinstyle.css -o dist/velinstyle.min.css",
65
+ "build:css:dev": "lightningcss --bundle src/velinstyle.css -o dist/velinstyle.css",
66
+ "build:js:min": "esbuild components/index.js --bundle --minify --format=esm --outfile=dist/velinstyle-components.min.js",
67
+ "build:js:dev": "esbuild components/index.js --bundle --format=esm --outfile=dist/velinstyle-components.js",
68
+ "build:js:iife": "esbuild components/index.js --bundle --format=iife --outfile=dist/velinstyle-components.iife.js",
69
+ "build:themes": "node scripts/build-themes.js",
70
+ "build:icons": "node icons/build-sprite.js",
71
+ "dev": "npx serve . --cors -l 3000",
72
+ "watch": "lightningcss --bundle src/velinstyle.css -o dist/velinstyle.css --watch",
73
+ "lint": "stylelint \"src/**/*.css\"",
74
+ "test": "vitest run",
75
+ "test:a11y": "node tests/a11y/run.js",
76
+ "test:a11y:coverage": "node tests/a11y/coverage.js",
77
+ "test:contrast": "node scripts/check-contrast.js",
78
+ "test:security": "vitest run tests/sanitize.test.js tests/cli-security-scanner.test.js",
79
+ "test:perf": "vitest run tests/perf-audit.test.js",
80
+ "test:search:bench": "vitest run tests/search-benchmark.test.js",
81
+ "test:e2e": "playwright test",
82
+ "test:e2e:chromium": "playwright test --project=chromium",
83
+ "docs:patch-theme-picker": "node scripts/patch-docs-theme-picker.mjs",
84
+ "tokens:validate": "node cli/index.js tokens validate --input examples/tokens.sample.json",
85
+ "tokens:validate:full": "node cli/index.js tokens validate --input examples/tokens.full.json",
86
+ "docs:generate": "node cli/index.js docs generate",
87
+ "search:index": "node cli/index.js search index",
88
+ "skills:generate": "node packages/velinstyle-skills/scripts/generate-assets.mjs && node -e \"import('./packages/velinstyle-skills/index.js').then(m=>m.writeCatalogFile())\"",
89
+ "skills:validate": "node scripts/validate-skills.mjs",
90
+ "skills:doctor": "node scripts/check-skills-paths.mjs",
91
+ "meta:build": "node cli/index.js meta",
92
+ "ci:checks": "node scripts/ci-checks.mjs",
93
+ "check:blueprints": "node scripts/check-blueprint-classes.mjs",
94
+ "check:chaos": "node scripts/check-chaos-detection.mjs",
95
+ "release:check": "node scripts/check-release-sync.mjs",
96
+ "release:sync": "node scripts/check-release-sync.mjs --fix",
97
+ "intelligence:validate": "node scripts/validate-intelligence-schemas.mjs",
98
+ "prepublishOnly": "npm run build && npm run check:blueprints && npm run search:index && npm run skills:generate && npm run skills:validate && npm run skills:doctor && npm run meta:build && npm run intelligence:validate && npm run release:check -- --skip-site",
99
+ "pack:check": "npm pack --dry-run",
100
+ "docs:prepare": "npm run build && node scripts/prepare-docs-pages.js",
101
+ "docs:patch-nav": "node scripts/patch-docs-nav.js",
102
+ "docs:sync-site": "npm run build && npm run docs:generate && python ../velinstyle-site/tools/sync-framework-0.9.0.py && python ../velinstyle-site/tools/patch-site-a11y-aaa.py && python ../velinstyle-site/tools/patch-docs-090-final.py",
103
+ "readme:capture": "node tools/capture-readme-demos.mjs",
104
+ "readme:assets:webp": "node tools/readme-png-to-webp.mjs",
105
+ "demos:sync": "node tools/sync-demos-to-repo.mjs --out showcase-demos && node tools/sync-demos-to-repo.mjs --out ../velinstyle-demos",
106
+ "strategy:bootstrap-issues": "node scripts/bootstrap-github-backlog.mjs",
107
+ "strategy:bootstrap-issues:dry": "node scripts/bootstrap-github-backlog.mjs --dry-run",
108
+ "strategy:bootstrap-next30": "node scripts/bootstrap-github-backlog.mjs --issues-only --seed=../interne_docs/strategy/next-30-issues.json --map=../interne_docs/strategy/next-30-issue-map.json",
109
+ "strategy:bootstrap-next30:dry": "node scripts/bootstrap-github-backlog.mjs --dry-run --issues-only --seed=../interne_docs/strategy/next-30-issues.json --map=../interne_docs/strategy/next-30-issue-map.json"
110
+ },
111
+ "keywords": [
112
+ "css",
113
+ "framework",
114
+ "accessibility",
115
+ "a11y",
116
+ "wcag",
117
+ "mobile-first",
118
+ "container-queries",
119
+ "oklch",
120
+ "web-components",
121
+ "design-tokens",
122
+ "dark-mode",
123
+ "rtl"
124
+ ],
125
+ "author": "SkyliteDesign",
126
+ "license": "MIT",
127
+ "devDependencies": {
128
+ "@playwright/test": "^1.60.0",
129
+ "axe-core": "^4.10.0",
130
+ "esbuild": "^0.24.0",
131
+ "jsdom": "^26.1.0",
132
+ "lightningcss-cli": "^1.28.0",
133
+ "playwright": "^1.60.0",
134
+ "serve": "^14.0.0",
135
+ "sharp": "^0.34.5",
136
+ "stylelint": "^16.0.0",
137
+ "stylelint-config-standard": "^36.0.0",
138
+ "vitest": "^3.2.0"
139
+ },
140
+ "dependencies": {
141
+ "isomorphic-dompurify": "^3.21.0"
142
+ }
143
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "generatedAt": "2026-08-02T07:30:24.706Z",
3
+ "generatedAt": "2026-08-04T10:26:09.763Z",
4
4
  "totals": {
5
5
  "skills": 40,
6
6
  "packs": 6,
@@ -65,6 +65,25 @@
65
65
  text-align: center;
66
66
  }
67
67
 
68
+ /* Row severity (class + data-severity alias) */
69
+ .velin-data-table__row--danger,
70
+ .velin-data-table tr[data-severity="danger"] {
71
+ background-color: color-mix(in oklch, var(--velin-color-danger) 12%, transparent);
72
+ box-shadow: inset 3px 0 0 var(--velin-color-danger);
73
+ }
74
+
75
+ .velin-data-table__row--warning,
76
+ .velin-data-table tr[data-severity="warning"] {
77
+ background-color: color-mix(in oklch, var(--velin-color-warning) 12%, transparent);
78
+ box-shadow: inset 3px 0 0 var(--velin-color-warning);
79
+ }
80
+
81
+ .velin-data-table__row--selected,
82
+ .velin-data-table tr[data-severity="selected"] {
83
+ background-color: color-mix(in oklch, var(--velin-color-primary) 12%, transparent);
84
+ box-shadow: inset 3px 0 0 var(--velin-color-primary);
85
+ }
86
+
68
87
  .velin-data-table__pagination {
69
88
  display: flex;
70
89
  align-items: center;
@@ -0,0 +1,33 @@
1
+ @layer components {
2
+ .velin-otp-input {
3
+ display: block;
4
+ }
5
+
6
+ .velin-password-strength {
7
+ display: block;
8
+ }
9
+
10
+ .velin-empty-state {
11
+ display: block;
12
+ text-align: center;
13
+ padding: var(--velin-space-8) var(--velin-space-4);
14
+ }
15
+
16
+ .velin-empty-state__title {
17
+ margin: 0 0 var(--velin-space-2);
18
+ font-size: var(--velin-text-xl);
19
+ font-weight: var(--velin-weight-bold);
20
+ }
21
+
22
+ .velin-empty-state__description {
23
+ margin: 0 0 var(--velin-space-4);
24
+ color: var(--velin-color-text-muted);
25
+ }
26
+
27
+ .velin-empty-state__actions {
28
+ display: flex;
29
+ flex-wrap: wrap;
30
+ gap: var(--velin-space-3);
31
+ justify-content: center;
32
+ }
33
+ }
@@ -55,12 +55,22 @@
55
55
  }
56
56
 
57
57
  /* Row color variants */
58
- .velin-table-primary { background-color: color-mix(in oklch, var(--velin-color-primary) 10%, transparent); }
59
- .velin-table-secondary { background-color: color-mix(in oklch, var(--velin-color-secondary) 10%, transparent); }
60
- .velin-table-success { background-color: color-mix(in oklch, var(--velin-color-success) 10%, transparent); }
61
- .velin-table-warning { background-color: color-mix(in oklch, var(--velin-color-warning) 10%, transparent); }
62
- .velin-table-danger { background-color: color-mix(in oklch, var(--velin-color-danger) 10%, transparent); }
63
- .velin-table-info { background-color: color-mix(in oklch, var(--velin-color-info) 10%, transparent); }
58
+ .velin-table-primary,
59
+ .velin-table--primary { background-color: color-mix(in oklch, var(--velin-color-primary) 10%, transparent); }
60
+ .velin-table-secondary,
61
+ .velin-table--secondary { background-color: color-mix(in oklch, var(--velin-color-secondary) 10%, transparent); }
62
+ .velin-table-success,
63
+ .velin-table--success { background-color: color-mix(in oklch, var(--velin-color-success) 10%, transparent); }
64
+ .velin-table-warning,
65
+ .velin-table--warning { background-color: color-mix(in oklch, var(--velin-color-warning) 10%, transparent); }
66
+ .velin-table-danger,
67
+ .velin-table--danger { background-color: color-mix(in oklch, var(--velin-color-danger) 10%, transparent); }
68
+ .velin-table-info,
69
+ .velin-table--info { background-color: color-mix(in oklch, var(--velin-color-info) 10%, transparent); }
70
+ .velin-table--selected {
71
+ background-color: color-mix(in oklch, var(--velin-color-primary) 12%, transparent);
72
+ box-shadow: inset 3px 0 0 var(--velin-color-primary);
73
+ }
64
74
 
65
75
  /* Caption top */
66
76
  .velin-table .velin-caption-top {
@@ -76,6 +76,7 @@
76
76
  @import "components/attributes.css";
77
77
  @import "components/highlight.css";
78
78
  @import "components/calendar-dropzone.css";
79
+ @import "components/empty-auth.css";
79
80
 
80
81
  /* Utilities */
81
82
  @import "utilities/color.css";