@genesislcap/foundation-entity-management 14.30.0 → 14.30.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.
@@ -619,55 +619,6 @@
619
619
  }
620
620
  ]
621
621
  },
622
- {
623
- "kind": "javascript-module",
624
- "path": "src/layouts/default.ts",
625
- "declarations": [
626
- {
627
- "kind": "variable",
628
- "name": "loginLayout",
629
- "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss\n)"
630
- },
631
- {
632
- "kind": "variable",
633
- "name": "defaultLayout",
634
- "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)"
635
- }
636
- ],
637
- "exports": [
638
- {
639
- "kind": "js",
640
- "name": "loginLayout",
641
- "declaration": {
642
- "name": "loginLayout",
643
- "module": "src/layouts/default.ts"
644
- }
645
- },
646
- {
647
- "kind": "js",
648
- "name": "defaultLayout",
649
- "declaration": {
650
- "name": "defaultLayout",
651
- "module": "src/layouts/default.ts"
652
- }
653
- }
654
- ]
655
- },
656
- {
657
- "kind": "javascript-module",
658
- "path": "src/layouts/index.ts",
659
- "declarations": [],
660
- "exports": [
661
- {
662
- "kind": "js",
663
- "name": "*",
664
- "declaration": {
665
- "name": "*",
666
- "package": "./default"
667
- }
668
- }
669
- ]
670
- },
671
622
  {
672
623
  "kind": "javascript-module",
673
624
  "path": "src/list/index.ts",
@@ -1765,6 +1716,55 @@
1765
1716
  }
1766
1717
  ]
1767
1718
  },
1719
+ {
1720
+ "kind": "javascript-module",
1721
+ "path": "src/layouts/default.ts",
1722
+ "declarations": [
1723
+ {
1724
+ "kind": "variable",
1725
+ "name": "loginLayout",
1726
+ "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss\n)"
1727
+ },
1728
+ {
1729
+ "kind": "variable",
1730
+ "name": "defaultLayout",
1731
+ "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)"
1732
+ }
1733
+ ],
1734
+ "exports": [
1735
+ {
1736
+ "kind": "js",
1737
+ "name": "loginLayout",
1738
+ "declaration": {
1739
+ "name": "loginLayout",
1740
+ "module": "src/layouts/default.ts"
1741
+ }
1742
+ },
1743
+ {
1744
+ "kind": "js",
1745
+ "name": "defaultLayout",
1746
+ "declaration": {
1747
+ "name": "defaultLayout",
1748
+ "module": "src/layouts/default.ts"
1749
+ }
1750
+ }
1751
+ ]
1752
+ },
1753
+ {
1754
+ "kind": "javascript-module",
1755
+ "path": "src/layouts/index.ts",
1756
+ "declarations": [],
1757
+ "exports": [
1758
+ {
1759
+ "kind": "js",
1760
+ "name": "*",
1761
+ "declaration": {
1762
+ "name": "*",
1763
+ "package": "./default"
1764
+ }
1765
+ }
1766
+ ]
1767
+ },
1768
1768
  {
1769
1769
  "kind": "javascript-module",
1770
1770
  "path": "src/users/users.template.ts",
@@ -43,15 +43,15 @@ const editUserSchema = (edit, allAccessType, entityID, entityLabel, entityLabelK
43
43
  labelField: 'PROFILE_NAME',
44
44
  },
45
45
  },
46
- {
46
+ ...conditionalSchemaEntry(!!entityID, {
47
47
  type: 'Control',
48
48
  label: 'Access Type',
49
49
  scope: '#/properties/ACCESS_TYPE',
50
50
  options: {
51
51
  hidden: !allAccessType,
52
52
  },
53
- },
54
- {
53
+ }),
54
+ ...conditionalSchemaEntry(!!entityID, {
55
55
  type: 'Control',
56
56
  scope: `#/properties/${entityID}`,
57
57
  options: {
@@ -61,7 +61,7 @@ const editUserSchema = (edit, allAccessType, entityID, entityLabel, entityLabelK
61
61
  hidden: !allAccessType,
62
62
  },
63
63
  label: entityLabel,
64
- },
64
+ }),
65
65
  ...additionalEntries.map((entry) => typeof entry === 'string'
66
66
  ? {
67
67
  type: 'Control',
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.30.0",
4
+ "version": "14.30.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -48,8 +48,8 @@
48
48
  "test:unit:watch": "watchlist src test -- npm run test:unit"
49
49
  },
50
50
  "devDependencies": {
51
- "@genesislcap/foundation-testing": "^14.30.0",
52
- "@genesislcap/genx": "^14.30.0",
51
+ "@genesislcap/foundation-testing": "^14.30.1",
52
+ "@genesislcap/genx": "^14.30.1",
53
53
  "@playwright/test": "^1.18.1",
54
54
  "bulma": "^0.9.3",
55
55
  "c8": "^7.11.0",
@@ -65,15 +65,15 @@
65
65
  "watchlist": "^0.3.1"
66
66
  },
67
67
  "dependencies": {
68
- "@genesislcap/foundation-comms": "^14.30.0",
69
- "@genesislcap/foundation-errors": "^14.30.0",
70
- "@genesislcap/foundation-forms": "^14.30.0",
71
- "@genesislcap/foundation-login": "^14.30.0",
72
- "@genesislcap/foundation-ui": "^14.30.0",
73
- "@genesislcap/foundation-utils": "^14.30.0",
74
- "@genesislcap/foundation-zero": "^14.30.0",
75
- "@genesislcap/foundation-zero-grid-pro": "^14.30.0",
76
- "@genesislcap/grid-pro": "^14.30.0",
68
+ "@genesislcap/foundation-comms": "^14.30.1",
69
+ "@genesislcap/foundation-errors": "^14.30.1",
70
+ "@genesislcap/foundation-forms": "^14.30.1",
71
+ "@genesislcap/foundation-login": "^14.30.1",
72
+ "@genesislcap/foundation-ui": "^14.30.1",
73
+ "@genesislcap/foundation-utils": "^14.30.1",
74
+ "@genesislcap/foundation-zero": "^14.30.1",
75
+ "@genesislcap/foundation-zero-grid-pro": "^14.30.1",
76
+ "@genesislcap/grid-pro": "^14.30.1",
77
77
  "@microsoft/fast-components": "^2.21.3",
78
78
  "@microsoft/fast-element": "^1.7.0",
79
79
  "@microsoft/fast-foundation": "^2.33.2",
@@ -98,5 +98,5 @@
98
98
  "access": "public"
99
99
  },
100
100
  "customElements": "dist/custom-elements.json",
101
- "gitHead": "6467af657a0914c12f62458d65090948c2bfc010"
101
+ "gitHead": "fbb28aece6d8e5ab4584018421c910a4a23c1723"
102
102
  }