@checkstack/anomaly-frontend 0.5.15 → 0.5.17

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 (2) hide show
  1. package/CHANGELOG.md +48 -0
  2. package/package.json +15 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,53 @@
1
1
  # @checkstack/anomaly-frontend
2
2
 
3
+ ## 0.5.17
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [defb97b]
8
+ - Updated dependencies [defb97b]
9
+ - Updated dependencies [defb97b]
10
+ - Updated dependencies [defb97b]
11
+ - Updated dependencies [defb97b]
12
+ - Updated dependencies [defb97b]
13
+ - Updated dependencies [defb97b]
14
+ - @checkstack/catalog-common@2.5.0
15
+ - @checkstack/common@0.18.0
16
+ - @checkstack/healthcheck-frontend@0.26.0
17
+ - @checkstack/healthcheck-common@1.9.0
18
+ - @checkstack/ui@1.20.0
19
+ - @checkstack/anomaly-common@1.5.4
20
+ - @checkstack/frontend-api@0.12.1
21
+ - @checkstack/notification-common@1.4.2
22
+ - @checkstack/notification-frontend@0.6.3
23
+ - @checkstack/signal-frontend@0.3.1
24
+
25
+ ## 0.5.16
26
+
27
+ ### Patch Changes
28
+
29
+ - 2e20792: Declare `sideEffects` (CSS-only) so bundlers can tree-shake these packages' barrel exports
30
+
31
+ These packages now declare `"sideEffects": ["**/*.css"]` in their
32
+ `package.json`. This lets a consuming bundle drop unused barrel re-exports
33
+ instead of pulling a whole package's component graph when only one
34
+ provider/hook is imported (e.g. importing `SessionProvider` no longer dragged an
35
+ admin form). It is build metadata only - no runtime behavior change.
36
+
37
+ - Updated dependencies [2e20792]
38
+ - Updated dependencies [2e20792]
39
+ - Updated dependencies [2e20792]
40
+ - @checkstack/frontend-api@0.12.0
41
+ - @checkstack/ui@1.19.0
42
+ - @checkstack/signal-frontend@0.3.0
43
+ - @checkstack/anomaly-common@1.5.3
44
+ - @checkstack/catalog-common@2.4.3
45
+ - @checkstack/healthcheck-common@1.8.1
46
+ - @checkstack/healthcheck-frontend@0.25.2
47
+ - @checkstack/notification-common@1.4.1
48
+ - @checkstack/notification-frontend@0.6.2
49
+ - @checkstack/common@0.17.0
50
+
3
51
  ## 0.5.15
4
52
 
5
53
  ### Patch Changes
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@checkstack/anomaly-frontend",
3
- "version": "0.5.15",
3
+ "version": "0.5.17",
4
4
  "license": "Elastic-2.0",
5
5
  "type": "module",
6
+ "sideEffects": [
7
+ "**/*.css"
8
+ ],
6
9
  "main": "src/index.tsx",
7
10
  "checkstack": {
8
11
  "type": "frontend"
@@ -13,16 +16,16 @@
13
16
  "lint:code": "eslint . --max-warnings 0"
14
17
  },
15
18
  "dependencies": {
16
- "@checkstack/anomaly-common": "1.5.2",
17
- "@checkstack/catalog-common": "2.4.2",
18
- "@checkstack/common": "0.17.0",
19
- "@checkstack/frontend-api": "0.11.1",
20
- "@checkstack/healthcheck-common": "1.8.0",
21
- "@checkstack/healthcheck-frontend": "0.25.1",
22
- "@checkstack/notification-common": "1.4.0",
23
- "@checkstack/notification-frontend": "0.6.1",
24
- "@checkstack/signal-frontend": "0.2.6",
25
- "@checkstack/ui": "1.18.0",
19
+ "@checkstack/anomaly-common": "1.5.4",
20
+ "@checkstack/catalog-common": "2.5.0",
21
+ "@checkstack/common": "0.18.0",
22
+ "@checkstack/frontend-api": "0.12.1",
23
+ "@checkstack/healthcheck-common": "1.9.0",
24
+ "@checkstack/healthcheck-frontend": "0.26.0",
25
+ "@checkstack/notification-common": "1.4.2",
26
+ "@checkstack/notification-frontend": "0.6.3",
27
+ "@checkstack/signal-frontend": "0.3.1",
28
+ "@checkstack/ui": "1.20.0",
26
29
  "date-fns": "^4.4.0",
27
30
  "lucide-react": "^1.17.0",
28
31
  "react": "19.2.7",
@@ -30,7 +33,7 @@
30
33
  "zod": "^4.2.1"
31
34
  },
32
35
  "devDependencies": {
33
- "@checkstack/scripts": "0.6.3",
36
+ "@checkstack/scripts": "0.6.5",
34
37
  "@checkstack/tsconfig": "0.0.7",
35
38
  "@types/react": "^19.0.0",
36
39
  "typescript": "^5.0.0"