Merge pull request #18960 from seamuslee001/utf8mb4_install
[civicrm-core.git] / ext / afform / core / ang / af.ang.php
1 <?php
2 // This file declares an Angular module which can be autoloaded
3 // in CiviCRM. See also:
4 // http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_angularModules
5
6 return [
7 'js' => [
8 'ang/af.js',
9 'ang/af/*.js',
10 'ang/af/*/*.js',
11 ],
12 // 'css' => ['ang/af.css'],
13 'partials' => ['ang/af'],
14 'requires' => ['crmUtil'],
15 'settings' => [],
16 'basePages' => [],
17 'exports' => [
18 'af-entity' => 'E',
19 'af-fieldset' => 'A',
20 'af-form' => 'E',
21 'af-join' => 'A',
22 'af-repeat' => 'A',
23 'af-repeat-item' => 'A',
24 'af-field' => 'E',
25 ],
26 ];