@itrocks/framework 0.0.6 → 0.0.7

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.
package/cjs/access.js CHANGED
@@ -7,7 +7,7 @@ exports.accessConfig = {
7
7
  '/user/authenticate',
8
8
  '/user/forgot-password',
9
9
  '/user/login',
10
- '/user/sign-up'
10
+ '/user/signup'
11
11
  ]
12
12
  };
13
13
  (0, config_1.mergeConfig)(exports.accessConfig, '/app/config/access.js');
package/cjs/framework.js CHANGED
@@ -112,11 +112,11 @@ function bindDependencies() {
112
112
  };
113
113
  }
114
114
  function buildWorkflow() {
115
- (0, action_2.setActionCss)({ css: '/node_modules/@itrocks/(action)/css/action.css' });
116
- (0, action_3.setActionTemplates)({ need: 'object', template: __dirname + '/../../action/cjs/selectionAction.html' }, { template: __dirname + '/../../action/cjs/action.html' });
115
+ (0, action_2.setActionCss)({ file: '/node_modules/@itrocks/(action)/css/action.css' });
116
+ (0, action_3.setActionTemplates)({ need: 'object', file: __dirname + '/../../action/cjs/selectionAction.html' }, { file: __dirname + '/../../action/cjs/action.html' });
117
117
  (0, action_1.setAction)('edit', 'delete');
118
118
  (0, action_1.setAction)('login', 'forgot-password');
119
- (0, action_1.setAction)('login', 'sign-up');
119
+ (0, action_1.setAction)('login', 'signup', { caption: 'Sign up' });
120
120
  (0, action_1.setAction)('list', 'new');
121
121
  (0, action_1.setAction)('list', 'delete', { need: 'object' });
122
122
  (0, action_1.setAction)('output', 'edit');
package/fr-FR.csv CHANGED
@@ -35,7 +35,7 @@ home;accueil
35
35
  id;id
36
36
  lines;lignes
37
37
  login;identifiant
38
- log in user;connecter utilisateur
38
+ log in;se connecter
39
39
  log out;déconnecter
40
40
  main module;module principal
41
41
  dd/MM/yyyy;dd/MM/yyyy
package/package.json CHANGED
@@ -98,5 +98,5 @@
98
98
  "build:front": "tsc -p src/front/tsconfig.json && sed -i 's#../../##g' app.js app.d.ts"
99
99
  },
100
100
  "types": "./cjs/framework.d.ts",
101
- "version": "0.0.6"
101
+ "version": "0.0.7"
102
102
  }