@genesislcap/foundation-entity-management 14.207.0 → 14.207.1

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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +194 -194
  2. package/package.json +21 -21
@@ -1123,6 +1123,200 @@
1123
1123
  }
1124
1124
  ]
1125
1125
  },
1126
+ {
1127
+ "kind": "javascript-module",
1128
+ "path": "src/layouts/default.ts",
1129
+ "declarations": [
1130
+ {
1131
+ "kind": "variable",
1132
+ "name": "loginLayout",
1133
+ "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
1134
+ },
1135
+ {
1136
+ "kind": "variable",
1137
+ "name": "defaultLayout",
1138
+ "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n css`\n ${baseLayoutCss}\n `,\n)"
1139
+ }
1140
+ ],
1141
+ "exports": [
1142
+ {
1143
+ "kind": "js",
1144
+ "name": "loginLayout",
1145
+ "declaration": {
1146
+ "name": "loginLayout",
1147
+ "module": "src/layouts/default.ts"
1148
+ }
1149
+ },
1150
+ {
1151
+ "kind": "js",
1152
+ "name": "defaultLayout",
1153
+ "declaration": {
1154
+ "name": "defaultLayout",
1155
+ "module": "src/layouts/default.ts"
1156
+ }
1157
+ }
1158
+ ]
1159
+ },
1160
+ {
1161
+ "kind": "javascript-module",
1162
+ "path": "src/layouts/index.ts",
1163
+ "declarations": [],
1164
+ "exports": [
1165
+ {
1166
+ "kind": "js",
1167
+ "name": "*",
1168
+ "declaration": {
1169
+ "name": "*",
1170
+ "package": "./default"
1171
+ }
1172
+ }
1173
+ ]
1174
+ },
1175
+ {
1176
+ "kind": "javascript-module",
1177
+ "path": "src/main/index.ts",
1178
+ "declarations": [],
1179
+ "exports": [
1180
+ {
1181
+ "kind": "js",
1182
+ "name": "*",
1183
+ "declaration": {
1184
+ "name": "*",
1185
+ "package": "./main.template"
1186
+ }
1187
+ },
1188
+ {
1189
+ "kind": "js",
1190
+ "name": "*",
1191
+ "declaration": {
1192
+ "name": "*",
1193
+ "package": "./main"
1194
+ }
1195
+ }
1196
+ ]
1197
+ },
1198
+ {
1199
+ "kind": "javascript-module",
1200
+ "path": "src/main/main.styles.ts",
1201
+ "declarations": [
1202
+ {
1203
+ "kind": "variable",
1204
+ "name": "MainStyles",
1205
+ "default": "css`\n ${mixinRobotoFont()}\n :host {\n contain: content;\n }\n\n :host,\n zero-design-system-provider,\n .dynamic-template,\n foundation-router {\n display: flex;\n width: 100%;\n height: 100%;\n }\n\n fast-progress {\n --accent-foreground-rest: #654df9;\n\n height: calc(var(--design-unit) * 1px);\n margin: 0;\n width: 100%;\n }\n`"
1206
+ }
1207
+ ],
1208
+ "exports": [
1209
+ {
1210
+ "kind": "js",
1211
+ "name": "MainStyles",
1212
+ "declaration": {
1213
+ "name": "MainStyles",
1214
+ "module": "src/main/main.styles.ts"
1215
+ }
1216
+ }
1217
+ ]
1218
+ },
1219
+ {
1220
+ "kind": "javascript-module",
1221
+ "path": "src/main/main.template.ts",
1222
+ "declarations": [],
1223
+ "exports": []
1224
+ },
1225
+ {
1226
+ "kind": "javascript-module",
1227
+ "path": "src/main/main.ts",
1228
+ "declarations": [
1229
+ {
1230
+ "kind": "class",
1231
+ "description": "",
1232
+ "name": "MainApplication",
1233
+ "members": [
1234
+ {
1235
+ "kind": "field",
1236
+ "name": "config",
1237
+ "type": {
1238
+ "text": "MainRouterConfig"
1239
+ }
1240
+ },
1241
+ {
1242
+ "kind": "field",
1243
+ "name": "connect",
1244
+ "type": {
1245
+ "text": "Connect"
1246
+ }
1247
+ },
1248
+ {
1249
+ "kind": "field",
1250
+ "name": "session",
1251
+ "type": {
1252
+ "text": "Session"
1253
+ }
1254
+ },
1255
+ {
1256
+ "kind": "field",
1257
+ "name": "container",
1258
+ "type": {
1259
+ "text": "Container"
1260
+ }
1261
+ },
1262
+ {
1263
+ "kind": "field",
1264
+ "name": "provider",
1265
+ "type": {
1266
+ "text": "HTMLElement"
1267
+ }
1268
+ },
1269
+ {
1270
+ "kind": "field",
1271
+ "name": "ready",
1272
+ "type": {
1273
+ "text": "boolean"
1274
+ },
1275
+ "default": "false"
1276
+ },
1277
+ {
1278
+ "kind": "method",
1279
+ "name": "onLuminanceToggle"
1280
+ },
1281
+ {
1282
+ "kind": "method",
1283
+ "name": "loadRemotes"
1284
+ },
1285
+ {
1286
+ "kind": "method",
1287
+ "name": "selectTemplate"
1288
+ },
1289
+ {
1290
+ "kind": "method",
1291
+ "name": "registerDIDependencies",
1292
+ "privacy": "private"
1293
+ }
1294
+ ],
1295
+ "superclass": {
1296
+ "name": "FASTElement",
1297
+ "package": "@microsoft/fast-element"
1298
+ },
1299
+ "customElement": true
1300
+ }
1301
+ ],
1302
+ "exports": [
1303
+ {
1304
+ "kind": "js",
1305
+ "name": "MainApplication",
1306
+ "declaration": {
1307
+ "name": "MainApplication",
1308
+ "module": "src/main/main.ts"
1309
+ }
1310
+ },
1311
+ {
1312
+ "kind": "custom-element-definition",
1313
+ "declaration": {
1314
+ "name": "MainApplication",
1315
+ "module": "src/main/main.ts"
1316
+ }
1317
+ }
1318
+ ]
1319
+ },
1126
1320
  {
1127
1321
  "kind": "javascript-module",
1128
1322
  "path": "src/list/index.ts",
@@ -1623,151 +1817,6 @@
1623
1817
  }
