Files
Tim Lancina 551d1998f3 Add directive info to directive docs
Directive doc objects have a directiveInfo property that has two
properties: doc.directiveInfo.type and doc.directiveInfo.properties.

type: 'Component' or 'Directive'

properties: array of objects in the format { name, values }, where name
is either 'selector', 'inputs', or 'outputs' and values is an array of
strings.

Ex: {
      type: 'Component',
      properties: [
        {
          name: 'selector',
          values: ['button', '[button]']
        },
        {
          name: 'inputs',
          values: ['icon', 'color']
        }
      ]
    }
2015-10-09 20:50:06 -05:00
..
2015-10-09 09:57:36 -05:00
2015-03-17 16:19:43 -05:00
2015-10-01 13:45:12 -05:00
2015-10-09 20:50:06 -05:00
2015-10-06 14:20:09 -05:00
2015-10-09 08:17:47 -05:00
2015-10-09 09:57:36 -05:00
2015-10-09 09:15:04 -05:00