@genesislcap/foundation-entity-management 14.224.3 → 14.225.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.
@@ -123,7 +123,7 @@
123
123
  {
124
124
  "kind": "variable",
125
125
  "name": "styles",
126
- "default": "css`\n :host {\n contain: content;\n }\n\n :host::part(header) {\n display: flex;\n justify-content: space-between;\n align-items: center;\n user-select: none;\n padding: 0 calc(var(--design-unit) * 2px);\n }\n\n :host([modal-position='centre']) .edit-modal {\n overflow-y: auto;\n }\n\n .container {\n display: flex;\n flex-direction: column;\n height: 100%;\n }\n\n foundation-form {\n height: 100%;\n overflow-y: auto;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n }\n\n .title {\n margin-left: 1px;\n }\n\n .header-title {\n color: var(--neutral-foreground-rest);\n font-size: var(--type-ramp-plus-4-font-size);\n font-family: var(--body-font);\n font-weight: 700;\n }\n\n .search-container {\n display: flex;\n align-items: center;\n gap: calc(var(--design-unit) * 2px);\n }\n\n .search-container zero-search-bar,\n .search-container rapid-search-bar {\n width: 500px;\n }\n\n .crud-buttons {\n display: flex;\n gap: calc(var(--design-unit) * 2px);\n }\n\n .crud-buttons-wrapper {\n display: flex;\n gap: calc(var(--design-unit) * 2px);\n justify-content: flex-end;\n }\n\n .crud-buttons-wrapper-column,\n .crud-buttons-wrapper-top {\n flex: 1;\n padding: calc(var(--design-unit) * 2px) 0;\n }\n\n .crud-buttons-wrapper-bottom {\n padding: calc(var(--design-unit) * 2px);\n }\n`",
126
+ "default": "css`\n :host {\n contain: content;\n }\n\n :host::part(header) {\n display: flex;\n justify-content: space-between;\n align-items: center;\n user-select: none;\n padding: 0 calc(var(--design-unit) * 2px);\n }\n\n :host([modal-position='centre']) .edit-modal {\n overflow-y: auto;\n }\n\n .container {\n display: flex;\n flex-direction: column;\n height: 100%;\n }\n\n foundation-form {\n min-height: 400px;\n height: 100%;\n overflow-y: auto;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n }\n\n .title {\n margin-left: 1px;\n }\n\n .header-title {\n color: var(--neutral-foreground-rest);\n font-size: var(--type-ramp-plus-4-font-size);\n font-family: var(--body-font);\n font-weight: 700;\n }\n\n .search-container {\n display: flex;\n align-items: center;\n gap: calc(var(--design-unit) * 2px);\n }\n\n .search-container zero-search-bar,\n .search-container rapid-search-bar {\n width: 500px;\n }\n\n .crud-buttons {\n display: flex;\n gap: calc(var(--design-unit) * 2px);\n }\n\n .crud-buttons-wrapper {\n display: flex;\n gap: calc(var(--design-unit) * 2px);\n justify-content: flex-end;\n }\n\n .crud-buttons-wrapper-column,\n .crud-buttons-wrapper-top {\n flex: 1;\n padding: calc(var(--design-unit) * 2px) 0;\n }\n\n .crud-buttons-wrapper-bottom {\n padding: calc(var(--design-unit) * 2px);\n }\n`",
127
127
  "description": "Defines the css of the entity component as an ElementStyles object"
128
128
  }
129
129
  ],
@@ -913,6 +913,55 @@
913
913
  }
914
914
  ]
915
915
  },
916
+ {
917
+ "kind": "javascript-module",
918
+ "path": "src/layouts/default.ts",
919
+ "declarations": [
920
+ {
921
+ "kind": "variable",
922
+ "name": "loginLayout",
923
+ "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
924
+ },
925
+ {
926
+ "kind": "variable",
927
+ "name": "defaultLayout",
928
+ "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)"
929
+ }
930
+ ],
931
+ "exports": [
932
+ {
933
+ "kind": "js",
934
+ "name": "loginLayout",
935
+ "declaration": {
936
+ "name": "loginLayout",
937
+ "module": "src/layouts/default.ts"
938
+ }
939
+ },
940
+ {
941
+ "kind": "js",
942
+ "name": "defaultLayout",
943
+ "declaration": {
944
+ "name": "defaultLayout",
945
+ "module": "src/layouts/default.ts"
946
+ }
947
+ }
948
+ ]
949
+ },
950
+ {
951
+ "kind": "javascript-module",
952
+ "path": "src/layouts/index.ts",
953
+ "declarations": [],
954
+ "exports": [
955
+ {
956
+ "kind": "js",
957
+ "name": "*",
958
+ "declaration": {
959
+ "name": "*",
960
+ "package": "./default"
961
+ }
962
+ }
963
+ ]
964
+ },
916
965
  {
917
966
  "kind": "javascript-module",
918
967
  "path": "src/list/index.ts",
@@ -1659,55 +1708,6 @@
1659
1708
  }
1660
1709
  ]
1661
1710
  },