1624
1818
  ]
1625
1819
  },
1626
- {
1627
- "kind": "javascript-module",
1628
- "path": "src/main/index.ts",
1629
- "declarations": [],
1630
- "exports": [
1631
- {
1632
- "kind": "js",
1633
- "name": "*",
1634
- "declaration": {
1635
- "name": "*",
1636
- "package": "./main.template"
1637
- }
1638
- },
1639
- {
1640
- "kind": "js",
1641
- "name": "*",
1642
- "declaration": {
1643
- "name": "*",
1644
- "package": "./main"
1645
- }
1646
- }
1647
- ]
1648
- },
1649
- {
1650
- "kind": "javascript-module",
1651
- "path": "src/main/main.styles.ts",
1652
- "declarations": [
1653
- {
1654
- "kind": "variable",
1655
- "name": "MainStyles",
1656
- "default": "css`\n ${mixinRobotoFont()}\n :host {\n contain: content;\n }\n\n :host,\n zero-design-system-provider,\n .dynamic-template,\n foundation-router {\n display: flex;\n width: 100%;\n height: 100%;\n }\n\n fast-progress {\n --accent-foreground-rest: #654df9;\n\n height: calc(var(--design-unit) * 1px);\n margin: 0;\n width: 100%;\n }\n`"
1657
- }
1658
- ],
1659
- "exports": [
1660
- {
1661
- "kind": "js",
1662
- "name": "MainStyles",
1663
- "declaration": {
1664
- "name": "MainStyles",
1665
- "module": "src/main/main.styles.ts"
1666
- }
1667
- }
1668
- ]
1669
- },
1670
- {
1671
- "kind": "javascript-module",
1672
- "path": "src/main/main.template.ts",
1673
- "declarations": [],
1674
- "exports": []
1675
- },
1676
- {
1677
- "kind": "javascript-module",
1678
- "path": "src/main/main.ts",
1679
- "declarations": [
1680
- {
1681
- "kind": "class",
1682
- "description": "",
1683
- "name": "MainApplication",
1684
- "members": [
1685
- {
1686
- "kind": "field",
1687
- "name": "config",
1688
- "type": {
1689
- "text": "MainRouterConfig"
1690
- }
1691
- },
1692
- {
1693
- "kind": "field",
1694
- "name": "connect",
1695
- "type": {
1696
- "text": "Connect"
1697
- }
1698
- },
1699
- {
1700
- "kind": "field",
1701
- "name": "session",
1702
- "type": {
1703
- "text": "Session"
1704
- }
1705
- },
1706
- {
1707
- "kind": "field",
1708
- "name": "container",
1709
- "type": {
1710
- "text": "Container"
1711
- }
1712
- },
1713
- {
1714
- "kind": "field",
1715
- "name": "provider",
1716
- "type": {
1717
- "text": "HTMLElement"
1718
- }
1719
- },
1720
- {
1721
- "kind": "field",
1722
- "name": "ready",
1723
- "type": {
1724
- "text": "boolean"
1725
- },
1726
- "default": "false"
1727
- },
1728
- {
1729
- "kind": "method",
1730
- "name": "onLuminanceToggle"
1731
- },
1732
- {
1733
- "kind": "method",
1734
- "name": "loadRemotes"
1735
- },
1736
- {
1737
- "kind": "method",
1738
- "name": "selectTemplate"
1739
- },
1740
- {
1741
- "kind": "method",
1742
- "name": "registerDIDependencies",
1743
- "privacy": "private"
1744
- }
1745
- ],
1746
- "superclass": {
1747
- "name": "FASTElement",
1748
- "package": "@microsoft/fast-element"
1749
- },
1750
- "customElement": true
1751
- }
1752
- ],
1753
- "exports": [
1754
- {
1755
- "kind": "js",
1756
- "name": "MainApplication",
1757
- "declaration": {
1758
- "name": "MainApplication",
1759
- "module": "src/main/main.ts"
1760
- }
1761
- },
1762
- {
1763
- "kind": "custom-element-definition",
1764
- "declaration": {
1765
- "name": "MainApplication",
1766
- "module": "src/main/main.ts"
1767
- }
1768
- }
1769
- ]
1770
- },
1771
1820
  {
1772
1821
  "kind": "javascript-module",
1773
1822
  "path": "src/profiles/editProfileSchema.ts",
@@ -3081,55 +3130,6 @@
3081
3130
  }
