@genesislcap/foundation-ui 15.7.1 → 15.7.2
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 +648 -648
- package/dist/dts/dialog/dialog.styles.d.ts.map +1 -1
- package/dist/dts/react.d.ts +9 -9
- package/dist/esm/dialog/dialog.styles.js +6 -1
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +5 -5
- package/package.json +19 -19
|
@@ -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,
|
|
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"}
|
package/dist/dts/react.d.ts
CHANGED
|
@@ -133,6 +133,15 @@ 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
|
+
|
|
136
145
|
export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
137
146
|
React.PropsWithChildren<
|
|
138
147
|
Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
|
|
@@ -151,15 +160,6 @@ export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
|
151
160
|
>;
|
|
152
161
|
export type ActionsMenuRef = ActionsMenuWC;
|
|
153
162
|
|
|
154
|
-
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
155
|
-
React.PropsWithChildren<
|
|
156
|
-
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
157
|
-
HTMLWCProps & {
|
|
158
|
-
}
|
|
159
|
-
> & React.RefAttributes<AccordionWC>
|
|
160
|
-
>;
|
|
161
|
-
export type AccordionRef = AccordionWC;
|
|
162
|
-
|
|
163
163
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
164
164
|
React.PropsWithChildren<
|
|
165
165
|
Omit<PublicOf<AiCriteriaSearchWC>, '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
|
-
|
|
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,6 +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
|
+
|
|
116
121
|
const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
117
122
|
const { children, ...rest } = props;
|
|
118
123
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
@@ -123,11 +128,6 @@ const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
123
128
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
124
129
|
});
|
|
125
130
|
|
|
126
|
-
const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
127
|
-
const { children, ...rest } = props;
|
|
128
|
-
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
129
|
-
});
|
|
130
|
-
|
|
131
131
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
132
132
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
133
133
|
const _innerRef = React.useRef(null);
|
|
@@ -1143,9 +1143,9 @@ const WeeklyRecurrence = React.forwardRef(function WeeklyRecurrence(props, ref)
|
|
|
1143
1143
|
});
|
|
1144
1144
|
|
|
1145
1145
|
module.exports = {
|
|
1146
|
+
Accordion,
|
|
1146
1147
|
AccordionItem,
|
|
1147
1148
|
ActionsMenu,
|
|
1148
|
-
Accordion,
|
|
1149
1149
|
AiCriteriaSearch,
|
|
1150
1150
|
AiIndicator,
|
|
1151
1151
|
Anchor,
|
package/dist/react.mjs
CHANGED
|
@@ -111,6 +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
|
+
|
|
114
119
|
export const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
115
120
|
const { children, ...rest } = props;
|
|
116
121
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
@@ -121,11 +126,6 @@ export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
121
126
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
122
127
|
});
|
|
123
128
|
|
|
124
|
-
export const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
125
|
-
const { children, ...rest } = props;
|
|
126
|
-
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
127
|
-
});
|
|
128
|
-
|
|
129
129
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
130
130
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
131
131
|
const _innerRef = React.useRef(null);
|
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.
|
|
4
|
+
"version": "15.7.2",
|
|
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.
|
|
89
|
-
"@genesislcap/genx": "15.7.
|
|
90
|
-
"@genesislcap/rollup-builder": "15.7.
|
|
91
|
-
"@genesislcap/ts-builder": "15.7.
|
|
92
|
-
"@genesislcap/uvu-playwright-builder": "15.7.
|
|
93
|
-
"@genesislcap/vite-builder": "15.7.
|
|
94
|
-
"@genesislcap/webpack-builder": "15.7.
|
|
88
|
+
"@genesislcap/foundation-testing": "15.7.2",
|
|
89
|
+
"@genesislcap/genx": "15.7.2",
|
|
90
|
+
"@genesislcap/rollup-builder": "15.7.2",
|
|
91
|
+
"@genesislcap/ts-builder": "15.7.2",
|
|
92
|
+
"@genesislcap/uvu-playwright-builder": "15.7.2",
|
|
93
|
+
"@genesislcap/vite-builder": "15.7.2",
|
|
94
|
+
"@genesislcap/webpack-builder": "15.7.2",
|
|
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.
|
|
104
|
-
"@genesislcap/foundation-ai": "15.7.
|
|
105
|
-
"@genesislcap/foundation-comms": "15.7.
|
|
106
|
-
"@genesislcap/foundation-criteria": "15.7.
|
|
107
|
-
"@genesislcap/foundation-errors": "15.7.
|
|
108
|
-
"@genesislcap/foundation-events": "15.7.
|
|
109
|
-
"@genesislcap/foundation-logger": "15.7.
|
|
110
|
-
"@genesislcap/foundation-notifications": "15.7.
|
|
111
|
-
"@genesislcap/foundation-user": "15.7.
|
|
112
|
-
"@genesislcap/foundation-utils": "15.7.
|
|
103
|
+
"@genesislcap/expression-builder": "15.7.2",
|
|
104
|
+
"@genesislcap/foundation-ai": "15.7.2",
|
|
105
|
+
"@genesislcap/foundation-comms": "15.7.2",
|
|
106
|
+
"@genesislcap/foundation-criteria": "15.7.2",
|
|
107
|
+
"@genesislcap/foundation-errors": "15.7.2",
|
|
108
|
+
"@genesislcap/foundation-events": "15.7.2",
|
|
109
|
+
"@genesislcap/foundation-logger": "15.7.2",
|
|
110
|
+
"@genesislcap/foundation-notifications": "15.7.2",
|
|
111
|
+
"@genesislcap/foundation-user": "15.7.2",
|
|
112
|
+
"@genesislcap/foundation-utils": "15.7.2",
|
|
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": "
|
|
145
|
+
"gitHead": "fff7bda0cf8c4ce2e9a7b5363d991fd63e4ecd3a"
|
|
146
146
|
}
|