1662
- {
1663
- "kind": "javascript-module",
1664
- "path": "src/layouts/default.ts",
1665
- "declarations": [
1666
- {
1667
- "kind": "variable",
1668
- "name": "loginLayout",
1669
- "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
1670
- },
1671
- {
1672
- "kind": "variable",
1673
- "name": "defaultLayout",
1674
- "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)"
1675
- }
1676
- ],
1677
- "exports": [
1678
- {
1679
- "kind": "js",
1680
- "name": "loginLayout",
1681
- "declaration": {
1682
- "name": "loginLayout",
1683
- "module": "src/layouts/default.ts"
1684
- }
1685
- },
1686
- {
1687
- "kind": "js",
1688
- "name": "defaultLayout",
1689
- "declaration": {
1690
- "name": "defaultLayout",
1691
- "module": "src/layouts/default.ts"
1692
- }
1693
- }
1694
- ]
1695
- },
1696
- {
1697
- "kind": "javascript-module",
1698
- "path": "src/layouts/index.ts",
1699
- "declarations": [],
1700
- "exports": [
1701
- {
1702
- "kind": "js",
1703
- "name": "*",
1704
- "declaration": {
1705
- "name": "*",
1706
- "package": "./default"
1707
- }
1708
- }
1709
- ]
1710
- },
1711
1711
  {
1712
1712
  "kind": "javascript-module",
1713
1713
  "path": "src/profiles/editProfileSchema.ts",
@@ -1 +1 @@
1
- {"version":3,"file":"entities.styles.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.styles.ts"],"names":[],"mappings":"AAEA;;;;;;;GAOG;AACH,eAAO,MAAM,MAAM,iDAyElB,CAAC"}
1
+ {"version":3,"file":"entities.styles.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.styles.ts"],"names":[],"mappings":"AAEA;;;;;;;GAOG;AACH,eAAO,MAAM,MAAM,iDA0ElB,CAAC"}
@@ -31,6 +31,7 @@ export const styles = css `
31
31
  }
32
32
 
33
33
  foundation-form {
34
+ min-height: 400px;
34
35
  height: 100%;
35
36
  overflow-y: auto;
36
37
  display: flex;
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.224.3",
4
+ "version": "14.225.0",
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.224.3",
56
- "@genesislcap/genx": "14.224.3",
57
- "@genesislcap/rollup-builder": "14.224.3",
58
- "@genesislcap/ts-builder": "14.224.3",
59
- "@genesislcap/uvu-playwright-builder": "14.224.3",
60
- "@genesislcap/vite-builder": "14.224.3",
61
- "@genesislcap/webpack-builder": "14.224.3",
55
+ "@genesislcap/foundation-testing": "14.225.0",
56
+ "@genesislcap/genx": "14.225.0",
57
+ "@genesislcap/rollup-builder": "14.225.0",
58
+ "@genesislcap/ts-builder": "14.225.0",
59
+ "@genesislcap/uvu-playwright-builder": "14.225.0",
60
+ "@genesislcap/vite-builder": "14.225.0",
61
+ "@genesislcap/webpack-builder": "14.225.0",
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.224.3",
67
- "@genesislcap/foundation-errors": "14.224.3",
68
- "@genesislcap/foundation-events": "14.224.3",
69
- "@genesislcap/foundation-forms": "14.224.3",
70
- "@genesislcap/foundation-logger": "14.224.3",
71
- "@genesislcap/foundation-login": "14.224.3",
72
- "@genesislcap/foundation-notifications": "14.224.3",
73
- "@genesislcap/foundation-ui": "14.224.3",
74
- "@genesislcap/foundation-utils": "14.224.3",
75
- "@genesislcap/foundation-zero": "14.224.3",
76
- "@genesislcap/foundation-zero-grid-pro": "14.224.3",
77
- "@genesislcap/grid-pro": "14.224.3",
66
+ "@genesislcap/foundation-comms": "14.225.0",
67
+ "@genesislcap/foundation-errors": "14.225.0",
68
+ "@genesislcap/foundation-events": "14.225.0",
69
+ "@genesislcap/foundation-forms": "14.225.0",
70
+ "@genesislcap/foundation-logger": "14.225.0",
71
+ "@genesislcap/foundation-login": "14.225.0",
72
+ "@genesislcap/foundation-notifications": "14.225.0",
73
+ "@genesislcap/foundation-ui": "14.225.0",
74
+ "@genesislcap/foundation-utils": "14.225.0",
75
+ "@genesislcap/foundation-zero": "14.225.0",
76
+ "@genesislcap/foundation-zero-grid-pro": "14.225.0",
77
+ "@genesislcap/grid-pro": "14.225.0",
78
78
  "@microsoft/fast-components": "2.30.6",
79
79
  "@microsoft/fast-element": "1.14.0",
80
80
  "@microsoft/fast-foundation": "2.49.6",
@@ -91,5 +91,5 @@
91
91
  "access": "public"
92
92
  },
93
93
  "customElements": "dist/custom-elements.json",
94
- "gitHead": "c8dd345a780c86ffda75f9cb26603565071d6422"
94
+ "gitHead": "722fe99cebb2564d2b85b5d5d0de5f2d3a33e7aa"
95
95
  }