3082
3131
  ]
3083
3132
  },
3084
- {
3085
- "kind": "javascript-module",
3086
- "path": "src/layouts/default.ts",
3087
- "declarations": [
3088
- {
3089
- "kind": "variable",
3090
- "name": "loginLayout",
3091
- "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
3092
- },
3093
- {
3094
- "kind": "variable",
3095
- "name": "defaultLayout",
3096
- "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n css`\n ${baseLayoutCss}\n `,\n)"
3097
- }
3098
- ],
3099
- "exports": [
3100
- {
3101
- "kind": "js",
3102
- "name": "loginLayout",
3103
- "declaration": {
3104
- "name": "loginLayout",
3105
- "module": "src/layouts/default.ts"
3106
- }
3107
- },
3108
- {
3109
- "kind": "js",
3110
- "name": "defaultLayout",
3111
- "declaration": {
3112
- "name": "defaultLayout",
3113
- "module": "src/layouts/default.ts"
3114
- }
3115
- }
3116
- ]
3117
- },
3118
- {
3119
- "kind": "javascript-module",
3120
- "path": "src/layouts/index.ts",
3121
- "declarations": [],
3122
- "exports": [
3123
- {
3124
- "kind": "js",
3125
- "name": "*",
3126
- "declaration": {
3127
- "name": "*",
3128
- "package": "./default"
3129
- }
3130
- }
3131
- ]
3132
- },
3133
3133
  {
3134
3134
  "kind": "javascript-module",
3135
3135
  "path": "src/routes/config.ts",
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.207.0",
4
+ "version": "14.207.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -52,29 +52,29 @@
52
52
  }
