@dartech/arsenal-ui 1.5.81 → 1.5.82
Sign up to get free protection for your applications and to get access to all the features.
package/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
# arsenal-ui
|
2
|
-
|
3
|
-
This library was generated with [Nx](https://nx.dev).
|
4
|
-
|
5
|
-
## Running unit tests
|
6
|
-
|
7
|
-
Run `nx test arsenal-ui` to execute the unit tests via [Jest](https://jestjs.io).
|
1
|
+
# arsenal-ui
|
2
|
+
|
3
|
+
This library was generated with [Nx](https://nx.dev).
|
4
|
+
|
5
|
+
## Running unit tests
|
6
|
+
|
7
|
+
Run `nx test arsenal-ui` to execute the unit tests via [Jest](https://jestjs.io).
|
package/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g opacity="0.6">
|
3
|
-
<path d="M10.3533 2.81334C10.447 2.90709 10.4996 3.03417 10.4996 3.16667C10.4996 3.29917 10.447 3.42626 10.3533 3.52001L5.87334 8.00001L10.3533 12.48C10.4025 12.5258 10.4419 12.581 10.4692 12.6423C10.4965 12.7036 10.5112 12.7699 10.5124 12.837C10.5136 12.9041 10.5012 12.9708 10.4761 13.0331C10.4509 13.0953 10.4135 13.1519 10.366 13.1994C10.3186 13.2468 10.262 13.2843 10.1997 13.3094C10.1375 13.3346 10.0708 13.3469 10.0037 13.3457C9.93652 13.3446 9.87032 13.3299 9.80898 13.3025C9.74765 13.2752 9.69245 13.2358 9.64667 13.1867L4.81334 8.35334C4.71971 8.25959 4.66711 8.13251 4.66711 8.00001C4.66711 7.86751 4.71971 7.74042 4.81334 7.64667L9.64667 2.81334C9.74042 2.71971 9.86751 2.66711 10 2.66711C10.1325 2.66711 10.2596 2.71971 10.3533 2.81334Z" fill="white"/>
|
4
|
-
</g>
|
5
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g opacity="0.6">
|
3
|
+
<path d="M10.3533 2.81334C10.447 2.90709 10.4996 3.03417 10.4996 3.16667C10.4996 3.29917 10.447 3.42626 10.3533 3.52001L5.87334 8.00001L10.3533 12.48C10.4025 12.5258 10.4419 12.581 10.4692 12.6423C10.4965 12.7036 10.5112 12.7699 10.5124 12.837C10.5136 12.9041 10.5012 12.9708 10.4761 13.0331C10.4509 13.0953 10.4135 13.1519 10.366 13.1994C10.3186 13.2468 10.262 13.2843 10.1997 13.3094C10.1375 13.3346 10.0708 13.3469 10.0037 13.3457C9.93652 13.3446 9.87032 13.3299 9.80898 13.3025C9.74765 13.2752 9.69245 13.2358 9.64667 13.1867L4.81334 8.35334C4.71971 8.25959 4.66711 8.13251 4.66711 8.00001C4.66711 7.86751 4.71971 7.74042 4.81334 7.64667L9.64667 2.81334C9.74042 2.71971 9.86751 2.66711 10 2.66711C10.1325 2.66711 10.2596 2.71971 10.3533 2.81334Z" fill="white"/>
|
4
|
+
</g>
|
5
|
+
</svg>
|
@@ -79,6 +79,14 @@ export interface UiSettings {
|
|
79
79
|
findEntityByValue?: string;
|
80
80
|
getEntityField?: string;
|
81
81
|
copyValueFrom?: string;
|
82
|
+
/**
|
83
|
+
* simple q filter for entity reference
|
84
|
+
* `property: 'some.json.path'`
|
85
|
+
*/
|
86
|
+
qFilter?: {
|
87
|
+
property: string;
|
88
|
+
value: string | number;
|
89
|
+
};
|
82
90
|
};
|
83
91
|
}
|
84
92
|
export interface Property {
|