@sito/dashboard 0.0.53 → 0.0.55

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.
@@ -1,4 +1,8 @@
1
1
  export type BaseDto = {
2
2
  id: number;
3
- deleted: boolean;
3
+ /**
4
+ * Soft delete timestamp. If set (non-null/non-undefined),
5
+ * the entity is considered soft-deleted.
6
+ */
7
+ deletedAt?: string | Date | null;
4
8
  };
package/package.json CHANGED
@@ -1,76 +1,76 @@
1
- {
2
- "name": "@sito/dashboard",
3
- "private": false,
4
- "version": "0.0.53",
5
- "type": "module",
6
- "description": "UI library with custom components for dashboards",
7
- "main": "dist/dashboard.cjs",
8
- "module": "dist/dashboard.js",
9
- "types": "dist/index.d.ts",
10
- "files": [
11
- "dist/"
12
- ],
13
- "homepage": "https://github.com/sito8943/-sito-dashboard#readme",
14
- "repository": {
15
- "type": "git",
16
- "url": "https://github.com/sito8943/-sito-dashboard.git"
17
- },
18
- "bugs": {
19
- "url": "https://github.com/sito8943/-sito-dashboard/issues"
20
- },
21
- "exports": {
22
- ".": {
23
- "import": "./dist/dashboard.js",
24
- "require": "./dist/dashboard.cjs",
25
- "types": "./dist/index.d.ts"
26
- }
27
- },
28
- "sideEffects": [
29
- "**/*.css"
30
- ],
31
- "scripts": {
32
- "dev": "vite",
33
- "build": "tsc && vite build",
34
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
35
- "preview": "vite preview",
36
- "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
37
- "storybook": "storybook dev -p 6006",
38
- "build-storybook": "storybook build"
39
- },
40
- "keywords": [
41
- "sito",
42
- "dashboard"
43
- ],
44
- "author": "sito8943",
45
- "license": "ISC",
46
- "peerDependencies": {
47
- "@emotion/css": "11.13.5",
48
- "react": ">=18.2 <20"
49
- },
50
- "devDependencies": {
51
- "@storybook/addon-a11y": "7.6.20",
52
- "@storybook/addon-essentials": "7.6.20",
53
- "@storybook/addon-interactions": "7.6.20",
54
- "@storybook/react-vite": "7.6.20",
55
- "@types/node": "20.8.10",
56
- "@types/react": "18.3.3",
57
- "@types/react-dom": "^18.3.0",
58
- "@typescript-eslint/eslint-plugin": "6.0.0",
59
- "@typescript-eslint/parser": "6.0.0",
60
- "@vitejs/plugin-react": "4.0.3",
61
- "autoprefixer": "10.4.16",
62
- "eslint": "8.45.0",
63
- "eslint-plugin-react-hooks": "4.6.0",
64
- "eslint-plugin-react-refresh": "0.4.3",
65
- "postcss": "8.4.41",
66
- "prettier": "3.3.3",
67
- "react": "18.3.1",
68
- "react-dom": "18.3.1",
69
- "storybook": "7.6.20",
70
- "tailwindcss": "3.4.10",
71
- "typescript": "5.5.4",
72
- "vite": "4.2.0",
73
- "vite-plugin-dts": "4.0.2",
74
- "vite-plugin-lib-inject-css": "1.3.0"
75
- }
76
- }
1
+ {
2
+ "name": "@sito/dashboard",
3
+ "private": false,
4
+ "version": "0.0.55",
5
+ "type": "module",
6
+ "description": "UI library with custom components for dashboards",
7
+ "main": "dist/dashboard.cjs",
8
+ "module": "dist/dashboard.js",
9
+ "types": "dist/index.d.ts",
10
+ "files": [
11
+ "dist/"
12
+ ],
13
+ "homepage": "https://github.com/sito8943/-sito-dashboard#readme",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/sito8943/-sito-dashboard.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/sito8943/-sito-dashboard/issues"
20
+ },
21
+ "exports": {
22
+ ".": {
23
+ "import": "./dist/dashboard.js",
24
+ "require": "./dist/dashboard.cjs",
25
+ "types": "./dist/index.d.ts"
26
+ }
27
+ },
28
+ "sideEffects": [
29
+ "**/*.css"
30
+ ],
31
+ "scripts": {
32
+ "dev": "vite",
33
+ "build": "tsc && vite build",
34
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
35
+ "preview": "vite preview",
36
+ "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
37
+ "storybook": "storybook dev -p 6006",
38
+ "build-storybook": "storybook build"
39
+ },
40
+ "keywords": [
41
+ "sito",
42
+ "dashboard"
43
+ ],
44
+ "author": "sito8943",
45
+ "license": "ISC",
46
+ "peerDependencies": {
47
+ "@emotion/css": "11.13.5",
48
+ "react": ">=18.2 <20"
49
+ },
50
+ "devDependencies": {
51
+ "@storybook/addon-a11y": "7.6.20",
52
+ "@storybook/addon-essentials": "7.6.20",
53
+ "@storybook/addon-interactions": "7.6.20",
54
+ "@storybook/react-vite": "7.6.20",
55
+ "@types/node": "20.8.10",
56
+ "@types/react": "18.3.3",
57
+ "@types/react-dom": "^18.3.0",
58
+ "@typescript-eslint/eslint-plugin": "6.0.0",
59
+ "@typescript-eslint/parser": "6.0.0",
60
+ "@vitejs/plugin-react": "4.0.3",
61
+ "autoprefixer": "10.4.16",
62
+ "eslint": "8.45.0",
63
+ "eslint-plugin-react-hooks": "4.6.0",
64
+ "eslint-plugin-react-refresh": "0.4.3",
65
+ "postcss": "8.4.41",
66
+ "prettier": "3.3.3",
67
+ "react": "18.3.1",
68
+ "react-dom": "18.3.1",
69
+ "storybook": "7.6.20",
70
+ "tailwindcss": "3.4.10",
71
+ "typescript": "5.5.4",
72
+ "vite": "4.2.0",
73
+ "vite-plugin-dts": "4.0.2",
74
+ "vite-plugin-lib-inject-css": "1.3.0"
75
+ }
76
+ }