53
53
  },
54
54
  "devDependencies": {
55
- "@genesislcap/foundation-testing": "14.207.0",
56
- "@genesislcap/genx": "14.207.0",
57
- "@genesislcap/rollup-builder": "14.207.0",
58
- "@genesislcap/ts-builder": "14.207.0",
59
- "@genesislcap/uvu-playwright-builder": "14.207.0",
60
- "@genesislcap/vite-builder": "14.207.0",
61
- "@genesislcap/webpack-builder": "14.207.0",
55
+ "@genesislcap/foundation-testing": "14.207.1",
56
+ "@genesislcap/genx": "14.207.1",
57
+ "@genesislcap/rollup-builder": "14.207.1",
58
+ "@genesislcap/ts-builder": "14.207.1",
59
+ "@genesislcap/uvu-playwright-builder": "14.207.1",
60
+ "@genesislcap/vite-builder": "14.207.1",
61
+ "@genesislcap/webpack-builder": "14.207.1",
62
62
  "rimraf": "^5.0.0"
63
63
  },
64
64
  "dependencies": {
65
65
  "@ag-grid-community/core": "29.2.0",
66
- "@genesislcap/foundation-comms": "14.207.0",
67
- "@genesislcap/foundation-errors": "14.207.0",
68
- "@genesislcap/foundation-events": "14.207.0",
69
- "@genesislcap/foundation-forms": "14.207.0",
70
- "@genesislcap/foundation-logger": "14.207.0",
71
- "@genesislcap/foundation-login": "14.207.0",
72
- "@genesislcap/foundation-notifications": "14.207.0",
73
- "@genesislcap/foundation-ui": "14.207.0",
74
- "@genesislcap/foundation-utils": "14.207.0",
75
- "@genesislcap/foundation-zero": "14.207.0",
76
- "@genesislcap/foundation-zero-grid-pro": "14.207.0",
77
- "@genesislcap/grid-pro": "14.207.0",
66
+ "@genesislcap/foundation-comms": "14.207.1",
67
+ "@genesislcap/foundation-errors": "14.207.1",
68
+ "@genesislcap/foundation-events": "14.207.1",
69
+ "@genesislcap/foundation-forms": "14.207.1",
70
+ "@genesislcap/foundation-logger": "14.207.1",
71
+ "@genesislcap/foundation-login": "14.207.1",
72
+ "@genesislcap/foundation-notifications": "14.207.1",
73
+ "@genesislcap/foundation-ui": "14.207.1",
74
+ "@genesislcap/foundation-utils": "14.207.1",
75
+ "@genesislcap/foundation-zero": "14.207.1",
76
+ "@genesislcap/foundation-zero-grid-pro": "14.207.1",
77
+ "@genesislcap/grid-pro": "14.207.1",
78
78
  "@microsoft/fast-components": "^2.30.6",
79
79
  "@microsoft/fast-element": "^1.12.0",
80
80
  "@microsoft/fast-foundation": "^2.49.4",
@@ -90,5 +90,5 @@
90
90
  "access": "public"
91
91
  },
92
92
  "customElements": "dist/custom-elements.json",
93
- "gitHead": "16758f027692f6e4a17639fa974850bb7501ca64"
93
+ "gitHead": "bb626dc9c7047e3b4a66679f05cbf715096b0f6d"
94
94
  }