@genesislcap/foundation-ui 15.7.0 → 15.7.2-FUI-2595.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.
@@ -1 +1 @@
1
- {"version":3,"file":"dialog.styles.d.ts","sourceRoot":"","sources":["../../../src/dialog/dialog.styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAG7D,eAAO,MAAM,sBAAsB,EAAE,aAiRpC,CAAC"}
1
+ {"version":3,"file":"dialog.styles.d.ts","sourceRoot":"","sources":["../../../src/dialog/dialog.styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAG7D,eAAO,MAAM,sBAAsB,EAAE,aAsRpC,CAAC"}
@@ -133,15 +133,6 @@ interface HTMLWCProps extends React.AriaAttributes {
133
133
  onInput?(e: Event): void;
134
134
  }
135
135
 
136
- export declare const Accordion: React.ForwardRefExoticComponent<
137
- React.PropsWithChildren<
138
- Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
139
- HTMLWCProps & {
140
- }
141
- > & React.RefAttributes<AccordionWC>
142
- >;
143
- export type AccordionRef = AccordionWC;
144
-
145
136
  export declare const AccordionItem: React.ForwardRefExoticComponent<
146
137
  React.PropsWithChildren<
147
138
  Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
@@ -151,15 +142,6 @@ export declare const AccordionItem: React.ForwardRefExoticComponent<
151
142
  >;
152
143
  export type AccordionItemRef = AccordionItemWC;
153
144
 
154
- export declare const ActionsMenu: React.ForwardRefExoticComponent<
155
- React.PropsWithChildren<
156
- Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
157
- HTMLWCProps & {
158
- }
159
- > & React.RefAttributes<ActionsMenuWC>
160
- >;
161
- export type ActionsMenuRef = ActionsMenuWC;
162
-
163
145
  export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
164
146
  React.PropsWithChildren<
165
147
  Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
@@ -180,6 +162,24 @@ export declare const AiIndicator: React.ForwardRefExoticComponent<
180
162
  >;
181
163
  export type AiIndicatorRef = AiIndicatorWC;
182
164
 
165
+ export declare const ActionsMenu: React.ForwardRefExoticComponent<
166
+ React.PropsWithChildren<
167
+ Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
168
+ HTMLWCProps & {
169
+ }
170
+ > & React.RefAttributes<ActionsMenuWC>
171
+ >;
172
+ export type ActionsMenuRef = ActionsMenuWC;
173
+
174
+ export declare const Accordion: React.ForwardRefExoticComponent<
175
+ React.PropsWithChildren<
176
+ Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
177
+ HTMLWCProps & {
178
+ }
179
+ > & React.RefAttributes<AccordionWC>
180
+ >;
181
+ export type AccordionRef = AccordionWC;
182
+
183
183
  export declare const Anchor: React.ForwardRefExoticComponent<
184
184
  React.PropsWithChildren<
185
185
  Omit<PublicOf<AnchorWC>, 'children' | 'style'> &
@@ -61,7 +61,12 @@ export const foundationDialogStyles = css `
61
61
  padding: calc(var(--design-unit) * 3px);
62
62
  outline: none;
63
63
  overflow: inherit;
64
- z-index: var(--dialog-z-index, auto);
64
+ /* The inner element is position:fixed, so it is never CLIPPED — but an 'auto' default leaves it
65
+ in the normal paint tree at its tree position, where any later-in-DOM sibling paints over it
66
+ (e.g. a non-modal dialog inside one FlexLayout tile disappears under the tiles below).
67
+ 1001 clears app headers (999) and FlexLayout's drag chrome (1000) while staying under Flyout
68
+ (2000/2001). Modal is unaffected: showModal() puts it in the top layer, above all of this. */
69
+ z-index: var(--dialog-z-index, 1001);
65
70
  }
66
71
 
67
72
  :host([position='left']) dialog {
package/dist/react.cjs CHANGED
@@ -113,21 +113,11 @@ function _mergeRefs(...refs) {
113
113
  };
114
114
  }
115
115
 
116
- const Accordion = React.forwardRef(function Accordion(props, ref) {
117
- const { children, ...rest } = props;
118
- return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
119
- });
120
-
121
116
  const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
122
117
  const { children, ...rest } = props;
123
118
  return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
124
119
  });
125
120
 
126
- const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
127
- const { children, ...rest } = props;
128
- return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
129
- });
130
-
131
121
  const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
132
122
  const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
133
123
  const _innerRef = React.useRef(null);
@@ -155,6 +145,16 @@ const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
155
145
  return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
156
146
  });
157
147
 
148
+ const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
149
+ const { children, ...rest } = props;
150
+ return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
151
+ });
152
+
153
+ const Accordion = React.forwardRef(function Accordion(props, ref) {
154
+ const { children, ...rest } = props;
155
+ return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
156
+ });
157
+
158
158
  const Anchor = React.forwardRef(function Anchor(props, ref) {
159
159
  const { children, ...rest } = props;
160
160
  return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
@@ -1143,11 +1143,11 @@ const WeeklyRecurrence = React.forwardRef(function WeeklyRecurrence(props, ref)
1143
1143
  });
1144
1144
 
1145
1145
  module.exports = {
1146
- Accordion,
1147
1146
  AccordionItem,
1148
- ActionsMenu,
1149
1147
  AiCriteriaSearch,
1150
1148
  AiIndicator,
1149
+ ActionsMenu,
1150
+ Accordion,
1151
1151
  Anchor,
1152
1152
  AnchoredRegion,
1153
1153
  Avatar,
package/dist/react.mjs CHANGED
@@ -111,21 +111,11 @@ function _mergeRefs(...refs) {
111
111
  };
112
112
  }
113
113
 
114
- export const Accordion = React.forwardRef(function Accordion(props, ref) {
115
- const { children, ...rest } = props;
116
- return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
117
- });
118
-
119
114
  export const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
120
115
  const { children, ...rest } = props;
121
116
  return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
122
117
  });
123
118
 
124
- export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
125
- const { children, ...rest } = props;
126
- return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
127
- });
128
-
129
119
  export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
130
120
  const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
131
121
  const _innerRef = React.useRef(null);
@@ -153,6 +143,16 @@ export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
153
143
  return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
154
144
  });
155
145
 
146
+ export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
147
+ const { children, ...rest } = props;
148
+ return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
149
+ });
150
+
151
+ export const Accordion = React.forwardRef(function Accordion(props, ref) {
152
+ const { children, ...rest } = props;
153
+ return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
154
+ });
155
+
156
156
  export const Anchor = React.forwardRef(function Anchor(props, ref) {
157
157
  const { children, ...rest } = props;
158
158
  return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-ui",
3
3
  "description": "Genesis Foundation UI",
4
- "version": "15.7.0",
4
+ "version": "15.7.2-FUI-2595.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -85,13 +85,13 @@
85
85
  }
86
86
  },
87
87
  "devDependencies": {
88
- "@genesislcap/foundation-testing": "15.7.0",
89
- "@genesislcap/genx": "15.7.0",
90
- "@genesislcap/rollup-builder": "15.7.0",
91
- "@genesislcap/ts-builder": "15.7.0",
92
- "@genesislcap/uvu-playwright-builder": "15.7.0",
93
- "@genesislcap/vite-builder": "15.7.0",
94
- "@genesislcap/webpack-builder": "15.7.0",
88
+ "@genesislcap/foundation-testing": "15.7.2-FUI-2595.1",
89
+ "@genesislcap/genx": "15.7.2-FUI-2595.1",
90
+ "@genesislcap/rollup-builder": "15.7.2-FUI-2595.1",
91
+ "@genesislcap/ts-builder": "15.7.2-FUI-2595.1",
92
+ "@genesislcap/uvu-playwright-builder": "15.7.2-FUI-2595.1",
93
+ "@genesislcap/vite-builder": "15.7.2-FUI-2595.1",
94
+ "@genesislcap/webpack-builder": "15.7.2-FUI-2595.1",
95
95
  "copyfiles": "^2.4.1"
96
96
  },
97
97
  "dependencies": {
@@ -100,16 +100,16 @@
100
100
  "@fortawesome/free-regular-svg-icons": "^6.2.1",
101
101
  "@fortawesome/free-solid-svg-icons": "^6.2.1",
102
102
  "@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
103
- "@genesislcap/expression-builder": "15.7.0",
104
- "@genesislcap/foundation-ai": "15.7.0",
105
- "@genesislcap/foundation-comms": "15.7.0",
106
- "@genesislcap/foundation-criteria": "15.7.0",
107
- "@genesislcap/foundation-errors": "15.7.0",
108
- "@genesislcap/foundation-events": "15.7.0",
109
- "@genesislcap/foundation-logger": "15.7.0",
110
- "@genesislcap/foundation-notifications": "15.7.0",
111
- "@genesislcap/foundation-user": "15.7.0",
112
- "@genesislcap/foundation-utils": "15.7.0",
103
+ "@genesislcap/expression-builder": "15.7.2-FUI-2595.1",
104
+ "@genesislcap/foundation-ai": "15.7.2-FUI-2595.1",
105
+ "@genesislcap/foundation-comms": "15.7.2-FUI-2595.1",
106
+ "@genesislcap/foundation-criteria": "15.7.2-FUI-2595.1",
107
+ "@genesislcap/foundation-errors": "15.7.2-FUI-2595.1",
108
+ "@genesislcap/foundation-events": "15.7.2-FUI-2595.1",
109
+ "@genesislcap/foundation-logger": "15.7.2-FUI-2595.1",
110
+ "@genesislcap/foundation-notifications": "15.7.2-FUI-2595.1",
111
+ "@genesislcap/foundation-user": "15.7.2-FUI-2595.1",
112
+ "@genesislcap/foundation-utils": "15.7.2-FUI-2595.1",
113
113
  "@microsoft/fast-colors": "5.3.1",
114
114
  "@microsoft/fast-components": "2.30.6",
115
115
  "@microsoft/fast-element": "1.14.0",
@@ -142,5 +142,5 @@
142
142
  "require": "./dist/react.cjs"
143
143
  }
144
144
  },
145
- "gitHead": "485a2cc9d4b8695ea2e57a9cc66cad55effb2184"
145
+ "gitHead": "ce9d754c91394fafee6f1892d4b95ccb7606e977"
146
146
  }