- 19 Dec, 2019 2 commits
- 12 Dec, 2019 1 commit
-
-
totten authored
Technically, it's two changes: 1. Changing `snippets` to `partialsCallback` to reduce the amount of upfront IO/memory. 2. Changing the mocked-up filename to start with `~/theAngModule/`. So modules implemented in afform look more look other modules. Makes it work with `cv ang:html:list` and `cv ang:html:show`.
-
- 11 Dec, 2019 2 commits
- 26 Nov, 2019 2 commits
- 19 Nov, 2019 1 commit
-
-
colemanw authored
-
- 16 Nov, 2019 1 commit
-
-
colemanw authored
-
- 13 Nov, 2019 1 commit
-
-
colemanw authored
-
- 02 Nov, 2019 1 commit
-
-
colemanw authored
-
- 01 Nov, 2019 5 commits
- 31 Oct, 2019 1 commit
-
-
colemanw authored
The af-fieldset directive was ambiguiously set to restrict: "AE" but only "E" was supported. I want to pick one and stick with it, and I prefer "A" because the fieldset is also a container, so div or fieldset seem like the appropriate tag names.
-
- 24 Oct, 2019 1 commit
-
-
totten authored
-
- 19 Oct, 2019 3 commits
-
-
totten authored
-
totten authored
-
totten authored
PART A: EXPORT LIST Suppose you create a form `downstreamForm.aff.html`. The metadata for `downstreamForm` will indicate that it exports an element `<downstream-form/>`: ```php $angularModules['downstreamForm']['exports']['el'] = ['downstream-form']; ``` PART B: AUTO-REQUIRES Suppose that: 1. he form `downstreamForm.aff.html` uses element `<upstream-el/>`. 2. The `$angularModules['upsteamMod']['exports']['el']` defines an exported element `upstream-el`. Then the `downstreamForm` module will automatically requires the `upstreamMod`, as in ```php $angularModules['downstreamForm']['requires'][] = 'upstreamMod'; ```
-
- 14 Sep, 2019 3 commits
- 13 Sep, 2019 7 commits
- 13 Aug, 2019 2 commits
- 26 Jun, 2019 1 commit
-
-
colemanw authored
-
- 20 Jun, 2019 1 commit
-
-
colemanw authored
-
- 13 Jun, 2019 3 commits
- 09 Feb, 2019 1 commit
-
-
totten authored
__Before__: Scan each `$extension` for `$extension/afform/*/meta.json` __After__: Scan each `$extension` for `$extension/ang/*.aff.json` __Comments__: This is a significant breaking change for v0.2. It preserves some key design-goals from the old naming convention * The symbol in HTML (e.g. `afform-email`) should have symmetry with the file-name (e.g. `afform/Email/*` or `afform-email.*`) * The file-name in the base-code provided by an extension should match the file-name in the local override folder. However, the new naming convention also: * Makes it easier downstream to choose their own prefixes. We're not boxed-in or hard-coded to `afform-`. This will be useful, e.g., with distinguishing the stdlib from the business-forms that use the stdlib. * Puts Afform-Angular content in the same folder structure as Regular-Angular content.
-
- 08 Feb, 2019 1 commit
-
-
totten authored
-