@checkstack/automation-frontend 0.9.0 → 0.9.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 (2) hide show
  1. package/CHANGELOG.md +53 -0
  2. package/package.json +19 -16
package/CHANGELOG.md CHANGED
@@ -1,5 +1,58 @@
1
1
  # @checkstack/automation-frontend
2
2
 
3
+ ## 0.9.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [defb97b]
8
+ - Updated dependencies [defb97b]
9
+ - Updated dependencies [defb97b]
10
+ - Updated dependencies [defb97b]
11
+ - @checkstack/catalog-common@2.5.0
12
+ - @checkstack/common@0.18.0
13
+ - @checkstack/ui@1.20.0
14
+ - @checkstack/auth-frontend@0.10.1
15
+ - @checkstack/ai-common@0.6.2
16
+ - @checkstack/auth-common@0.11.2
17
+ - @checkstack/automation-common@0.8.2
18
+ - @checkstack/frontend-api@0.12.1
19
+ - @checkstack/gitops-frontend@0.6.3
20
+ - @checkstack/integration-common@0.9.4
21
+ - @checkstack/script-packages-frontend@0.4.3
22
+ - @checkstack/secrets-frontend@0.3.3
23
+ - @checkstack/template-engine@0.4.7
24
+ - @checkstack/signal-frontend@0.3.1
25
+
26
+ ## 0.9.1
27
+
28
+ ### Patch Changes
29
+
30
+ - 2e20792: Declare `sideEffects` (CSS-only) so bundlers can tree-shake these packages' barrel exports
31
+
32
+ These packages now declare `"sideEffects": ["**/*.css"]` in their
33
+ `package.json`. This lets a consuming bundle drop unused barrel re-exports
34
+ instead of pulling a whole package's component graph when only one
35
+ provider/hook is imported (e.g. importing `SessionProvider` no longer dragged an
36
+ admin form). It is build metadata only - no runtime behavior change.
37
+
38
+ - Updated dependencies [2e20792]
39
+ - Updated dependencies [2e20792]
40
+ - Updated dependencies [2e20792]
41
+ - @checkstack/frontend-api@0.12.0
42
+ - @checkstack/ui@1.19.0
43
+ - @checkstack/auth-frontend@0.10.0
44
+ - @checkstack/signal-frontend@0.3.0
45
+ - @checkstack/ai-common@0.6.1
46
+ - @checkstack/auth-common@0.11.1
47
+ - @checkstack/automation-common@0.8.1
48
+ - @checkstack/catalog-common@2.4.3
49
+ - @checkstack/gitops-frontend@0.6.2
50
+ - @checkstack/integration-common@0.9.3
51
+ - @checkstack/script-packages-frontend@0.4.2
52
+ - @checkstack/secrets-frontend@0.3.2
53
+ - @checkstack/common@0.17.0
54
+ - @checkstack/template-engine@0.4.6
55
+
3
56
  ## 0.9.0
4
57
 
5
58
  ### Minor Changes
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@checkstack/automation-frontend",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
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,20 +16,20 @@
13
16
  "lint:code": "eslint . --max-warnings 0"
14
17
  },
15
18
  "dependencies": {
16
- "@checkstack/auth-common": "0.11.0",
17
- "@checkstack/auth-frontend": "0.9.1",
18
- "@checkstack/automation-common": "0.8.0",
19
- "@checkstack/ai-common": "0.6.0",
20
- "@checkstack/catalog-common": "2.4.2",
21
- "@checkstack/common": "0.17.0",
22
- "@checkstack/frontend-api": "0.11.1",
23
- "@checkstack/gitops-frontend": "0.6.1",
24
- "@checkstack/integration-common": "0.9.2",
25
- "@checkstack/script-packages-frontend": "0.4.1",
26
- "@checkstack/secrets-frontend": "0.3.1",
27
- "@checkstack/signal-frontend": "0.2.6",
28
- "@checkstack/template-engine": "0.4.6",
29
- "@checkstack/ui": "1.18.0",
19
+ "@checkstack/auth-common": "0.11.2",
20
+ "@checkstack/auth-frontend": "0.10.1",
21
+ "@checkstack/automation-common": "0.8.2",
22
+ "@checkstack/ai-common": "0.6.2",
23
+ "@checkstack/catalog-common": "2.5.0",
24
+ "@checkstack/common": "0.18.0",
25
+ "@checkstack/frontend-api": "0.12.1",
26
+ "@checkstack/gitops-frontend": "0.6.3",
27
+ "@checkstack/integration-common": "0.9.4",
28
+ "@checkstack/script-packages-frontend": "0.4.3",
29
+ "@checkstack/secrets-frontend": "0.3.3",
30
+ "@checkstack/signal-frontend": "0.3.1",
31
+ "@checkstack/template-engine": "0.4.7",
32
+ "@checkstack/ui": "1.20.0",
30
33
  "@dnd-kit/core": "^6.3.1",
31
34
  "@dnd-kit/sortable": "^8.0.0",
32
35
  "@dnd-kit/utilities": "^3.2.2",
@@ -40,6 +43,6 @@
40
43
  "typescript": "^5.0.0",
41
44
  "@types/react": "^19.0.0",
42
45
  "@checkstack/tsconfig": "0.0.7",
43
- "@checkstack/scripts": "0.6.3"
46
+ "@checkstack/scripts": "0.6.5"
44
47
  }
45
48
  }