Fixed table styles and panel variants

This commit is contained in:
2026-03-12 11:17:43 +01:00
parent bdc2a2b423
commit c76e9653d4
11 changed files with 90 additions and 40 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "cyberduck",
"private": false,
"version": "1.1.0",
"private": true,
"version": "1.1.1",
"repository": {
"type": "git",
"url": "git+https://git.maze.io/maze/cyberduck.git"
@@ -12,7 +12,7 @@
"homepage": "https://git.maze.io/maze/cyberduck#readme",
"type": "module",
"main": "dist/cyberduck.cjs.js",
"module": "dist/cyberduck.es.js",
"module": "dist/esm.js",
"types": "dist/types/index.d.ts",
"style": "dist/cyberduck.css",
"sideEffects": [
@@ -26,19 +26,19 @@
],
"exports": {
".": {
"import": "./dist/cyberduck.es.js",
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cyberduck.cjs.js",
"default": "./dist/cyberduck.es.js",
"types": "./dist/types/index.d.ts"
"default": "./dist/index.js"
},
"./package.json": "./package.json",
"./styles": "./src/styles/cyberduck.scss",
"./styles/*": "./src/styles/*",
"./css": "./dist/cyberduck.css",
"./*": {
"import": "./dist/cyberduck.es.js",
"require": "./dist/cyberduck.cjs.js",
"types": "./dist/*.d.ts"
"types": "./dist/*.d.ts",
"import": "./dist/index.js",
"require": "./dist/cyberduck.cjs.js"
}
},
"scripts": {
@@ -49,9 +49,9 @@
"lint": "eslint .",
"lint:css": "stylelint \"src/**/*.{scss,css,sass}\"",
"format:css": "prettier --write \"src/**/*.{scss,css,sass}\"",
"styles:build": "sass --no-source-map --style=compressed --load-path=node_modules src:dist",
"styles:check": "sass --no-source-map --update --load-path=node_modules src:dist",
"styles:dev": "sass --watch --no-source-map --load-path=node_modules src:dist",
"styles:build": "sass --no-source-map --style=compressed --load-path=node_modules --quiet-deps src:dist",
"styles:check": "sass --no-source-map --update --load-path=node_modules --quiet-deps src:dist",
"styles:dev": "sass --watch --no-source-map --load-path=node_modules --quiet-deps src:dist",
"preview": "vite preview"
},
"peerDependencies": {