New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

primo-explore-dom

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

primo-explore-dom - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

2

package.json
{
"name": "primo-explore-dom",
"version": "0.0.8",
"version": "0.0.9",
"description": "A simple Domain Object Model for Primo 5",

@@ -5,0 +5,0 @@ "main": "js/custom.js",

### This is a __pre-release__: you can help us make it better.
### Current version 0.0.7
### Current version 0.0.9
- extracted ui to its own project [primo-explore-dom-ui](https://github.com/mehmetc/primo-explore-dom-ui)
- added user.loans
- add Helper.loadScript()
- Primo.version now displays library version and Primo version & hot fix
- Possibility to drill down on a service in the UI
- Better check if reloadWithDebugInfo() was ran
- explorer UI popups automatically when Primo UI is loaded with angular.reloadWithDebugInfo()
- some general refactoring
- fixed an issue that would prevent explore.ui.toggle() from running twice
### version 0.0.8
- refactoring of ui
- better component ctrl discovery
- ui component property display
- unhandle promise
### version 0.0.7
- user fines

@@ -41,3 +58,3 @@ - better ctrl discovery

7. Test.
* ```gulp run --view YOUR_VIEW_CODE```
* ```gulp run --view YOUR_VIEW_CODE --proxy http://my.primo.com```
* Open your web browser and go to http://localhost:8003/primo-explore/search?vid=YOUR_VIEW_CODE

@@ -82,2 +99,3 @@

- [UI](#ui)
- [Examples](#examples)

@@ -290,1 +308,17 @@ # General<a name="general"></a>

![PRIMO Domain Object Model UI](./img/primo-explore-dom_ui.gif "PRIMO Domain Object Model UI")
# Examples<a name="examples"></a>
### Display the _user name_ after the logo
```js
app.component('prmLogoAfter', {
bindings: {
parentCtrl : '<'
},
template: '<div>{{$ctrl.user}}</div>',
controller: function(){
let ctrl = this;
ctrl.user = '';
Primo.user.then(u => ctrl.user = u.name);
}
});
```

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc