pict 1.0.372 → 1.0.374
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/README.md +9 -7
- package/dist/indoctrinate_content_staging/Indoctrinate-Catalog-AppData.json +12921 -0
- package/dist/pict.js +263 -230
- package/dist/pict.js.map +1 -1
- package/dist/pict.min.js +2 -2
- package/dist/pict.min.js.map +1 -1
- package/package.json +6 -6
- package/source/Pict-Meadow-EntityProvider.js +127 -44
- package/source/filters/Filter.js +2 -0
- package/types/source/providers/Pict-Icons-Base.d.ts +0 -73
- package/types/source/providers/Pict-Icons-Base.d.ts.map +0 -1
- package/types/source/providers/Provider-Icon.d.ts +0 -70
- package/types/source/providers/Provider-Icon.d.ts.map +0 -1
- package/types/source/templates/Pict-Template-AddressedTemplate.d.ts +0 -32
- package/types/source/templates/Pict-Template-AddressedTemplate.d.ts.map +0 -1
- package/types/source/templates/Pict-Template-Function.d.ts +0 -36
- package/types/source/templates/Pict-Template-Function.d.ts.map +0 -1
- package/types/source/templates/Pict-Template-Icon.d.ts +0 -36
- package/types/source/templates/Pict-Template-Icon.d.ts.map +0 -1
- package/types/source/templates/Pict-Template-InlineTemplate.d.ts +0 -29
- package/types/source/templates/Pict-Template-InlineTemplate.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Pict
|
|
2
2
|
|
|
3
|
+
> **[Read the Pict Documentation](https://fable-retold.github.io/pict/)** - interactive docs with the full API reference.
|
|
4
|
+
|
|
3
5
|
Pict is a non-opinionated set of tools to provide the disparate parts of Model, View and Controller patterns to web, console and other applications where the UI is primarily represented as text strings.
|
|
4
6
|
|
|
5
7
|
|
|
@@ -108,7 +110,7 @@ luxury code docker image provides this for free, or you can use the scripts in t
|
|
|
108
110
|
want to run the harness from.
|
|
109
111
|
|
|
110
112
|
```shell
|
|
111
|
-
git clone https://github.com/
|
|
113
|
+
git clone https://github.com/fable-retold/retold-harness
|
|
112
114
|
cd retold-harness
|
|
113
115
|
npm install
|
|
114
116
|
npm run docker-dev-build
|
|
@@ -155,7 +157,7 @@ If your luxury code docker container restarts, the tmux will no longer be runnin
|
|
|
155
157
|
### Running the Unit Tests
|
|
156
158
|
|
|
157
159
|
You can either execute the unit tests through the visual studio code test running
|
|
158
|
-
interface via the browser (allowing you to
|
|
160
|
+
interface via the browser (allowing you to use breakpoints for each test)
|
|
159
161
|
or within the Docker terminal by running (from the pict folder):
|
|
160
162
|
|
|
161
163
|
`npm test`
|
|
@@ -172,11 +174,11 @@ npm run build-compatible
|
|
|
172
174
|
|
|
173
175
|
## Related Packages
|
|
174
176
|
|
|
175
|
-
- [pict-view](https://github.com/
|
|
176
|
-
- [pict-template](https://github.com/
|
|
177
|
-
- [pict-provider](https://github.com/
|
|
178
|
-
- [pict-application](https://github.com/
|
|
179
|
-
- [fable](https://github.com/
|
|
177
|
+
- [pict-view](https://github.com/fable-retold/pict-view) - View base class
|
|
178
|
+
- [pict-template](https://github.com/fable-retold/pict-template) - Template engine
|
|
179
|
+
- [pict-provider](https://github.com/fable-retold/pict-provider) - Data provider base class
|
|
180
|
+
- [pict-application](https://github.com/fable-retold/pict-application) - Application lifecycle wrapper
|
|
181
|
+
- [fable](https://github.com/fable-retold/fable) - Application services framework
|
|
180
182
|
|
|
181
183
|
## License
|
|
182
184
|
|