@genesislcap/foundation-entity-management 14.184.0 → 14.185.0
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/dist/custom-elements.json +94 -94
- package/dist/dts/entities/entities.template.d.ts +1 -1
- package/dist/dts/entities/entities.template.d.ts.map +1 -1
- package/dist/dts/list/list.d.ts +1 -1
- package/dist/dts/list/list.d.ts.map +1 -1
- package/dist/dts/list/list.template.d.ts +1 -1
- package/dist/dts/list/list.template.d.ts.map +1 -1
- package/dist/dts/users/users.template.d.ts +1 -1
- package/dist/dts/users/users.template.d.ts.map +1 -1
- package/package.json +31 -22
|
@@ -87,6 +87,41 @@
|
|
|
87
87
|
}
|
|
88
88
|
]
|
|
89
89
|
},
|
|
90
|
+
{
|
|
91
|
+
"kind": "javascript-module",
|
|
92
|
+
"path": "src/components/components.ts",
|
|
93
|
+
"declarations": [
|
|
94
|
+
{
|
|
95
|
+
"kind": "function",
|
|
96
|
+
"name": "loadRemotes"
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"exports": [
|
|
100
|
+
{
|
|
101
|
+
"kind": "js",
|
|
102
|
+
"name": "loadRemotes",
|
|
103
|
+
"declaration": {
|
|
104
|
+
"name": "loadRemotes",
|
|
105
|
+
"module": "src/components/components.ts"
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"kind": "javascript-module",
|
|
112
|
+
"path": "src/components/index.ts",
|
|
113
|
+
"declarations": [],
|
|
114
|
+
"exports": [
|
|
115
|
+
{
|
|
116
|
+
"kind": "js",
|
|
117
|
+
"name": "*",
|
|
118
|
+
"declaration": {
|
|
119
|
+
"name": "*",
|
|
120
|
+
"package": "./components"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
},
|
|
90
125
|
{
|
|
91
126
|
"kind": "javascript-module",
|
|
92
127
|
"path": "src/entities/entities.styles.ts",
|
|
@@ -882,41 +917,6 @@
|
|
|
882
917
|
}
|
|
883
918
|
]
|
|
884
919
|
},
|
|
885
|
-
{
|
|
886
|
-
"kind": "javascript-module",
|
|
887
|
-
"path": "src/components/components.ts",
|
|
888
|
-
"declarations": [
|
|
889
|
-
{
|
|
890
|
-
"kind": "function",
|
|
891
|
-
"name": "loadRemotes"
|
|
892
|
-
}
|
|
893
|
-
],
|
|
894
|
-
"exports": [
|
|
895
|
-
{
|
|
896
|
-
"kind": "js",
|
|
897
|
-
"name": "loadRemotes",
|
|
898
|
-
"declaration": {
|
|
899
|
-
"name": "loadRemotes",
|
|
900
|
-
"module": "src/components/components.ts"
|
|
901
|
-
}
|
|
902
|
-
}
|
|
903
|
-
]
|
|
904
|
-
},
|
|
905
|
-
{
|
|
906
|
-
"kind": "javascript-module",
|
|
907
|
-
"path": "src/components/index.ts",
|
|
908
|
-
"declarations": [],
|
|
909
|
-
"exports": [
|
|
910
|
-
{
|
|
911
|
-
"kind": "js",
|
|
912
|
-
"name": "*",
|
|
913
|
-
"declaration": {
|
|
914
|
-
"name": "*",
|
|
915
|
-
"package": "./components"
|
|
916
|
-
}
|
|
917
|
-
}
|
|
918
|
-
]
|
|
919
|
-
},
|
|
920
920
|
{
|
|
921
921
|
"kind": "javascript-module",
|
|
922
922
|
"path": "src/layouts/default.ts",
|
|
@@ -2889,6 +2889,65 @@
|
|
|
2889
2889
|
}
|
|
2890
2890
|
]
|
|
2891
2891
|
},
|
|
2892
|
+
{
|
|
2893
|
+
"kind": "javascript-module",
|
|
2894
|
+
"path": "src/routes/demo/entity-management.template.ts",
|
|
2895
|
+
"declarations": [
|
|
2896
|
+
{
|
|
2897
|
+
"kind": "variable",
|
|
2898
|
+
"name": "EntityManagementDemoTemplate",
|
|
2899
|
+
"type": {
|
|
2900
|
+
"text": "ViewTemplate"
|
|
2901
|
+
},
|
|
2902
|
+
"default": "html<EntityManagementDemo>`\n <zero-tabs>\n <span slot=\"start\">Entity Management</span>\n <zero-tab data-test-id=\"profiles\" slot=\"tab\">Counterparty</zero-tab>\n <zero-tab-panel slot=\"tabpanel\">\n <zero-notification-listener>\n <entity-management\n resourceName=\"ALL_COUNTERPARTYS\"\n title=\"Counterparty Management\"\n updateEvent=\"EVENT_COUNTERPARTY_MODIFY\"\n deleteEvent=\"EVENT_COUNTERPARTY_DELETE\"\n createEvent=\"EVENT_COUNTERPARTY_INSERT\"\n ></entity-management>\n </zero-notification-listener>\n </zero-tab-panel>\n </zero-tabs>\n`"
|
|
2903
|
+
}
|
|
2904
|
+
],
|
|
2905
|
+
"exports": [
|
|
2906
|
+
{
|
|
2907
|
+
"kind": "js",
|
|
2908
|
+
"name": "EntityManagementDemoTemplate",
|
|
2909
|
+
"declaration": {
|
|
2910
|
+
"name": "EntityManagementDemoTemplate",
|
|
2911
|
+
"module": "src/routes/demo/entity-management.template.ts"
|
|
2912
|
+
}
|
|
2913
|
+
}
|
|
2914
|
+
]
|
|
2915
|
+
},
|
|
2916
|
+
{
|
|
2917
|
+
"kind": "javascript-module",
|
|
2918
|
+
"path": "src/routes/demo/entity-management.ts",
|
|
2919
|
+
"declarations": [
|
|
2920
|
+
{
|
|
2921
|
+
"kind": "class",
|
|
2922
|
+
"description": "",
|
|
2923
|
+
"name": "EntityManagementDemo",
|
|
2924
|
+
"superclass": {
|
|
2925
|
+
"name": "FASTElement",
|
|
2926
|
+
"package": "@microsoft/fast-element"
|
|
2927
|
+
},
|
|
2928
|
+
"tagName": "entity-management-demo",
|
|
2929
|
+
"customElement": true
|
|
2930
|
+
}
|
|
2931
|
+
],
|
|
2932
|
+
"exports": [
|
|
2933
|
+
{
|
|
2934
|
+
"kind": "js",
|
|
2935
|
+
"name": "EntityManagementDemo",
|
|
2936
|
+
"declaration": {
|
|
2937
|
+
"name": "EntityManagementDemo",
|
|
2938
|
+
"module": "src/routes/demo/entity-management.ts"
|
|
2939
|
+
}
|
|
2940
|
+
},
|
|
2941
|
+
{
|
|
2942
|
+
"kind": "custom-element-definition",
|
|
2943
|
+
"name": "entity-management-demo",
|
|
2944
|
+
"declaration": {
|
|
2945
|
+
"name": "EntityManagementDemo",
|
|
2946
|
+
"module": "src/routes/demo/entity-management.ts"
|
|
2947
|
+
}
|
|
2948
|
+
}
|
|
2949
|
+
]
|
|
2950
|
+
},
|
|
2892
2951
|
{
|
|
2893
2952
|
"kind": "javascript-module",
|
|
2894
2953
|
"path": "src/utils/formatting.ts",
|
|
@@ -3004,65 +3063,6 @@
|
|
|
3004
3063
|
}
|
|
3005
3064
|
}
|
|
3006
3065
|
]
|
|
3007
|
-
},
|
|
3008
|
-
{
|
|
3009
|
-
"kind": "javascript-module",
|
|
3010
|
-
"path": "src/routes/demo/entity-management.template.ts",
|
|
3011
|
-
"declarations": [
|
|
3012
|
-
{
|
|
3013
|
-
"kind": "variable",
|
|
3014
|
-
"name": "EntityManagementDemoTemplate",
|
|
3015
|
-
"type": {
|
|
3016
|
-
"text": "ViewTemplate"
|
|
3017
|
-
},
|
|
3018
|
-
"default": "html<EntityManagementDemo>`\n <zero-tabs>\n <span slot=\"start\">Entity Management</span>\n <zero-tab data-test-id=\"profiles\" slot=\"tab\">Counterparty</zero-tab>\n <zero-tab-panel slot=\"tabpanel\">\n <zero-notification-listener>\n <entity-management\n resourceName=\"ALL_COUNTERPARTYS\"\n title=\"Counterparty Management\"\n updateEvent=\"EVENT_COUNTERPARTY_MODIFY\"\n deleteEvent=\"EVENT_COUNTERPARTY_DELETE\"\n createEvent=\"EVENT_COUNTERPARTY_INSERT\"\n ></entity-management>\n </zero-notification-listener>\n </zero-tab-panel>\n </zero-tabs>\n`"
|
|
3019
|
-
}
|
|
3020
|
-
],
|
|
3021
|
-
"exports": [
|
|
3022
|
-
{
|
|
3023
|
-
"kind": "js",
|
|
3024
|
-
"name": "EntityManagementDemoTemplate",
|
|
3025
|
-
"declaration": {
|
|
3026
|
-
"name": "EntityManagementDemoTemplate",
|
|
3027
|
-
"module": "src/routes/demo/entity-management.template.ts"
|
|
3028
|
-
}
|
|
3029
|
-
}
|
|
3030
|
-
]
|
|
3031
|
-
},
|
|
3032
|
-
{
|
|
3033
|
-
"kind": "javascript-module",
|
|
3034
|
-
"path": "src/routes/demo/entity-management.ts",
|
|
3035
|
-
"declarations": [
|
|
3036
|
-
{
|
|
3037
|
-
"kind": "class",
|
|
3038
|
-
"description": "",
|
|
3039
|
-
"name": "EntityManagementDemo",
|
|
3040
|
-
"superclass": {
|
|
3041
|
-
"name": "FASTElement",
|
|
3042
|
-
"package": "@microsoft/fast-element"
|
|
3043
|
-
},
|
|
3044
|
-
"tagName": "entity-management-demo",
|
|
3045
|
-
"customElement": true
|
|
3046
|
-
}
|
|
3047
|
-
],
|
|
3048
|
-
"exports": [
|
|
3049
|
-
{
|
|
3050
|
-
"kind": "js",
|
|
3051
|
-
"name": "EntityManagementDemo",
|
|
3052
|
-
"declaration": {
|
|
3053
|
-
"name": "EntityManagementDemo",
|
|
3054
|
-
"module": "src/routes/demo/entity-management.ts"
|
|
3055
|
-
}
|
|
3056
|
-
},
|
|
3057
|
-
{
|
|
3058
|
-
"kind": "custom-element-definition",
|
|
3059
|
-
"name": "entity-management-demo",
|
|
3060
|
-
"declaration": {
|
|
3061
|
-
"name": "EntityManagementDemo",
|
|
3062
|
-
"module": "src/routes/demo/entity-management.ts"
|
|
3063
|
-
}
|
|
3064
|
-
}
|
|
3065
|
-
]
|
|
3066
3066
|
}
|
|
3067
3067
|
]
|
|
3068
3068
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entities.template.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.template.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"entities.template.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.template.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAKnD;;;GAGG;AACH,eAAO,MAAM,aAAa,wFAWzB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,eAAe,wFAiB3B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,wFAwD/B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,QAAQ,uEAEpB,CAAC"}
|
package/dist/dts/list/list.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { Connect } from '@genesislcap/foundation-comms';
|
|
|
3
3
|
import { GridProGenesisDatasource, ZeroGridPro } from '@genesislcap/foundation-zero-grid-pro';
|
|
4
4
|
import type { GridProCaseType } from '@genesislcap/grid-pro';
|
|
5
5
|
import { FASTElement } from '@microsoft/fast-element';
|
|
6
|
-
import { DatasourceConfiguration } from '../entities/entities';
|
|
6
|
+
import type { DatasourceConfiguration } from '../entities/entities';
|
|
7
7
|
declare const List_base: (new (...args: any[]) => {
|
|
8
8
|
"__#1@#_container": import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
9
9
|
"__#1@#_latestTokenCode": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/list/list.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAEnE,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AAExD,OAAO,EAEL,wBAAwB,EACxB,WAAW,EACZ,MAAM,uCAAuC,CAAC;AAC/C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAE7D,OAAO,EAA4B,WAAW,EAAoB,MAAM,yBAAyB,CAAC;AAClG,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/list/list.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAEnE,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AAExD,OAAO,EAEL,wBAAwB,EACxB,WAAW,EACZ,MAAM,uCAAuC,CAAC;AAC/C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAE7D,OAAO,EAA4B,WAAW,EAAoB,MAAM,yBAAyB,CAAC;AAClG,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAKpE,qBAKa,IAAK,SAAQ,SAA2B;IACnD;;;OAGG;IAC0C,MAAM,EAAE,MAAM,CAAU;IAE/D,YAAY,EAAE,MAAM,CAAM;IAC1B,KAAK,EAAE,MAAM,CAAM;IACwB,qBAAqB,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,OAAO,CAAC;IACjD,YAAY,EAAE,MAAM,CAAC;IACA,eAAe,EAAE,OAAO,CAAC;IACjC,QAAQ,UAAS;IACd,WAAW,UAAS;IACpB,WAAW,UAAQ;IACX,kBAAkB,UAAS;IAC5B,iBAAiB,UAAS;IACpC,QAAQ,UAAS;IACf,UAAU,UAAS;IAC/B,cAAc,EAAE,eAAe,CAAC;IAClE,IAAI,EAAG,WAAW,CAAC;IACnB,UAAU,EAAG,wBAAwB,CAAC;IACjC,WAAW,EAAE,WAAW,CAAC;IACzB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,gBAAgB,EAAE,uBAAuB,CAAC;IAC1C,mBAAmB,QAAM;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IAEvB,SAAS,CAAC,OAAO,EAAG,OAAO,CAAC;IAErC,iBAAiB;YA6DH,oBAAoB;IA+C5B,oBAAoB,IAAI,OAAO,CAAC,IAAI,CAAC;IAa3C,OAAO,CAAC,mBAAmB;IAM3B,OAAO,CAAC,mBAAmB;IAK3B,OAAO,CAAC,MAAM;IAId,OAAO,CAAC,IAAI,CAEV;IAEI,MAAM,CAAC,CAAC,KAAA;CAGf"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { List } from './list';
|
|
1
|
+
import type { List } from './list';
|
|
2
2
|
export declare const getPrefixedList: (prefix: any) => import("@microsoft/fast-element").ViewTemplate<List, any>;
|
|
3
3
|
/** @internal */
|
|
4
4
|
export declare const listTemplate: import("@microsoft/fast-element").ViewTemplate<List, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.template.d.ts","sourceRoot":"","sources":["../../../src/list/list.template.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"list.template.d.ts","sourceRoot":"","sources":["../../../src/list/list.template.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAEnC,eAAO,MAAM,eAAe,4EA0D3B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,YAAY,2DAExB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Users } from './users';
|
|
1
|
+
import type { Users } from './users';
|
|
2
2
|
export declare const getPrefixedUsers: (prefix: any) => import("@microsoft/fast-element").ViewTemplate<Users, any>;
|
|
3
3
|
/** @internal */
|
|
4
4
|
export declare const UsersTemplate: import("@microsoft/fast-element").ViewTemplate<Users, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"users.template.d.ts","sourceRoot":"","sources":["../../../src/users/users.template.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"users.template.d.ts","sourceRoot":"","sources":["../../../src/users/users.template.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAoFrC,eAAO,MAAM,gBAAgB,6EAqC5B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,aAAa,4DAEzB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-entity-management",
|
|
3
3
|
"description": "Genesis Foundation Entity Management",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.185.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -26,8 +26,10 @@
|
|
|
26
26
|
"build": "genx build -b ts",
|
|
27
27
|
"build:webpack": "genx build",
|
|
28
28
|
"build:webpack:stats": "genx analyze",
|
|
29
|
+
"circular": "npx -y madge --extensions ts --circular ./src",
|
|
29
30
|
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
30
31
|
"dev": "genx dev -b webpack",
|
|
32
|
+
"dev:ts": "genx dev -b ts",
|
|
31
33
|
"dev:no-open": "genx dev --no-open -b webpack",
|
|
32
34
|
"dev:https": "genx dev --https -b webpack",
|
|
33
35
|
"serve": "genx serve",
|
|
@@ -42,30 +44,37 @@
|
|
|
42
44
|
"test:unit:watch": "genx test --watch",
|
|
43
45
|
"test:debug": "genx test --debug"
|
|
44
46
|
},
|
|
47
|
+
"madge": {
|
|
48
|
+
"detectiveOptions": {
|
|
49
|
+
"ts": {
|
|
50
|
+
"skipTypeImports": true
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
45
54
|
"devDependencies": {
|
|
46
|
-
"@genesislcap/foundation-testing": "14.
|
|
47
|
-
"@genesislcap/genx": "14.
|
|
48
|
-
"@genesislcap/rollup-builder": "14.
|
|
49
|
-
"@genesislcap/ts-builder": "14.
|
|
50
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
51
|
-
"@genesislcap/vite-builder": "14.
|
|
52
|
-
"@genesislcap/webpack-builder": "14.
|
|
53
|
-
"rimraf": "^
|
|
55
|
+
"@genesislcap/foundation-testing": "14.185.0",
|
|
56
|
+
"@genesislcap/genx": "14.185.0",
|
|
57
|
+
"@genesislcap/rollup-builder": "14.185.0",
|
|
58
|
+
"@genesislcap/ts-builder": "14.185.0",
|
|
59
|
+
"@genesislcap/uvu-playwright-builder": "14.185.0",
|
|
60
|
+
"@genesislcap/vite-builder": "14.185.0",
|
|
61
|
+
"@genesislcap/webpack-builder": "14.185.0",
|
|
62
|
+
"rimraf": "^5.0.0"
|
|
54
63
|
},
|
|
55
64
|
"dependencies": {
|
|
56
65
|
"@ag-grid-community/core": "29.2.0",
|
|
57
|
-
"@genesislcap/foundation-comms": "14.
|
|
58
|
-
"@genesislcap/foundation-errors": "14.
|
|
59
|
-
"@genesislcap/foundation-events": "14.
|
|
60
|
-
"@genesislcap/foundation-forms": "14.
|
|
61
|
-
"@genesislcap/foundation-logger": "14.
|
|
62
|
-
"@genesislcap/foundation-login": "14.
|
|
63
|
-
"@genesislcap/foundation-notifications": "14.
|
|
64
|
-
"@genesislcap/foundation-ui": "14.
|
|
65
|
-
"@genesislcap/foundation-utils": "14.
|
|
66
|
-
"@genesislcap/foundation-zero": "14.
|
|
67
|
-
"@genesislcap/foundation-zero-grid-pro": "14.
|
|
68
|
-
"@genesislcap/grid-pro": "14.
|
|
66
|
+
"@genesislcap/foundation-comms": "14.185.0",
|
|
67
|
+
"@genesislcap/foundation-errors": "14.185.0",
|
|
68
|
+
"@genesislcap/foundation-events": "14.185.0",
|
|
69
|
+
"@genesislcap/foundation-forms": "14.185.0",
|
|
70
|
+
"@genesislcap/foundation-logger": "14.185.0",
|
|
71
|
+
"@genesislcap/foundation-login": "14.185.0",
|
|
72
|
+
"@genesislcap/foundation-notifications": "14.185.0",
|
|
73
|
+
"@genesislcap/foundation-ui": "14.185.0",
|
|
74
|
+
"@genesislcap/foundation-utils": "14.185.0",
|
|
75
|
+
"@genesislcap/foundation-zero": "14.185.0",
|
|
76
|
+
"@genesislcap/foundation-zero-grid-pro": "14.185.0",
|
|
77
|
+
"@genesislcap/grid-pro": "14.185.0",
|
|
69
78
|
"@microsoft/fast-components": "^2.30.6",
|
|
70
79
|
"@microsoft/fast-element": "^1.12.0",
|
|
71
80
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
@@ -81,5 +90,5 @@
|
|
|
81
90
|
"access": "public"
|
|
82
91
|
},
|
|
83
92
|
"customElements": "dist/custom-elements.json",
|
|
84
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "839487e6a0b1168d0ad6bf32c9e3a50504c775a0"
|
|
85
94
|
}
|