conjur-asset-ui-beta 1.5.0 → 1.6.0
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.
- checksums.yaml +4 -4
- data/TODO.md +0 -23
- data/app/build/js/app.js +72652 -50337
- data/app/package.json +2 -0
- data/app/src/actions.js +56 -3
- data/app/src/app.js +7 -3
- data/app/src/clients/graph.js +24 -0
- data/app/src/clients/members.js +3 -3
- data/app/src/components/audit/table.js +9 -0
- data/app/src/components/custom/view.js +26 -14
- data/app/src/components/dashboard/activity.js +24 -4
- data/app/src/components/generic/foldable_audit_section.js +17 -0
- data/app/src/components/generic/role_link.js +2 -1
- data/app/src/components/graph/graph.js +421 -0
- data/app/src/components/graph/graph.less +39 -0
- data/app/src/components/group/view.js +31 -14
- data/app/src/components/host/activity.js +24 -4
- data/app/src/components/host/executors.js +83 -0
- data/app/src/components/host/updaters.js +83 -0
- data/app/src/components/host/view.js +46 -14
- data/app/src/components/layer/view.js +30 -13
- data/app/src/components/policy/view.js +23 -14
- data/app/src/components/search/search.js +21 -7
- data/app/src/components/user/activity.js +25 -4
- data/app/src/components/user/view.js +30 -13
- data/app/src/components/variable/activity.js +25 -4
- data/app/src/components/variable/fetchers.js +1 -1
- data/app/src/components/variable/updaters.js +1 -1
- data/app/src/components/variable/view.js +24 -13
- data/app/src/constants.js +4 -2
- data/app/src/stores/graph_store.js +55 -0
- data/app/src/stores/host_store.js +12 -1
- data/app/src/stores/route_store.js +7 -5
- data/app/src/stores/search_store.js +11 -6
- data/conjur-asset-ui.gemspec +1 -1
- data/lib/conjur-asset-ui-version.rb +1 -1
- metadata +9 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0efa29084595d09ef46223ec25a7058e6a2cf228
|
4
|
+
data.tar.gz: 3440404653407379215a489aeea244c865b53ec4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7026a2eb24cfc7a45131e70bed49cc61f62a6ab3368a39121273e89aefd73aade39d4c5df1f294e24c1de36f2067bed8ad5eb0febae01c273f66825f7d682ce
|
7
|
+
data.tar.gz: c99673b64a1a698f72285b1c2263133a8b01c55e49b0809809269b200761c85b44650082f6d7e55d014f50e10fc7e3ce7a8991904e9dc5d680f77102b82f339d
|
data/TODO.md
CHANGED
@@ -1,31 +1,8 @@
|
|
1
|
-
# General
|
2
|
-
|
3
|
-
1. Flux?
|
4
|
-
2. Reflux?
|
5
|
-
3. Astarisx?
|
6
|
-
|
7
|
-
# JS
|
8
|
-
|
9
|
-
1. Make audit.js readable
|
10
|
-
2. Extract from audit.js common components and refactor it
|
11
|
-
3. Better models
|
12
|
-
4. Create navigation menu component
|
13
|
-
|
14
|
-
|
15
1
|
# General JS
|
16
2
|
|
17
|
-
1. Drop backbone
|
18
|
-
2. Think how to replace backbone history
|
19
|
-
3. Drop prelude-ls
|
20
|
-
4. Drop jquery everywhere
|
21
|
-
5. Find nice library for ajax requests
|
22
|
-
6. Move from underscore to lo-dash
|
23
|
-
7. Drop underscore.string
|
24
|
-
8. Drop underscore-deep-extend
|
25
3
|
9. Drop react-bootstrap and bootstrap.js
|
26
4
|
|
27
5
|
# CSS
|
28
6
|
|
29
7
|
1. Move to SASS
|
30
|
-
2. Break monolite file in to modules
|
31
8
|
3. More BEM everywhere
|