Merge pull request #18423 from eileenmcnaughton/afform
[civicrm-core.git] / ext / afform / core / ang / af.ang.php
CommitLineData
ca434f9b
TO
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
b7b3a7c8
TO
6return [
7 'js' => [
8 'ang/af.js',
9 'ang/af/*.js',
10 'ang/af/*/*.js',
11 ],
132ddeae 12 // 'css' => ['ang/af.css'],
4585f2a7 13 'partials' => ['ang/af'],
132ddeae 14 'requires' => ['crmUtil'],
b7b3a7c8 15 'settings' => [],
ca434f9b 16 'basePages' => [],
bcd62970 17 'exports' => [
a365a0c3 18 'af-entity' => 'E',
aaf3e9b3 19 'af-fieldset' => 'A',
a365a0c3 20 'af-form' => 'E',
344e8290
CW
21 'af-join' => 'A',
22 'af-repeat' => 'A',
23 'af-repeat-item' => 'A',
4585f2a7 24 'af-field' => 'E',
bcd62970 25 ],
b7b3a7c8 26];