@genesislcap/foundation-ui 15.9.1 → 15.10.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.
- package/dist/custom-elements.json +686 -686
- package/dist/dts/react.d.ts +9 -9
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +5 -5
- package/package.json +19 -19
package/dist/dts/react.d.ts
CHANGED
|
@@ -151,15 +151,6 @@ export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
|
151
151
|
>;
|
|
152
152
|
export type AccordionItemRef = AccordionItemWC;
|
|
153
153
|
|
|
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
154
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
164
155
|
React.PropsWithChildren<
|
|
165
156
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -180,6 +171,15 @@ export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
|
180
171
|
>;
|
|
181
172
|
export type AiIndicatorRef = AiIndicatorWC;
|
|
182
173
|
|
|
174
|
+
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
175
|
+
React.PropsWithChildren<
|
|
176
|
+
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
177
|
+
HTMLWCProps & {
|
|
178
|
+
}
|
|
179
|
+
> & React.RefAttributes<ActionsMenuWC>
|
|
180
|
+
>;
|
|
181
|
+
export type ActionsMenuRef = ActionsMenuWC;
|
|
182
|
+
|
|
183
183
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
184
184
|
React.PropsWithChildren<
|
|
185
185
|
Omit<PublicOf<AnchorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -123,11 +123,6 @@ const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
|
123
123
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
124
124
|
});
|
|
125
125
|
|
|
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
126
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
132
127
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
133
128
|
const _innerRef = React.useRef(null);
|
|
@@ -155,6 +150,11 @@ const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
|
155
150
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
156
151
|
});
|
|
157
152
|
|
|
153
|
+
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
154
|
+
const { children, ...rest } = props;
|
|
155
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...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);
|
|
@@ -1145,9 +1145,9 @@ const WeeklyRecurrence = React.forwardRef(function WeeklyRecurrence(props, ref)
|
|
|
1145
1145
|
module.exports = {
|
|
1146
1146
|
Accordion,
|
|
1147
1147
|
AccordionItem,
|
|
1148
|
-
ActionsMenu,
|
|
1149
1148
|
AiCriteriaSearch,
|
|
1150
1149
|
AiIndicator,
|
|
1150
|
+
ActionsMenu,
|
|
1151
1151
|
Anchor,
|
|
1152
1152
|
AnchoredRegion,
|
|
1153
1153
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -121,11 +121,6 @@ export const AccordionItem = React.forwardRef(function AccordionItem(props, ref)
|
|
|
121
121
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
122
122
|
});
|
|
123
123
|
|
|
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
124
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
130
125
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
131
126
|
const _innerRef = React.useRef(null);
|
|
@@ -153,6 +148,11 @@ export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
|
153
148
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
154
149
|
});
|
|
155
150
|
|
|
151
|
+
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
152
|
+
const { children, ...rest } = props;
|
|
153
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...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.
|
|
4
|
+
"version": "15.10.0",
|
|
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.
|
|
89
|
-
"@genesislcap/genx": "15.
|
|
90
|
-
"@genesislcap/rollup-builder": "15.
|
|
91
|
-
"@genesislcap/ts-builder": "15.
|
|
92
|
-
"@genesislcap/uvu-playwright-builder": "15.
|
|
93
|
-
"@genesislcap/vite-builder": "15.
|
|
94
|
-
"@genesislcap/webpack-builder": "15.
|
|
88
|
+
"@genesislcap/foundation-testing": "15.10.0",
|
|
89
|
+
"@genesislcap/genx": "15.10.0",
|
|
90
|
+
"@genesislcap/rollup-builder": "15.10.0",
|
|
91
|
+
"@genesislcap/ts-builder": "15.10.0",
|
|
92
|
+
"@genesislcap/uvu-playwright-builder": "15.10.0",
|
|
93
|
+
"@genesislcap/vite-builder": "15.10.0",
|
|
94
|
+
"@genesislcap/webpack-builder": "15.10.0",
|
|
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.
|
|
104
|
-
"@genesislcap/foundation-ai": "15.
|
|
105
|
-
"@genesislcap/foundation-comms": "15.
|
|
106
|
-
"@genesislcap/foundation-criteria": "15.
|
|
107
|
-
"@genesislcap/foundation-errors": "15.
|
|
108
|
-
"@genesislcap/foundation-events": "15.
|
|
109
|
-
"@genesislcap/foundation-logger": "15.
|
|
110
|
-
"@genesislcap/foundation-notifications": "15.
|
|
111
|
-
"@genesislcap/foundation-user": "15.
|
|
112
|
-
"@genesislcap/foundation-utils": "15.
|
|
103
|
+
"@genesislcap/expression-builder": "15.10.0",
|
|
104
|
+
"@genesislcap/foundation-ai": "15.10.0",
|
|
105
|
+
"@genesislcap/foundation-comms": "15.10.0",
|
|
106
|
+
"@genesislcap/foundation-criteria": "15.10.0",
|
|
107
|
+
"@genesislcap/foundation-errors": "15.10.0",
|
|
108
|
+
"@genesislcap/foundation-events": "15.10.0",
|
|
109
|
+
"@genesislcap/foundation-logger": "15.10.0",
|
|
110
|
+
"@genesislcap/foundation-notifications": "15.10.0",
|
|
111
|
+
"@genesislcap/foundation-user": "15.10.0",
|
|
112
|
+
"@genesislcap/foundation-utils": "15.10.0",
|
|
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": "83fc356fb2a585ea66bc15458dbd176c8247c68f"
|
|
146
146
|
}
|